diff --git a/data/data_manager.py b/data/data_manager.py index 84bf01add..392d1c82f 100644 --- a/data/data_manager.py +++ b/data/data_manager.py @@ -333,20 +333,36 @@ def get_data(self, horizon=24*3600, interval=None, index=None, # the closest possible point under stop will be the end # point in order to keep interval unchanged among index. index = np.arange(start,stop+0.1,interval).astype(int) + else: + if not isinstance(index, np.ndarray): + index = np.asarray(index) # Reindex to the desired index - data_slice_reindexed = data_slice.reindex(index) - - for key in data_slice_reindexed.keys(): - # Use linear interpolation for continuous variables - if key in self.categories['weather']: - f = interpolate.interp1d(self.case.data.index, - self.case.data[key], kind='linear') - # Use forward fill for discrete variables - else: - f = interpolate.interp1d(self.case.data.index, - self.case.data[key], kind='zero') - data_slice_reindexed.loc[:,key] = f(index) + start = index[0] + # 1 year in (s) + year = 31536000 + # Starting year + year_start = int(np.floor(start/year))*year + # Normalizing index with respect to starting year + index_norm = index - year_start + stop_norm = index_norm[-1] + # If stop happens across the year divide df and interpolate separately + if stop_norm > data_slice.index[-1]: + idx_year = (np.abs(index_norm - year)).argmin() + 1 + # Take previous index value if index at idx_year > year + if index_norm[idx_year - 1] - year > np.finfo(float).eps: + idx_year = idx_year -1 + df_slice1 = data_slice.reindex(index_norm[:idx_year]) + df_slice1 = self.interpolate_data(df_slice1,index_norm[:idx_year]) + df_slice2 = data_slice.reindex(index_norm[idx_year:] - year) + df_slice2 = self.interpolate_data(df_slice2,index_norm[idx_year:] - year) + df_slice2.index = df_slice2.index + year + data_slice_reindexed = pd.concat([df_slice1,df_slice2]) + else: + data_slice_reindexed = data_slice.reindex(index_norm) + data_slice_reindexed = self.interpolate_data(data_slice_reindexed,index_norm) + # Add starting year back to index desired by user + data_slice_reindexed.index = data_slice_reindexed.index + year_start if plot: if category is None: @@ -503,7 +519,34 @@ def get_data_metadata(self): data_metadata[key] = metadata return data_metadata + + def interpolate_data(self,df,index): + '''Interpolate testcase data. + + Parameters + ---------- + df: pandas.DataFrame + Dataframe that needs to be interpolated + index: np.array() + Index to use to get interpolated data + + Returns + ------- + df: pandas.DataFrame + Interpolated dataframe + ''' + for key in df.keys(): + # Use linear interpolation for continuous variables + if key in self.categories['weather']: + f = interpolate.interp1d(self.case.data.index, + self.case.data[key], kind='linear') + # Use forward fill for discrete variables + else: + f = interpolate.interp1d(self.case.data.index, + self.case.data[key], kind='zero') + df.loc[:,key] = f(index) + return df if __name__ == "__main__": import sys diff --git a/testing/references/data/testcase2/tc2_data_retrieved_over_year.csv b/testing/references/data/testcase2/tc2_data_retrieved_over_year.csv new file mode 100644 index 000000000..1f727f290 --- /dev/null +++ b/testing/references/data/testcase2/tc2_data_retrieved_over_year.csv @@ -0,0 +1,1886 @@ +time,EmissionsBiomassPower,EmissionsDistrictHeatingPower,EmissionsElectricPower,EmissionsGasPower,EmissionsSolarThermalPower,HDifHor,HDirNor,HGloHor,HHorIR,InternalGainsCon[1],InternalGainsLat[1],InternalGainsRad[1],LowerSetp[1],Occupancy[1],PriceBiomassPower,PriceDistrictHeatingPower,PriceElectricPowerConstant,PriceElectricPowerDynamic,PriceElectricPowerHighlyDynamic,PriceGasPower,PriceSolarThermalPower,TBlaSky,TDewPoi,TDryBul,TWetBul,UpperCO2[1],UpperSetp[1],ceiHei,cloTim,lat,lon,nOpa,nTot,pAtm,relHum,solAlt,solDec,solHouAng,solTim,solZen,winDir,winSpe +31276800,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,254.111889722,265.25,271.75,269.441204913,894.0,296.15,77777.0,31276800.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.57,-1.28310537,-0.406360540924,2271.36214776,31276671.555,2.85390169679,3.31612557879,4.4 +31277121,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.7325,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,254.036474783,265.241083333,271.67163086,269.391419661,894.0,296.15,77777.0,31277121.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.573566666667,-1.28175371292,-0.40635733061,2271.38548414,31276992.4532,2.85255003971,3.33168809795,4.34680651042 +31277442,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.465,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,253.961059845,265.232166667,271.593261719,269.341634408,894.0,296.15,77777.0,31277442.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.577133333333,-1.28040205584,-0.406354120296,2271.40882051,31277313.3513,2.85119838264,3.34725061712,4.29361302083 +31277763,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.1975,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,253.885330179,265.22325,271.514555339,269.291445216,894.0,296.15,77777.0,31277763.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5807,-1.2783397829,-0.406350909018,2271.43215689,31277634.2495,2.8491361097,3.36281313628,4.24054713542 +31278084,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.93,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,253.808311628,265.214333333,271.434467882,269.239601793,894.0,296.15,77777.0,31278084.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.584266666667,-1.27336736885,-0.406347693788,2271.45549326,31277955.1477,2.84416369565,3.37837565544,4.18800381945 +31278405,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.6625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,253.731293077,265.205416667,271.354380426,269.187758371,894.0,296.15,77777.0,31278405.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.587833333333,-1.26839495479,-0.406344478558,2271.47882963,31278276.0459,2.83919128159,3.39393817461,4.13546050347 +31278726,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.395,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,253.653900788,265.1965,271.273891927,269.135346998,894.0,296.15,77777.0,31278726.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5914,-1.26218417043,-0.406341261399,2271.502166,31278596.944,2.83298049723,3.40950069377,4.08266927084 +31279047,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.1275,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,253.575930094,265.187583333,271.192782769,269.082056655,894.0,296.15,77777.0,31279047.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.594966666667,-1.25405686059,-0.406338041254,2271.52550238,31278917.8422,2.82485318739,3.42506321294,4.02949435764 +31279368,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.86,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,253.497959399,265.178666667,271.111673611,269.028766311,894.0,296.15,77777.0,31279368.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.598533333333,-1.24592955075,-0.40633482111,2271.54883875,31279238.7404,2.81672587755,3.4406257321,3.97631944444 +31279689,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.5925,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,253.419811636,265.16975,271.030373046,268.974989767,894.0,296.15,77777.0,31279689.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.6021,-1.23630349699,-0.406331598071,2271.57217513,31279559.6386,2.80709982378,3.45618825126,3.92201796875 +31280010,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.325,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,253.341540206,265.160833333,270.948938802,268.920873655,894.0,296.15,77777.0,31280010.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.605666666667,-1.22563070142,-0.406328373011,2271.5955115,31279880.5368,2.79642702822,3.47175077043,3.8669296875 +31280331,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.0575,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,253.263268775,265.151916667,270.867504557,268.866757542,894.0,296.15,77777.0,31280331.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.609233333333,-1.21495790586,-0.40632514795,2271.61884788,31280201.435,2.78575423265,3.48731328959,3.81184140625 +31280652,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.93875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,253.231963591,265.1329375,270.774257813,268.801923529,894.0,296.15,77777.0,31280652.0,0.693942910593,-1.83015225364,0.004375,0.013125,101325.0,0.612865625,-1.2027505424,-0.406321919032,2271.64218426,31280522.3332,2.77354686919,3.50287580875,3.7523125 +31280973,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.860729167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,253.213518213,265.111203125,270.677776693,268.734154853,894.0,296.15,77777.0,31280973.0,0.693942910593,-1.83015225364,0.00994791666667,0.02984375,101325.0,0.616515885417,-1.19012299964,-0.406318689056,2271.66552063,31280843.2314,2.76091932643,3.51843832792,3.69156770833 +31281294,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.782708333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,253.195072834,265.08946875,270.581295573,268.666386177,894.0,296.15,77777.0,31281294.0,0.693942910593,-1.83015225364,0.0155208333333,0.0465625,101325.0,0.620166145833,-1.17749545688,-0.406315459081,2271.68885701,31281164.1296,2.74829178368,3.53400084708,3.63082291667 +31281615,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.9453125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,253.238753303,265.053515625,270.472373047,268.587014485,894.0,296.15,77777.0,31281615.0,0.693942910593,-1.83015225364,0.02765625,0.08296875,101325.0,0.62387109375,-1.16343266751,-0.406312224283,2271.71219338,31281485.0278,2.73422899431,3.54956336625,3.56533854167 +31281936,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.1125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,253.283617121,265.017291667,270.363213542,268.507421783,894.0,296.15,77777.0,31281936.0,0.693942910593,-1.83015225364,0.0399166666667,0.11975,101325.0,0.627577083333,-1.14934254012,-0.406308989393,2271.73552976,31281805.926,2.72013886691,3.56512588541,3.49976388889 +31282257,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.287604167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,253.327771969,264.981463542,270.256478516,268.429802565,894.0,296.15,77777.0,31282257.0,0.693942910593,-1.83015225364,0.0521770833333,0.15653125,101325.0,0.63126328125,-1.13506006645,-0.406305753631,2271.75886613,31282126.8242,2.70585639324,3.58068840457,3.43432118055 +31282578,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.499375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,253.368643163,264.94746875,270.160972656,268.361323694,894.0,296.15,77777.0,31282578.0,0.693942910593,-1.83015225364,0.0644375,0.1933125,101325.0,0.6348578125,-1.11988672587,-0.406302513826,2271.78220251,31282447.7224,2.69068305266,3.59625092374,3.36948958333 +31282899,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.711145833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,253.409514357,264.913473958,270.065466796,268.292844823,894.0,296.15,77777.0,31282899.0,0.693942910593,-1.83015225364,0.0766979166667,0.23009375,101325.0,0.63845234375,-1.10471338529,-0.406299274021,2271.80553888,31282768.6206,2.67550971208,3.6118134429,3.30465798611 +31283220,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.864583333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,253.435880841,264.8865625,269.984908854,268.237245832,894.0,296.15,77777.0,31283220.0,0.693942910593,-1.83015225364,0.0864583333333,0.259375,101325.0,0.641942708333,-1.08924065171,-0.406296032379,2271.82887526,31283089.5188,2.66003697851,3.62737596206,3.2421875 +31283541,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.9203125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,253.437951934,264.871515625,269.929388672,268.203220641,894.0,296.15,77777.0,31283541.0,0.693942910593,-1.83015225364,0.09203125,0.27609375,101325.0,0.64525859375,-1.07326643488,-0.406292787659,2271.85221164,31283410.4171,2.64406276167,3.64293848123,3.183671875 +31283862,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.976041667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,253.440023027,264.85646875,269.87386849,268.169195449,894.0,296.15,77777.0,31283862.0,0.693942910593,-1.83015225364,0.0976041666667,0.2928125,101325.0,0.648574479167,-1.05729221804,-0.40628954294,2271.87554802,31283731.3153,2.62808854484,3.65850100039,3.12515625 +31284183,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.949166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,253.428643568,264.858578125,269.83475,268.148882189,894.0,296.15,77777.0,31284183.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.65166796875,-1.04098001163,-0.406286295419,2271.89888439,31284052.2135,2.61177633843,3.64789329933,3.072359375 +31284504,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.86,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,253.407121068,264.873625,269.808,268.138909073,894.0,296.15,77777.0,31284504.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.65459375,-1.02441292782,-0.406283045785,2271.92222077,31284373.1117,2.59520925462,3.6175506781,3.023875 +31284825,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.770833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,253.385598568,264.888671875,269.78125,268.128935957,894.0,296.15,77777.0,31284825.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.65751953125,-1.00784584402,-0.406279796151,2271.94555715,31284694.01,2.57864217082,3.58720805686,2.975390625 +31285146,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.681666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,253.367545732,264.918239583,269.7545,268.117814121,894.0,296.15,77777.0,31285146.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.660231770833,-0.99094238701,-0.406276542751,2271.96889352,31285014.9082,2.56173871381,3.50677667845,2.93174652778 +31285467,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.5925,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,253.35055072,264.952234375,269.72775,268.106342066,894.0,296.15,77777.0,31285467.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.66287890625,-0.973936377189,-0.406273288203,2271.9922299,31285335.8065,2.54473270399,3.41107433749,2.889578125 +31285788,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.503333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,253.333555708,264.986229167,269.701,268.094870011,894.0,296.15,77777.0,31285788.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.665526041667,-0.956930367368,-0.406270033654,2272.01556628,31285656.7047,2.52772669416,3.31537199653,2.84740972222 +31286109,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.414166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,253.317063927,265.022369792,269.67425,268.082758929,894.0,296.15,77777.0,31286109.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.668065885417,-0.939612952611,-0.406266774376,2272.03890266,31285977.6029,2.51040927941,3.19494592241,2.80595659722 +31286430,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.325,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,253.30059169,265.05859375,269.6475,268.070623031,894.0,296.15,77777.0,31286430.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.6706015625,-0.922283444458,-0.406263514914,2272.06223904,31286298.5012,2.49307977125,3.07355970331,2.76453125 +31286751,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.235833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,253.283568399,265.092515625,269.62075,268.058511764,894.0,296.15,77777.0,31286751.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.67314609375,-0.904916544188,-0.406260254671,2272.08557542,31286619.3994,2.47571287098,2.95439650644,2.72233854167 +31287072,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.146666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,253.263627764,265.11425,269.594,268.046530901,894.0,296.15,77777.0,31287072.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.6757375,-0.887351685642,-0.406256990295,2272.1089118,31286940.2977,2.45814801243,2.84700225081,2.67608333333 +31287393,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.0575,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,253.243687129,265.135984375,269.56725,268.034550037,894.0,296.15,77777.0,31287393.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.67832890625,-0.869786827097,-0.406253725919,2272.13224818,31287261.1959,2.44058315389,2.73960799517,2.629828125 +31287714,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.968333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,253.222658887,265.153166667,269.5405,268.022670786,894.0,296.15,77777.0,31287714.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.68095,-0.852162816188,-0.406250459798,2272.15558457,31287582.0942,2.42295914298,2.63939981706,2.58151953125 +31288035,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.879166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,253.199655778,265.162083333,269.51375,268.010976041,894.0,296.15,77777.0,31288035.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.683625,-0.83443139704,-0.406247190508,2272.17892094,31287902.9925,2.40522772383,2.5522400429,2.52948242188 +31288356,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.79,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,253.176652669,265.171,269.487,267.999281296,894.0,296.15,77777.0,31288356.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.6863,-0.816699977891,-0.406243921217,2272.20225732,31288223.8907,2.38749630469,2.46508026874,2.4774453125 +31288677,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.700833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,253.153648713,265.179916667,269.46025,267.987520224,894.0,296.15,77777.0,31288677.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.688975,-0.798907037845,-0.406240649218,2272.2255937,31288544.789,2.36970336464,2.37792956045,2.42430707465 +31288998,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.611666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,253.130644069,265.188833333,269.4335,267.975705191,894.0,296.15,77777.0,31288998.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.69165,-0.781064046899,-0.406237375014,2272.24893008,31288865.6873,2.35186037369,2.29078622779,2.37027300347 +31289319,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.5225,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,253.107639425,265.19775,269.40675,267.963890158,894.0,296.15,77777.0,31289319.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.694325,-0.763221055954,-0.406234100811,2272.27226646,31289186.5856,2.33401738275,2.20364289512,2.31623893229 +31289640,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.433333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,253.084633634,265.206666667,269.38,267.951985714,894.0,296.15,77777.0,31289640.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.697,-0.745328370673,-0.406230822934,2272.29560284,31289507.4838,2.31612469747,2.11650064365,2.26185763889 +31289961,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.344166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,253.061627456,265.215583333,269.35325,267.940051093,894.0,296.15,77777.0,31289961.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.699675,-0.727418913554,-0.406227543817,2272.31893923,31289828.3821,2.29821524035,2.02935875708,2.20735915799 +31290282,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.255,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,253.038621277,265.2245,269.3265,267.928116472,894.0,296.15,77777.0,31290282.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.70235,-0.709509456435,-0.4062242647,2272.34227561,31290149.2804,2.28030578323,1.94221687051,2.15286067708 +31290603,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.165833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,253.01561365,265.233416667,269.29975,267.916069623,894.0,296.15,77777.0,31290603.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.705025,-0.691573143421,-0.406220980945,2272.36561199,31290470.1787,2.26236947022,1.85506219441,2.09937044271 +31290924,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.076666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,252.992605938,265.242333333,269.273,267.904016106,894.0,296.15,77777.0,31290924.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.7077,-0.673635235008,-0.406217696915,2272.38894837,31290791.077,2.24443156181,1.76790675854,2.04594010417 +31291245,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.0265625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,252.982917424,265.25125,269.24453125,267.890937267,894.0,296.15,77777.0,31291245.0,0.693942910593,-1.83015225364,0.1015625,0.30390625,101325.0,0.7105,-0.655697956451,-0.406214412196,2272.41228476,31291111.9752,2.22649428325,1.67881449647,1.99149414062 +31291566,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.216041667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,253.054920003,265.260166667,269.205520833,267.871569786,894.0,296.15,77777.0,31291566.0,0.693942910593,-1.83015225364,0.112708333333,0.331770833333,101325.0,0.714066666667,-0.637764541015,-0.406211123253,2272.43562114,31291432.8735,2.20856086781,1.57784303371,1.93081901042 +31291887,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.405520833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,253.126922582,265.269083333,269.166510417,267.852202304,894.0,296.15,77777.0,31291887.0,0.693942910593,-1.83015225364,0.123854166667,0.359635416667,101325.0,0.717633333333,-0.619831125579,-0.406207834309,2272.45895752,31291753.7718,2.19062745237,1.47687157095,1.87014388021 +31292208,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.7075,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,253.225367499,265.278,269.12275,267.829726234,894.0,296.15,77777.0,31292208.0,0.693942910593,-1.83015225364,0.1395,0.39875,101325.0,0.7215,-0.601909100433,-0.406204543713,2272.4822939,31292074.6701,2.17270542723,1.37263121199,1.808484375 +31292529,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.231354167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,253.375962585,265.286916667,269.069621528,267.80111934,894.0,296.15,77777.0,31292529.0,0.693942910593,-1.83015225364,0.164020833333,0.460052083333,101325.0,0.725958333333,-0.58400953947,-0.406201249856,2272.50563029,31292395.5684,2.15480586627,1.26194386329,1.74488346354 +31292850,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.755208333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,253.526557671,265.295833333,269.016493056,267.772512446,894.0,296.15,77777.0,31292850.0,0.693942910593,-1.83015225364,0.188541666667,0.521354166667,101325.0,0.730416666667,-0.566109978508,-0.406197956,2272.52896667,31292716.4667,2.1369063053,1.15125651459,1.68128255208 +31293171,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.2790625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,253.65716315,265.30475,268.96415625,267.743344922,894.0,296.15,77777.0,31293171.0,0.693942910593,-1.83015225364,0.2130625,0.58265625,101325.0,0.7346375,-0.548242780641,-0.406194659527,2272.55230305,31293037.365,2.11903910744,1.04969078879,1.62703320313 +31293492,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.802916667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,253.770233887,265.313666667,268.912513889,267.71368562,894.0,296.15,77777.0,31293492.0,0.693942910593,-1.83015225364,0.237583333333,0.643958333333,101325.0,0.73865,-0.530403971455,-0.406191360758,2272.57563944,31293358.2633,2.10120029825,0.956126486594,1.58098697917 +31293813,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.326770833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,253.883304624,265.322583333,268.860871528,267.684026317,894.0,296.15,77777.0,31293813.0,0.693942910593,-1.83015225364,0.262104166667,0.705260416667,101325.0,0.7426625,-0.512565162269,-0.406188061989,2272.59897583,31293679.1617,2.08336148906,0.862562184396,1.53494075521 +31294134,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.606875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,253.9377242,265.3315,268.8216875,267.659859305,894.0,296.15,77777.0,31294134.0,0.693942910593,-1.83015225364,0.276875,0.7421875,101325.0,0.745375,-0.494789077971,-0.406184759638,2272.62231221,31294000.06,2.06558540476,0.801044932257,1.51662109375 +31294455,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.796354167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,253.970337576,265.340416667,268.787135417,267.6377343,894.0,296.15,77777.0,31294455.0,0.693942910593,-1.83015225364,0.288020833333,0.770052083333,101325.0,0.747604166667,-0.477036314466,-0.406181455956,2272.64564859,31294320.9583,2.04783264126,0.751442608986,1.50861002604 +31294776,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.985833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,254.002950951,265.349333333,268.752583333,267.615609295,894.0,296.15,77777.0,31294776.0,0.693942910593,-1.83015225364,0.299166666667,0.797916666667,101325.0,0.749833333333,-0.45928355096,-0.406178152274,2272.66898497,31294641.8566,2.03007987775,0.701840285715,1.50059895833 +31295097,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.9175,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.991311346,265.343296875,268.7368,267.600982471,894.0,296.15,77777.0,31295097.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.749874776786,-0.44163294808,-0.406174844047,2272.69232136,31294962.7549,2.01242927487,0.708933892365,1.5165 +31295418,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.828333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.976095742,265.336052083,268.722533333,267.58696156,894.0,296.15,77777.0,31295418.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.749739434524,-0.423990600604,-0.406171535453,2272.71565775,31295283.6533,1.9947869274,0.7206089883,1.53433333333 +31295739,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.739166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.961091043,265.325692708,268.709277778,267.573011005,894.0,296.15,77777.0,31295739.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.749412574404,-0.406364583948,-0.406168226262,2272.73899413,31295604.5516,1.97716091074,0.737578509355,1.55216666667 +31296060,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.65,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.947611346,265.2928125,268.703333333,267.559569167,894.0,296.15,77777.0,31296060.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.747700892857,-0.388856651688,-0.406164912756,2272.76233052,31295925.45,1.95965297848,0.792830796658,1.57 +31296381,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.560833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.93413165,265.259932292,268.697388889,267.546127329,894.0,296.15,77777.0,31296381.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.745989211309,-0.371348719428,-0.40616159925,2272.7856669,31296246.3483,1.94214504622,0.84808308396,1.58783333333 +31296702,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.471666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.919821019,265.22209375,268.691822222,267.531787987,894.0,296.15,77777.0,31296702.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.744004315476,-0.353891153487,-0.406158284182,2272.80900329,31296567.2466,1.92468748028,0.909020877199,1.60566666667 +31297023,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.3825,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.903726325,265.173609375,268.687066666,267.515521652,894.0,296.15,77777.0,31297023.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.7414328125,-0.336541726996,-0.406154965763,2272.83233968,31296888.145,1.90733805379,0.982165786123,1.6235 +31297344,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.293333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.887631631,265.125125,268.682311111,267.499255318,894.0,296.15,77777.0,31297344.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.738861309524,-0.319192300504,-0.406151647345,2272.85567606,31297209.0433,1.8899886273,1.05531069505,1.64133333333 +31297665,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.204166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.867959035,265.073776042,268.6745,267.479800173,894.0,296.15,77777.0,31297665.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.736216145833,-0.301936984125,-0.406148326401,2272.87901245,31297529.9417,1.87273331092,1.12445039699,1.65916666667 +31297986,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.115,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.844903694,265.01971875,268.6638,267.457330153,894.0,296.15,77777.0,31297986.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.733501339286,-0.28477064458,-0.40614500307,2272.90234883,31297850.8401,1.85556697137,1.18980335779,1.677 +31298307,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.025833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.821848354,264.965661458,268.6531,267.434860134,894.0,296.15,77777.0,31298307.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.730786532738,-0.267604305034,-0.406141679739,2272.92568522,31298171.7384,1.83840063183,1.25515631859,1.69483333333 +31298628,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.936666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,253.79479968,264.912,268.638079762,267.408691693,894.0,296.15,77777.0,31298628.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.728139017857,-0.250586068556,-0.40613835292,2272.94902161,31298492.6368,1.82138239535,1.31167491359,1.71266666667 +31298949,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.8475,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,253.766122146,264.8585,268.621297322,267.381014686,894.0,296.15,77777.0,31298949.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.725518950893,-0.233628242541,-0.406135024677,2272.97235799,31298813.5352,1.80442456934,1.36459001727,1.7305 +31299270,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.758333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,253.737444612,264.805,268.604514881,267.353337678,894.0,296.15,77777.0,31299270.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.722898883928,-0.216670416525,-0.406131696435,2272.99569438,31299134.4335,1.78746674332,1.41750512096,1.74833333333 +31299591,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.669166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,253.707832536,264.7515,268.586750893,267.324417689,894.0,296.15,77777.0,31299591.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.720196540179,-0.199925726633,-0.40612836374,2273.01903077,31299455.3319,1.77072205343,1.47043726221,1.76616666667 +31299912,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.58,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,253.678124115,264.698,268.568885715,267.295369558,894.0,296.15,77777.0,31299912.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.717485714286,-0.183203009537,-0.406125030585,2273.04236716,31299776.2303,1.75399933633,1.52337115992,1.784 +31300233,0.0,0.1,0.5,0.2,0.0,0.0420041454081,0.0297872254522,0.0,234.490833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,253.648365409,264.6445,268.550968155,267.266274154,894.0,296.15,77777.0,31300233.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.71477390625,-0.166507347696,-0.406121696926,2273.06570355,31300097.1286,1.73730367449,1.57630383061,1.80183333333 +31300554,0.0,0.1,0.5,0.2,0.0,0.450589923469,0.319535691214,0.0,234.401666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,253.618167852,264.591,268.532593453,267.236766191,894.0,296.15,77777.0,31300554.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.712053526786,-0.150047804439,-0.406118358861,2273.08903994,31300418.027,1.72084413124,1.62922579278,1.81966666667 +31300875,0.0,0.1,0.5,0.2,0.0,0.85917570153,0.609284156977,0.0,234.3125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,253.587970295,264.5375,268.51421875,267.207258227,894.0,296.15,77777.0,31300875.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.709333147322,-0.133588261183,-0.406115020795,2273.11237633,31300738.9253,1.70438458798,1.68214775494,1.8375 +31301196,0.0,0.1,0.5,0.2,0.0,1.48255739796,1.12569067614,0.0,234.223333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,253.557788381,264.484,268.495863095,267.177883153,894.0,296.15,77777.0,31301196.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.706634196429,-0.117216341538,-0.406111681261,2273.13571272,31301059.8237,1.68801266834,1.73505695745,1.85533333333 +31301517,0.0,0.1,0.5,0.2,0.0,2.60936702806,2.17332700797,0.0,234.134166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,253.527643131,264.4305,268.477552083,267.148819537,894.0,296.15,77777.0,31301517.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.70398546875,-0.101049789737,-0.406108338285,2273.15904911,31301380.7221,1.67184611653,1.78793625452,1.87316666667 +31301838,0.0,0.1,0.5,0.2,0.0,3.73617665817,3.22096333979,0.0,234.045,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,253.497497882,264.377,268.459241071,267.119755922,894.0,296.15,77777.0,31301838.0,0.693942910593,-1.83015225364,0.3,0.8,101325.0,0.701336741071,-0.0848832379352,-0.406104995308,2273.1823855,31301701.6205,1.65567956473,1.84081555158,1.891 +31302159,0.0,0.1,0.5,0.2,0.0,5.14522480868,4.77654486972,0.0,233.92546875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.473798621,264.3235,268.43212433,267.084176028,894.0,296.15,77777.0,31302159.0,0.693942910593,-1.83015225364,0.302760416667,0.8,101325.0,0.699042135417,-0.06887758289,-0.406101649898,2273.20572189,31302022.5189,1.63967390968,1.89668031864,1.90883333333 +31302480,0.0,0.1,0.5,0.2,0.0,6.84183673469,6.84965546942,0.0,233.775,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.456666972,264.27,268.396035714,267.041956908,894.0,296.15,77777.0,31302480.0,0.693942910593,-1.83015225364,0.308333333333,0.8,101325.0,0.697108333333,-0.0530358603892,-0.40609830201,2273.22905828,31302343.4173,1.62383218718,1.95558688532,1.92666666667 +31302801,0.0,0.1,0.5,0.2,0.0,8.53844866071,8.92276606912,0.0,233.62453125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.439535324,264.2165,268.359947098,266.999737787,894.0,296.15,77777.0,31302801.0,0.693942910593,-1.83015225364,0.31390625,0.8,101325.0,0.69517453125,-0.0371941378883,-0.406094954122,2273.25239467,31302664.3157,1.60799046468,2.014493452,1.9445 +31303122,0.0,0.1,0.5,0.2,0.0,10.5264827806,11.8901429264,3.7,233.466354167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.435260159,264.163,268.313562351,266.950238513,894.0,296.15,77777.0,31303122.0,0.693942910593,-1.83015225364,0.324104166667,0.8,101325.0,0.693726354167,-0.0216006529575,-0.406091602838,2273.27573106,31302985.2141,1.59239697975,2.07584969131,1.96233333333 +31303443,0.0,0.1,0.5,0.2,0.0,12.6444754464,15.2563141957,9.05,233.304739583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.436718292,264.1095,268.262586086,266.897492684,894.0,296.15,77777.0,31303443.0,0.693942910593,-1.83015225364,0.336364583333,0.8,101325.0,0.692494739583,-0.00611786856466,-0.406088250039,2273.29906745,31303306.1125,1.57691419536,2.13829835219,1.98016666667 +31303764,0.0,0.1,0.5,0.2,0.0,14.7624681122,18.6224854651,14.4,233.143125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.438176424,264.056,268.211609821,266.844746855,894.0,296.15,77777.0,31303764.0,0.693942910593,-1.83015225364,0.348625,0.8,101325.0,0.691263125,0.00936491582819,-0.40608489724,2273.32240383,31303627.0109,1.56143141096,2.20074701307,1.998 +31304085,0.0,0.1,0.5,0.2,0.0,20.0477677634,45.2944354668,24.8197115385,233.120052083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.451004862,264.0025,268.175533854,266.805046845,894.0,296.15,77777.0,31304085.0,0.693942910593,-1.83015225364,0.360885416667,0.8,101325.0,0.689853385417,0.0244965132279,-0.406081540081,2273.34574022,31303947.9093,1.54629981357,2.25491975291,2.01583333333 +31304406,0.0,0.1,0.5,0.2,0.0,25.7331482968,74.9102733085,35.8798076923,233.114479167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.46526955,263.949,268.141340029,266.766994728,894.0,296.15,77777.0,31304406.0,0.693942910593,-1.83015225364,0.373145833333,0.8,101325.0,0.688421145833,0.0395837501653,-0.406078182371,2273.36907661,31304268.8077,1.53121257663,2.30804711326,2.03366666667 +31304727,0.0,0.1,0.5,0.2,0.0,31.7556260317,107.264292958,47.0913461538,233.13609375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.48060677,263.8955,268.111221651,266.732295697,894.0,296.15,77777.0,31304727.0,0.693942910593,-1.83015225364,0.38484375,0.8,101325.0,0.68689609375,0.0546344102649,-0.406074824248,2273.392413,31304589.7062,1.51616191653,2.35930847119,2.0515 +31305048,0.0,0.1,0.5,0.2,0.0,41.4487177371,169.434070067,59.9519230769,233.45375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.507622677,263.842,268.125480357,266.73410804,894.0,296.15,77777.0,31305048.0,0.693942910593,-1.83015225364,0.390416666667,0.8,101325.0,0.684360416667,0.0692867892418,-0.406071461627,2273.4157494,31304910.6046,1.50150953755,2.39025113625,2.06933333333 +31305369,0.0,0.1,0.5,0.2,0.0,51.1418094426,231.603847176,72.8125,233.77140625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.534638584,263.7885,268.139739062,266.735920383,894.0,296.15,77777.0,31305369.0,0.693942910593,-1.83015225364,0.395989583333,0.8,101325.0,0.681824739583,0.0839391682187,-0.406068099007,2273.43908579,31305231.503,1.48685715858,2.4211938013,2.08716666667 +31305690,0.0,0.1,0.5,0.2,0.0,60.7790405538,295.131482002,85.8447115385,234.219375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.595421246,263.752941177,268.19296875,266.76799877,894.0,296.15,77777.0,31305690.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.678075,0.0984578005568,-0.406064735009,2273.46242218,31305552.4014,1.47233852624,2.44782427592,2.11116071429 +31306011,0.0,0.1,0.5,0.2,0.0,70.2728961397,362.144284969,99.3174519231,235.0018125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.74287191,263.763431373,268.346223958,266.877760007,894.0,296.15,77777.0,31306011.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.671209166667,0.112633149855,-0.406061367479,2273.48575858,31305873.2998,1.45816317694,2.46338679508,2.15096726191 +31306332,0.0,0.1,0.5,0.2,0.0,79.7667517257,429.157087936,112.790192308,235.78425,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.890322574,263.773921569,268.499479167,266.987521243,894.0,296.15,77777.0,31306332.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.664343333333,0.126808499154,-0.406057999948,2273.50909497,31306194.1983,1.44398782764,2.47894931425,2.19077380953 +31306653,0.0,0.1,0.5,0.2,0.0,87.1604638168,485.270243565,125.988317308,236.7303125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,254.113672971,263.827411765,268.721973958,267.149203612,894.0,296.15,77777.0,31306653.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.6553525,0.140734965421,-0.406054630077,2273.53243136,31306515.0967,1.43006136137,2.49451183341,2.2460625 +31306974,0.0,0.1,0.5,0.2,0.0,92.2481359919,529.415158981,138.884903846,237.856041667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,254.420364251,263.928117647,269.020496528,267.367897422,894.0,296.15,77777.0,31306974.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.644028333333,0.154388148359,-0.406051257635,2273.55576776,31306835.9952,1.41640817844,2.51007435257,2.31835119048 +31307295,0.0,0.1,0.5,0.2,0.0,97.335808167,573.560074397,151.781490385,238.981770833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,254.72705553,264.02882353,269.319019098,267.586591232,894.0,296.15,77777.0,31307295.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.632704166667,0.168041331297,-0.406047885194,2273.57910415,31307156.8936,1.4027549955,2.52563687174,2.39063988096 +31307616,0.0,0.1,0.5,0.2,0.0,99.7532941176,603.239594464,164.221053618,240.1855,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,255.071463376,264.152117647,269.651541667,267.829294033,894.0,296.15,77777.0,31307616.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.6209,0.181310764074,-0.406044509449,2273.60244054,31307477.7921,1.38948556272,2.5411993909,2.47321428572 +31307937,0.0,0.1,0.5,0.2,0.0,100.872772876,625.887325125,176.438452745,241.427145833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,255.434205662,264.286392157,270.000592014,268.083667872,894.0,296.15,77777.0,31307937.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.6088625,0.194393651633,-0.406041132097,2273.62577694,31307798.6905,1.37640267516,2.55676191007,2.56078869048 +31308258,0.0,0.1,0.5,0.2,0.0,101.992251634,648.535055786,188.655851872,242.668791667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,255.796947948,264.420666667,270.349642361,268.338041712,894.0,296.15,77777.0,31308258.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.596825,0.207476539192,-0.406037754745,2273.64911333,31308119.589,1.3633197876,2.57232442923,2.64836309524 +31308579,0.0,0.1,0.5,0.2,0.0,102.497910131,669.095634617,200.851305716,243.8135625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,256.1185851,264.534882353,270.660265625,268.565950597,894.0,296.15,77777.0,31308579.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.5874225,0.220019380619,-0.406034373127,2273.67244972,31308440.4874,1.35077694617,2.58788694839,2.73427678571 +31308900,0.0,0.1,0.5,0.2,0.0,102.911165577,689.342018548,213.04345597,244.94375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,256.434034383,264.646078431,270.965104167,268.789875511,894.0,296.15,77777.0,31308900.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.578416666667,0.232480924778,-0.406030990866,2273.69578612,31308761.3859,1.33831540201,2.60344946756,2.81994047619 +31309221,0.0,0.1,0.5,0.2,0.0,103.280118192,709.357823965,225.230496354,246.0651875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,256.745613475,264.755271969,271.266360677,269.011327653,894.0,296.15,77777.0,31309221.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.569591666667,0.244898302963,-0.406027608283,2273.71912251,31309082.2844,1.32589802383,2.61901198672,2.90521223958 +31309542,0.0,0.1,0.5,0.2,0.0,103.016173203,726.0796506,237.344538584,247.061625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,257.001904132,264.835857783,271.516445313,269.19745448,894.0,296.15,77777.0,31309542.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.56335,0.256684738645,-0.406024221112,2273.74245891,31309403.1828,1.31411158815,2.63457450588,2.98488504464 +31309863,0.0,0.1,0.5,0.2,0.0,102.752228213,742.801477236,249.458580814,248.0580625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,257.258194789,264.916443597,271.766529948,269.383581308,894.0,296.15,77777.0,31309863.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.557108333333,0.268471174327,-0.406020833941,2273.7657953,31309724.0813,1.30232515247,2.65013702505,3.0645578497 +31310184,0.0,0.1,0.5,0.2,0.0,102.318666667,758.307065551,261.53835126,249.052555556,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,257.514185901,264.996950741,272.016298611,269.568592527,894.0,296.15,77777.0,31310184.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.550866666667,0.280066260106,-0.406017445485,2273.7891317,31310044.9797,1.29073006669,2.66569954421,3.14446329365 +31310505,0.0,0.1,0.5,0.2,0.0,101.406544118,770.381124323,273.521426316,250.0415625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,257.769331868,265.077235922,272.265175781,269.75045614,894.0,296.15,77777.0,31310505.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.544625,0.291121465801,-0.406014053404,2273.81246809,31310365.8782,1.27967486099,2.68126206338,3.22502511161 +31310826,0.0,0.1,0.5,0.2,0.0,100.494421569,782.455183096,285.504501372,251.030569445,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,258.024477835,265.157521102,272.514052951,269.932319752,894.0,296.15,77777.0,31310826.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.538383333333,0.302176671496,-0.406010661323,2273.83580449,31310686.7766,1.2686196553,2.69682458254,3.30558692956 +31311147,0.0,0.1,0.5,0.2,0.0,99.4696770833,793.393150965,297.112125706,252.014131945,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,258.279716178,265.237721335,272.763015191,270.112750584,894.0,296.15,77777.0,31311147.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.532141666667,0.312870486621,-0.406007266994,2273.85914088,31311007.6751,1.25792584017,2.7123871017,3.38620951141 +31311468,0.0,0.1,0.5,0.2,0.0,98.311625,802.986358173,308.275338983,252.99125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,258.535063864,265.317821019,273.012078125,270.291485473,894.0,296.15,77777.0,31311468.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.5259,0.323136533317,-0.406003870004,2273.88247728,31311328.5736,1.24765979348,2.72794962087,3.46690401786 +31311789,0.0,0.1,0.5,0.2,0.0,97.1535729167,812.579565382,319.43855226,253.968368056,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,258.79041155,265.397920702,273.261141059,270.470220361,894.0,296.15,77777.0,31311789.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.519658333333,0.333402580012,-0.406000473013,2273.90581367,31311649.4721,1.23739374678,2.74351214003,3.5475985243 +31312110,0.0,0.1,0.5,0.2,0.0,96.0011921296,821.953599276,329.746539548,254.934791667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,259.046772842,265.477974354,273.511236979,270.647621563,894.0,296.15,77777.0,31312110.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.513416666667,0.34311377341,-0.405997072811,2273.92915007,31311970.3706,1.22768255338,2.75907465919,3.62788504464 +31312431,0.0,0.1,0.5,0.2,0.0,94.8518090278,831.211784417,339.602478814,255.8955625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,259.303669896,265.558003676,273.761878906,270.824317817,894.0,296.15,77777.0,31312431.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.507175,0.352531687207,-0.405993670912,2273.95248647,31312291.2691,1.21826463959,2.77463717836,3.70795591518 +31312752,0.0,0.1,0.5,0.2,0.0,93.702425926,840.469969559,349.458418079,256.856333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,259.56056695,265.638032999,274.012520833,271.00101407,894.0,296.15,77777.0,31312752.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.500933333333,0.361949601004,-0.405990269012,2273.97582287,31312612.1676,1.20884672579,2.79019969752,3.78802678571 +31313073,0.0,0.1,0.5,0.2,0.0,92.3967418982,848.461075086,358.414639831,257.805729167,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,259.800263344,265.733786585,274.289941406,271.197390284,894.0,296.15,77777.0,31313073.0,0.693942910593,-1.83015225364,0.390520833333,0.795260416667,101325.0,0.494691666667,0.370596005335,-0.405986862938,2273.99915926,31312933.0661,1.20020032146,2.80203975664,3.84893619792 +31313394,0.0,0.1,0.5,0.2,0.0,91.0635763889,856.229397386,367.212669491,258.753125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.036935445,265.832304878,274.572070312,271.397226711,894.0,296.15,77777.0,31313394.0,0.693942910593,-1.83015225364,0.379375,0.7896875,101325.0,0.48845,0.379106759651,-0.405983456129,2274.02249566,31313253.9646,1.19168956715,2.81322531729,3.9064765625 +31313715,0.0,0.1,0.5,0.2,0.0,89.7128298611,863.874135404,375.972916666,259.696701389,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.271371257,265.93126355,274.855384115,271.597861884,894.0,296.15,77777.0,31313715.0,0.693942910593,-1.83015225364,0.367604166667,0.783802083333,101325.0,0.482208333333,0.387572419728,-0.405980049091,2274.04583206,31313574.8631,1.18322390707,2.82427452409,3.96320529514 +31314036,0.0,0.1,0.5,0.2,0.0,88.0034305555,868.997754088,383.96240113,260.562361111,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.460186763,266.039205962,275.162869792,271.814791473,894.0,296.15,77777.0,31314036.0,0.693942910593,-1.83015225364,0.343083333333,0.771541666667,101325.0,0.475966666667,0.395118157333,-0.405976637373,2274.06916845,31313895.7616,1.17567816946,2.8325421124,4.00337673611 +31314357,0.0,0.1,0.5,0.2,0.0,86.29403125,874.121372772,391.951885593,261.428020833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.649002268,266.147148374,275.470355469,272.031721062,894.0,296.15,77777.0,31314357.0,0.693942910593,-1.83015225364,0.3185625,0.75928125,101325.0,0.469725,0.402663894937,-0.405973225656,2274.09250485,31314216.6601,1.16813243186,2.8408097007,4.04354817708 +31314678,0.0,0.1,0.5,0.2,0.0,84.5233333333,878.784621842,399.64093564,262.246736111,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.824286369,266.247340109,275.771205729,272.242004611,894.0,296.15,77777.0,31314678.0,0.693942910593,-1.83015225364,0.294041666667,0.747020833333,101325.0,0.463483333333,0.409961715358,-0.405969812746,2274.11584125,31314537.5586,1.16083461144,2.85049536903,4.08918142361 +31314999,0.0,0.1,0.5,0.2,0.0,82.5616666667,882.013642501,406.394016927,262.919201389,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.957414941,266.323385502,276.051384115,272.431583188,894.0,296.15,77777.0,31314999.0,0.693942910593,-1.83015225364,0.269520833333,0.734760416667,101325.0,0.457241666667,0.416487178397,-0.405966396119,2274.13917765,31314858.4571,1.1543091484,2.86459890202,4.15183029514 +31315320,0.0,0.1,0.5,0.2,0.0,80.6,885.24266316,413.147098214,263.591666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,261.090543512,266.399430895,276.3315625,272.621161766,894.0,296.15,77777.0,31315320.0,0.693942910593,-1.83015225364,0.245,0.7225,101325.0,0.451,0.423012641437,-0.405962979492,2274.16251405,31315179.3556,1.14778368535,2.87870243501,4.21447916667 +31315641,0.0,0.1,0.5,0.2,0.0,78.6383333333,888.269127211,419.18827288,264.1303125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,261.213854904,266.443315041,276.576613281,272.780012291,894.0,296.15,77777.0,31315641.0,0.693942910593,-1.83015225364,0.226354166667,0.713177083333,101325.0,0.444758333333,0.429067514028,-0.40595956071,2274.18585045,31315500.2541,1.14172881276,2.89921459885,4.30450390625 +31315962,0.0,0.1,0.5,0.2,0.0,76.6766666667,891.037008358,424.32063058,264.498125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,261.324633725,266.446142277,276.776820313,272.899635515,894.0,296.15,77777.0,31315962.0,0.693942910593,-1.83015225364,0.215208333333,0.707604166667,101325.0,0.438516666667,0.434521632856,-0.405956139175,2274.20918685,31315821.1527,1.13627469394,2.92790799355,4.4294765625 +31316283,0.0,0.1,0.5,0.2,0.0,74.715,893.804889505,429.452988281,264.8659375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,261.435412547,266.448969512,276.977027344,273.019258739,894.0,296.15,77777.0,31316283.0,0.693942910593,-1.83015225364,0.2040625,0.70203125,101325.0,0.432275,0.439975751683,-0.40595271764,2274.23252325,31316142.0512,1.13082057511,2.95660138826,4.55444921875 +31316604,0.0,0.1,0.5,0.2,0.0,72.7533333333,896.197213069,433.755331101,265.054305555,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,261.520974861,266.355791667,277.122298295,273.078651132,894.0,296.15,77777.0,31316604.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.424227083333,0.444720282963,-0.405949292986,2274.25585965,31316462.9497,1.12607604383,2.99827566928,4.70766666667 +31316925,0.0,0.1,0.5,0.2,0.0,70.7916666667,898.374143313,437.581635975,265.139756944,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,261.592074767,266.207552083,277.23606179,273.103499373,894.0,296.15,77777.0,31316925.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.415143229167,0.449057844913,-0.405945866543,2274.27919604,31316783.8482,1.12173848188,3.04739487039,4.87708333333 +31317246,0.0,0.1,0.5,0.2,0.0,68.83,900.551073557,441.407940849,265.225208333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,261.663174673,266.0593125,277.349825284,273.128347613,894.0,296.15,77777.0,31317246.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.406059375,0.453395406864,-0.405942440099,2274.30253244,31317104.7468,1.11740091993,3.0965140715,5.0465 +31317567,0.0,0.1,0.5,0.2,0.0,66.8683333333,902.128491238,444.409638207,265.209710648,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,261.672713821,265.789315972,277.430255918,273.100870073,894.0,296.15,77777.0,31317567.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.393916145833,0.456772875158,-0.405939009573,2274.32586884,31317425.6453,1.11402345164,3.15776876507,5.21591666667 +31317888,0.0,0.1,0.5,0.2,0.0,64.9066666667,903.584659189,447.244561012,265.173796296,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,261.669802478,265.494694444,277.503945076,273.062809791,894.0,296.15,77777.0,31317888.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.381154166667,0.459956167207,-0.405935578221,2274.34920524,31317746.5439,1.11084015959,3.22147782789,5.38533333333 +31318209,0.0,0.1,0.5,0.2,0.0,62.945,905.02855239,450.055046317,265.1371875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,261.666076476,265.19828125,277.577256392,273.024229867,894.0,296.15,77777.0,31318209.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.3683734375,0.463106291268,-0.405932146731,2274.37254164,31318067.4425,1.10769003553,3.28535051533,5.55475 +31318530,0.0,0.1,0.5,0.2,0.0,60.9833333333,906.046920956,452.018364955,265.07650463,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,261.634108942,264.839756944,277.637469224,272.967635706,894.0,296.15,77777.0,31318530.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.354942708333,0.465106591742,-0.405928710472,2274.39587805,31318388.341,1.10568973505,3.35489552285,5.72416666667 +31318851,0.0,0.1,0.5,0.2,0.0,59.0216666667,907.065289522,453.981683593,265.015821759,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,261.602141408,264.481232639,277.697682055,272.911041545,894.0,296.15,77777.0,31318851.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.341511979167,0.467106892217,-0.405925274212,2274.41921445,31318709.2395,1.10368943458,3.42444053036,5.89358333333 +31319172,0.0,0.1,0.5,0.2,0.0,57.06,908.013192402,455.69703497,264.97125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,261.573827825,264.126875,277.760838069,272.860282161,894.0,296.15,77777.0,31319172.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.32860625,0.468837695054,-0.405921836851,2274.44255085,31319030.138,1.10195863174,3.49333103941,6.063 +31319493,0.0,0.1,0.5,0.2,0.0,55.0983333333,908.717401451,456.554832899,264.982395833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,261.558150824,263.786927083,277.834172585,272.82970138,894.0,296.15,77777.0,31319493.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.317516145833,0.469636485228,-0.405918395683,2274.46588725,31319351.0366,1.10115984157,3.55995807458,6.23241666667 +31319814,0.0,0.1,0.5,0.2,0.0,53.1366666667,909.421610499,457.412630828,264.993541667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,261.542473822,263.446979167,277.907507102,272.7991206,894.0,296.15,77777.0,31319814.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.306426041667,0.470435275403,-0.405914954516,2274.48922365,31319671.9352,1.10036105139,3.62658510975,6.40183333333 +31320135,0.0,0.1,0.5,0.2,0.0,51.175,909.838595282,457.714703311,265.034277344,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,261.536607612,263.1225,277.987432244,272.780892263,894.0,296.15,77777.0,31320135.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.2963765625,0.470725603519,-0.405911511284,2274.51256006,31319992.8337,1.10007072327,3.69137136797,6.57125 +31320456,0.0,0.1,0.5,0.2,0.0,49.2133333333,909.859848857,457.251109623,265.11578125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,261.544258492,262.819333333,278.076437803,272.779682849,894.0,296.15,77777.0,31320456.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.287760833333,0.470315383911,-0.405908065208,2274.53589646,31320313.7323,1.10048094288,3.75362144462,6.74066666667 +31320777,0.0,0.1,0.5,0.2,0.0,47.2516666667,909.881102431,456.787515935,265.197285156,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,261.551909371,262.516166667,278.165443361,272.778473434,894.0,296.15,77777.0,31320777.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.279145104167,0.469905164303,-0.405904619133,2274.55923286,31320634.6309,1.10089116249,3.81587152128,6.91008333333 +31321098,0.0,0.1,0.5,0.2,0.0,45.29,909.253612133,455.375704241,265.281749132,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,261.559380407,262.213,278.25463267,272.778560353,894.0,296.15,77777.0,31321098.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.270836458333,0.468751580193,-0.40590117003,2274.58256927,31320955.5295,1.1020447466,3.87812159793,7.0795 +31321419,0.0,0.1,0.5,0.2,0.0,43.3283333333,908.223114277,453.374848028,265.368051939,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,261.566739722,261.909833333,278.343936127,272.779452569,894.0,296.15,77777.0,31321419.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.262718576389,0.467136209045,-0.405897719047,2274.60590567,31321276.4281,1.10366011775,3.94037167459,7.24891666667 +31321740,0.0,0.1,0.5,0.2,0.0,41.3666666667,907.192616422,451.373991815,265.454354745,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,261.574099036,261.606666667,278.433239583,272.780344786,894.0,296.15,77777.0,31321740.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.254600694444,0.465520837896,-0.405894268064,2274.62924207,31321597.3267,1.1052754889,4.00262175124,7.41833333333 +31322061,0.0,0.1,0.5,0.2,0.0,39.4511363636,905.117265625,448.212771485,265.544937066,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,261.580998011,261.3035,278.522552926,272.781837005,894.0,296.15,77777.0,31322061.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.246760729166,0.462937807028,-0.40589081309,2274.65257847,31321918.2252,1.10785851977,4.0648718279,7.58775 +31322382,0.0,0.1,0.5,0.2,0.0,37.5462121212,902.80171875,444.784800782,265.636503183,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,261.58779116,261.000333333,278.611868542,272.783467155,894.0,296.15,77777.0,31322382.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.238984652778,0.460132325649,-0.4058873572,2274.67591487,31322239.1238,1.11066400114,4.12712190455,7.75716666667 +31322703,0.0,0.1,0.5,0.2,0.0,35.6421969697,900.476883681,441.346194228,265.72812283,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,261.594576459,260.697166667,278.701181601,272.785090766,894.0,296.15,77777.0,31322703.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.2312103125,0.457315960576,-0.405883901263,2274.69925128,31322560.0224,1.11348036622,4.18937198121,7.92658333333 +31323024,0.0,0.1,0.5,0.2,0.0,33.8345454545,897.1675,436.7801875,265.825416667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,261.600529642,260.394,278.790223636,272.786021081,894.0,296.15,77777.0,31323024.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.22362,0.453345923861,-0.405880440465,2274.72258768,31322880.921,1.11745040293,4.25162205786,8.096 +31323345,0.0,0.1,0.5,0.2,0.0,32.0268939394,893.85811632,432.214180773,265.922710504,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,261.606482824,260.090833333,278.879265672,272.786951396,894.0,296.15,77777.0,31323345.0,0.693942910593,-1.83015225364,0.2,0.7,101325.0,0.2160296875,0.449375887145,-0.405876979668,2274.74592409,31323201.8196,1.12142043965,4.31387213452,8.26541666667 +31323666,0.0,0.1,0.5,0.2,0.0,30.2342424242,890.430329861,427.424984809,266.039674479,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,261.623691589,259.772541667,278.97574,272.791663429,894.0,296.15,77777.0,31323666.0,0.693942910593,-1.83015225364,0.201145833333,0.695416666667,101325.0,0.208313333333,0.445173599806,-0.405873517861,2274.76926049,31323522.7182,1.12562272698,4.37612221117,8.44136458333 +31323987,0.0,0.1,0.5,0.2,0.0,28.4995454546,886.545078125,421.773466797,266.232636719,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,261.684387828,259.3958125,279.10093,272.810986647,894.0,296.15,77777.0,31323987.0,0.693942910593,-1.83015225364,0.20671875,0.673125,101325.0,0.20011,0.440073980513,-0.405870052156,2274.7925969,31323843.6168,1.13072234628,4.43837228783,8.642546875 +31324308,0.0,0.1,0.5,0.2,0.0,26.7648484849,882.659826389,416.121948785,266.425598958,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,261.745084067,259.019083333,279.22612,272.830309865,894.0,296.15,77777.0,31324308.0,0.693942910593,-1.83015225364,0.212291666667,0.650833333333,101325.0,0.191906666667,0.43497436122,-0.405866586451,2274.8159333,31324164.5154,1.13582196557,4.50062236448,8.84372916667 +31324629,0.0,0.1,0.5,0.2,0.0,25.0496969697,878.711119792,410.055305339,266.653834635,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,261.825222752,258.622645833,279.35991,272.854371748,894.0,296.15,77777.0,31324629.0,0.693942910593,-1.83015225364,0.220552083333,0.617791666667,101325.0,0.183703333333,0.429438067962,-0.405863118774,2274.83926971,31324485.414,1.14135825883,4.56287244113,9.053421875 +31324950,0.0,0.1,0.5,0.2,0.0,23.3636363637,874.66796875,403.370800782,266.934570312,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,261.934299028,258.196875,279.5065,272.885486528,894.0,296.15,77777.0,31324950.0,0.693942910593,-1.83015225364,0.2328125,0.56875,101325.0,0.1755,0.42325184136,-0.405859648162,2274.86260611,31324806.3126,1.14754448544,4.62512251778,9.27578125 +31325271,0.0,0.1,0.5,0.2,0.0,21.6775757576,870.624817708,396.686296224,267.21530599,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,262.043375305,257.771104167,279.65309,272.916601308,894.0,296.15,77777.0,31325271.0,0.693942910593,-1.83015225364,0.245072916667,0.519708333333,101325.0,0.167296666667,0.417065614758,-0.405856177551,2274.88594252,31325127.2112,1.15373071204,4.68737259444,9.498140625 +31325592,0.0,0.1,0.5,0.2,0.0,20.1033484848,866.286096491,389.639525,267.461041667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,262.131489773,257.404,279.7664,272.933229684,894.0,296.15,77777.0,31325592.0,0.693942910593,-1.83015225364,0.257333333333,0.470666666667,101325.0,0.160266666667,0.410258984275,-0.405852704004,2274.90927893,31325448.1098,1.16053734252,4.74962267109,9.69516666667 +31325913,0.0,0.1,0.5,0.2,0.0,18.6042592329,861.748789063,382.349355859,267.683261719,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,262.205520524,257.0763125,279.85735,272.940125008,894.0,296.15,77777.0,31325913.0,0.693942910593,-1.83015225364,0.26959375,0.421625,101325.0,0.154025,0.403035519933,-0.405849228485,2274.93261533,31325769.0084,1.16776080686,4.81187274774,9.875171875 +31326234,0.0,0.1,0.5,0.2,0.0,17.105169981,857.211481634,375.059186718,267.905481771,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,262.279551276,256.748625,279.9483,272.947020332,894.0,296.15,77777.0,31326234.0,0.693942910593,-1.83015225364,0.281854166667,0.372583333333,101325.0,0.147783333333,0.395812055592,-0.405845752967,2274.95595174,31326089.907,1.1749842712,4.8741228244,10.0551770833 +31326555,0.0,0.1,0.5,0.2,0.0,15.8317412405,851.994849918,367.348024088,267.96500651,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,262.271797827,256.615729167,279.93385,272.908862262,894.0,296.15,77777.0,31326555.0,0.693942910593,-1.83015225364,0.288802083333,0.344791666667,101325.0,0.144658333333,0.387807586706,-0.40584227355,2274.97928814,31326410.8057,1.18298874009,4.93637290105,10.1510677083 +31326876,0.0,0.1,0.5,0.2,0.0,14.61671875,846.602393092,359.527898437,267.982421875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,262.242876703,256.53325,279.89212,272.859043314,894.0,296.15,77777.0,31326876.0,0.693942910593,-1.83015225364,0.294375,0.3225,101325.0,0.14234,0.379600975466,-0.405838793125,2275.00262455,31326731.7043,1.19119535133,4.99862297771,10.2251875 +31327197,0.0,0.1,0.5,0.2,0.0,13.4016962595,841.209936267,351.707772786,267.99983724,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,262.213955579,256.450770833,279.85039,272.809224366,894.0,296.15,77777.0,31327197.0,0.693942910593,-1.83015225364,0.299947916667,0.300208333333,101325.0,0.140021666667,0.371394364227,-0.4058353127,2275.02596095,31327052.6029,1.19940196257,5.06087305436,10.2993072917 +31327518,0.0,0.1,0.5,0.2,0.0,12.3827135417,835.347627467,342.892185677,267.72613761,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,262.112833861,256.538333333,279.7175,272.733863692,894.0,296.15,77777.0,31327518.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.141851602564,0.362270447517,-0.405831827415,2275.04929736,31327373.5016,1.20852587928,5.101145297,10.2265729167 +31327839,0.0,0.1,0.5,0.2,0.0,11.3655802557,829.480886102,334.067207422,267.449691612,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,262.011031005,256.6275,279.58375,272.658262058,894.0,296.15,77777.0,31327839.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.143720673077,0.353137876981,-0.405828342084,2275.07263377,31327694.4002,1.21765844981,5.14121020157,10.152453125 +31328160,0.0,0.1,0.5,0.2,0.0,10.3693276515,823.596683114,324.965640625,267.136019737,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,261.90920877,256.716666667,279.45,272.585947836,894.0,296.15,77777.0,31328160.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.145989316239,0.343843219944,-0.405824855835,2275.09597018,31328015.2989,1.22695310685,5.17531082843,10.0585416667 +31328481,0.0,0.1,0.5,0.2,0.0,9.46390601325,817.636522067,314.660913672,266.660415296,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,261.80730224,256.805833333,279.31625,272.527933855,894.0,296.15,77777.0,31328481.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.149996100427,0.333843486626,-0.405821365597,2275.11930659,31328336.1975,1.23695284017,5.18346684721,9.87853645833 +31328802,0.0,0.1,0.5,0.2,0.0,8.558484375,811.67636102,304.356186719,266.184810855,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,261.70539571,256.895,279.1825,272.469919875,894.0,296.15,77777.0,31328802.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.154002884615,0.323843753308,-0.40581787536,2275.142643,31328657.0961,1.24695257349,5.19162286598,9.69853125 +31329123,0.0,0.1,0.5,0.2,0.0,7.72672521841,804.785391076,293.598663542,265.682457511,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,261.603449566,256.984166667,279.04875,272.413277936,894.0,296.15,77777.0,31329123.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.158250587607,0.313534393409,-0.405814383242,2275.16597941,31328977.9948,1.25726193339,5.19471454243,9.502296875 +31329444,0.0,0.1,0.5,0.2,0.0,7.01354469086,796.396045837,282.112248882,265.137044956,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,261.501439652,257.073333333,278.915,272.358844649,894.0,296.15,77777.0,31329444.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.162886111111,0.302726610232,-0.405810888098,2275.18931582,31329298.8934,1.26806971656,5.18965386294,9.2799375 +31329765,0.0,0.1,0.5,0.2,0.0,6.30036416331,788.006700597,270.625834222,264.591632401,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,261.399429738,257.1625,278.78125,272.304411363,894.0,296.15,77777.0,31329765.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.167521634615,0.291918827055,-0.405807392954,2275.21265222,31329619.7921,1.27887749974,5.18459318346,9.057578125 +31330086,0.0,0.1,0.5,0.2,0.0,5.75171488575,777.045332163,258.885922103,264.080720943,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,261.297360087,257.251666667,278.6475,272.244601333,894.0,296.15,77777.0,31330086.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.171647115384,0.280676645502,-0.405803894968,2275.23598863,31329940.6908,1.29011968129,5.18270521739,8.84748958333 +31330407,0.0,0.1,0.5,0.2,0.0,5.32248345094,764.217172699,246.962019893,263.594850603,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,261.195247078,257.340833333,278.51375,272.180888828,894.0,296.15,77777.0,31330407.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.175402403846,0.269119174803,-0.405800394918,2275.25932504,31330261.5895,1.30167715199,5.18312002718,8.64630729167 +31330728,0.0,0.1,0.5,0.2,0.0,4.89325201613,751.389013236,235.038117683,263.108980263,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,261.093134069,257.43,278.38,272.117176322,894.0,296.15,77777.0,31330728.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.179157692308,0.257561704105,-0.405796894869,2275.28266145,31330582.4881,1.31323462269,5.18353483697,8.445125 +31331049,0.0,0.1,0.5,0.2,0.0,4.63043892809,735.792572886,222.925584477,262.710732119,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,260.990941314,257.519166667,278.24625,272.04518155,894.0,296.15,77777.0,31331049.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.182048397436,0.245466741645,-0.405793391014,2275.30599786,31330903.3868,1.32532958515,5.19087038961,8.26858333333 +31331370,0.0,0.1,0.5,0.2,0.0,4.4157468078,719.395665774,210.758507368,262.337820513,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,260.888725498,257.608333333,278.1125,271.970791904,894.0,296.15,77777.0,31331370.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.184689102564,0.233216359881,-0.405789886059,2275.32933427,31331224.2855,1.33757996692,5.2002071209,8.09916666667 +31331691,0.0,0.1,0.5,0.2,0.0,4.2010546875,702.998758663,198.591430259,261.964908907,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,260.786509683,257.6975,277.97875,271.896402259,894.0,296.15,77777.0,31331691.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.187329807692,0.220965978117,-0.405786381104,2275.35267068,31331545.1841,1.34983034868,5.2095438522,7.92975 +31332012,0.0,0.1,0.5,0.2,0.0,4.12742305108,683.978834433,186.376860874,261.636207827,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,260.684194222,257.786666667,277.845,271.819615984,894.0,296.15,77777.0,31332012.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.189814957265,0.208095157951,-0.40578287138,2275.37600709,31331866.0828,1.36270116885,5.21883558915,7.76033333333 +31332333,0.0,0.1,0.5,0.2,0.0,4.05786046707,664.883246248,174.160921519,261.308782051,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,260.581875886,257.875833333,277.71125,271.742760575,894.0,296.15,77777.0,31332333.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.192295619658,0.195206440523,-0.405779361519,2275.3993435,31332186.9815,1.37558988627,5.22812602819,7.59091666667 +31332654,0.0,0.1,0.5,0.2,0.0,4.08809475806,641.878166001,161.766369665,260.980263158,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,260.479540352,257.965,277.5775,271.66586734,894.0,296.15,77777.0,31332654.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.194795512821,0.182219079847,-0.405775850833,2275.42267991,31332507.8802,1.38857724694,5.23742049222,7.4215 +31332975,0.0,0.1,0.5,0.2,0.0,4.61176915323,599.542819449,148.488678227,260.646339406,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,260.377119783,258.054166667,277.44375,271.588787076,894.0,296.15,77777.0,31332975.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.197390491453,0.168743983109,-0.405772336067,2275.44601632,31332828.7788,1.40205234368,5.24673485759,7.25208333333 +31333296,0.0,0.1,0.5,0.2,0.0,5.13544354839,557.207472898,135.210986789,260.312415654,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,260.274699213,258.143333333,277.31,271.511706811,894.0,296.15,77777.0,31333296.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.199985470086,0.155268886371,-0.405768821301,2275.46935273,31333149.6775,1.41552744042,5.25604922296,7.08266666667 +31333617,0.0,0.1,0.5,0.2,0.0,5.8912046371,505.517880343,121.573942454,259.957176113,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,260.172241484,258.2325,277.17625,271.435295215,894.0,296.15,77777.0,31333617.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.202722115385,0.141597954386,-0.405765304747,2275.49268914,31333470.5762,1.42919837241,5.26539790284,6.91325 +31333938,0.0,0.1,0.5,0.2,0.0,7.0516297043,437.518320399,107.310334096,259.56477058,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,260.069718963,258.321666667,277.0425,271.360049504,894.0,296.15,77777.0,31333938.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.205705769231,0.127585566073,-0.405761785076,2275.51602556,31333791.4749,1.44321076072,5.27480641312,6.74383333333 +31334259,0.0,0.1,0.5,0.2,0.0,8.21205477151,369.518760454,93.0467257368,259.172365047,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,259.967196443,258.410833333,276.90875,271.284803793,894.0,296.15,77777.0,31334259.0,0.693942910593,-1.83015225364,0.3,0.3,101325.0,0.208689423077,0.11357317776,-0.405758265405,2275.53936197,31334112.3736,1.45722314903,5.28421492341,6.57441666667 +31334580,0.0,0.1,0.5,0.2,0.0,9.35030241936,302.854221022,79.2549771341,258.407692308,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,259.808465064,258.49703125,276.775,271.213178505,894.0,296.15,77777.0,31334580.0,0.693942910593,-1.83015225364,0.290625,0.290625,101325.0,0.21225,0.0992853592462,-0.405754742983,2275.56269838,31334433.2723,1.47151096755,5.29319191388,6.405 +31334901,0.0,0.1,0.5,0.2,0.0,10.4711777554,237.235447659,65.8328520071,257.351410256,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,259.605703414,258.580903646,276.64125,271.144389215,894.0,296.15,77777.0,31334901.0,0.693942910593,-1.83015225364,0.27390625,0.27390625,101325.0,0.2162625,0.0847817870756,-0.405751218407,2275.58603479,31334754.171,1.48601453972,5.30183088049,6.23558333333 +31335222,0.0,0.1,0.5,0.2,0.0,11.5920530914,171.616674295,52.41072688,256.295128205,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,259.402941764,258.664776042,276.5075,271.075599925,894.0,296.15,77777.0,31335222.0,0.693942910593,-1.83015225364,0.2571875,0.2571875,101325.0,0.220275,0.070278214905,-0.40574769383,2275.60937121,31335075.0697,1.50051811189,5.31046984709,6.06616666667 +31335543,0.0,0.1,0.5,0.2,0.0,12.1710231855,129.030505708,41.0089714177,254.678076923,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,259.067779338,258.741476562,276.37375,271.010576767,894.0,296.15,77777.0,31335543.0,0.693942910593,-1.83015225364,0.22528125,0.22528125,101325.0,0.2249625,0.0554354584984,-0.405744165541,2275.63270762,31335395.9684,1.5153608683,5.31904187635,5.89675 +31335864,0.0,0.1,0.5,0.2,0.0,12.5760483871,93.8375189007,30.2557296748,252.881025641,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,258.690117897,258.815875,276.24,270.946762491,894.0,296.15,77777.0,31335864.0,0.693942910593,-1.83015225364,0.1885,0.1885,101325.0,0.229866666667,0.0404838281394,-0.40574063606,2275.65604403,31335716.8671,1.53031249866,5.32759241955,5.72733333333 +31336185,0.0,0.1,0.5,0.2,0.0,12.9810735887,58.6445320938,19.5024879319,251.083974359,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,258.312456457,258.890273438,276.10625,270.882948215,894.0,296.15,77777.0,31336185.0,0.693942910593,-1.83015225364,0.15171875,0.15171875,101325.0,0.234770833333,0.0255321977803,-0.405737106579,2275.67938044,31336037.7658,1.54526412901,5.33614296275,5.55791666667 +31336506,0.0,0.1,0.5,0.2,0.0,12.21375,48.270966199,13.26675,249.286923077,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,257.828265812,258.957234375,275.9725,270.81741084,894.0,296.15,77777.0,31336506.0,0.693942910593,-1.83015225364,0.1149375,0.1149375,101325.0,0.239675,0.0101917922187,-0.405733572422,2275.70271686,31336358.6646,1.56060453458,5.34688508416,5.3885 +31336827,0.0,0.1,0.5,0.2,0.0,11.3889583333,39.1140385842,7.25245833333,247.489871795,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,257.338853148,259.023830729,275.83875,270.751788999,894.0,296.15,77777.0,31336827.0,0.693942910593,-1.83015225364,0.07815625,0.07815625,101325.0,0.244579166667,-0.00516767095097,-0.405730038037,2275.72605327,31336679.5633,1.57596399775,5.35773463587,5.21908333333 +31337148,0.0,0.1,0.5,0.2,0.0,10.4508333333,30.3807334184,2.0235,245.803589744,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,256.873085534,259.089510417,275.705,270.684968768,894.0,296.15,77777.0,31337148.0,0.693942910593,-1.83015225364,0.044375,0.044375,101325.0,0.24935,-0.0205825155998,-0.405726502917,2275.74938969,31337000.4621,1.5913788424,5.36928496372,5.04966666667 +31337469,0.0,0.1,0.5,0.2,0.0,8.868125,24.0567809311,1.261125,244.747307693,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,256.541799145,259.149976563,275.57125,270.611332695,894.0,296.15,77777.0,31337469.0,0.693942910593,-1.83015225364,0.02765625,0.02765625,101325.0,0.2533625,-0.0363123424115,-0.405722963627,2275.7727261,31337321.3608,1.60710866921,5.38482095586,4.88025 +31337790,0.0,0.1,0.5,0.2,0.0,7.28541666667,17.7328284439,0.49875,243.691025641,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,256.210512756,259.210442708,275.4375,270.537696623,894.0,296.15,77777.0,31337790.0,0.693942910593,-1.83015225364,0.0109375,0.0109375,101325.0,0.257375,-0.0520421692232,-0.405719424337,2275.79606252,31337642.2595,1.62283849602,5.400356948,4.71083333333 +31338111,0.0,0.1,0.5,0.2,0.0,5.718125,12.3279767219,0.0,242.857188301,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,255.95785578,259.269174479,275.306158854,270.462770866,894.0,296.15,77777.0,31338111.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.261002083333,-0.067887996704,-0.40571588335,2275.81939893,31337963.1583,1.6386843235,5.4181583221,4.547275 +31338432,0.0,0.1,0.5,0.2,0.0,4.18,8.66196428571,0.0,242.444192308,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,255.853957152,259.324625,275.179375,270.385405166,894.0,296.15,77777.0,31338432.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.2639,-0.08395328491,-0.405712339156,2275.84273535,31338284.057,1.6547496117,5.44024555395,4.3948 +31338753,0.0,0.1,0.5,0.2,0.0,2.641875,4.99595184949,0.0,242.031196314,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,255.750058524,259.380075521,275.052591146,270.308039466,894.0,296.15,77777.0,31338753.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.266797916667,-0.100018573116,-0.405708794961,2275.86607176,31338604.9558,1.67081489991,5.4623327858,4.242325 +31339074,0.0,0.1,0.5,0.2,0.0,1.56291666667,2.67581313776,0.0,241.642459936,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,255.650634997,259.432203125,274.931546875,270.232937315,894.0,296.15,77777.0,31339074.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.269454166667,-0.116248052524,-0.405705248109,2275.88940818,31338925.8545,1.68704437932,5.48705904968,4.10241666667 +31339395,0.0,0.1,0.5,0.2,0.0,0.871875,1.49270567602,0.0,241.27421875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,255.55499216,259.481523438,274.815351562,270.159747471,894.0,296.15,77777.0,31339395.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.27190625,-0.13261624519,-0.40570169901,2275.91274459,31339246.7533,1.70341257198,5.51401484062,3.973125 +31339716,0.0,0.1,0.5,0.2,0.0,0.180833333333,0.309598214286,0.0,240.905977564,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,255.459349323,259.53084375,274.69915625,270.086557627,894.0,296.15,77777.0,31339716.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.274358333333,-0.148984437856,-0.405698149912,2275.936081,31339567.652,1.71978076465,5.54097063156,3.84383333333 +31340037,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,240.562803686,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,255.36605833,259.574403646,274.587075521,270.015979085,894.0,296.15,77777.0,31340037.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.276810416667,-0.165553783633,-0.405694597193,2275.95941742,31339888.5507,1.73635011043,5.56935489843,3.71980833333 +31340358,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,240.228514423,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,255.273600903,259.615921875,274.476453125,269.946326068,894.0,296.15,77777.0,31340358.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.2792625,-0.182194424185,-0.40569104319,2275.98275384,31340209.4495,1.75299075098,5.59824546055,3.59765 +31340679,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,239.89422516,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,255.181143475,259.657440104,274.365830729,269.87667305,894.0,296.15,77777.0,31340679.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.281714583333,-0.198835064736,-0.405687489188,2276.00609026,31340530.3482,1.76963139153,5.62713602268,3.47549166667 +31341000,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,239.581570513,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,255.086923929,259.690104167,274.255729167,269.809436348,894.0,296.15,77777.0,31341000.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.284583333333,-0.215703582659,-0.405683930602,2276.02942667,31340851.247,1.78649990946,5.65509292431,3.345 +31341321,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,239.270430288,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,254.992581036,259.722148437,274.145664063,269.742368788,894.0,296.15,77777.0,31341321.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.28748125,-0.232588051998,-0.405680371696,2276.05276309,31341172.1458,1.8033843788,5.6829844697,3.213925 +31341642,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,238.9601875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,254.898175024,259.7535,274.035720486,269.675671657,894.0,296.15,77777.0,31341642.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.290439322917,-0.24950088357,-0.405676812148,2276.0760995,31341493.0446,1.82029721037,5.71061721957,3.08145583333 +31341963,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,238.65590625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,254.803349727,259.78025,273.926584202,269.611435227,894.0,296.15,77777.0,31341963.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.293797005208,-0.266602121402,-0.405673248338,2276.09943592,31341813.9433,1.8373984482,5.73653082771,2.93972541667 +31342284,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,238.351625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,254.70852443,259.807,273.817447917,269.547198797,894.0,296.15,77777.0,31342284.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.2971546875,-0.283703359233,-0.405669684528,2276.12277234,31342134.8421,1.85449968603,5.76244443586,2.797995 +31342605,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,238.050989583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,254.614616428,259.83375,273.709304109,269.483772972,894.0,296.15,77777.0,31342605.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.300564019097,-0.300867064407,-0.405666119114,2276.14610876,31342455.7409,1.8716633912,5.7880838145,2.65588541667 +31342926,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.757854167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,254.52259543,259.8605,273.603201968,269.422014675,894.0,296.15,77777.0,31342926.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.304079600694,-0.318159273827,-0.405662550401,2276.16944518,31342776.6397,1.88895560062,5.8131590639,2.51299583333 +31343247,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.46471875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,254.430574432,259.88725,273.497099827,269.360256379,894.0,296.15,77777.0,31343247.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.307595182291,-0.335451483247,-0.405658981687,2276.19278159,31343097.5384,1.90624781004,5.83823431329,2.37010625 +31343568,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.187916667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,254.33884556,259.914,273.391321759,269.298698383,894.0,296.15,77777.0,31343568.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.311178819444,-0.352830634922,-0.405655410408,2276.21611801,31343418.4372,1.92362696172,5.86299847583,2.22703 +31343889,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.925989583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,254.24738273,259.94075,273.285838831,269.237322805,894.0,296.15,77777.0,31343889.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.314824435764,-0.370288966151,-0.405651836792,2276.23945444,31343739.3361,1.94108529295,5.88747932712,2.08378375 +31344210,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.6640625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,254.155919899,259.9675,273.180355903,269.175947227,894.0,296.15,77777.0,31344210.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.318470052083,-0.387747297379,-0.405648263175,2276.26279086,31344060.2349,1.95854362418,5.91196017841,1.9405375 +31344531,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.43903125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,254.063241889,259.99425,273.073580729,269.113313912,894.0,296.15,77777.0,31344531.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.322189192708,-0.405307725212,-0.405644686031,2276.28612728,31344381.1337,1.97610405201,5.93618884572,1.79761208333 +31344852,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.228375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,253.970090432,260.021,272.966302083,269.050190569,894.0,296.15,77777.0,31344852.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.325936979167,-0.422907930944,-0.405641107511,2276.3094637,31344702.0325,1.99370425774,5.96031925954,1.65481166667 +31345173,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.01771875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,253.876938975,260.04775,272.859023438,268.987067227,894.0,296.15,77777.0,31345173.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.329684765625,-0.440508136675,-0.405637528991,2276.33280011,31345022.9313,2.01130446347,5.98444967336,1.51201125 +31345494,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.182048611,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,253.972080798,260.0745,272.737708333,268.914893302,894.0,296.15,77777.0,31345494.0,0.693942910593,-1.83015225364,0.0153125,0.0204166666667,101325.0,0.333968489583,-0.458216275202,-0.405633945981,2276.35613653,31345343.8301,2.029012602,5.69864782067,1.354715 +31345815,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.380815972,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,254.08451486,260.10125,272.615104167,268.841888202,894.0,296.15,77777.0,31345815.0,0.693942910593,-1.83015225364,0.03203125,0.0427083333333,101325.0,0.338301432292,-0.475934325925,-0.405630362558,2276.37947295,31345664.7289,2.04673065272,5.38438280064,1.1960875 +31346136,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.631111111,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,254.213003203,260.128,272.490888889,268.767811467,894.0,296.15,77777.0,31346136.0,0.693942910593,-1.83015225364,0.051,0.068,101325.0,0.3427,-0.493662872913,-0.405626778586,2276.40280937,31345985.6278,2.0644591997,5.02397071545,1.03656 +31346457,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.289334491,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,254.468587937,260.15475,272.353918981,268.685250967,894.0,296.15,77777.0,31346457.0,0.693942910593,-1.83015225364,0.08778125,0.117041666667,101325.0,0.347618098958,-0.511474515333,-0.405623190261,2276.42614579,31346306.5266,2.08227084213,4.29822769767,0.8699075 +31346778,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.947557871,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,254.72417267,260.1815,272.216949074,268.602690466,894.0,296.15,77777.0,31346778.0,0.693942910593,-1.83015225364,0.1245625,0.166083333333,101325.0,0.352536197917,-0.529286157753,-0.405619601936,2276.44948221,31346627.4254,2.10008248455,3.57248467988,0.703255 +31347099,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,238.611128472,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,254.947305005,260.20825,272.081506944,268.520625246,894.0,296.15,77777.0,31347099.0,0.693942910593,-1.83015225364,0.16134375,0.215125,101325.0,0.357402734375,-0.547118954785,-0.405616012099,2276.47281863,31346948.3242,2.11791528158,2.84248855166,0.5455125 +31347420,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,239.286689815,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,255.097665296,260.235,271.94949074,268.439670653,894.0,296.15,77777.0,31347420.0,0.693942910593,-1.83015225364,0.198125,0.264166666667,101325.0,0.362153645833,-0.564999189433,-0.405612418872,2276.49615506,31347269.223,2.13579551623,2.10295514547,0.40775 +31347741,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,239.962251157,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,255.248025587,260.26175,271.817474537,268.35871606,894.0,296.15,77777.0,31347741.0,0.693942910593,-1.83015225364,0.23490625,0.313208333333,101325.0,0.366904557292,-0.582879424081,-0.405608825644,2276.51949148,31347590.1218,2.15367575087,1.36342173928,0.2699875 +31348062,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,240.4234375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,255.323806802,260.2885,271.697708333,268.2846238,894.0,296.15,77777.0,31348062.0,0.693942910593,-1.83015225364,0.2615625,0.34875,101325.0,0.37119140625,-0.600780960769,-0.405605229942,2276.5428279,31347911.0207,2.17157728756,0.817630855804,0.165435 +31348383,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,240.67421875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,255.326390036,260.31525,271.589965278,268.217266794,894.0,296.15,77777.0,31348383.0,0.693942910593,-1.83015225364,0.27828125,0.371041666667,101325.0,0.375022786458,-0.618703405014,-0.405601631812,2276.56616432,31348231.9195,2.18949973181,0.461994670556,0.0934775 +31348704,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,240.925,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,255.328973269,260.342,271.482222222,268.149909787,894.0,296.15,77777.0,31348704.0,0.693942910593,-1.83015225364,0.295,0.393333333333,101325.0,0.378854166667,-0.636625849259,-0.405598033682,2276.58950074,31348552.8184,2.20742217605,0.106358485308,0.02152 +31349025,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,240.9140625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,255.286957389,260.3640625,271.40078125,268.098158856,894.0,296.15,77777.0,31349025.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.38166015625,-0.65455785726,-0.405594432116,2276.61283717,31348873.7172,2.22535418405,0.205644468641,0.0151875 +31349346,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,240.791458333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,255.225912554,260.384125,271.3305625,268.053066517,894.0,296.15,77777.0,31349346.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.384028645833,-0.672493945798,-0.405590829084,2276.63617359,31349194.616,2.24329027259,0.499030577234,0.036855 +31349667,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,240.668854167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,255.164867719,260.4041875,271.26034375,268.007974177,894.0,296.15,77777.0,31349667.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.386397135417,-0.690430034335,-0.405587226051,2276.65951002,31349515.5149,2.26122636113,0.792416685828,0.0585225 +31349988,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,240.517361111,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,255.122184758,260.414916667,271.212125,267.976244484,894.0,296.15,77777.0,31349988.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.387915625,-0.708349852823,-0.405583618621,2276.68284644,31349836.4137,2.27914617962,1.43023394592,0.14115 +31350309,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,240.36255787,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,255.08160576,260.424576389,271.166427083,267.946045928,894.0,296.15,77777.0,31350309.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.38933671875,-0.726267807035,-0.405580010687,2276.70618286,31350157.3126,2.29706413383,2.10751727546,0.2307625 +31350630,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,240.204050926,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,255.041280103,260.433680555,271.121145833,267.916125084,894.0,296.15,77777.0,31350630.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.390747395833,-0.74418066899,-0.405576402295,2276.72951928,31350478.2114,2.31497699578,2.78351178365,0.322675 +31350951,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,240.009618055,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,255.003411844,260.437395833,271.07990625,267.888898042,894.0,296.15,77777.0,31350951.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.39205703125,-0.762044136046,-0.405572789459,2276.75285571,31350799.1103,2.33284046284,3.44700472477,0.4368975 +31351272,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,239.815185185,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,254.965543584,260.441111111,271.038666667,267.861671001,894.0,296.15,77777.0,31351272.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.393366666667,-0.779907603103,-0.405569176623,2276.77619214,31351120.0092,2.3507039299,4.1104976659,0.55112 +31351593,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,239.607118055,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,254.92331511,260.444395833,270.99290625,267.831760349,894.0,296.15,77777.0,31351593.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.394886197917,-0.797742894939,-0.405565562367,2276.79952856,31351440.9081,2.36853922174,4.65477735534,0.6599175 +31351914,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,239.365625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,254.870397074,260.446625,270.9360625,267.795270523,894.0,296.15,77777.0,31351914.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.3969203125,-0.815509112041,-0.40556194463,2276.82286499,31351761.807,2.38630543884,4.90679229871,0.755415 +31352235,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,239.124131944,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,254.817479038,260.448854167,270.87921875,267.758780696,894.0,296.15,77777.0,31352235.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.398954427083,-0.833275329144,-0.405558326892,2276.84620141,31352082.7059,2.40407165594,5.15880724209,0.8509125 +31352556,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,238.87,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,254.757909548,260.450975,270.815333333,267.717918632,894.0,296.15,77777.0,31352556.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.4013,-0.850969161465,-0.405554706772,2276.86953784,31352403.6048,2.42176548826,5.2463412778,0.934648095238 +31352877,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,238.6025,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,254.691304865,260.45298125,270.744,267.672432086,894.0,296.15,77777.0,31352877.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.403975,-0.868586432961,-0.405551084134,2276.89287426,31352724.5036,2.43938275976,5.15990512273,1.00594321428 +31353198,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,238.335,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,254.624700183,260.4549875,270.672666667,267.626945541,894.0,296.15,77777.0,31353198.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.40665,-0.886203704457,-0.405547461495,2276.91621069,31353045.4025,2.45700003126,5.07346896766,1.07723833333 +31353519,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,238.0675,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,254.557817791,260.455878472,270.601333333,267.581188272,894.0,296.15,77777.0,31353519.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.409325,-0.903675592444,-0.405543835512,2276.93954711,31353366.3014,2.47447191924,4.98676841122,1.14827273809 +31353840,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.8,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,254.490806054,260.45625,270.53,267.535304912,894.0,296.15,77777.0,31353840.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.412,-0.921079767563,-0.405540207972,2276.96288354,31353687.2003,2.49187609436,4.89994470895,1.21918571428 +31354161,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.5325,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,254.423794318,260.456621528,270.458666667,267.489421553,894.0,296.15,77777.0,31354161.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.414675,-0.938483942683,-0.405536580431,2276.98621996,31354008.0992,2.50928026948,4.81312100668,1.29009869047 +31354482,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.265,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,254.356523059,260.455948611,270.387333333,267.443193305,894.0,296.15,77777.0,31354482.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.41735,-0.955629240079,-0.405532948585,2277.00955639,31354328.9981,2.52642556688,4.72584032504,1.36121309524 +31354803,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.9975,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,254.289215908,260.45513125,270.316,267.396917359,894.0,296.15,77777.0,31354803.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.420025,-0.972738735237,-0.405529316144,2277.03289281,31354649.897,2.54353506203,4.63849644412,1.43235535714 +31355124,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.73,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,254.221894992,260.454258333,270.244666667,267.350612374,894.0,296.15,77777.0,31355124.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.4227,-0.989818265545,-0.405525683336,2277.05622924,31354970.7958,2.56061459234,4.55110375498,1.50356047619 +31355445,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.4625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,254.154403722,260.452697917,270.173333333,267.303948023,894.0,296.15,77777.0,31355445.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.425375,-1.00652698085,-0.405522045994,2277.07956567,31355291.6948,2.57732330764,4.46310706398,1.57554345238 +31355766,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.195,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,254.086912452,260.4511375,270.102,267.257283673,894.0,296.15,77777.0,31355766.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.42805,-1.02323569615,-0.405518408652,2277.1029021,31355612.5937,2.59403202294,4.37511037297,1.64752642857 +31356087,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.9275,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,254.018971781,260.447764583,270.030666667,267.210515175,894.0,296.15,77777.0,31356087.0,0.693942910593,-1.83015225364,0.3,0.401510416667,101325.0,0.430725,-1.03979766077,-0.405514769981,2277.12623853,31355933.4926,2.61059398756,4.28301877009,1.72194419643 +31356408,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.66,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,253.949822379,260.439516667,269.959333333,267.163466554,894.0,296.15,77777.0,31356408.0,0.693942910593,-1.83015225364,0.3,0.407083333333,101325.0,0.4334,-1.05596491663,-0.405511127738,2277.14957496,31356254.3915,2.62676124342,4.17991326629,1.80291071429 +31356729,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.3925,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,253.880672977,260.43126875,269.888,267.116417934,894.0,296.15,77777.0,31356729.0,0.693942910593,-1.83015225364,0.3,0.41265625,101325.0,0.436075,-1.07213217249,-0.405507485495,2277.17291138,31356575.2904,2.64292849928,4.07680776248,1.88387723214 +31357050,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,253.810750107,260.419895833,269.816666667,267.069191659,894.0,296.15,77777.0,31357050.0,0.693942910593,-1.83015225364,0.3,0.421354166667,101325.0,0.43875,-1.0879579453,-0.405503840963,2277.19624781,31356896.1894,2.65875427209,3.96905810802,1.96863839286 +31357371,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.8575,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,253.739945483,260.404960417,269.745333333,267.021762859,894.0,296.15,77777.0,31357371.0,0.693942910593,-1.83015225364,0.3,0.433614583333,101325.0,0.441425,-1.10339442745,-0.405500193819,2277.21958424,31357217.0883,2.67419075424,3.8560141218,2.05772544643 +31357692,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.59,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,253.669140859,260.390025,269.674,266.974334058,894.0,296.15,77777.0,31357692.0,0.693942910593,-1.83015225364,0.3,0.445875,101325.0,0.4441,-1.11883090959,-0.405496546676,2277.24292066,31357537.9872,2.68962723638,3.74297013558,2.1468125 +31358013,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.3225,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,253.598779049,260.376864583,269.602666667,266.926655675,894.0,296.15,77777.0,31358013.0,0.693942910593,-1.83015225364,0.3,0.458135416667,101325.0,0.446775,-1.13361216738,-0.405492896281,2277.26625709,31357858.8862,2.70440849417,3.6427780689,2.23272991072 +31358334,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.055,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,253.528641763,260.364604167,269.531333333,266.878850741,894.0,296.15,77777.0,31358334.0,0.693942910593,-1.83015225364,0.3,0.470395833333,101325.0,0.44945,-1.14806119872,-0.405489244237,2277.28959352,31358179.7851,2.71885752551,3.54910246845,2.31704017857 +31358655,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.7875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,253.458504477,260.35234375,269.46,266.831045808,894.0,296.15,77777.0,31358655.0,0.693942910593,-1.83015225364,0.3,0.48265625,101325.0,0.452125,-1.16251023007,-0.405485592193,2277.31292996,31358500.6841,2.73330655686,3.45542686801,2.40135044643 +31358976,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.52,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,253.390933642,260.350433333,269.388666667,266.782920915,894.0,296.15,77777.0,31358976.0,0.693942910593,-1.83015225364,0.3,0.489166666667,101325.0,0.4548,-1.17581247368,-0.405481935936,2277.33626639,31358821.583,2.74660880047,3.40360288781,2.47046428572 +31359297,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.2525,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,253.32378125,260.350210417,269.317333333,266.734743854,894.0,296.15,77777.0,31359297.0,0.693942910593,-1.83015225364,0.3,0.494739583333,101325.0,0.457475,-1.18892774102,-0.405478278992,2277.35960282,31359142.482,2.75972406782,3.35860254134,2.53710044643 +31359618,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.99859375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,253.260145361,260.3510125,269.24946875,266.688963186,894.0,296.15,77777.0,31359618.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.46003125,-1.20194269019,-0.405474621773,2277.38293924,31359463.3809,2.77273901699,3.31740746696,2.60226339286 +31359939,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.973515625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,253.255703939,260.36906875,269.239994792,266.683521797,894.0,296.15,77777.0,31359939.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.460588541667,-1.21326894988,-0.405470959929,2277.40627567,31359784.2799,2.78406527668,3.34026780607,2.64262723214 +31360260,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.9484375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,253.251262517,260.387125,269.230520833,266.678080408,894.0,296.15,77777.0,31360260.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.461145833333,-1.22459520958,-0.405467298085,2277.4296121,31360105.1788,2.79539153637,3.36312814517,2.68299107143 +31360581,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.009140625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,253.267944754,260.40821875,269.242703125,266.687687774,894.0,296.15,77777.0,31360581.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.460971875,-1.23532811583,-0.405463635005,2277.45294853,31360426.0778,2.80612444262,3.3982117292,2.71889508929 +31360902,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.324010417,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,253.347215609,260.4383125,269.319052083,266.741884045,894.0,296.15,77777.0,31360902.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.45863125,-1.24430293778,-0.405459968261,2277.47628497,31360746.9768,2.81509926457,3.46951233526,2.74158482143 +31361223,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.638880208,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,253.426486464,260.46840625,269.395401042,266.796080317,894.0,296.15,77777.0,31361223.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.456290625,-1.25327775973,-0.405456301517,2277.4996214,31361067.8757,2.82407408653,3.54081294131,2.76427455358 +31361544,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.00875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,253.518288557,260.4997,269.48475,266.859232709,894.0,296.15,77777.0,31361544.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.45355,-1.26092226222,-0.405452632576,2277.52295783,31361388.7747,2.83171858902,3.6210129985,2.78482142857 +31361865,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.446223958,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,253.62549363,260.53246875,269.590078125,266.933393666,894.0,296.15,77777.0,31361865.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.450317708333,-1.26693158038,-0.405448960932,2277.54629426,31361709.6737,2.83772790717,3.71215196438,2.802734375 +31362186,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.883697917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,253.732698703,260.5652375,269.69540625,267.007554624,894.0,296.15,77777.0,31362186.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.447085416667,-1.27294089854,-0.405445289289,2277.56963069,31362030.5727,2.84373722533,3.80329093026,2.82064732143 +31362507,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.260078125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,253.821936652,260.59369375,269.782765625,267.069630837,894.0,296.15,77777.0,31362507.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.444571875,-1.27669720202,-0.405441614486,2277.59296713,31362351.4716,2.84749352881,3.88877863667,2.843796875 +31362828,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.6028125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,253.901279663,260.619775,269.860229167,267.125051685,894.0,296.15,77777.0,31362828.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.442454166667,-1.27921271481,-0.405437937943,2277.61630356,31362672.3706,2.85000904161,3.97115405525,2.86983035714 +31363149,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.945546875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,253.980622673,260.64585625,269.937692708,267.180472533,894.0,296.15,77777.0,31363149.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.440336458333,-1.28172822761,-0.4054342614,2277.63963999,31362993.2696,2.85252455441,4.05352947382,2.89586383929 +31363470,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.1921875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,254.032554693,260.6663125,269.9875,267.217386986,894.0,296.15,77777.0,31363470.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.43925,-1.28108932033,-0.405430580736,2277.66297643,31363314.1685,2.85188564713,4.12420834329,2.92959821429 +31363791,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.420677083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,254.079309081,260.68570625,270.032083333,267.250805788,894.0,296.15,77777.0,31363791.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.438358333333,-1.27985457814,-0.405426899294,2277.68631286,31363635.0675,2.85065090494,4.19267786459,2.96478720238 +31364112,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.64875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,254.126056686,260.705072222,270.076666667,267.284221219,894.0,296.15,77777.0,31364112.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.437466666667,-1.27848444911,-0.405423217669,2277.70964929,31363955.9665,2.84928077591,4.26114782327,3.00001190477 +31364433,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.86609375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,254.172629619,260.723722917,270.12125,267.317549886,894.0,296.15,77777.0,31364433.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.436575,-1.27362810897,-0.405419531328,2277.73298573,31364276.8656,2.84442443577,4.32962904432,3.03615625 +31364754,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.0834375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,254.219202551,260.742373611,270.165833333,267.350878553,894.0,296.15,77777.0,31364754.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.435683333333,-1.26877176882,-0.405415844987,2277.75632216,31364597.7646,2.83956809562,4.39811026538,3.07230059524 +31365075,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.290364583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,254.265707256,260.760746528,270.210416667,267.384186057,894.0,296.15,77777.0,31365075.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.434791666667,-1.26317558347,-0.405412157501,2277.7796586,31364918.6636,2.83397191027,4.46659141941,3.10844494048 +31365396,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.463125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,254.311988173,260.778208334,270.255,267.41742415,894.0,296.15,77777.0,31365396.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.4339,-1.25515270583,-0.405408466261,2277.80299503,31365239.5626,2.82594903263,4.53507235361,3.14458928571 +31365717,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.635885417,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,254.358269091,260.795670139,270.299583333,267.450662242,894.0,296.15,77777.0,31365717.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.433008333333,-1.24712982819,-0.405404775021,2277.82633146,31365560.4616,2.81792615499,4.60355328781,3.18073363095 +31366038,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.775104167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,254.404376907,260.812429167,270.344166667,267.483861206,894.0,296.15,77777.0,31366038.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.432116666667,-1.23800535233,-0.405401081675,2277.8496679,31365881.3606,2.80880167913,4.67202894556,3.2164672619 +31366359,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.86984375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,254.450255178,260.82825625,270.38875,267.517008283,894.0,296.15,77777.0,31366359.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.431225,-1.22742006144,-0.405397385535,2277.87300433,31366202.2596,2.79821638824,4.74049760628,3.25165625 +31366680,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.964583333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,254.496133448,260.844083333,270.433333333,267.55015536,894.0,296.15,77777.0,31366680.0,0.693942910593,-1.83015225364,0.3,0.5,101325.0,0.430333333333,-1.21683477055,-0.405393689396,2277.89634077,31366523.1586,2.78763109735,4.808966267,3.28684523809 +31367001,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.944914434,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,254.502098932,260.858723958,270.477916667,267.583245169,894.0,296.15,77777.0,31367001.0,0.693942910593,-1.83015225364,0.293020833333,0.493020833333,101325.0,0.429441666667,-1.20501460761,-0.40538999019,2277.9196772,31366844.0577,2.7758109344,4.89399920216,3.32258258929 +31367322,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.856941964,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,254.484235887,260.87265625,270.5225,267.616300788,894.0,296.15,77777.0,31367322.0,0.693942910593,-1.83015225364,0.281875,0.481875,101325.0,0.42855,-1.19245720762,-0.405386289153,2277.94301364,31367164.9567,2.76325353441,4.98892125638,3.35864732143 +31367643,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.768969494,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,254.466372843,260.886588542,270.567083333,267.649356408,894.0,296.15,77777.0,31367643.0,0.693942910593,-1.83015225364,0.270729166667,0.470729166667,101325.0,0.427658333333,-1.17989980763,-0.405382588116,2277.96635008,31367485.8557,2.75069613442,5.0838433106,3.39471205357 +31367964,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.498318452,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,254.368360661,260.898381944,270.611666667,267.682336444,894.0,296.15,77777.0,31367964.0,0.693942910593,-1.83015225364,0.248583333333,0.448583333333,101325.0,0.426766666667,-1.16612697708,-0.40537888305,2277.98968651,31367806.7548,2.73692330388,5.19285286415,3.42959821429 +31368285,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.188225446,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,254.253043551,260.909713541,270.65625,267.715300162,894.0,296.15,77777.0,31368285.0,0.693942910593,-1.83015225364,0.2240625,0.4240625,101325.0,0.425875,-1.15209172403,-0.405375177114,2278.01302295,31368127.6539,2.72288805083,5.30490403687,3.46422991071 +31368606,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.875186011,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,254.136980453,260.920975694,270.700833333,267.748262154,894.0,296.15,77777.0,31368606.0,0.693942910593,-1.83015225364,0.199541666667,0.399541666667,101325.0,0.424983333333,-1.138035991,-0.405371471087,2278.03635939,31368448.5529,2.7088323178,5.41627169967,3.49870089285 +31368927,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.407459077,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,253.981752905,260.928592014,270.745416667,267.781133526,894.0,296.15,77777.0,31368927.0,0.693942910593,-1.83015225364,0.175020833333,0.375020833333,101325.0,0.424091666667,-1.12290505868,-0.405367760253,2278.05969582,31368769.4519,2.69370138548,5.49175509132,3.524734375 +31369248,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.939732143,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,253.826525358,260.936208333,270.79,267.814004898,894.0,296.15,77777.0,31369248.0,0.693942910593,-1.83015225364,0.1505,0.3505,101325.0,0.4232,-1.10777412637,-0.405364049419,2278.08303226,31369090.351,2.67857045316,5.56723848297,3.55076785714 +31369569,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.451982887,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,253.690832002,260.942786458,270.834583333,267.846856324,894.0,296.15,77777.0,31369569.0,0.693942910593,-1.83015225364,0.128854166667,0.328854166667,101325.0,0.422308333333,-1.09246892641,-0.405360337532,2278.1063687,31369411.25,2.6632652532,5.62331918626,3.57341294643 +31369890,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.891108631,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,253.626480907,260.945572917,270.879166667,267.879634904,894.0,296.15,77777.0,31369890.0,0.693942910593,-1.83015225364,0.117708333333,0.317708333333,101325.0,0.421416666667,-1.07652727073,-0.4053566218,2278.12970514,31369732.1491,2.64732359752,5.60853789728,3.58368303571 +31370211,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.330234375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,253.562129812,260.948359375,270.92375,267.912413484,894.0,296.15,77777.0,31370211.0,0.693942910593,-1.83015225364,0.1065625,0.3065625,101325.0,0.420525,-1.06058561504,-0.405352906068,2278.15304158,31370053.0481,2.63138194183,5.5937566083,3.593953125 +31370532,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.755119048,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,253.503373184,260.948854167,270.928,267.91866498,894.0,296.15,77777.0,31370532.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.421025520833,-1.0443969977,-0.405349188323,2278.17637801,31370373.9472,2.61519332449,5.55305590343,3.59577678571 +31370853,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.159613095,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,253.452626814,260.946067708,270.8745,267.886934513,894.0,296.15,77777.0,31370853.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.423519401042,-1.02785477619,-0.405345467693,2278.19971445,31370694.8463,2.59865110298,5.47524330761,3.58550669643 +31371174,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.564107143,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,253.401880444,260.94328125,270.821,267.855204046,894.0,296.15,77777.0,31371174.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.42601328125,-1.01131255467,-0.405341747064,2278.22305089,31371015.7453,2.58210888146,5.39743071179,3.57523660714 +31371495,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,231.956994048,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,253.269320766,260.937560764,270.680833333,267.765287933,894.0,296.15,77777.0,31371495.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.431503255208,-0.994500029867,-0.405338023459,2278.24638733,31371336.6444,2.56529635666,5.31961811597,3.555390625 +31371816,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,231.342380952,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,253.083897104,260.929944444,270.484666667,267.637774943,894.0,296.15,77777.0,31371816.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.438929166667,-0.977512847548,-0.405334297932,2278.26972377,31371657.5435,2.54830917434,5.24180552015,3.52935714285 +31372137,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,230.727767857,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,252.898473443,260.922328125,270.2885,267.510261952,894.0,296.15,77777.0,31372137.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.446355078125,-0.960525665228,-0.405330572404,2278.29306021,31371978.4426,2.53132199202,5.16399292434,3.50332366071 +31372458,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,230.097797619,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,252.665384566,260.911725694,270.042166667,267.345817083,894.0,296.15,77777.0,31372458.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.455527864583,-0.94327463499,-0.405326842941,2278.31639665,31372299.3417,2.51407096178,5.08618032852,3.47037946428 +31372779,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,229.464077381,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,252.420656508,260.900394097,269.783583333,267.172353965,894.0,296.15,77777.0,31372779.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.465127213542,-0.925959176773,-0.405323112516,2278.33973309,31372620.2407,2.49675550357,5.0083677327,3.43574776786 +31373100,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,228.830357143,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,252.175928451,260.8890625,269.525,266.998890847,894.0,296.15,77777.0,31373100.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.4747265625,-0.908643718556,-0.405319382091,2278.36306953,31372941.1398,2.47944004535,4.93055513688,3.40111607143 +31373421,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,228.177529762,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,251.947262552,260.875130208,269.28425,266.833444354,894.0,296.15,77777.0,31373421.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.483740755208,-0.891089073563,-0.405315646769,2278.38640597,31373262.0389,2.46188540036,4.85274254106,3.36505133929 +31373742,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,227.524702381,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,251.718596654,260.861197917,269.0435,266.66799786,894.0,296.15,77777.0,31373742.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.492754947917,-0.87353442857,-0.405311911447,2278.40974241,31373582.938,2.44433075537,4.77492994524,3.32898660714 +31374063,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.866397059,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,251.496402624,260.8469375,268.80975,266.506913226,894.0,296.15,77777.0,31374063.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.501545703125,-0.855946479278,-0.405308175164,2278.43307885,31373903.8371,2.42674280607,4.69711734943,3.29305859375 +31374384,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.185658263,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,251.300712439,260.831333333,268.604666667,266.363691445,894.0,296.15,77777.0,31374384.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.509421428571,-0.838222140948,-0.405304434945,2278.45641529,31374224.7362,2.40901846774,4.61930475361,3.25769047619 +31374705,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,225.504919468,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,251.105022253,260.815729167,268.399583333,266.220469663,894.0,296.15,77777.0,31374705.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.517297154018,-0.820497802619,-0.405300694727,2278.47975174,31374545.6353,2.39129412941,4.5414921578,3.22232235863 +31375026,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,224.812710084,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,250.909195663,260.799541667,268.1945,266.076322915,894.0,296.15,77777.0,31375026.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.525221316964,-0.802728646999,-0.405296952585,2278.50308818,31374866.5344,2.3735249738,4.46367956198,3.18653236607 +31375347,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,224.1027486,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,250.713157969,260.782451389,267.989416667,265.930744671,894.0,296.15,77777.0,31375347.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.533220442708,-0.784890131287,-0.40529320747,2278.52642462,31375187.4335,2.35568645809,4.38586696616,3.15008947173 +31375668,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,223.392787115,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,250.517120275,260.765361111,267.784333333,265.785166428,894.0,296.15,77777.0,31375668.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.541219568452,-0.767051615575,-0.405289462354,2278.54976106,31375508.3327,2.33784794237,4.30805437034,3.11364657738 +31375989,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,222.672237395,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,250.320879147,260.747395833,267.57925,265.638129508,894.0,296.15,77777.0,31375989.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.549270256696,-0.749172664618,-0.405285714355,2278.5730975,31375829.2318,2.31996899142,4.23024177453,3.07734430804 +31376310,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,221.944292717,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,250.124495937,260.728819444,267.374166667,265.490073831,894.0,296.15,77777.0,31376310.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.557356956845,-0.731265473173,-0.405281964343,2278.59643394,31376150.1309,2.30206179997,4.15242917871,3.04114025298 +31376631,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,221.21634804,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,249.928112727,260.710243056,267.169083333,265.342018153,894.0,296.15,77777.0,31376631.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.565443656994,-0.713358281727,-0.40527821433,2278.61977039,31376471.03,2.28415460853,4.07461658289,3.00493619792 +31376952,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,220.483109244,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,249.731459813,260.6905,266.964,265.191940373,894.0,296.15,77777.0,31376952.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.573570982143,-0.695427254016,-0.405274460474,2278.64310683,31376791.9291,2.26622358081,3.99680398707,2.96995089286 +31377273,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,219.748420869,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,249.534733052,260.6704375,266.758916667,265.041308921,894.0,296.15,77777.0,31377273.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.581709430804,-0.677489699709,-0.405270705564,2278.66644327,31377112.8283,2.24828602651,3.91899139125,2.93529929316 +31377594,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,219.013732493,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,249.338006291,260.650375,266.553833333,264.890677469,894.0,296.15,77777.0,31377594.0,0.693942910593,-1.83015225364,0.1,0.3,101325.0,0.589847879464,-0.659552145401,-0.405266950655,2278.68977971,31377433.7274,2.2303484722,3.84117879543,2.90064769345 +31377915,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,217.872794118,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,249.08404473,260.62375,266.34875,264.749622136,894.0,296.15,77777.0,31377915.0,0.693942910593,-1.83015225364,0.09453125,0.28359375,101325.0,0.6010625,-0.641617344027,-0.405263190941,2278.71311616,31377754.6265,2.21241367082,3.75907105341,2.86513671875 +31378236,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,216.724117647,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,248.828992983,260.597,266.143666667,264.608749205,894.0,296.15,77777.0,31378236.0,0.693942910593,-1.83015225364,0.0889583333333,0.266875,101325.0,0.612335714286,-0.62368259509,-0.405259431136,2278.73645261,31378075.5257,2.19447892188,3.67688149908,2.829609375 +31378557,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,215.506519608,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,248.55971118,260.569194444,265.938583333,264.469245156,894.0,296.15,77777.0,31378557.0,0.693942910593,-1.83015225364,0.0821979166667,0.24659375,101325.0,0.624129166667,-0.605753587739,-0.405255670462,2278.75978905,31378396.4248,2.17654991453,3.59417380012,2.79423046875 +31378878,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.969705882,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,248.224521752,260.5365,265.7335,264.336081188,894.0,296.15,77777.0,31378878.0,0.693942910593,-1.83015225364,0.0699375,0.2098125,101325.0,0.638332142857,-0.587851172996,-0.40525190576,2278.7831255,31378717.324,2.15864749979,3.50906627344,2.7595390625 +31379199,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.432892157,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,247.889332324,260.503805555,265.528416667,264.202917221,894.0,296.15,77777.0,31379199.0,0.693942910593,-1.83015225364,0.0576770833333,0.17303125,101325.0,0.652535119048,-0.569948758253,-0.405248141058,2278.80646194,31379038.2231,2.14074508505,3.42395874677,2.72484765625 +31379520,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.998039215,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,247.54845301,260.472222222,265.323333333,264.065364125,894.0,296.15,77777.0,31379520.0,0.693942910593,-1.83015225364,0.0454166666667,0.13625,101325.0,0.665976190477,-0.552068532247,-0.405244374527,2278.82979839,31379359.1223,2.12286485904,3.34103288165,2.69328125 +31379841,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.733970588,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,247.198043135,260.4425,265.11825,263.920459238,894.0,296.15,77777.0,31379841.0,0.693942910593,-1.83015225364,0.03315625,0.09946875,101325.0,0.678141071429,-0.534225472376,-0.40524060493,2278.85313483,31379680.0214,2.10502179917,3.26176129966,2.66694921875 +31380162,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,208.469901961,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.847633261,260.412777778,264.913166667,263.775554351,894.0,296.15,77777.0,31380162.0,0.693942910593,-1.83015225364,0.0208958333333,0.0626875,101325.0,0.690305952381,-0.516382412504,-0.405236835332,2278.87647128,31380000.9206,2.0871787393,3.18248971768,2.6406171875 +31380483,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,207.738088235,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.542982742,260.389833333,264.708083333,263.614433018,894.0,296.15,77777.0,31380483.0,0.693942910593,-1.83015225364,0.0124479166667,0.03734375,101325.0,0.698476785715,-0.498587660924,-0.405233062944,2278.89980773,31380321.8197,2.06938398772,3.1115357204,2.62333984375 +31380804,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,207.407647059,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.272839277,260.372,264.503,263.44108289,894.0,296.15,77777.0,31380804.0,0.693942910593,-1.83015225364,0.006875,0.020625,101325.0,0.703635714286,-0.480829338546,-0.405229288451,2278.92314417,31380642.7189,2.05162566534,3.04685400013,2.612890625 +31381125,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,207.077205882,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.002695812,260.354166667,264.297916667,263.267732762,894.0,296.15,77777.0,31381125.0,0.693942910593,-1.83015225364,0.00130208333333,0.00390625,101325.0,0.708794642857,-0.463071016168,-0.405225513958,2278.94648062,31380963.6181,2.03386734296,2.98217227986,2.60244140625 +31381446,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,207.273333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,245.890204128,260.343166667,264.19871441,263.169745008,894.0,296.15,77777.0,31381446.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.707352083333,-0.44539635584,-0.405221735713,2278.96981707,31381284.5173,2.01619268263,2.93314398131,2.6 +31381767,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,207.63,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,245.825777012,260.33425,264.131792969,263.094733587,894.0,296.15,77777.0,31381767.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.703896875,-0.427747202233,-0.405217956324,2278.99315351,31381605.4165,1.99854352903,2.88888806744,2.6 +31382088,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,207.986666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,245.761349896,260.325333333,264.064871528,263.019722165,894.0,296.15,77777.0,31382088.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.700441666667,-0.410098048626,-0.405214176936,2279.01648996,31381926.3157,1.98089437542,2.84463215357,2.6 +31382409,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,208.343333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,245.872637718,260.316416667,264.186753617,263.105179922,894.0,296.15,77777.0,31382409.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.692480208333,-0.392577121563,-0.405210392835,2279.03982641,31382247.2148,1.96337344836,2.81442068602,2.6 +31382730,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,208.7,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,245.990749422,260.3075,264.315967882,263.196869492,894.0,296.15,77777.0,31382730.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.68434375,-0.375061174171,-0.405206608551,2279.06316285,31382568.114,1.94585750096,2.78475463387,2.6 +31383051,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.056666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.120075741,260.298583333,264.457233652,263.298678574,894.0,296.15,77777.0,31383051.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.675994791667,-0.357570220944,-0.405202823489,2279.0864993,31382889.0132,1.92836654774,2.75601578788,2.6 +31383372,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.413333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.30877356,260.289666667,264.662301505,263.454061545,894.0,296.15,77777.0,31383372.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.666520833333,-0.340211589771,-0.40519903431,2279.10983575,31383209.9124,1.91100791656,2.73218568041,2.6 +31383693,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.77,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.497471378,260.28075,264.867369358,263.609444516,894.0,296.15,77777.0,31383693.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.657046875,-0.322852958598,-0.40519524513,2279.13317219,31383530.8116,1.89364928539,2.70835557294,2.6 +31384014,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.126666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.671482146,260.271833333,265.056658854,263.752102678,894.0,296.15,77777.0,31384014.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.648285416667,-0.305558927782,-0.405191454213,2279.15650864,31383851.7108,1.87635525458,2.68348917623,2.6 +31384335,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.483333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.818824322,260.262916667,265.217298177,263.871655266,894.0,296.15,77777.0,31384335.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.640817708333,-0.288382197616,-0.405187660139,2279.17984509,31384172.61,1.85917852441,2.65674109641,2.6 +31384656,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.84,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.966166498,260.254,265.3779375,263.991207855,894.0,296.15,77777.0,31384656.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.63335,-0.27120546745,-0.405183866065,2279.20318154,31384493.5092,1.84200179425,2.6299930166,2.6 +31384977,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.196666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.081537769,260.245083333,265.504226004,264.083022035,894.0,296.15,77777.0,31384977.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.62705,-0.254143052649,-0.405180069291,2279.22651799,31384814.4084,1.82493937944,2.60083147368,2.6 +31385298,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.553333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.170898812,260.236166667,265.60256808,264.152269373,894.0,296.15,77777.0,31385298.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.6217,-0.237173640177,-0.405176270322,2279.24985444,31385135.3076,1.80796996697,2.56970643535,2.6 +31385619,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.91,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.260259855,260.22725,265.700910156,264.221516711,894.0,296.15,77777.0,31385619.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.61635,-0.220204227706,-0.405172471353,2279.27319088,31385456.2068,1.7910005545,2.53858139702,2.6 +31385940,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.266666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.349564962,260.218333333,265.799196015,264.290116841,894.0,296.15,77777.0,31385940.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.611,-0.203409687446,-0.405168668725,2279.29652733,31385777.1061,1.77420601424,2.5074563587,2.6 +31386261,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.623333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.438851191,260.209416667,265.897462901,264.358498539,894.0,296.15,77777.0,31386261.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.60565,-0.186674166557,-0.405164864861,2279.31986378,31386098.0053,1.75747049335,2.47633132037,2.6 +31386582,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.98,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.528137421,260.2005,265.995729786,264.426880237,894.0,296.15,77777.0,31386582.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.6003,-0.169938645668,-0.405161060997,2279.34320023,31386418.9045,1.74073497246,2.44520628204,2.6 +31386903,0.0,0.1,0.5,0.2,0.0,0.414759450173,0.435509133455,0.0,213.336666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.61722483,260.191583333,266.093787926,264.494307972,894.0,296.15,77777.0,31386903.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.59495,-0.153450362431,-0.405157252513,2279.36653669,31386739.8038,1.72424668923,2.41408124371,2.6 +31387224,0.0,0.1,0.5,0.2,0.0,0.854158075604,0.89689009662,0.0,213.693333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.706300429,260.182666667,266.191833664,264.561679035,894.0,296.15,77777.0,31387224.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5896,-0.13697676658,-0.405153443756,2279.38987314,31387060.703,1.70777309338,2.38295620539,2.6 +31387545,0.0,0.1,0.5,0.2,0.0,1.4012886598,1.50555744264,0.0,214.05,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.795327462,260.17375,266.289827939,264.628888442,894.0,296.15,77777.0,31387545.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.58425,-0.120544063639,-0.405149634312,2279.41320959,31387381.6022,1.69134039043,2.35183116706,2.6 +31387866,0.0,0.1,0.5,0.2,0.0,2.60917525773,3.01758127013,0.0,214.406666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.884056627,260.164833333,266.387506573,264.695106354,894.0,296.15,77777.0,31387866.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5789,-0.104362170542,-0.405145820659,2279.43654605,31387702.5015,1.67515849734,2.32070612873,2.6 +31388187,0.0,0.1,0.5,0.2,0.0,3.81706185567,4.52960509763,0.0,214.763333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.972785792,260.155916667,266.485185206,264.761324266,894.0,296.15,77777.0,31388187.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.57355,-0.0881802774447,-0.405142007007,2279.4598825,31388023.4007,1.65897660424,2.28958109041,2.6 +31388508,0.0,0.1,0.5,0.2,0.0,5.22783505155,6.45965428744,0.36,215.241875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.124085089,260.1395,266.574254464,264.819433627,894.0,296.15,77777.0,31388508.0,0.693942910593,-1.83015225364,0.005625,0.0075,101325.0,0.568171875,-0.0721072233807,-0.405138191708,2279.48321895,31388344.3,1.64290355018,2.25845605208,2.6 +31388829,0.0,0.1,0.5,0.2,0.0,7.03874570447,9.21414238626,1.43,215.96078125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.398786592,260.108291667,266.646344122,264.861551121,894.0,296.15,77777.0,31388829.0,0.693942910593,-1.83015225364,0.02234375,0.0297916666667,101325.0,0.56273828125,-0.056248824076,-0.405134373161,2279.5065554,31388665.1992,1.62704515087,2.22733101375,2.6 +31389150,0.0,0.1,0.5,0.2,0.0,8.84965635739,11.9686304851,2.5,216.6796875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.673488095,260.077083333,266.71843378,264.903668616,894.0,296.15,77777.0,31389150.0,0.693942910593,-1.83015225364,0.0390625,0.0520833333333,101325.0,0.5573046875,-0.0403904247712,-0.405130554615,2279.52989185,31388986.0985,1.61118675157,2.19620597542,2.6 +31389471,0.0,0.1,0.5,0.2,0.0,10.8936597938,15.4871773098,5.47,217.65390625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.017902924,260.034791667,266.780047991,264.935992541,894.0,296.15,77777.0,31389471.0,0.693942910593,-1.83015225364,0.06646875,0.088625,101325.0,0.55184140625,-0.0247224963171,-0.405126733462,2279.5532283,31389306.9977,1.59551882311,2.1650809371,2.6 +31389792,0.0,0.1,0.5,0.2,0.0,13.1421305842,19.6759510869,10.1066666667,218.852083333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.423469794,259.982777778,266.832473214,264.959725615,894.0,296.15,77777.0,31389792.0,0.693942910593,-1.83015225364,0.10325,0.137666666667,101325.0,0.546352083333,-0.00922164755643,-0.405122910022,2279.57656475,31389627.897,1.58001797435,2.13395589877,2.6 +31390113,0.0,0.1,0.5,0.2,0.0,15.3906013746,23.8647248641,14.7433333333,220.050260417,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.829036663,259.930763889,266.884898438,264.983458689,894.0,296.15,77777.0,31390113.0,0.693942910593,-1.83015225364,0.14003125,0.186708333333,101325.0,0.540862760417,0.00627920120423,-0.405119086582,2279.59990121,31389948.7962,1.56451712559,2.10283086044,2.6 +31390434,0.0,0.1,0.5,0.2,0.0,20.1659471649,46.1409291405,22.7826230469,221.3296875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,250.177954347,259.889583334,266.956939732,265.024599009,894.0,296.15,77777.0,31390434.0,0.693942910593,-1.83015225364,0.1768125,0.23575,101325.0,0.5354546875,0.021492758838,-0.405115259574,2279.62323766,31390269.6955,1.54930356796,2.07170582211,2.6 +31390755,0.0,0.1,0.5,0.2,0.0,25.880772122,75.1419473204,32.0869905599,222.639322917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,250.505810155,259.852430556,267.036274182,265.072211252,894.0,296.15,77777.0,31390755.0,0.693942910593,-1.83015225364,0.21359375,0.284791666667,101325.0,0.530076822917,0.036599503104,-0.40511143124,2279.64657411,31390590.5948,1.53419682369,2.04058078379,2.6 +31391076,0.0,0.1,0.5,0.2,0.0,31.595597079,104.1429655,41.3913580729,223.948958333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,250.833665962,259.815277778,267.115608631,265.119823496,894.0,296.15,77777.0,31391076.0,0.693942910593,-1.83015225364,0.250375,0.333833333333,101325.0,0.524698958333,0.05170624737,-0.405107602906,2279.66991057,31390911.494,1.51909007943,2.00945574546,2.6 +31391397,0.0,0.1,0.5,0.2,0.0,40.8862016752,161.119183198,54.042368164,225.02140625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,251.0825566,259.824875,267.26293192,265.227863253,894.0,296.15,77777.0,31391397.0,0.693942910593,-1.83015225364,0.26859375,0.358125,101325.0,0.51957890625,0.0664120337419,-0.405103770044,2279.69324702,31391232.3933,1.50438429305,1.97833070713,2.6 +31391718,0.0,0.1,0.5,0.2,0.0,50.4657581615,220.35602308,66.9638140191,226.0746875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,251.325066213,259.83825,267.415749256,265.34078604,894.0,296.15,77777.0,31391718.0,0.693942910593,-1.83015225364,0.2853125,0.380416666667,101325.0,0.5144796875,0.0810854194759,-0.405099936817,2279.71658348,31391553.2926,1.48971090732,1.9472056688,2.6 +31392039,0.0,0.1,0.5,0.2,0.0,60.0153833763,280.017619247,80.0192603081,227.0975,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,251.563609927,259.858381324,267.574916667,265.459314754,894.0,296.15,77777.0,31392039.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.509427864583,0.095701037163,-0.405096102995,2279.73991993,31391874.1919,1.47509528963,1.91712308811,2.60349544271 +31392360,0.0,0.1,0.5,0.2,0.0,69.3485824742,342.750530097,94.0436328124,227.9,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,251.773477137,259.927366072,267.78,265.618378625,894.0,296.15,77777.0,31392360.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.50471875,0.109898947434,-0.405092264875,2279.76325639,31392195.0912,1.46089737936,1.89457827798,2.632265625 +31392681,0.0,0.1,0.5,0.2,0.0,78.6817815722,405.483440948,108.068005317,228.7025,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,251.983344346,259.996350819,267.985083333,265.777442496,894.0,296.15,77777.0,31392681.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.500009635417,0.124096857705,-0.405088426754,2279.78659285,31392515.9905,1.44669946908,1.87203346785,2.66103580729 +31393002,0.0,0.1,0.5,0.2,0.0,86.6303715636,460.830509631,121.643951172,229.505,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,252.195206265,260.073338046,268.190166667,265.936312559,894.0,296.15,77777.0,31393002.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.4953890625,0.138129355632,-0.405084587078,2279.8099293,31392836.8898,1.43266697116,1.85344915263,2.70251171875 +31393323,0.0,0.1,0.5,0.2,0.0,91.6061243557,500.319740719,134.257098633,230.3075,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,252.411350943,260.167507069,268.39525,266.094766505,894.0,296.15,77777.0,31393323.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.49095859375,0.151806703526,-0.405080744065,2279.83326576,31393157.7891,1.41898962327,1.84336825294,2.77126757813 +31393644,0.0,0.1,0.5,0.2,0.0,96.5818771478,539.808971808,146.870246094,231.11,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,252.62749562,260.261676091,268.600333333,266.25322045,894.0,296.15,77777.0,31393644.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.486528125,0.165484051419,-0.405076901051,2279.85660221,31393478.6883,1.40531227537,1.83328735325,2.8400234375 +31393965,0.0,0.1,0.5,0.2,0.0,99.5530713058,568.189880056,158.779487305,231.9125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,252.844634719,260.359746404,268.805416667,266.410986431,894.0,296.15,77777.0,31393965.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.482154947917,0.178869102246,-0.405073055522,2279.87993867,31393799.5876,1.39192722455,1.82599196788,2.91579752604 +31394286,0.0,0.1,0.5,0.2,0.0,100.629046392,586.068373982,170.023217152,232.715,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.062713999,260.461505208,269.0105,266.568101972,894.0,296.15,77777.0,31394286.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.4778359375,0.191977799483,-0.405069207615,2279.90327512,31394120.487,1.37881852731,1.82133015968,2.99820703125 +31394607,0.0,0.1,0.5,0.2,0.0,101.705021477,603.946867909,181.266946999,233.5175,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.280793279,260.563264013,269.215583333,266.725217513,894.0,296.15,77777.0,31394607.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.473516927083,0.20508649672,-0.405065359708,2279.92661158,31394441.3863,1.36570983007,1.81666835149,3.08061653646 +31394928,0.0,0.1,0.5,0.2,0.0,102.319381443,619.889547518,192.505706439,234.32,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.497156945,260.657916667,269.420666667,266.880790104,894.0,296.15,77777.0,31394928.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.469158333333,0.217755053315,-0.405061508326,2279.94994804,31394762.2856,1.35304127348,1.81085182099,3.15402083333 +31395249,0.0,0.1,0.5,0.2,0.0,102.745451031,635.042618654,203.742438476,235.1225,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.712820821,260.749670759,269.62575,267.035733333,894.0,296.15,77777.0,31395249.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.46478359375,0.230244078859,-0.405057655527,2279.9732845,31395083.185,1.34055224793,1.80456428535,3.22375195312 +31395570,0.0,0.1,0.5,0.2,0.0,103.171520618,650.19568979,214.979170513,235.925,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.928484698,260.841424851,269.830833333,267.190676562,894.0,296.15,77777.0,31395570.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.460408854167,0.242733104403,-0.405053802728,2279.99662095,31395404.0843,1.32806322239,1.7982767497,3.29348307292 +31395891,0.0,0.1,0.5,0.2,0.0,103.078423539,662.097342807,225.726160481,236.7275,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,254.141719871,260.923154547,270.035916667,267.34345215,894.0,296.15,77777.0,31395891.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.455958333333,0.254611638278,-0.405049945493,2280.01995741,31395724.9836,1.31618468852,1.7891740503,3.34887890625 +31396212,0.0,0.1,0.5,0.2,0.0,102.931804124,673.663798078,236.422661576,237.53,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,254.354704664,261.003850799,270.241,267.49600427,894.0,296.15,77777.0,31396212.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.4515,0.266427234867,-0.405046087802,2280.04329387,31396045.8829,1.30436909193,1.77978112783,3.402796875 +31396533,0.0,0.1,0.5,0.2,0.0,102.734248282,684.773001964,247.008806552,238.3325,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,254.567686412,261.084512159,270.446083333,267.648347717,894.0,296.15,77777.0,31396533.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.447041666667,0.278167829157,-0.405042229607,2280.06663033,31396366.7823,1.29262849764,1.77039583548,3.45662890625 +31396854,0.0,0.1,0.5,0.2,0.0,102.092156357,691.891648295,256.631843572,239.135,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,254.780641598,261.164869009,270.651166667,267.798870018,894.0,296.15,77777.0,31396854.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.442583333333,0.289253857931,-0.405038367022,2280.08996678,31396687.6816,1.28154246887,1.76107713321,3.5097109375 +31397175,0.0,0.1,0.5,0.2,0.0,101.450064433,699.010294627,266.254880593,239.9375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,254.993596784,261.245225858,270.85625,267.949392319,894.0,296.15,77777.0,31397175.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.438125,0.300339886704,-0.405034504438,2280.11330324,31397008.5809,1.27045644009,1.75175843094,3.56279296875 +31397496,0.0,0.1,0.5,0.2,0.0,100.767972509,705.025450323,275.481226725,240.74,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,255.206547696,261.3255,271.061333333,268.099293319,894.0,296.15,77777.0,31397496.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.433666666667,0.311190387804,-0.405030640391,2280.1366397,31397329.4803,1.259605939,1.74244520183,3.615875 +31397817,0.0,0.1,0.5,0.2,0.0,99.9921305842,708.454299839,283.777828587,241.5425,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,255.419488589,261.405580298,271.266416667,268.247738145,894.0,296.15,77777.0,31397817.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.429208333333,0.321488870917,-0.405026772914,2280.15997615,31397650.3796,1.24930745588,1.73314480043,3.66895703125 +31398138,0.0,0.1,0.5,0.2,0.0,99.2162886598,711.883149355,292.074430449,242.345,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,255.632429482,261.485660597,271.4715,268.396182972,894.0,296.15,77777.0,31398138.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.42475,0.331787354031,-0.405022905438,2280.18331261,31397971.279,1.23900897276,1.72384439904,3.7220390625 +31398459,0.0,0.1,0.5,0.2,0.0,98.4355899198,714.721403831,299.890568639,243.1475,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,255.845370898,261.565635045,271.676583333,268.543574783,894.0,296.15,77777.0,31398459.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.420291666667,0.341666490199,-0.405019035538,2280.20664907,31398292.1783,1.22912983659,1.7145253642,3.77553515625 +31398780,0.0,0.1,0.5,0.2,0.0,97.6499427262,716.957919966,307.217177802,243.95,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,256.058312847,261.645501645,271.881666667,268.68989371,894.0,296.15,77777.0,31398780.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.415833333333,0.351118367214,-0.40501516317,2280.22998553,31398613.0777,1.21967795958,1.70518734434,3.829453125 +31399101,0.0,0.1,0.5,0.2,0.0,96.8642955326,719.194436101,314.543786966,244.7525,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,256.271254797,261.725368245,272.08675,268.836212637,894.0,296.15,77777.0,31399101.0,0.693942910593,-1.83015225364,0.3,0.4,101325.0,0.411375,0.360570244228,-0.405011290802,2280.25332199,31398933.977,1.21022608256,1.69584932448,3.88337109375 +31399422,0.0,0.1,0.5,0.2,0.0,95.87860252,721.815233895,321.462977364,245.828645833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,256.552123393,261.813025767,272.297229167,268.987444626,894.0,296.15,75600.2822917,31399422.0,0.693942910593,-1.83015225364,0.3115625,0.4115625,101325.0,0.407244270833,0.369395706067,-0.40500741505,2280.27665845,31399254.8764,1.20140062072,1.68604831354,3.93203776042 +31399743,0.0,0.1,0.5,0.2,0.0,94.8036998854,724.607400537,328.200481015,247.026822917,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,256.863283603,261.90415762,272.510114583,269.140867574,894.0,296.15,72452.8661458,31399743.0,0.693942910593,-1.83015225364,0.32828125,0.42828125,101325.0,0.403259635417,0.377941820599,-0.40500353779,2280.29999492,31399575.7757,1.19285450619,1.6760408336,3.97836263021 +31400064,0.0,0.1,0.5,0.2,0.0,93.7287972509,727.39956718,334.937984666,248.225,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,257.174443812,261.995289473,272.723,269.294290523,894.0,296.15,69305.45,31400064.0,0.693942910593,-1.83015225364,0.345,0.445,101325.0,0.399275,0.38648793513,-0.40499966053,2280.32333138,31399896.6751,1.18430839166,1.66603335366,4.0246875 +31400385,0.0,0.1,0.5,0.2,0.0,92.1489690722,732.237016699,341.490621577,249.789322917,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,257.566832735,262.090640076,272.935225695,269.448631444,894.0,296.15,62804.7119792,31400385.0,0.693942910593,-1.83015225364,0.37953125,0.47953125,101325.0,0.395834635417,0.394178342123,-0.404995778927,2280.34666784,31400217.5745,1.17661798467,1.65520244666,4.06841471354 +31400706,0.0,0.1,0.5,0.2,0.0,90.5053608247,737.332817739,348.0199069,251.399895833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,257.969482128,262.186523574,273.147368056,269.603088319,894.0,296.15,55880.3964583,31400706.0,0.693942910593,-1.83015225364,0.4163125,0.5163125,101325.0,0.392463020833,0.401760659743,-0.404991896775,2280.3700043,31400538.4739,1.16903566705,1.64426752781,4.11181380208 +31401027,0.0,0.1,0.5,0.2,0.0,88.80375,742.677024348,354.536483133,252.99734375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,258.370733729,262.280541941,273.357385417,269.755709393,894.0,296.15,48956.0809375,31401027.0,0.693942910593,-1.83015225364,0.45309375,0.55309375,101325.0,0.38910078125,0.409257243428,-0.404988014211,2280.39334076,31400859.3732,1.16153908337,1.6332970662,4.15668945312 +31401348,0.0,0.1,0.5,0.2,0.0,86.4705555555,750.726091595,360.914671486,254.451875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,258.756764923,262.354251096,273.544263889,269.888340636,894.0,296.15,42031.7654167,31401348.0,0.693942910593,-1.83015225364,0.489875,0.589875,101325.0,0.385840625,0.415820279826,-0.404984127169,2280.41667722,31401180.2726,1.15497604697,1.62193958333,4.21764322917 +31401669,0.0,0.1,0.5,0.2,0.0,84.1373611111,758.775158843,367.292859839,255.90640625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,259.142796118,262.427960252,273.731142361,270.02097188,894.0,296.15,35107.4498958,31401669.0,0.693942910593,-1.83015225364,0.52665625,0.62665625,101325.0,0.38258046875,0.422383316225,-0.404980240126,2280.44001368,31401501.172,1.14841301058,1.61058210047,4.27859700521 +31401990,0.0,0.1,0.5,0.2,0.0,81.7013888889,767.205359662,373.567851405,257.1578125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,259.487231602,262.48790296,273.9040625,270.14111815,894.0,296.15,29242.078125,31401990.0,0.693942910593,-1.83015225364,0.5578125,0.6578125,101325.0,0.3792109375,0.428646177289,-0.404976351711,2280.46335014,31401822.0714,1.14215014951,1.59924769541,4.35021484375 +31402311,0.0,0.1,0.5,0.2,0.0,79.0016203704,776.613803317,379.577971218,257.887864583,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,259.724904759,262.512511787,274.04115625,270.229219655,894.0,296.15,26094.6619792,31402311.0,0.693942910593,-1.83015225364,0.57453125,0.67453125,101325.0,0.375560677083,0.434138588329,-0.404972459777,2280.48668661,31402142.9708,1.13665773847,1.5879725234,4.44920377604 +31402632,0.0,0.1,0.5,0.2,0.0,76.3018518519,786.022246971,385.588091031,258.617916667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,259.962577916,262.537120614,274.17825,270.317321161,894.0,296.15,22947.2458333,31402632.0,0.693942910593,-1.83015225364,0.59125,0.69125,101325.0,0.371910416667,0.439630999369,-0.404968567843,2280.51002307,31402463.8702,1.13116532742,1.57669735139,4.54819270833 +31402953,0.0,0.1,0.5,0.2,0.0,73.6115277778,795.307755784,391.408357028,259.085,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,260.119991791,262.529770559,274.2901625,270.382263167,894.0,296.15,21300.0,31402953.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.36791484375,0.444591411025,-0.404964673578,2280.53335954,31402784.7696,1.12620491576,1.54756868115,4.6595 +31403274,0.0,0.1,0.5,0.2,0.0,70.9315740741,804.458277321,397.020156091,259.263333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,260.189277825,262.487328399,274.374425,270.421775134,894.0,296.15,21300.0,31403274.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.363540104167,0.448967666496,-0.404960776752,2280.556696,31403105.669,1.12182866029,1.4988361697,4.78433333333 +31403595,0.0,0.1,0.5,0.2,0.0,68.2516203704,813.608798859,402.631955154,259.441666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,260.25856386,262.444886239,274.4586875,270.461287101,894.0,296.15,21300.0,31403595.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.359165364583,0.453343921966,-0.404956879927,2280.58003246,31403426.5684,1.11745240482,1.45010365826,4.90916666667 +31403916,0.0,0.1,0.5,0.2,0.0,65.845,821.497489683,407.955368674,259.62,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,260.302286116,262.369404605,274.52475,270.483902564,894.0,296.15,21300.0,31403916.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.354528125,0.4569435059,-0.40495297981,2280.60336892,31403747.4678,1.11385282089,1.37054983359,5.034 +31404237,0.0,0.1,0.5,0.2,0.0,63.57125,828.772790577,413.138594779,259.798333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,260.333581534,262.277862116,274.581965278,270.498304448,894.0,296.15,21300.0,31404237.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.34976328125,0.460165541171,-0.404949078095,2280.62670539,31404068.3672,1.11063078562,1.27601342611,5.15883333333 +31404558,0.0,0.1,0.5,0.2,0.0,61.2975,836.048091472,418.321820884,259.976666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,260.364876953,262.186319627,274.639180556,270.512706332,894.0,296.15,21300.0,31404558.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.3449984375,0.463387576443,-0.404945176379,2280.65004185,31404389.2667,1.10740875035,1.18147701863,5.28366666667 +31404879,0.0,0.1,0.5,0.2,0.0,59.321640625,841.57384826,422.495692857,260.155,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,260.384409444,262.075504112,274.6891625,270.521446616,894.0,296.15,21300.0,31404879.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.34033046875,0.465581123205,-0.404941270412,2280.67337832,31404710.1661,1.10521520359,1.08562871959,5.4085 +31405200,0.0,0.1,0.5,0.2,0.0,57.390625,846.836232818,426.517619047,260.333333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,260.402171172,261.96178728,274.738055556,270.529334615,894.0,296.15,21300.0,31405200.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.335677083333,0.46761984374,-0.404937363805,2280.69671478,31405031.0655,1.10317648305,0.989582931505,5.53333333333 +31405521,0.0,0.1,0.5,0.2,0.0,55.4615943287,852.034337951,430.431378571,260.511666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,260.420650248,261.848381304,274.787629167,270.537996213,894.0,296.15,21300.0,31405521.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.331063802083,0.469579914902,-0.404933456879,2280.72005124,31405351.9649,1.10121641189,0.89633617093,5.65816666667 +31405842,0.0,0.1,0.5,0.2,0.0,53.5609201389,856.314165593,432.7999,260.69,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,260.449377152,261.739416118,274.846925,270.557709228,894.0,296.15,21300.0,31405842.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.3270234375,0.470416423589,-0.404929545382,2280.74338771,31405672.8644,1.10037990321,0.84307551767,5.783 +31406163,0.0,0.1,0.5,0.2,0.0,51.660245949,860.593993234,435.168421428,260.868333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,260.478104057,261.630450932,274.906220833,270.577422242,894.0,296.15,21300.0,31406163.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.322983072917,0.471252932276,-0.404925633885,2280.76672417,31405993.7638,1.09954339452,0.78981486441,5.90783333333 +31406484,0.0,0.1,0.5,0.2,0.0,49.7709143518,864.651973797,437.190809524,261.046666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,260.510475857,261.524433662,274.968602193,270.600257624,894.0,296.15,21300.0,31406484.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.319066666667,0.471772785046,-0.404921721108,2280.79006064,31406314.6633,1.09902354175,0.830741413053,6.03266666667 +31406805,0.0,0.1,0.5,0.2,0.0,47.9135850694,868.084028672,438.236607143,261.225,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,260.553131472,261.426733729,275.039689145,270.63190254,894.0,296.15,21300.0,31406805.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.3155,0.471399215762,-0.404917804721,2280.81339711,31406635.5627,1.09939711103,1.13741042421,6.1575 +31407126,0.0,0.1,0.5,0.2,0.0,46.0562557871,871.516083548,439.282404762,261.403333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,260.595787088,261.329033795,275.110776097,270.663547456,894.0,296.15,21300.0,31407126.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.311933333333,0.471025646478,-0.404913888334,2280.83673358,31406956.4621,1.09977068032,1.44407943536,6.28233333333 +31407447,0.0,0.1,0.5,0.2,0.0,44.2247309028,874.621629617,439.873902381,261.581666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,260.638567133,261.231236,275.182060052,270.695058863,894.0,296.15,21300.0,31407447.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.308366666667,0.470099541479,-0.404909969707,2280.86007004,31407277.3616,1.10069678532,1.92679901487,6.40716666667 +31407768,0.0,0.1,0.5,0.2,0.0,42.42375,877.340695876,439.927657143,261.76,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,260.681494464,261.133322368,275.253577193,270.726412238,894.0,296.15,21300.0,31407768.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.3048,0.468519414615,-0.404906048429,2280.88340651,31407598.261,1.10227691218,2.61790498142,6.532 +31408089,0.0,0.1,0.5,0.2,0.0,40.6227690972,880.059762135,439.981411905,261.938333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,260.724421795,261.035408737,275.325094334,270.757765614,894.0,296.15,21300.0,31408089.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.301233333333,0.46693928775,-0.404902127152,2280.90674297,31407919.1605,1.10385703904,3.30901094796,6.65683333333 +31408410,0.0,0.1,0.5,0.2,0.0,38.8552083333,882.202116578,439.313835911,262.116666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,260.767268721,260.937314184,275.396631944,270.788716373,894.0,296.15,21300.0,31408410.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.297666666667,0.464579471871,-0.404898202675,2280.93007944,31408240.0599,1.10621685492,3.99342806312,6.78166666667 +31408731,0.0,0.1,0.5,0.2,0.0,37.1053125,884.039637633,438.264985088,262.295,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,260.810073147,260.839124002,275.468180373,270.819454322,894.0,296.15,21300.0,31408731.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.2941,0.461807534655,-0.404894276508,2280.95341591,31408560.9594,1.10898879214,4.67430964255,6.9065 +31409052,0.0,0.1,0.5,0.2,0.0,35.3554166667,885.877158687,437.216134266,262.473333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,260.852877573,260.740933819,275.539728802,270.85019227,894.0,296.15,21300.0,31409052.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.290533333333,0.459035597439,-0.404890350341,2280.97675237,31408881.8588,1.11176072936,5.35519122198,7.03133333333 +31409373,0.0,0.1,0.5,0.2,0.0,33.6371180556,886.810125221,434.894441233,262.651666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,260.89524206,260.642454985,275.610964584,270.880137599,894.0,296.15,21300.0,31409373.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.286966666667,0.45527159491,-0.404886420016,2281.00008884,31409202.7583,1.11552473188,5.6917307323,7.15616666667 +31409694,0.0,0.1,0.5,0.2,0.0,31.924375,887.584049202,432.348951767,262.83,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,260.937529196,260.543925399,275.682145395,270.909943566,894.0,296.15,21300.0,31409694.0,0.693942910593,-1.83015225364,0.6,0.7,101325.0,0.2834,0.451333163316,-0.404882488959,2281.02342531,31409523.6578,1.11946316348,5.96772658213,7.281 +31410015,0.0,0.1,0.5,0.2,0.0,30.2133680556,888.313624779,429.729108881,262.989583333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,260.974549701,260.444709821,275.754544956,270.940483116,894.0,296.15,21447.0755208,31410015.0,0.693942910593,-1.83015225364,0.598958333333,0.698697916667,101325.0,0.279809895833,0.447341848613,-0.404878557674,2281.04676178,31409844.5573,1.12345447818,6.22766955161,7.40712239583 +31410336,0.0,0.1,0.5,0.2,0.0,28.5377777778,888.138492908,425.592456226,262.766666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,260.904130937,260.3315,275.851807017,270.985987749,894.0,296.15,24594.4916667,31410336.0,0.693942910593,-1.83015225364,0.576666666667,0.670833333333,101325.0,0.275741666667,0.442271718466,-0.404874621728,2281.07009825,31410165.4568,1.12852460833,6.16013376229,7.55954166667 +31410657,0.0,0.1,0.5,0.2,0.0,26.8621875,887.963361037,421.455803571,262.54375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,260.833712173,260.218290179,275.949069079,271.031492382,894.0,296.15,27741.9078125,31410657.0,0.693942910593,-1.83015225364,0.554375,0.64296875,101325.0,0.2716734375,0.43720158832,-0.404870685782,2281.09343472,31410486.3562,1.13359473847,6.09259797297,7.7119609375 +31410978,0.0,0.1,0.5,0.2,0.0,25.195625,887.585449911,416.909544551,262.190833333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,260.738250733,260.1020625,276.049923245,271.078871064,894.0,296.15,31807.0752083,31410978.0,0.693942910593,-1.83015225364,0.525583333333,0.606979166667,101325.0,0.267523958333,0.431866881143,-0.404866748648,2281.11677118,31410807.2557,1.13892944565,6.0222910347,7.86884895833 +31411299,0.0,0.1,0.5,0.2,0.0,23.5571875,886.575803413,411.08720416,261.432916667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,260.564771723,259.976433036,276.161968201,271.132088131,894.0,296.15,38731.3907292,31411299.0,0.693942910593,-1.83015225364,0.476541666667,0.545677083333,101325.0,0.263121354167,0.425707914752,-0.404862807813,2281.14010766,31411128.1552,1.14508841204,5.94335090162,8.03965885417 +31411620,0.0,0.1,0.5,0.2,0.0,21.91875,885.566156915,405.26486377,260.675,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,260.391292713,259.850803572,276.274013158,271.185305199,894.0,296.15,45655.70625,31411620.0,0.693942910593,-1.83015225364,0.4275,0.484375,101325.0,0.25871875,0.419548948362,-0.404858866977,2281.16344413,31411449.0547,1.15124737844,5.86441076854,8.21046875 +31411941,0.0,0.1,0.5,0.2,0.0,20.3405441338,883.646673309,398.892161773,259.858333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,260.195496525,259.730629464,276.367505482,271.226162873,894.0,296.15,52580.0217708,31411941.0,0.693942910593,-1.83015225364,0.378458333333,0.423072916667,101325.0,0.254609895833,0.412933371208,-0.404854923994,2281.1867806,31411769.9543,1.15786295559,5.78551197839,8.36512239583 +31412262,0.0,0.1,0.5,0.2,0.0,18.8392297149,880.565695523,391.81687049,258.966666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,259.971210321,259.617419643,276.437313596,271.251242599,894.0,296.15,59504.3372917,31412262.0,0.693942910593,-1.83015225364,0.329416666667,0.361770833333,101325.0,0.250876041667,0.405734886696,-0.40485097827,2281.21011707,31412090.8537,1.1650614401,5.70666596644,8.49915104167 +31412583,0.0,0.1,0.5,0.2,0.0,17.337915296,877.484717737,384.741579206,258.075,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,259.746924117,259.504209822,276.50712171,271.276322325,894.0,296.15,66428.6528125,31412583.0,0.693942910593,-1.83015225364,0.280375,0.30046875,101325.0,0.2471421875,0.398536402183,-0.404847032545,2281.23345353,31412411.7532,1.17225992461,5.6278199545,8.6331796875 +31412904,0.0,0.1,0.5,0.2,0.0,15.9655299707,872.753178981,377.05449865,257.353333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,259.540152447,259.414678572,276.513850877,271.261595471,894.0,296.15,70952.6958333,31412904.0,0.693942910593,-1.83015225364,0.248333333333,0.260416666667,101325.0,0.244470833333,0.390711667402,-0.404843083714,2281.25679,31412732.6527,1.18008465939,5.55634119348,8.70877083333 +31413225,0.0,0.1,0.5,0.2,0.0,14.6670892726,867.074994964,369.016538951,256.729166667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,259.343425878,259.338727679,276.484402412,271.224038373,894.0,296.15,74100.1119792,31413225.0,0.693942910593,-1.83015225364,0.226041666667,0.232552083333,101325.0,0.242408854167,0.382527759673,-0.404839133101,2281.28012648,31413053.5522,1.18826856712,5.48908776755,8.75084635417 +31413546,0.0,0.1,0.5,0.2,0.0,13.3686485745,861.396810947,360.978579252,256.105,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,259.146699309,259.262776786,276.454953947,271.186481275,894.0,296.15,77247.528125,31413546.0,0.693942910593,-1.83015225364,0.20375,0.2046875,101325.0,0.240346875,0.374343851943,-0.404835182487,2281.30346295,31413374.4517,1.19645247485,5.42183434162,8.792921875 +31413867,0.0,0.1,0.5,0.2,0.0,12.1962586805,854.540622571,351.883537018,255.703333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,259.032437673,259.231590774,276.368416667,271.120435691,894.0,296.15,77777.0,31413867.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.240231770833,0.365387902961,-0.404831227807,2281.32679942,31413695.3512,1.20540842383,5.36238517823,8.72791927083 +31414188,0.0,0.1,0.5,0.2,0.0,11.0493622076,847.446186122,342.57470281,255.346666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,258.934854338,259.209458334,276.270333333,271.048628391,894.0,296.15,77777.0,31414188.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.240510416667,0.356275810804,-0.404827272305,2281.35013589,31414016.2508,1.21452051599,5.30451440502,8.64126041667 +31414509,0.0,0.1,0.5,0.2,0.0,9.90527549342,840.345152515,333.221595314,254.99,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,258.837537779,259.188370536,276.17225,270.977153892,894.0,296.15,77777.0,31414509.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.2408359375,0.347139345774,-0.404823316666,2281.37347236,31414337.1503,1.22365698102,5.24663942683,8.5520234375 +31414830,0.0,0.1,0.5,0.2,0.0,8.85859375,833.015417434,322.333680504,254.633333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,258.749469483,259.203497024,276.074166667,270.917216496,894.0,296.15,77777.0,31414830.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.242786458333,0.337157954441,-0.404819356276,2281.39680884,31414658.0498,1.23363837235,5.1886186758,8.37341145833 +31415151,0.0,0.1,0.5,0.2,0.0,7.81191200658,825.685682353,311.445765694,254.276666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,258.661401186,259.218623512,275.976083333,270.8572791,894.0,296.15,77777.0,31415151.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.244736979167,0.327176563107,-0.404815395885,2281.42014531,31414978.9493,1.24361976369,5.13059792477,8.19479947917 +31415472,0.0,0.1,0.5,0.2,0.0,6.82119617225,817.913455178,300.322784408,253.92,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,258.574040406,259.236535714,275.878,270.79827882,894.0,296.15,77777.0,31415472.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.2468375,0.3170134739,-0.404811434399,2281.44348178,31415299.8489,1.25378285289,5.07265891756,8.0079375 +31415793,0.0,0.1,0.5,0.2,0.0,6.02402910686,808.610942848,288.386864892,253.563333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,258.489126452,259.264081845,275.779916667,270.742519401,894.0,296.15,77777.0,31415793.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.249456770833,0.306222012876,-0.40480746912,2281.46681825,31415620.7484,1.26457431392,5.01500260775,7.79254427083 +31416114,0.0,0.1,0.5,0.2,0.0,5.22686204147,799.308430518,276.450945376,253.206666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,258.404212499,259.291627976,275.681833333,270.686759982,894.0,296.15,77777.0,31416114.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.252076041667,0.295430551853,-0.404803503841,2281.49015473,31415941.648,1.27536577494,4.95734629794,7.57715104167 +31416435,0.0,0.1,0.5,0.2,0.0,4.58250598086,788.289260441,264.410292084,252.85,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,258.317962836,259.313950893,275.58375,270.629711692,894.0,296.15,77777.0,31416435.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.2545546875,0.284323009127,-0.404799536507,2281.5134912,31416262.5475,1.28647331767,4.90005960225,7.3694921875 +31416756,0.0,0.1,0.5,0.2,0.0,4.14868952685,774.904917466,252.225338923,252.493333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,258.229872862,259.329077381,275.485666667,270.570887623,894.0,296.15,77777.0,31416756.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.256839583333,0.272779976055,-0.40479556634,2281.53682768,31416583.4471,1.29801635074,4.84328215268,7.17248958333 +31417077,0.0,0.1,0.5,0.2,0.0,3.71487307284,761.520574492,240.040385761,252.136666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,258.141782888,259.344203869,275.387583333,270.512063555,894.0,296.15,77777.0,31417077.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.259124479167,0.261236942983,-0.404791596174,2281.56016415,31416904.3466,1.30955938382,4.7865047031,6.97548697917 +31417398,0.0,0.1,0.5,0.2,0.0,3.44070574163,746.003112126,227.759580248,251.78,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,258.051399546,259.350324107,275.2895,270.450710815,894.0,296.15,77777.0,31417398.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.2611,0.249265434526,-0.404787622992,2281.58350062,31417225.2461,1.32153089227,4.73014578053,6.7955 +31417719,0.0,0.1,0.5,0.2,0.0,3.26571438065,729.160530137,215.419230092,251.423333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,257.959591535,259.350849553,275.191416667,270.387787234,894.0,296.15,77777.0,31417719.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.262883333333,0.237027751967,-0.404783647938,2281.6068371,31417546.1457,1.33376857483,4.67404685199,6.62608333333 +31418040,0.0,0.1,0.5,0.2,0.0,3.09072301967,712.317948148,203.078879936,251.066666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,257.867783525,259.351375,275.093333333,270.324863653,894.0,296.15,77777.0,31418040.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.264666666667,0.224790069408,-0.404779672883,2281.63017357,31417867.0453,1.34600625739,4.61794792345,6.45666666667 +31418361,0.0,0.1,0.5,0.2,0.0,3.04119019139,693.170559407,190.688313425,250.71,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,257.775916147,259.35166741,274.99525,270.261512542,894.0,296.15,77777.0,31418361.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.26645,0.212032075031,-0.404775693854,2281.65351005,31418187.9448,1.35876425177,4.56192399196,6.28725 +31418682,0.0,0.1,0.5,0.2,0.0,3.0204984051,673.493330034,178.286202925,250.353333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,257.684035122,259.35190625,274.897166667,270.198063147,894.0,296.15,77777.0,31418682.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.268233333333,0.199154468743,-0.404771713912,2281.67684652,31418508.8444,1.37164185805,4.50591730117,6.11783333333 +31419003,0.0,0.1,0.5,0.2,0.0,3.00562289562,653.602880344,165.875464654,249.996666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,257.59215319,259.352141518,274.799083333,270.134608888,894.0,296.15,77777.0,31419003.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.270016666667,0.186271368829,-0.404767733924,2281.700183,31418829.744,1.38452495797,4.44991086963,5.94841666667 +31419324,0.0,0.1,0.5,0.2,0.0,3.60727272727,611.111077204,152.550182664,249.64,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,257.500175146,259.351998214,274.701,270.070638964,894.0,296.15,77777.0,31419324.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.2718,0.17280594466,-0.404763749094,2281.72351947,31419150.6436,1.39799038214,4.39393191952,5.779 +31419645,0.0,0.1,0.5,0.2,0.0,4.20892255892,568.619274064,139.224900674,249.283333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,257.408197101,259.35185491,274.602916667,270.006669039,894.0,296.15,77777.0,31419645.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.273583333333,0.159340520492,-0.404759764264,2281.74685595,31419471.5432,1.41145580631,4.33795296941,5.60958333333 +31419966,0.0,0.1,0.5,0.2,0.0,4.94970819304,520.985842102,125.730776432,248.926666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,257.316194192,259.351613392,274.504833333,269.942593162,894.0,296.15,77777.0,31419966.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.275366666667,0.145764359164,-0.404755778429,2281.77019242,31419792.4428,1.42503196763,4.2819664619,5.44016666667 +31420287,0.0,0.1,0.5,0.2,0.0,6.22806397306,453.487026058,111.584307125,248.57,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,257.224095217,259.35099241,274.40675,269.878107926,894.0,296.15,77777.0,31420287.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.27715,0.131760349721,-0.404751788713,2281.7935289,31420113.3424,1.43903597707,4.22595075539,5.27075 +31420608,0.0,0.1,0.5,0.2,0.0,7.50641975308,385.988210013,97.4378378189,248.213333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,257.131996242,259.350371428,274.308666667,269.81362269,894.0,296.15,77777.0,31420608.0,0.693942910593,-1.83015225364,0.2,0.2,101325.0,0.278933333333,0.117756340278,-0.404747798996,2281.81686538,31420434.242,1.45303998651,4.16993504888,5.10133333333 +31420929,0.0,0.1,0.5,0.2,0.0,8.76535072951,319.412812777,83.5797266391,247.683472222,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,257.003538105,259.342183854,274.210583333,269.748932439,894.0,296.15,77777.0,31420929.0,0.693942910593,-1.83015225364,0.195520833333,0.195520833333,101325.0,0.280716666667,0.103554474614,-0.404743807315,2281.84020186,31420755.1416,1.46724185218,4.11070345753,4.93191666667 +31421250,0.0,0.1,0.5,0.2,0.0,9.99537037037,254.211806325,70.1507996478,246.895833334,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,256.820964005,259.322734375,274.1125,269.683937051,894.0,296.15,77777.0,31421250.0,0.693942910593,-1.83015225364,0.184375,0.184375,101325.0,0.2825,0.0890581252717,-0.40473981271,2281.86353834,31421076.0411,1.48173820152,4.04668543292,4.7625 +31421571,0.0,0.1,0.5,0.2,0.0,11.2253900112,189.010799873,56.7218726565,246.108194445,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,256.638389905,259.303284896,274.014416667,269.618941663,894.0,296.15,77777.0,31421571.0,0.693942910593,-1.83015225364,0.173229166667,0.173229166667,101325.0,0.284283333333,0.0745617759295,-0.404735818106,2281.88687481,31421396.9407,1.49623455086,3.98266740832,4.59308333333 +31421892,0.0,0.1,0.5,0.2,0.0,11.9928282828,141.516040652,44.6424915019,245.006481482,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,256.371586676,259.274835417,273.916333333,269.553644189,894.0,296.15,77777.0,31421892.0,0.693942910593,-1.83015225364,0.154083333333,0.154083333333,101325.0,0.286066666667,0.0597968147548,-0.404731820579,2281.91021129,31421717.8403,1.51099951204,3.91517013259,4.42366666667 +31422213,0.0,0.1,0.5,0.2,0.0,12.449469697,105.917666288,33.4698364566,243.69375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,256.048192002,259.240339063,273.81825,269.488143751,894.0,296.15,77777.0,31422213.0,0.693942910593,-1.83015225364,0.1295625,0.1295625,101325.0,0.28785,0.0448513800051,-0.404727821088,2281.93354777,31422038.7399,1.52594494679,3.84533523502,4.25425 +31422534,0.0,0.1,0.5,0.2,0.0,12.9061111111,70.3192919251,22.2971814112,242.381018518,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,255.724797328,259.205842708,273.720166667,269.422643313,894.0,296.15,77777.0,31422534.0,0.693942910593,-1.83015225364,0.105041666667,0.105041666667,101325.0,0.289633333333,0.0299059452555,-0.404723821597,2281.95688425,31422359.6395,1.54089038154,3.77550033744,4.08483333333 +31422855,0.0,0.1,0.5,0.2,0.0,12.3477430556,54.9848744877,14.8554238506,241.052546296,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,255.35909715,259.185690104,273.622083333,269.356745675,894.0,296.15,77777.0,31422855.0,0.693942910593,-1.83015225364,0.0805208333333,0.0805208333333,101325.0,0.291416666667,0.0146358097949,-0.404719818224,2281.98022072,31422680.5391,1.556160517,3.71308914936,3.91541666667 +31423176,0.0,0.1,0.5,0.2,0.0,11.5266666667,44.8952459016,8.37931034483,239.72,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,254.982447313,259.16925,273.524,269.290745233,894.0,296.15,77777.0,31423176.0,0.693942910593,-1.83015225364,0.056,0.056,101325.0,0.2932,-0.000718365849736,-0.404715813847,2282.0035572,31423001.4387,1.57151469265,3.65259939197,3.746 +31423497,0.0,0.1,0.5,0.2,0.0,10.7055902778,34.8056173156,1.90319683908,238.387453704,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,254.605797476,259.152809896,273.425916667,269.224744792,894.0,296.15,77777.0,31423497.0,0.693942910593,-1.83015225364,0.0314791666667,0.0314791666667,101325.0,0.294983333333,-0.0160725414944,-0.404711809469,2282.02689368,31423322.3383,1.58686886829,3.59210963458,3.57658333333 +31423818,0.0,0.1,0.5,0.2,0.0,9.1295910494,27.7835809426,1.19159482758,237.535833333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,254.371253515,259.187051042,273.327833333,269.158253966,894.0,296.15,77777.0,31423818.0,0.693942910593,-1.83015225364,0.0202083333333,0.0202083333333,101325.0,0.296766666667,-0.0317944108938,-0.404707800251,2282.05023016,31423643.238,1.60259073769,3.55589799171,3.40716666667 +31424139,0.0,0.1,0.5,0.2,0.0,7.54646990742,20.7904841188,0.534374999999,236.68875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,254.138050176,259.221770312,273.22975,269.091758514,894.0,296.15,77777.0,31424139.0,0.693942910593,-1.83015225364,0.0090625,0.0090625,101325.0,0.29855,-0.0475197491022,-0.404703790987,2282.07356664,31423964.1376,1.6183160759,3.51991538766,3.23775 +31424460,0.0,0.1,0.5,0.2,0.0,5.97137345679,14.3439036885,0.0,235.922727273,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,253.934192345,259.263333333,273.13109375,269.02633823,894.0,296.15,77777.0,31424460.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.3006,-0.0633079211427,-0.404699780809,2282.09690312,31424285.0372,1.63410424794,3.49029596317,3.08029411765 +31424781,0.0,0.1,0.5,0.2,0.0,4.43118441358,10.2746695697,0.0,235.509318182,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,253.857987477,259.334666667,273.029945312,268.965594923,894.0,296.15,77777.0,31424781.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.30381,-0.0793694203526,-0.404695766659,2282.1202396,31424605.9369,1.65016574715,3.48835636979,2.97486764706 +31425102,0.0,0.1,0.5,0.2,0.0,2.89099537037,6.20543545081,0.0,235.095909091,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,253.781782609,259.406,272.928796875,268.904851616,894.0,296.15,77777.0,31425102.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.30702,-0.0954309195624,-0.404691752508,2282.14357608,31424926.8365,1.66622724636,3.48641677641,2.86944117647 +31425423,0.0,0.1,0.5,0.2,0.0,1.67570601852,3.19039702869,0.0,234.698375421,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,253.703766771,259.477333333,272.825726562,268.847164684,894.0,296.15,77777.0,31425423.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.31105,-0.111608718608,-0.404687736485,2282.16691256,31425247.7362,1.6824050454,3.49372161743,2.79858333334 +31425744,0.0,0.1,0.5,0.2,0.0,0.983425925925,1.87235655738,0.0,234.326397306,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,253.622835715,259.548666667,272.7195625,268.794397771,894.0,296.15,77777.0,31425744.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.3164,-0.127973732022,-0.404683717449,2282.19024904,31425568.6358,1.69877005882,3.5159077431,2.78337254902 +31426065,0.0,0.1,0.5,0.2,0.0,0.291145833333,0.554316086066,0.0,233.954419192,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,253.541904659,259.62,272.613398437,268.741630858,894.0,296.15,77777.0,31426065.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.32175,-0.144338745436,-0.404679698413,2282.21358552,31425889.5355,1.71513507223,3.53809386876,2.7681617647 +31426386,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.603316498,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,253.45913473,259.691333333,272.505296875,268.690186097,894.0,296.15,77777.0,31426386.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.32772,-0.160861932245,-0.404675676545,2282.236922,31426210.4351,1.73165825904,3.56613697147,2.77240196078 +31426707,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.26736532,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,253.375030136,259.762666667,272.395789063,268.639700962,894.0,296.15,77777.0,31426707.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.33414,-0.177499922323,-0.404671652623,2282.26025849,31426531.3348,1.74829624912,3.5984311059,2.79075980392 +31427028,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.931414141,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,253.290925543,259.834,272.28628125,268.589215828,894.0,296.15,77777.0,31427028.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.34056,-0.194137912402,-0.4046676287,2282.28359497,31426852.2344,1.7649342392,3.63072524034,2.80911764706 +31427349,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.619217172,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,253.205564578,259.905333333,272.175476563,268.536478621,894.0,296.15,77777.0,31427349.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.34698,-0.210965394477,-0.404663600988,2282.30693145,31427173.1341,1.78176172127,3.65998661566,2.80957352941 +31427670,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.313888889,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,253.119840326,259.976666667,272.064296875,268.483090214,894.0,296.15,77777.0,31427670.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.3534,-0.227847669419,-0.40465957218,2282.33026793,31427494.0337,1.79864399622,3.6883710486,2.80485294118 +31427991,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.008560606,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,253.034116074,260.048,271.953117187,268.429701806,894.0,296.15,77777.0,31427991.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.35982,-0.244729944361,-0.404655543372,2282.35360442,31427814.9334,1.81552627116,3.71675548153,2.80013235294 +31428312,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,231.714517045,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,252.946528774,260.119333333,271.840002976,268.371522415,894.0,296.15,77777.0,31428312.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.365936666667,-0.261823290216,-0.404651509815,2282.3769409,31428135.8331,1.83261961701,3.73872479057,2.76538795518 +31428633,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,231.420799005,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,252.858887733,260.190666667,271.726832961,268.313204822,894.0,296.15,77777.0,31428633.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.372044583333,-0.278922724655,-0.404647476122,2282.40027738,31428456.7328,1.84971905145,3.76050904796,2.729777486 +31428954,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,231.128231534,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,252.770824353,260.262,271.613220982,268.254357271,894.0,296.15,77777.0,31428954.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.3781675,-0.296054341171,-0.404643441606,2282.42361386,31428777.6324,1.86685066797,3.78229807201,2.69408508404 +31429275,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,230.841352983,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,252.680672747,260.333333333,271.497423735,268.192889373,894.0,296.15,77777.0,31429275.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.384364583333,-0.313345080183,-0.404639403027,2282.44695035,31429098.5321,1.88414140698,3.80411066452,2.65798757003 +31429596,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,230.554474432,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,252.590521141,260.404666667,271.381626488,268.131421475,894.0,296.15,77777.0,31429596.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.390561666667,-0.330635819194,-0.404635364448,2282.47028683,31429419.4318,1.90143214599,3.82592325703,2.62189005602 +31429917,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,230.27590554,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,252.499859226,260.476,271.265306919,268.069151224,894.0,296.15,77777.0,31429917.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.39679125,-0.347987209897,-0.404631324089,2282.49362331,31429740.3315,1.91878353669,3.84773187733,2.58586081933 +31430238,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,230.011825284,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,252.408307539,260.547333333,271.148076637,268.005481999,894.0,296.15,77777.0,31430238.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4030775,-0.365444352269,-0.404627280625,2282.5169598,31430061.2312,1.93624067906,3.86953357172,2.54995063025 +31430559,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,229.747745028,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,252.316755852,260.618666667,271.030846354,267.941812775,894.0,296.15,77777.0,31430559.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.40936375,-0.382901494641,-0.404623237161,2282.54029628,31430382.131,1.95369782143,3.8913352661,2.51404044117 +31430880,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,229.505397727,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,252.225042263,260.69,270.913482143,267.877460209,894.0,296.15,77777.0,31430880.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4157,-0.400438325381,-0.404619190958,2282.56363277,31430703.0307,1.97123465218,3.91310884945,2.47861344538 +31431201,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,229.280074574,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,252.133201849,260.761333333,270.796013021,267.81257236,894.0,296.15,77777.0,31431201.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.422075416667,-0.418037578678,-0.404615142609,2282.58696926,31431023.9304,1.98883390547,3.93486041247,2.44356495098 +31431522,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,229.05475142,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,252.041361436,260.832666667,270.678543899,267.747684511,894.0,296.15,77777.0,31431522.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.428450833333,-0.435636831975,-0.404611094261,2282.61030574,31431344.8301,2.00643315877,3.9566119755,2.40851645658 +31431843,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,228.952539062,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,252.002505511,260.9023125,270.556223214,267.680250385,894.0,296.15,77777.0,31431843.0,0.693942910593,-1.83015225364,0.00421875,0.00421875,101325.0,0.435349375,-0.453325444588,-0.404607042214,2282.63364223,31431665.7298,2.02412177138,3.98005272207,2.37269866071 +31432164,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,228.88984375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,251.980656954,260.971416667,270.432345238,267.611998936,894.0,296.15,77777.0,31432164.0,0.693942910593,-1.83015225364,0.00979166666667,0.00979166666667,101325.0,0.442415833333,-0.471042740438,-0.404602988981,2282.65697871,31431986.6295,2.04183906723,4.00403567571,2.33663392857 +31432485,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,228.827148438,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,251.958808396,261.040520833,270.308467261,267.543747487,894.0,296.15,77777.0,31432485.0,0.693942910593,-1.83015225364,0.0153645833333,0.0153645833333,101325.0,0.449482291667,-0.488760036288,-0.404598935747,2282.6803152,31432307.5292,2.05955636308,4.02801862935,2.30056919643 +31432806,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,228.915859375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,252.003523548,261.102541667,270.177910714,267.471369791,894.0,296.15,77777.0,31432806.0,0.693942910593,-1.83015225364,0.0273125,0.0273125,101325.0,0.45718625,-0.506566707974,-0.404594877858,2282.70365169,31432628.4289,2.07736303477,4.05297294183,2.26587053571 +31433127,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,229.011992187,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,252.051501628,261.164215278,270.047026786,267.398789827,894.0,296.15,77777.0,31433127.0,0.693942910593,-1.83015225364,0.0395729166667,0.0395729166667,101325.0,0.464921458333,-0.524377760829,-0.40459081974,2282.72698817,31432949.3287,2.09517408762,4.07797486994,2.23123883929 +31433448,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,229.105625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,252.09681139,261.224111111,269.91652381,267.326058233,894.0,296.15,77777.0,31433448.0,0.693942910593,-1.83015225364,0.0518333333333,0.0518333333333,101325.0,0.472616666667,-0.542199091479,-0.404586760891,2282.75032466,31433270.2284,2.11299541827,4.10233961436,2.19789285715 +31433769,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,229.185039063,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,252.126945095,261.273895834,269.7881875,267.252464243,894.0,296.15,77777.0,31433769.0,0.693942910593,-1.83015225364,0.06409375,0.06409375,101325.0,0.480084375,-0.560078877088,-0.404582697889,2282.77366114,31433591.1281,2.13087520388,4.1230803765,2.171859375 +31434090,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,229.264453125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,252.157078801,261.323680556,269.65985119,267.178870253,894.0,296.15,77777.0,31434090.0,0.693942910593,-1.83015225364,0.0763541666667,0.0763541666667,101325.0,0.487552083333,-0.577958662697,-0.404578634887,2282.79699763,31433912.0278,2.14875498949,4.14382113865,2.14582589286 +31434411,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,229.277382813,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,252.161889682,261.3678125,269.535699405,267.106310955,894.0,296.15,77777.0,31434411.0,0.693942910593,-1.83015225364,0.0863020833333,0.0863020833333,101325.0,0.494603541667,-0.595853087327,-0.404574570196,2282.82033412,31434232.9275,2.16664941412,4.16126257055,2.12524330357 +31434732,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,229.16453125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,252.118792516,261.40125,269.419464286,267.035709183,894.0,296.15,77777.0,31434732.0,0.693942910593,-1.83015225364,0.091875,0.091875,101325.0,0.5008675,-0.613775207401,-0.404570502309,2282.84367061,31434553.8273,2.18457153419,4.17246202631,2.11497321429 +31435053,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,229.051679688,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,252.075695351,261.4346875,269.303229167,266.965107412,894.0,296.15,77777.0,31435053.0,0.693942910593,-1.83015225364,0.0974479166667,0.0974479166667,101325.0,0.507131458333,-0.631697327475,-0.404566434423,2282.8670071,31434874.7271,2.20249365427,4.18366148206,2.104703125 +31435374,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,228.855,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,252.013748192,261.460119792,269.202270833,266.9025073,894.0,296.15,77777.0,31435374.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.512404583333,-0.6496269092,-0.404562363889,2282.89034358,31435195.6269,2.22042323599,4.18747964952,2.10556696429 +31435695,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,228.5875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,251.935876038,261.478789063,269.11421875,266.846667211,894.0,296.15,77777.0,31435695.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.516840625,-0.667562794733,-0.404558291119,2282.91368007,31435516.5266,2.23835912153,4.18506190101,2.11583705357 +31436016,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,228.32,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,251.858003885,261.497458333,269.026166667,266.790827123,894.0,296.15,77777.0,31436016.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.521276666667,-0.685498680266,-0.404554218349,2282.93701656,31435837.4263,2.25629500706,4.18264415249,2.12610714286 +31436337,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,228.0525,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,251.795569316,261.509955729,268.95621875,266.74625739,894.0,296.15,77777.0,31436337.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.524823958333,-0.703421275888,-0.404550141973,2282.96035304,31436158.3261,2.27421760268,4.17290831461,2.148015625 +31436658,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,227.785,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,251.738606295,261.520265625,268.8926875,266.705682213,894.0,296.15,77777.0,31436658.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.52805625,-0.721339161162,-0.404546064318,2282.98368953,31436479.2259,2.29213548796,4.16057872354,2.17404910715 +31436979,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,227.5175,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,251.681643275,261.530575521,268.82915625,266.665107037,894.0,296.15,77777.0,31436979.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.531288541667,-0.739257046436,-0.404541986664,2283.00702602,31436800.1257,2.31005337323,4.14824913246,2.20008258929 +31437300,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,227.25,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,251.627308653,261.535677083,268.769791667,266.626710056,894.0,296.15,77777.0,31437300.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.534270833333,-0.757124168976,-0.404537904447,2283.03036252,31437121.0254,2.32792049577,4.13262973426,2.23415178572 +31437621,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.9825,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,251.573158019,261.540414062,268.71071875,266.588465549,894.0,296.15,77777.0,31437621.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.537235625,-0.774987738125,-0.404533821909,2283.05369901,31437441.9252,2.34578406492,4.11678004957,2.26878348214 +31437942,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.715,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,251.517006936,261.544786458,268.649604167,266.548772558,894.0,296.15,77777.0,31437942.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.540287916667,-0.792838614905,-0.404529738733,2283.0770355,31437762.825,2.3636349417,4.10130609547,2.30360267857 +31438263,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.4475,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,251.447567152,261.546736979,268.574927083,266.499457493,894.0,296.15,77777.0,31438263.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.543921458333,-0.810605178086,-0.404525651313,2283.10037199,31438083.7248,2.38140150488,4.0883280661,2.33966741071 +31438584,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.18,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,251.378127369,261.5486875,268.50025,266.450142429,894.0,296.15,77777.0,31438584.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.547555,-0.828371741267,-0.404521563892,2283.12370848,31438404.6245,2.39916806806,4.07535003673,2.37573214286 +31438905,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,225.9125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,251.304183456,261.550364583,268.420833333,266.397566121,894.0,296.15,77777.0,31438905.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.551434635417,-0.846089705597,-0.404517474874,2283.14704497,31438725.5243,2.41688603239,4.0635730575,2.41161458333 +31439226,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,225.645,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,251.220973906,261.551479167,268.331666667,266.338280972,894.0,296.15,77777.0,31439226.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.555820520833,-0.863707695147,-0.40451338257,2283.17038147,31439046.4241,2.43450402194,4.05426680999,2.44712202381 +31439547,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,225.3775,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,251.137764356,261.55259375,268.2425,266.278995823,894.0,296.15,77777.0,31439547.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.56020640625,-0.881325684697,-0.404509290266,2283.19371796,31439367.324,2.45212201149,4.04496056248,2.48262946429 +31439868,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,225.11,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,251.054460036,261.553319445,268.153333333,266.219665671,894.0,296.15,77777.0,31439868.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.564660347222,-0.898832453589,-0.404505195407,2283.21705445,31439688.2237,2.46962878039,4.03570400837,2.51874801587 +31440189,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,224.8425,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,250.971069407,261.553690972,268.064166667,266.160294537,894.0,296.15,77777.0,31440189.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.569176267361,-0.916237932241,-0.40450109822,2283.24039094,31440009.1235,2.48703425904,4.02649271075,2.55542311508 +31440510,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,224.575,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,250.887678779,261.5540625,267.975,266.100923402,894.0,296.15,77777.0,31440510.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.5736921875,-0.933643410892,-0.404497001034,2283.26372743,31440330.0233,2.50443973769,4.01728141314,2.59209821428 +31440831,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,224.3075,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,250.804158208,261.553899306,267.885833333,266.041088785,894.0,296.15,77777.0,31440831.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.578213454861,-0.950837501814,-0.404492900334,2283.28706392,31440650.9231,2.52163382861,4.00801345292,2.62846775794 +31441152,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,224.04,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,250.72058701,261.553527778,267.796666667,265.981073592,894.0,296.15,77777.0,31441152.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.582736805555,-0.967949233882,-0.404488798265,2283.31040041,31440971.8229,2.53874556068,3.99872341637,2.66471825397 +31441473,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,223.7725,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,250.637015812,261.55315625,267.7075,265.921058398,894.0,296.15,77777.0,31441473.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.58726015625,-0.98506096595,-0.404484696196,2283.33373691,31441292.7227,2.55585729274,3.98943337982,2.70096875 +31441794,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,223.505,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,250.553279693,261.552104167,267.618333333,265.859973355,894.0,296.15,77777.0,31441794.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.591678020833,-1.0018069968,-0.404480589655,2283.3570734,31441613.6226,2.57260332359,3.97991214775,2.73537202381 +31442115,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,223.2375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,250.469528427,261.550989583,267.529166667,265.798790061,894.0,296.15,77777.0,31442115.0,0.693942910593,-1.83015225364,0.1,0.1,101325.0,0.596086197917,-1.01851944283,-0.404476482703,2283.3804099,31441934.5224,2.58931576963,3.97036968343,2.76960565476 +31442436,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,222.9371875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,250.378743995,261.54978125,267.43934375,265.736869144,894.0,296.15,77777.0,31442436.0,0.693942910593,-1.83015225364,0.099375,0.099375,101325.0,0.600478125,-1.0351714325,-0.404472375204,2283.4037464,31442255.4223,2.6059677593,3.9608474774,2.803 +31442757,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,222.377109375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,250.232280324,261.547830729,267.344325521,265.669108708,894.0,296.15,77777.0,31442757.0,0.693942910593,-1.83015225364,0.0938020833333,0.0938020833333,101325.0,0.60474140625,-1.05134480918,-0.40446826337,2283.42708289,31442576.3221,2.62214113598,3.95148564947,2.82975 +31443078,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,221.81703125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,250.085816653,261.545880208,267.249307292,265.601348272,894.0,296.15,77777.0,31443078.0,0.693942910593,-1.83015225364,0.0882291666667,0.0882291666667,101325.0,0.6090046875,-1.06751818587,-0.404464151535,2283.45041938,31442897.222,2.63831451266,3.94212382153,2.8565 +31443399,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,221.150963542,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,249.913535262,261.543070312,267.153085938,265.531926902,894.0,296.15,77777.0,31443399.0,0.693942910593,-1.83015225364,0.08059375,0.08059375,101325.0,0.61318203125,-1.08346735867,-0.404460038196,2283.47375588,31443218.1218,2.65426368546,3.93271699682,2.88141666667 +31443720,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,220.247222222,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,249.683359588,261.538333333,267.054166667,265.458781017,894.0,296.15,77777.0,31443720.0,0.693942910593,-1.83015225364,0.0683333333333,0.0683333333333,101325.0,0.617166666667,-1.09891377124,-0.40445592148,2283.49709237,31443539.0216,2.66971009803,3.92320927027,2.90222222222 +31444041,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,219.343480903,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,249.453183915,261.533596354,266.955247396,265.385635131,894.0,296.15,77777.0,31444041.0,0.693942910593,-1.83015225364,0.0560729166667,0.0560729166667,101325.0,0.621151302083,-1.11436018382,-0.404451804764,2283.52042887,31443859.9214,2.68515651061,3.91370154373,2.92302777778 +31444362,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,218.449114583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,249.217715775,261.526046875,266.860265625,265.314609732,894.0,296.15,77777.0,31444362.0,0.693942910593,-1.83015225364,0.0438125,0.0438125,101325.0,0.6248546875,-1.12931129198,-0.404447685584,2283.54376537,31444180.8213,2.70010761877,3.9034575064,2.94533333333 +31444683,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,217.563949653,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,248.977053179,261.515736979,266.769148438,265.245665551,894.0,296.15,77777.0,31444683.0,0.693942910593,-1.83015225364,0.0315520833333,0.0315520833333,101325.0,0.62828203125,-1.14377626802,-0.404443563986,2283.56710186,31444501.7212,2.71457259481,3.89249079367,2.96911111111 +31445004,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,216.678784722,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,248.736390583,261.505427083,266.67803125,265.17672137,894.0,296.15,77777.0,31445004.0,0.693942910593,-1.83015225364,0.0192916666667,0.0192916666667,101325.0,0.631709375,-1.15824124406,-0.404439442388,2283.59043836,31444822.621,2.72903757085,3.88152408094,2.99288888889 +31445325,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,216.060546875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,248.561527359,261.489257812,266.600585938,265.117583026,894.0,296.15,77777.0,31445325.0,0.693942910593,-1.83015225364,0.01171875,0.01171875,101325.0,0.63455078125,-1.17177785665,-0.404435317369,2283.61377486,31445143.5209,2.74257418344,3.86861432589,3.025 +31445646,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,215.556197917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,248.414738532,261.470588542,266.528973958,265.062628504,894.0,296.15,77777.0,31445646.0,0.693942910593,-1.83015225364,0.00614583333333,0.00614583333333,101325.0,0.6371421875,-1.18491836751,-0.404431190889,2283.63711135,31445464.4207,2.7557146943,3.85487553944,3.06066666667 +31445967,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,215.051848958,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,248.267949705,261.451919271,266.457361979,265.007673982,894.0,296.15,77777.0,31445967.0,0.693942910593,-1.83015225364,0.000572916666667,0.000572916666667,101325.0,0.63973359375,-1.19805887836,-0.40442706441,2283.66044785,31445785.3206,2.76885520515,3.841136753,3.09633333333 +31446288,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.8825,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,248.208604921,261.42,266.41025,264.969407787,894.0,296.15,77777.0,31446288.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.64095,-1.20960667108,-0.40442293355,2283.68378435,31446106.2205,2.78040299787,3.82576172037,3.14 +31446609,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.751536458,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,248.159279767,261.3865625,266.365945313,264.933053797,894.0,296.15,77777.0,31446609.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.642008854167,-1.22097196484,-0.404418802189,2283.70712084,31446427.1204,2.79176829163,3.81019920121,3.18458333333 +31446930,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.627690972,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,248.111285006,261.351597222,266.323463542,264.897737407,894.0,296.15,77777.0,31446930.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.642911458333,-1.23211926705,-0.404414670372,2283.73045734,31446748.0202,2.80291559384,3.79463668205,3.22916666667 +31447251,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.572890625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,248.076195048,261.3018125,266.298664062,264.872485753,894.0,296.15,77777.0,31447251.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.6422984375,-1.2411520512,-0.40441053413,2283.75379384,31447068.9201,2.81194837799,3.77907416288,3.27375 +31447572,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.518090278,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,248.04110509,261.252027778,266.273864583,264.847234099,894.0,296.15,77777.0,31447572.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.641685416667,-1.25018483535,-0.404406397888,2283.77713033,31447389.82,2.82098116214,3.76351164372,3.31833333333 +31447893,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.46436632,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,248.00728855,261.198798611,266.251325521,264.822760886,894.0,296.15,77777.0,31447893.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.640749479167,-1.25836502906,-0.404402260232,2283.80046683,31447710.7199,2.82916135585,3.74794912456,3.36291666667 +31448214,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.41328125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,247.976593938,261.137125,266.234328125,264.800196108,894.0,296.15,77777.0,31448214.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.639021875,-1.26445500105,-0.404398119109,2283.82380333,31448031.6198,2.83525132785,3.73238660539,3.4075 +31448535,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.362196181,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,247.945899326,261.075451389,266.217330729,264.77763133,894.0,296.15,77777.0,31448535.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.637294270833,-1.27054497304,-0.404393977986,2283.84713983,31448352.5197,2.84134129984,3.71682408623,3.45208333333 +31448856,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.277708333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,247.912561933,261.010166667,266.1984375,264.75225849,894.0,296.15,77777.0,31448856.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.635295833333,-1.27494754044,-0.40438983449,2283.87047633,31448673.4196,2.84574386724,3.70126156706,3.49666666667 +31449177,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.157890625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,247.87642929,260.9410625,266.177539062,264.723915584,894.0,296.15,77777.0,31449177.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.6330109375,-1.27756535298,-0.404385688486,2283.89381283,31448994.3195,2.84836167977,3.6856990479,3.54125 +31449498,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.038072917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,247.840296647,260.871958333,266.156640625,264.695572678,894.0,296.15,77777.0,31449498.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.630726041667,-1.28018316552,-0.404381542482,2283.91714933,31449315.2194,2.85097949231,3.67013652874,3.58583333333 +31449819,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.878333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.800069971,260.801333333,266.13175,264.662825705,894.0,296.15,77777.0,31449819.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.6282434375,-1.28025163045,-0.404377393148,2283.94048583,31449636.1193,2.85104795724,3.65457400957,3.63041666667 +31450140,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.7,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.757936485,260.73,266.105,264.628027522,894.0,296.15,77777.0,31450140.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.62566875,-1.27913272801,-0.404373242264,2283.96382233,31449957.0192,2.84992905481,3.63901149041,3.675 +31450461,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.521666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.715802999,260.658666667,266.07825,264.593229339,894.0,296.15,77777.0,31450461.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.6230940625,-1.27801382557,-0.404369091379,2283.98715883,31450277.9192,2.84881015237,3.62344897125,3.71958333333 +31450782,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.343333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.673657568,260.587333333,266.0515,264.557694219,894.0,296.15,77777.0,31450782.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.620317013889,-1.27371409988,-0.404364936207,2284.01049533,31450598.8191,2.84451042668,3.60788645208,3.76416666667 +31451103,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.165,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.631510484,260.516,266.02475,264.522057184,894.0,296.15,77777.0,31451103.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.617511979167,-1.26897447311,-0.404360780442,2284.03383183,31450919.719,2.8397707999,3.59232393292,3.80875 +31451424,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.986666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.589362382,260.444666667,265.998,264.486431003,894.0,296.15,77777.0,31451424.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.614708055556,-1.26399732026,-0.404356624312,2284.05716834,31451240.6189,2.83479364705,3.57676141376,3.85333333333 +31451745,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.808333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.547201664,260.373333333,265.97125,264.450939157,894.0,296.15,77777.0,31451745.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.611917881945,-1.25608078231,-0.404352463666,2284.08050484,31451561.5189,2.82687710911,3.56119889459,3.89791666667 +31452066,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.63,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.505040946,260.302,265.9445,264.415447311,894.0,296.15,77777.0,31452066.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.609127708333,-1.24816424437,-0.404348303021,2284.10384134,31451882.4188,2.81896057116,3.54563637543,3.9425 +31452387,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.451666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.462876523,260.230666667,265.91775,264.38025747,894.0,296.15,77777.0,31452387.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.606408020833,-1.23954880115,-0.404344141053,2284.12717784,31452203.3188,2.81034512795,3.53007385626,3.98708333333 +31452708,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.273333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.420702133,260.159333333,265.891,264.345879922,894.0,296.15,77777.0,31452708.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.603877916667,-1.22905354378,-0.404339975528,2284.15051434,31452524.2187,2.79984987058,3.5145113371,4.03166666667 +31453029,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.095,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.378527742,260.088,265.86425,264.311502373,894.0,296.15,77777.0,31453029.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.6013478125,-1.21855828642,-0.404335810003,2284.17385084,31452845.1186,2.78935461322,3.49894881794,4.07625 +31453350,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.908854167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.32907935,260.016666667,265.8296875,264.27134457,894.0,296.15,77777.0,31453350.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.599143229167,-1.20713341848,-0.404331642198,2284.19718735,31453166.0186,2.77792974528,3.48338629877,4.12083333333 +31453671,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.713802083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.271338596,259.945333333,265.78621875,264.224597275,894.0,296.15,77777.0,31453671.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.597309739583,-1.19464879451,-0.404327471792,2284.22052385,31453486.9185,2.76544512131,3.46782377961,4.16541666667 +31453992,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.51875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.213597842,259.874,265.74275,264.17784998,894.0,296.15,77777.0,31453992.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.59547625,-1.18216417053,-0.404323301387,2284.24386036,31453807.8185,2.75296049733,3.45226126045,4.21 +31454313,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.316302083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.145304773,259.802666667,265.687940972,264.122156708,894.0,296.15,77777.0,31454313.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.593975572917,-1.16868865716,-0.404319127744,2284.26719686,31454128.7184,2.73948498396,3.43669874128,4.25458333333 +31454634,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.110104167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.071661236,259.731333333,265.627381944,264.061927448,894.0,296.15,77777.0,31454634.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.592643645833,-1.15471072098,-0.404314952459,2284.29053336,31454449.6184,2.72550704778,3.42113622212,4.29916666667 +31454955,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.90390625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.998017698,259.66,265.566822916,264.001698188,894.0,296.15,77777.0,31454955.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.59131171875,-1.1407327848,-0.404310777174,2284.31386987,31454770.5184,2.7115291116,3.40557370295,4.34375 +31455276,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.716875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.930313891,259.588666667,265.512652778,263.9466659,894.0,296.15,77777.0,31455276.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.589807291667,-1.12580178031,-0.404306597694,2284.33720637,31455091.4184,2.69659810711,3.39001118379,4.38833333333 +31455597,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.53296875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.863578517,259.517333333,265.459524305,263.892480943,894.0,296.15,77777.0,31455597.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.588274739583,-1.11071538424,-0.40430241753,2284.36054288,31455412.3183,2.68151171104,3.37444866463,4.43291666667 +31455918,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.3521875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.798508629,259.446,265.4081875,263.839731226,894.0,296.15,77777.0,31455918.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5866915625,-1.09558295575,-0.404298237093,2284.38387938,31455733.2183,2.66637928255,3.35888614546,4.4775 +31456239,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.224010417,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.76147442,259.374666667,265.387010417,263.811141354,894.0,296.15,77777.0,31456239.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.584256197917,-1.07967564835,-0.404294052049,2284.40721589,31456054.1183,2.65047197515,3.3433236263,4.52208333333 +31456560,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.095833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.72444021,259.303333333,265.365833333,263.782551483,894.0,296.15,77777.0,31456560.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.581820833333,-1.06376834095,-0.404289867006,2284.43055239,31456375.0183,2.63456466774,3.32776110714,4.56666666667 +31456881,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.98734375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.696539995,259.2348125,265.35375,263.760806298,894.0,296.15,77777.0,31456881.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.57902265625,-1.047707465,-0.404285680732,2284.4538889,31456695.9183,2.61850379179,3.3134656561,4.61125 +31457202,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.9371875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.695703469,259.174625,265.368611111,263.759341665,894.0,296.15,77777.0,31457202.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.575149479167,-1.03119157117,-0.40428149081,2284.47722541,31457016.8183,2.60198789796,3.30292448102,4.65583333333 +31457523,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.88703125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.694866944,259.1144375,265.383472222,263.757877031,894.0,296.15,77777.0,31457523.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.571276302083,-1.01467567733,-0.404277300888,2284.50056192,31457337.7182,2.58547200412,3.29238330593,4.70041666667 +31457844,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.861875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.702093344,259.06025,265.405444445,263.761130191,894.0,296.15,77777.0,31457844.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.566978125,-0.997957339402,-0.404273108777,2284.52389842,31457658.6183,2.56875366619,3.28497281518,4.745 +31458165,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.867447917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.719230423,259.0134375,265.436157408,263.770182305,894.0,296.15,77777.0,31458165.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.562157552083,-0.980990163941,-0.404268913976,2284.54723493,31457979.5183,2.55178649073,3.28141045728,4.78958333333 +31458486,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.873020833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.736367502,258.966625,265.466870371,263.77923442,894.0,296.15,77777.0,31458486.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.557336979167,-0.964022988479,-0.404264719175,2284.57057144,31458300.4183,2.53481931527,3.27784809937,4.83416666667 +31458807,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.89296875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.755868105,258.9198125,265.500138889,263.790153324,894.0,296.15,77777.0,31458807.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.55244453125,-0.946840880647,-0.404260521228,2284.59390795,31458621.3183,2.51763720744,3.27582244933,4.87875 +31459128,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.920833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.776670357,258.873,265.534814815,263.802100317,894.0,296.15,77777.0,31459128.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5475125,-0.929540404262,-0.404256321549,2284.61724445,31458942.2184,2.50033673106,3.27464310218,4.92333333333 +31459449,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.948697917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.79747261,258.8261875,265.569490741,263.81404731,894.0,296.15,77777.0,31459449.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.54258046875,-0.912239927878,-0.404252121869,2284.64058096,31459263.1184,2.48303625468,3.27346375502,4.96791666667 +31459770,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.9671875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.809313772,258.768125,265.5975,263.822216588,894.0,296.15,77777.0,31459770.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5382578125,-0.894734861391,-0.404247918086,2284.66391747,31459584.0184,2.46553118819,3.27042317785,5.0125 +31460091,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.98390625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.819462283,258.7079375,265.62425,263.829672299,894.0,296.15,77777.0,31460091.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.534050260417,-0.877191150106,-0.404243713528,2284.68725398,31459904.9184,2.4479874769,3.267031035,5.05708333333 +31460412,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.829223298,258.647333333,265.65069375,263.83694333,894.0,296.15,77777.0,31460412.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.529866666667,-0.859640971275,-0.404239508788,2284.71059048,31460225.8185,2.43043729807,3.2635343542,5.10183333333 +31460733,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.829006292,258.576,265.669251562,263.839458872,894.0,296.15,77777.0,31460733.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5263,-0.841924253132,-0.404235299352,2284.73392699,31460546.7185,2.41272057993,3.25734582119,5.150875 +31461054,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.828789286,258.504666667,265.687809375,263.841974414,894.0,296.15,77777.0,31461054.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.522733333333,-0.824207534989,-0.404231089916,2284.7572635,31460867.6185,2.39500386179,3.25115728818,5.19991666667 +31461375,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.828454906,258.433333333,265.706248553,263.844360403,894.0,296.15,77777.0,31461375.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.519166666667,-0.806463494939,-0.40422687934,2284.78060001,31461188.5186,2.37725982174,3.2449289853,5.25034722222 +31461696,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.827735539,258.362,265.724298611,263.846321459,894.0,296.15,77777.0,31461696.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5156,-0.788629839032,-0.404222665026,2284.80393652,31461509.4186,2.35942616583,3.23857023723,5.30533333333 +31462017,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.827016173,258.290666667,265.742348669,263.848282515,894.0,296.15,77777.0,31462017.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.512033333333,-0.770796183125,-0.404218450713,2284.82727303,31461830.3187,2.34159250992,3.23221148916,5.36031944445 +31462338,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.82609576,258.219333333,265.760196412,263.850020813,894.0,296.15,77777.0,31462338.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.508466666667,-0.752931995854,-0.404214234302,2284.85060954,31462151.2187,2.32372832265,3.22587364869,5.41594444445 +31462659,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.824908741,258.148,265.777775868,263.851463714,894.0,296.15,77777.0,31462659.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5049,-0.735027321341,-0.40421001511,2284.87394605,31462472.1188,2.30582364814,3.2195635335,5.47241666667 +31462980,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.823721722,258.076666667,265.795355324,263.852906616,894.0,296.15,77777.0,31462980.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.501333333333,-0.717122646828,-0.404205795918,2284.89728256,31462793.0189,2.28791897363,3.21325341831,5.52888888889 +31463301,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.82226359,258.005333333,265.812663368,263.854047592,894.0,296.15,77777.0,31463301.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.497766666667,-0.699197690661,-0.404201573672,2284.92061907,31463113.9189,2.26999401746,3.20711079109,5.5835 +31463622,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.8206436,257.934,265.829809375,263.855008314,894.0,296.15,77777.0,31463622.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4942,-0.681260626045,-0.404197349603,2284.94395558,31463434.819,2.25205695284,3.2010681567,5.637 +31463943,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.819023609,257.862666667,265.846955382,263.855969036,894.0,296.15,77777.0,31463943.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.490633333333,-0.663323561429,-0.404193125534,2284.96729209,31463755.719,2.23411988822,3.1950255223,5.6905 +31464264,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.979375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.802547241,257.789270833,265.848670833,263.843257833,894.0,296.15,77777.0,31464264.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.487066666667,-0.645387332845,-0.404188897454,2284.99062861,31464076.6191,2.21618365964,3.18885289724,5.74079166667 +31464585,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.954296875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.782863246,257.715429688,265.847054688,263.827594738,894.0,296.15,77777.0,31464585.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4835,-0.627451284768,-0.404184668508,2285.01396512,31464397.5192,2.19824761156,3.18265220601,5.790390625 +31464906,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.92890625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.762910059,257.641557292,265.845157292,263.811684458,894.0,296.15,77777.0,31464906.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.479933333333,-0.609515810981,-0.40418043947,2285.03730164,31464718.4192,2.18031213778,3.17645424186,5.83994097222 +31465227,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.887109375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.728824311,257.566044271,265.828494271,263.782796966,894.0,296.15,77777.0,31465227.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.476366666667,-0.591610487445,-0.404176205646,2285.06063815,31465039.3193,2.16240681424,3.17039944925,5.88693923611 +31465548,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.8453125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.694738564,257.49053125,265.81183125,263.753909475,894.0,296.15,77777.0,31465548.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4728,-0.573705163908,-0.404171971823,2285.08397466,31465360.2194,2.1445014907,3.16434465663,5.9339375 +31465869,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.810703125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.664427123,257.415736979,265.799049479,263.728437685,894.0,296.15,77777.0,31465869.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.469233333333,-0.555812281511,-0.40416773695,2285.10731117,31465681.1195,2.12660860831,3.15860347787,5.98013715277 +31466190,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.80234375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.647900108,257.343567708,265.800442708,263.715440631,894.0,296.15,77777.0,31466190.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.465666666667,-0.537964836314,-0.40416349825,2285.13064768,31466002.0196,2.10876116311,3.15400767143,6.02342013889 +31466511,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.793984375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.631373093,257.271398438,265.801835937,263.702443578,894.0,296.15,77777.0,31466511.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4621,-0.520117391118,-0.404159259549,2285.1539842,31466322.9197,2.09091371791,3.14941186499,6.066703125 +31466832,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.82,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.635202019,257.202666667,265.824266667,263.707815872,894.0,296.15,77777.0,31466832.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.458533333333,-0.502304223869,-0.404155018844,2285.17732071,31466643.8198,2.07310055067,3.14595597672,6.108 +31467153,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.895234375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.66817695,257.138856771,265.876819271,263.739489732,894.0,296.15,77777.0,31467153.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.454966666667,-0.48454013641,-0.404150775267,2285.20065723,31466964.7199,2.05533646321,3.144132244,6.146453125 +31467474,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.97046875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.701151881,257.075046875,265.929371875,263.771163592,894.0,296.15,77777.0,31467474.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4514,-0.46677604895,-0.40414653169,2285.22399374,31467285.62,2.03757237575,3.14230851129,6.18490625 +31467795,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.116796875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.7564975,257.018346354,266.004166667,263.819782583,894.0,296.15,77777.0,31467795.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.447291666667,-0.449077481881,-0.404142285151,2285.24733026,31467606.5201,2.01987380868,3.14159265359,6.21861979167 +31468116,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.3090625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.826298025,256.966239583,266.093333333,263.879350736,894.0,296.15,77777.0,31468116.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.442833333333,-0.431421251066,-0.404138036697,2285.27066677,31467927.4203,2.00221757786,3.14159265359,6.24927083333 +31468437,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.501328125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.896098551,256.914132812,266.1825,263.938918889,894.0,296.15,77777.0,31468437.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.438375,-0.41376502025,-0.404133788244,2285.29400329,31468248.3204,1.98456134704,3.14159265359,6.279921875 +31468758,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.76078125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.967538559,256.868744792,266.271666667,263.993968861,894.0,296.15,77777.0,31468758.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.432961111111,-0.396214833042,-0.404129535871,2285.3173398,31468569.2205,1.96701115983,3.14159265359,6.30549652778 +31469079,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.036640625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.039378906,256.824997396,266.360833333,264.047915556,894.0,296.15,77777.0,31469079.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.427313888889,-0.378690540202,-0.404125282541,2285.34067632,31468890.1207,1.949486867,3.14159265359,6.32983159722 +31469400,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.3125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.111219253,256.78125,266.45,264.101862251,894.0,296.15,77777.0,31469400.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.421666666667,-0.361166247363,-0.404121029211,2285.36401284,31469211.0208,1.93196257416,3.14159265359,6.35416666667 +31469721,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.621796875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.183862234,256.740846354,266.539166667,264.153704155,894.0,296.15,77777.0,31469721.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.415722222222,-0.343798026748,-0.404116771005,2285.38734935,31469531.9209,1.91459435354,3.14159265359,6.37775868056 +31470042,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.93109375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.256505215,256.700442708,266.628333333,264.205546058,894.0,296.15,77777.0,31470042.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.409777777778,-0.326429806133,-0.404112512799,2285.41068587,31469852.8211,1.89722613293,3.14159265359,6.40135069445 +31470363,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.237109375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.329061141,256.659710937,266.7175,264.257712297,894.0,296.15,77777.0,31470363.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.40395,-0.309097043091,-0.404108253636,2285.43402238,31470173.7212,1.87989336989,3.14159265359,6.425890625 +31470684,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.5296875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.401260561,256.617635417,266.806666667,264.311206765,894.0,296.15,77777.0,31470684.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.3986,-0.291909487249,-0.404103990555,2285.4573589,31470494.6214,1.86270581405,3.14159265359,6.4543125 +31471005,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.822265625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.47345998,256.575559896,266.895833333,264.364701232,894.0,296.15,77777.0,31471005.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.39325,-0.274721931407,-0.404099727473,2285.48069542,31470815.5215,1.84551825821,3.14159265359,6.482734375 +31471326,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.105,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.54540246,256.5325,266.985,264.419062903,894.0,296.15,77777.0,31471326.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.3881734375,-0.257615264911,-0.404095462477,2285.50403194,31471136.4217,1.82841159171,3.14159265359,6.513671875 +31471647,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.3725,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.616947297,256.487916667,267.074166667,264.474766675,894.0,296.15,77777.0,31471647.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.383520052083,-0.240633784309,-0.40409119452,2285.52736846,31471457.3219,1.81143011111,3.14159265359,6.54850260417 +31471968,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.64,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.688492133,256.443333333,267.163333333,264.530470447,894.0,296.15,77777.0,31471968.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.378866666667,-0.223652303706,-0.404086926563,2285.55070497,31471778.2221,1.7944486305,3.14159265359,6.58333333333 +31472289,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.9075,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.760019026,256.39875,267.2525,264.586170062,894.0,296.15,77777.0,31472289.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.37431171875,-0.206807792749,-0.404082655735,2285.5740415,31472099.1222,1.77760411955,3.14159265359,6.6195859375 +31472610,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.175,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.831533386,256.354166667,267.341666667,264.641866773,894.0,296.15,77777.0,31472610.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.369825520833,-0.190058943131,-0.404078382902,2285.59737802,31472420.0224,1.76085526993,3.14159265359,6.65683159722 +31472931,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.4425,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.903047745,256.309583333,267.430833333,264.697563485,894.0,296.15,77777.0,31472931.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.365339322917,-0.173310093512,-0.404074110069,2285.62071454,31472740.9226,1.74410642031,3.14159265359,6.69407725694 +31473252,0.0,0.1,0.5,0.2,0.0,0.39606617647,0.525,0.0,214.71,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.974538147,256.265,267.52,264.753076194,894.0,296.15,77777.0,31473252.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.360940625,-0.156765855459,-0.404069833409,2285.64405106,31473061.8227,1.72756218226,3.14159265359,6.73103125 +31473573,0.0,0.1,0.5,0.2,0.0,0.900579044115,1.19375,0.0,214.9775,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,248.046021987,256.220416667,267.609166667,264.808538521,894.0,296.15,77777.0,31473573.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.356565885417,-0.140277642,-0.404065555701,2285.66738758,31473382.7229,1.7110739688,3.14159265359,6.76790538194 +31473894,0.0,0.1,0.5,0.2,0.0,1.40509191176,1.8625,0.0,215.245,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,248.117505828,256.175833333,267.698333333,264.864000848,894.0,296.15,77777.0,31473894.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.352191145833,-0.123789428542,-0.404061277993,2285.69072409,31473703.6231,1.69458575534,3.14159265359,6.80477951389 +31474215,0.0,0.1,0.5,0.2,0.0,2.76465992647,4.01875,0.0,215.5125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,248.188959679,256.13125,267.7875,264.918994995,894.0,296.15,77777.0,31474215.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.34787109375,-0.107586164588,-0.404056995502,2285.71406062,31474024.5233,1.67838249138,3.14159265359,6.8385546875 +31474536,0.0,0.1,0.5,0.2,0.0,4.14051470588,6.20333333333,0.0,215.78,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,248.260412959,256.086666667,267.876666667,264.973980223,894.0,296.15,77777.0,31474536.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.343552083333,-0.0913883282443,-0.404052712919,2285.73739714,31474345.4235,1.66218465504,3.14159265359,6.87227083333 +31474857,0.0,0.1,0.5,0.2,0.0,5.63442095588,8.70458333333,0.0,216.05046875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.336777521,256.038916667,267.957520833,265.022379232,894.0,296.15,77777.0,31474857.0,0.693942910593,-1.83015225364,0.000989583333333,0.00197916666667,101325.0,0.339329557292,-0.0752476915911,-0.404048429471,2285.76073366,31474666.3237,1.64604401839,3.14133358128,6.90534375 +31475178,0.0,0.1,0.5,0.2,0.0,7.67509191178,12.6725,0.0,216.3346875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.435889073,255.9765,267.999875,265.04027364,894.0,296.15,77777.0,31475178.0,0.693942910593,-1.83015225364,0.0065625,0.013125,101325.0,0.33555390625,-0.0593719798209,-0.404044142013,2285.78407018,31474987.2239,1.63016830662,3.13987459511,6.9354375 +31475499,0.0,0.1,0.5,0.2,0.0,9.71576286767,16.6404166667,0.0,216.61890625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.535000624,255.914083333,268.042229167,265.058168048,894.0,296.15,77777.0,31475499.0,0.693942910593,-1.83015225364,0.0121354166667,0.0242708333333,101325.0,0.331778255208,-0.0434962680507,-0.404039854555,2285.8074067,31475308.1241,1.61429259485,3.13841560894,6.96553125 +31475820,0.0,0.1,0.5,0.2,0.0,11.927757353,21.375,2.4,216.940625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.648496314,255.845,268.070694444,265.065501453,894.0,296.15,77777.0,31475820.0,0.693942910593,-1.83015225364,0.0202083333333,0.0404166666667,101325.0,0.328228298611,-0.0277536900079,-0.404035565275,2285.83074322,31475629.0243,1.59855001681,3.13659301251,6.99479166667 +31476141,0.0,0.1,0.5,0.2,0.0,14.42671875,27.39375,8.82,217.32515625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.786085435,255.76475,268.075895833,265.055145175,894.0,296.15,77777.0,31476141.0,0.693942910593,-1.83015225364,0.03246875,0.0649375,101325.0,0.325056380208,-0.0122341109584,-0.404031272943,2285.85407975,31475949.9245,1.58303043775,3.13416136888,7.02265625 +31476462,0.0,0.1,0.5,0.2,0.0,16.9256801471,33.4125,15.24,217.7096875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.923674555,255.6845,268.081097222,265.044788898,894.0,296.15,77777.0,31476462.0,0.693942910593,-1.83015225364,0.0447291666667,0.0894583333333,101325.0,0.321884461805,0.00328546809107,-0.404026980611,2285.87741627,31476270.8247,1.5675108587,3.13172972526,7.05052083333 +31476783,0.0,0.1,0.5,0.2,0.0,21.3817248774,55.3244054725,24.4495827161,218.20859375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.078194343,255.609333333,268.113409722,265.056546282,894.0,296.15,77777.0,31476783.0,0.693942910593,-1.83015225364,0.0569895833333,0.113979166667,101325.0,0.318659592014,0.0185812084498,-0.4040226855,2285.90075279,31476591.7249,1.55221511834,3.13040709294,7.07711458333 +31477104,0.0,0.1,0.5,0.2,0.0,27.3136029412,89.2213134326,35.7627851852,218.79375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.245481519,255.538,268.166166667,265.084979542,894.0,296.15,77777.0,31477104.0,0.693942910593,-1.83015225364,0.06925,0.1385,101325.0,0.315394791667,0.0337081524187,-0.404018388293,2285.92408931,31476912.6251,1.53708817437,3.12992076422,7.10275 +31477425,0.0,0.1,0.5,0.2,0.0,33.2454810049,123.118221393,47.0759876544,219.37890625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.412768695,255.466666667,268.218923611,265.113412802,894.0,296.15,77777.0,31477425.0,0.693942910593,-1.83015225364,0.0815104166667,0.163020833333,101325.0,0.312129991319,0.0488350963876,-0.404014091086,2285.94742583,31477233.5253,1.5219612304,3.1294344355,7.12838541667 +31477746,0.0,0.1,0.5,0.2,0.0,42.1061458333,182.71539801,59.9670995885,220.1946875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.620468239,255.422666667,268.373041667,265.221850835,894.0,296.15,77777.0,31477746.0,0.693942910593,-1.83015225364,0.0886458333333,0.177291666667,101325.0,0.30826015625,0.0636310998896,-0.404009790144,2285.97076236,31477554.4255,1.5071652269,3.13267511195,7.1523125 +31478067,0.0,0.1,0.5,0.2,0.0,51.8597334559,250.148022388,73.3392814815,221.08078125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.840488628,255.387,268.5580625,265.354680568,894.0,296.15,77777.0,31478067.0,0.693942910593,-1.83015225364,0.09421875,0.1884375,101325.0,0.304205859375,0.0783262069078,-0.404005488063,2285.99409888,31477875.3258,1.49247011988,3.13705207046,7.17571875 +31478388,0.0,0.1,0.5,0.2,0.0,61.6133210785,317.580646766,86.7114633745,221.966875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,250.060509016,255.351333333,268.743083333,265.487510301,894.0,296.15,77777.0,31478388.0,0.693942910593,-1.83015225364,0.0997916666667,0.199583333333,101325.0,0.3001515625,0.093021313926,-0.404001185982,2286.01743541,31478196.226,1.47777501287,3.14142902897,7.199125 +31478709,0.0,0.1,0.5,0.2,0.0,71.1131954657,388.429181592,100.734028807,223.089010417,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.359056189,255.341416667,269.064364583,265.717125982,894.0,296.15,77777.0,31478709.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.293740680803,0.107260232953,-0.40399687921,2286.04077193,31478517.1263,1.46353609384,3.15236006244,7.22038541667 +31479030,0.0,0.1,0.5,0.2,0.0,80.6032169118,459.410373134,114.781851852,224.2203125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.660652947,255.3325,269.3909375,265.95050034,894.0,296.15,77777.0,31479030.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.28723828125,0.121481435942,-0.403992572256,2286.06410845,31478838.0265,1.44931489085,3.16354562309,7.2415625 +31479351,0.0,0.1,0.5,0.2,0.0,89.4023008579,526.191042288,128.717237037,225.367552083,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.972023277,255.323583333,269.728017361,266.18935798,894.0,296.15,77777.0,31479351.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.280365904018,0.135620189425,-0.403988264527,2286.08744497,31479158.9268,1.43517613737,3.17550385554,7.26238541667 +31479672,0.0,0.1,0.5,0.2,0.0,94.5434803922,570.733651741,142.057362963,226.599166667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,251.335136056,255.314666667,270.120722222,266.457244757,894.0,296.15,77777.0,31479672.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.271534821428,0.149322445527,-0.403983952699,2286.1107815,31479479.827,1.42147388127,3.19155270343,7.28133333333 +31479993,0.0,0.1,0.5,0.2,0.0,99.6846599265,615.276261194,155.397488889,227.83078125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,251.698248835,255.30575,270.513427084,266.725131533,894.0,296.15,77777.0,31479993.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.262703738839,0.163024701629,-0.40397964087,2286.13411802,31479800.7273,1.40777162517,3.20760155131,7.30028125 +31480314,0.0,0.1,0.5,0.2,0.0,103.426639493,651.219305429,168.451786919,229.086145833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,252.069211729,255.296833333,270.914576389,266.995656391,894.0,296.15,77777.0,31480314.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.253745424107,0.176525592875,-0.403975327311,2286.15745455,31480121.6276,1.39427073392,3.2243412587,7.3184375 +31480635,0.0,0.1,0.5,0.2,0.0,104.627966486,671.547349665,180.987081666,230.384635417,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,252.45442878,255.287916667,271.331059028,267.270971451,894.0,296.15,77777.0,31480635.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.244556082589,0.189660847934,-0.403971010609,2286.18079107,31480442.5278,1.38113547886,3.24233542148,7.33515625 +31480956,0.0,0.1,0.5,0.2,0.0,105.829293478,691.8753939,193.522376412,231.683125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,252.83964583,255.279,271.747541667,267.546286511,894.0,296.15,77777.0,31480956.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.235366741071,0.202796102992,-0.403966693907,2286.2041276,31480763.4281,1.3680002238,3.26032958427,7.351875 +31481277,0.0,0.1,0.5,0.2,0.0,106.60361866,710.80041737,206.037317506,233.000052083,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.215321715,255.270083333,272.15378125,267.813573625,894.0,296.15,77777.0,31481277.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.227066350447,0.215590590187,-0.403962374518,2286.22746413,31481084.3283,1.3552057366,3.27778742192,7.36736458333 +31481598,0.0,0.1,0.5,0.2,0.0,107.030552536,728.584000217,218.535699697,234.331979167,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.583235295,255.261166667,272.5516875,268.074329529,894.0,296.15,77777.0,31481598.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.219489174107,0.22810784251,-0.403958052943,2286.25080065,31481405.2286,1.34268848429,3.29480892725,7.38185416667 +31481919,0.0,0.1,0.5,0.2,0.0,107.457486413,746.367583063,231.034081888,235.66390625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.951148876,255.25225,272.94959375,268.335085432,894.0,296.15,77777.0,31481919.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.211911997768,0.240625094832,-0.403953731368,2286.27413718,31481726.1289,1.33017123197,3.31183043258,7.39634375 +31482240,0.0,0.1,0.5,0.2,0.0,107.342391304,761.637162016,243.440746844,237.0,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,254.302766596,255.243333333,273.33,268.58391793,894.0,296.15,77777.0,31482240.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.205528571429,0.252640095979,-0.403949406149,2286.29747371,31482047.0292,1.31815623082,3.32776110714,7.40847916667 +31482561,0.0,0.1,0.5,0.2,0.0,107.044361413,776.058264655,255.816457232,238.3375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,254.648884463,255.234416667,273.7045,268.828726278,894.0,296.15,77777.0,31482561.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.199548035714,0.264485587354,-0.403945079701,2286.32081023,31482367.9295,1.30631073944,3.3433236263,7.41982005208 +31482882,0.0,0.1,0.5,0.2,0.0,106.746331522,790.479367294,268.192167621,239.675,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,254.995002329,255.2255,274.079,269.073534626,894.0,296.15,77777.0,31482882.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.1935675,0.27633107873,-0.403940753253,2286.34414676,31482688.8298,1.29446524806,3.35888614546,7.4311609375 +31483203,0.0,0.1,0.5,0.2,0.0,105.810647645,800.954391412,280.371134684,241.0125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,255.341103076,255.216583333,274.4535,269.313657093,894.0,296.15,77777.0,31483203.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.187911607143,0.287489461358,-0.403936422205,2286.36748329,31483009.7301,1.28330686543,3.37444866463,7.43981901042 +31483524,0.0,0.1,0.5,0.2,0.0,104.837083333,811.194995025,292.538414025,242.35,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,255.687202805,255.207666667,274.828,269.553501191,894.0,296.15,77777.0,31483524.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.182275,0.298607025644,-0.403932090884,2286.39081982,31483330.6303,1.27218930115,3.39001118379,7.44831770833 +31483845,0.0,0.1,0.5,0.2,0.0,103.828102355,821.142226398,304.570828463,243.6875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,256.03329999,255.19875,275.2025,269.792792286,894.0,296.15,77777.0,31483845.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.176702678572,0.309614407942,-0.403927758879,2286.41415635,31483651.5306,1.26118191885,3.40557370295,7.45667578125 +31484166,0.0,0.1,0.5,0.2,0.0,102.601899154,829.290108038,315.776071498,245.025,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,256.379381577,255.189833333,275.577,270.028691635,894.0,296.15,77777.0,31484166.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.171524642858,0.319946007376,-0.403923422686,2286.43749287,31483972.4309,1.25085031942,3.42113622212,7.46417135417 +31484487,0.0,0.1,0.5,0.2,0.0,101.375695954,837.437989678,326.981314534,246.3625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,256.725463163,255.180916667,275.9515,270.264590983,894.0,296.15,77777.0,31484487.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.166346607143,0.330277606811,-0.403919086492,2286.4608294,31484293.3312,1.24051871999,3.43669874128,7.47166692708 +31484808,0.0,0.1,0.5,0.2,0.0,100.150108695,845.542998773,337.700900059,247.7,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,257.071538644,255.172,276.326,270.499585661,894.0,296.15,77777.0,31484808.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.161361428572,0.340324865465,-0.403914748659,2286.48416593,31484614.2316,1.23047146133,3.45226126045,7.47944375 +31485129,0.0,0.1,0.5,0.2,0.0,98.9257362115,853.56345368,347.46266105,249.0375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,257.417602083,255.163083333,276.7005,270.732796125,894.0,296.15,77777.0,31485129.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.156756607143,0.349811340912,-0.403910407593,2286.50750246,31484935.1319,1.22098498588,3.46782377961,7.48777526042 +31485450,0.0,0.1,0.5,0.2,0.0,97.7013637277,861.583908587,357.22442204,250.375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,257.763665522,255.154166667,277.075,270.96600659,894.0,296.15,77777.0,31485450.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.152151785714,0.35929781636,-0.403906066527,2286.53083899,31485256.0322,1.21149851043,3.48338629877,7.49610677083 +31485771,0.0,0.1,0.5,0.2,0.0,96.3697146739,869.002843947,366.389013735,251.7659375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,258.122984021,255.152671875,277.461654412,271.205356743,894.0,296.15,77777.0,31485771.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.147708125,0.368302496272,-0.403901722865,2286.55417552,31485576.9325,1.20249383052,3.49894881794,7.52388359375 +31486092,0.0,0.1,0.5,0.2,0.0,94.9439633655,875.894130581,375.029772713,253.20375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,258.493929767,255.1576875,277.858970588,271.45009259,894.0,296.15,77777.0,31486092.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.143405833333,0.376884548523,-0.403897376927,2286.57751205,31485897.8329,1.19391177827,3.5145113371,7.56871770833 +31486413,0.0,0.1,0.5,0.2,0.0,93.5182120572,882.785417215,383.670531691,254.6415625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,258.864875513,255.162703125,278.256286764,271.694828437,894.0,296.15,77777.0,31486413.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.139103541667,0.385466600773,-0.403893030989,2286.60084859,31486218.7332,1.18532972602,3.53007385626,7.61355182292 +31486734,0.0,0.1,0.5,0.2,0.0,91.7975271739,888.123330338,391.729190532,256.128125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,259.246790027,255.17015625,278.664691176,271.943168411,894.0,296.15,77777.0,31486734.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.13496375,0.393346909327,-0.403888681499,2286.62418512,31486539.6336,1.17744941746,3.54563637543,7.6776828125 +31487055,0.0,0.1,0.5,0.2,0.0,89.9671875,892.883707157,399.571427528,257.6328125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,259.632782673,255.178515625,279.077218137,272.192848381,894.0,296.15,77777.0,31487055.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.130884375,0.400966313174,-0.403884330689,2286.64752165,31486860.5339,1.16983001362,3.56119889459,7.74898828125 +31487376,0.0,0.1,0.5,0.2,0.0,88.1368478261,897.644083976,407.413664524,259.1375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.01877532,255.186875,279.489745098,272.442528352,894.0,296.15,77777.0,31487376.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.126805,0.408585717021,-0.403879979878,2286.67085818,31487181.4343,1.16221060977,3.57676141376,7.82029375 +31487697,0.0,0.1,0.5,0.2,0.0,86.02825,900.949149265,414.230127155,260.5184375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.37037272,255.164296875,279.874125,272.671528126,894.0,296.15,77777.0,31487697.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.123303125,0.415262888024,-0.40387562456,2286.69419471,31487502.3346,1.15553343877,3.59232393292,7.85437109375 +31488018,0.0,0.1,0.5,0.2,0.0,83.8971666667,904.136613623,420.963698929,261.889375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.719190707,255.13921875,280.256230392,272.898856773,894.0,296.15,77777.0,31488018.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.119847916667,0.421863918999,-0.403871268878,2286.71753124,31487823.2349,1.1489324078,3.60788645208,7.88544010417 +31488339,0.0,0.1,0.5,0.2,0.0,81.7619907407,907.27140589,427.516711185,263.2196875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,261.057128383,255.105609375,280.629095589,273.12051988,894.0,296.15,77777.0,31488339.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.116517291667,0.428334949396,-0.403866912604,2286.74086777,31488144.1353,1.1424613774,3.62344897125,7.90351588542 +31488660,0.0,0.1,0.5,0.2,0.0,79.5972222222,910.025338422,432.764139237,264.25625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,261.316393043,255.0103125,280.935147059,273.301216768,894.0,296.15,77777.0,31488660.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.1140875,0.433865975612,-0.40386255205,2286.76420431,31488465.0356,1.13693035118,3.63901149041,7.827640625 +31488981,0.0,0.1,0.5,0.2,0.0,77.4324537037,912.779270953,438.011567289,265.2928125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,261.575657704,254.915015625,281.241198529,273.481913656,894.0,296.15,77777.0,31488981.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.111657708333,0.439397001827,-0.403858191496,2286.78754084,31488785.936,1.13139932497,3.65457400957,7.75176536458 +31489302,0.0,0.1,0.5,0.2,0.0,75.2702037037,915.354243232,442.857138671,266.180625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,261.797395012,254.804666667,281.511302083,273.639920967,894.0,296.15,77777.0,31489302.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.109433333333,0.444573454215,-0.403853829395,2286.81087738,31489106.8363,1.12622287258,3.67823168923,7.65183333333 +31489623,0.0,0.1,0.5,0.2,0.0,73.1133611111,917.544977319,446.839900144,266.7490625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,261.938558889,254.662,281.704223345,273.74921242,894.0,296.15,77777.0,31489623.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.10765,0.448988615735,-0.40384946397,2286.83421391,31489427.7367,1.12180771106,3.71927015465,7.50025 +31489944,0.0,0.1,0.5,0.2,0.0,70.9565185185,919.735711406,450.822661616,267.3175,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.079722766,254.519333333,281.897144608,273.858503872,894.0,296.15,77777.0,31489944.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.105866666667,0.453403777256,-0.403845098545,2286.85755044,31489748.6371,1.11739254954,3.76030862007,7.34866666667 +31490265,0.0,0.1,0.5,0.2,0.0,68.8251388889,921.5702999,454.269204219,267.7140625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.179887616,254.376666667,282.046086091,273.938281738,894.0,296.15,77777.0,31490265.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.104083333333,0.457225611466,-0.403840730616,2286.88088697,31490069.5375,1.11357071533,3.81994311894,7.19708333333 +31490586,0.0,0.1,0.5,0.2,0.0,66.7178333333,923.068168923,457.208776254,267.948125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.241289751,254.234,282.153446691,273.990155848,894.0,296.15,77777.0,31490586.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.1023,0.460486481673,-0.40383636032,2286.90422351,31490390.4379,1.11030984512,3.89715932216,7.0455 +31490907,0.0,0.1,0.5,0.2,0.0,64.6105277778,924.566037946,460.148348289,268.1821875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.302691885,254.091333333,282.260807292,274.042029959,894.0,296.15,77777.0,31490907.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.100516666667,0.463747351881,-0.403831990024,2286.92756004,31490711.3383,1.10704897492,3.97437552539,6.89391666667 +31491228,0.0,0.1,0.5,0.2,0.0,62.5332395833,925.672935207,462.371884138,268.32125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.341379335,253.948666667,282.343859069,274.077598209,894.0,296.15,77777.0,31491228.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0987333333333,0.466167415879,-0.403827616268,2286.95089657,31491032.2386,1.10462891092,4.06154737755,6.74233333333 +31491549,0.0,0.1,0.5,0.2,0.0,60.4681953125,926.620357143,464.303352595,268.4215625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.370801583,253.806,282.416995405,274.106515384,894.0,296.15,77777.0,31491549.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.09695,0.468244519451,-0.403823241101,2286.97423311,31491353.139,1.10255180734,4.15278008653,6.59075 +31491870,0.0,0.1,0.5,0.2,0.0,58.4031510417,927.567779079,466.234821052,268.521875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.400223831,253.663333333,282.49013174,274.135432559,894.0,296.15,77777.0,31491870.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0951666666667,0.470321623023,-0.403818865934,2286.99756965,31491674.0394,1.10047470377,4.2440127955,6.43916666667 +31492191,0.0,0.1,0.5,0.2,0.0,56.3456848958,928.110087822,467.074670191,268.6828125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.443900317,253.520666667,282.578780944,274.17385676,894.0,296.15,77777.0,31492191.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0933833333333,0.471308113892,-0.403814486351,2287.02090618,31491994.9398,1.0994882129,4.32786196754,6.28758333333 +31492512,0.0,0.1,0.5,0.2,0.0,54.289,928.610632319,467.801981256,268.85,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.489046313,253.378,282.669029412,274.213261067,894.0,296.15,77777.0,31492512.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0916,0.472182170463,-0.403810106314,2287.04424272,31492315.8402,1.09861415633,4.4109499502,6.136 +31492833,0.0,0.1,0.5,0.2,0.0,52.2333463542,929.045915301,468.392626083,269.0275,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.536623011,253.235333333,282.761916667,274.254280239,894.0,296.15,77777.0,31492833.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0898166666667,0.472931702802,-0.403805725775,2287.06757925,31492636.7406,1.09786462399,4.49285794025,5.98441666667 +31493154,0.0,0.1,0.5,0.2,0.0,50.1866927083,928.911643248,467.790547387,269.295,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.605413112,253.092666667,282.877833333,274.309392793,894.0,296.15,77777.0,31493154.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0880333333333,0.472594478216,-0.403801340867,2287.09091579,31492957.641,1.09820184858,4.56446781296,5.83283333333 +31493475,0.0,0.1,0.5,0.2,0.0,48.1400390625,928.777371194,467.188468692,269.5625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.674203212,252.95,282.99375,274.364505346,894.0,296.15,77777.0,31493475.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.08625,0.472257253631,-0.403796955958,2287.11425233,31493278.5414,1.09853907316,4.63607768568,5.68125 +31493796,0.0,0.1,0.5,0.2,0.0,46.0968854167,928.397041374,466.151362817,269.83,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.742933723,252.807333333,283.109666667,274.419340473,894.0,296.15,77777.0,31493796.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0844666666667,0.471558729203,-0.403792569593,2287.13758886,31493599.4418,1.09923759759,4.70767975351,5.52966666667 +31494117,0.0,0.1,0.5,0.2,0.0,44.0619348958,927.440013661,464.094661991,270.0975,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.811524568,252.664666667,283.225583333,274.473525384,894.0,296.15,77777.0,31494117.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0826833333333,0.470013408269,-0.403788179815,2287.1609254,31493920.3422,1.10078291853,4.77926352861,5.37808333333 +31494438,0.0,0.1,0.5,0.2,0.0,42.026984375,926.482985948,462.037961165,270.365,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.880115413,252.522,283.3415,274.527710294,894.0,296.15,77777.0,31494438.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0809,0.468468087336,-0.403783790036,2287.18426194,31494241.2427,1.10232823946,4.85084730372,5.2265 +31494759,0.0,0.1,0.5,0.2,0.0,40.0201051683,924.932310339,459.319199091,270.6325,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.948607091,252.379333333,283.457416667,274.581429521,894.0,296.15,77777.0,31494759.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0791166666667,0.466331525476,-0.403779397845,2287.20759848,31494562.1431,1.10446480132,4.9224265041,5.07491666667 +31495080,0.0,0.1,0.5,0.2,0.0,38.0418269231,922.776785928,455.925884049,270.9,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,263.016997733,252.236666667,283.573333333,274.634674277,894.0,296.15,77777.0,31495080.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0773333333333,0.4635925672,-0.403775003197,2287.23093501,31494883.0435,1.10720375959,4.99400104344,4.92333333333 +31495401,0.0,0.1,0.5,0.2,0.0,36.0635486779,920.621261517,452.532569006,271.1675,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,263.085388375,252.094,283.68925,274.687919033,894.0,296.15,77777.0,31495401.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.07555,0.460853608924,-0.403770608548,2287.25427155,31495203.944,1.10994271787,5.06557558278,4.77175 +31495722,0.0,0.1,0.5,0.2,0.0,34.1444170673,917.659945555,448.336773824,271.435,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,263.153639899,251.951333333,283.805166667,274.740504712,894.0,296.15,77777.0,31495722.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0737666666667,0.457306493764,-0.403766210531,2287.27760809,31495524.8444,1.11348983303,5.13715539625,4.62016666667 +31496043,0.0,0.1,0.5,0.2,0.0,32.2516616587,914.339290116,443.783115878,271.7025,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,263.221829383,251.808666667,283.921083333,274.792796477,894.0,296.15,77777.0,31496043.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0719833333333,0.453398984317,-0.403761811013,2287.30094463,31495845.7448,1.11739734248,5.20873756169,4.46858333333 +31496364,0.0,0.1,0.5,0.2,0.0,30.35890625,911.018634678,439.229457932,271.97,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,263.290018867,251.666,284.037,274.845088243,894.0,296.15,77777.0,31496364.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0702,0.449491474871,-0.403757411495,2287.32428117,31496166.6453,1.12130485192,5.28031972714,4.317 +31496685,0.0,0.1,0.5,0.2,0.0,28.5221003606,907.041493658,433.61199516,272.569010417,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,263.43893173,251.43921875,284.210807292,274.932209585,894.0,296.15,77777.0,31496685.0,0.693942910593,-1.83015225364,0.104947916667,0.21484375,101325.0,0.0684166666667,0.444577213624,-0.403753007653,2287.34761771,31496487.5457,1.12621911317,5.35279094359,4.14018229167 +31497006,0.0,0.1,0.5,0.2,0.0,26.6923617788,902.981428144,427.860157041,273.209895833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,263.598041231,251.2018125,284.391927083,275.023730453,894.0,296.15,77777.0,31497006.0,0.693942910593,-1.83015225364,0.110520833333,0.2315625,101325.0,0.0666333333333,0.43953578373,-0.403748603265,2287.37095425,31496808.4462,1.13126054307,5.42537446122,3.96017708333 +31497327,0.0,0.1,0.5,0.2,0.0,24.866030649,898.894977564,422.004354838,273.88171875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,263.763782271,250.95859375,284.576703125,275.117328046,894.0,296.15,77777.0,31497327.0,0.693942910593,-1.83015225364,0.11665625,0.24996875,101325.0,0.06485,0.434402574253,-0.403744198467,2287.39429079,31497129.3466,1.13639375255,5.49805712122,3.778578125 +31497648,0.0,0.1,0.5,0.2,0.0,23.0768028846,894.521222927,415.016499279,274.890416667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.001733409,250.652083333,284.801291667,275.233538862,894.0,296.15,77777.0,31497648.0,0.693942910593,-1.83015225364,0.128916666667,0.28675,101325.0,0.0630666666667,0.428269987104,-0.403739789209,2287.41762733,31497450.2471,1.14252633969,5.57181933152,3.579625 +31497969,0.0,0.1,0.5,0.2,0.0,21.2875751202,890.14746829,408.02864372,275.899114583,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.239684546,250.345572917,285.025880208,275.349749678,894.0,296.15,77777.0,31497969.0,0.693942910593,-1.83015225364,0.141177083333,0.32353125,101325.0,0.0612833333333,0.422137399955,-0.403735379952,2287.44096387,31497771.1476,1.14865892684,5.64558154182,3.380671875 +31498290,0.0,0.1,0.5,0.2,0.0,19.5495192308,885.534005581,400.824407021,276.8515625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.46017443,250.0703125,285.22609375,275.450622981,894.0,296.15,77777.0,31498290.0,0.693942910593,-1.83015225364,0.1534375,0.3603125,101325.0,0.0595,0.415712698187,-0.403730969329,2287.46430041,31498092.0481,1.15508362861,5.71933561458,3.19234375 +31498611,0.0,0.1,0.5,0.2,0.0,17.9428044872,880.305292155,393.064792062,277.659635417,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.635847092,249.875260417,285.363744792,275.512129998,894.0,296.15,77777.0,31498611.0,0.693942910593,-1.83015225364,0.165697916667,0.39709375,101325.0,0.0577166666667,0.408538235564,-0.403726555203,2287.48763695,31498412.9485,1.16225809123,5.79306880098,3.03128645833 +31498932,0.0,0.1,0.5,0.2,0.0,16.3360897436,875.076578729,385.305177103,278.467708333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.811519754,249.680208333,285.501395833,275.573637016,894.0,296.15,77777.0,31498932.0,0.693942910593,-1.83015225364,0.177958333333,0.433875,101325.0,0.0559333333333,0.401363772941,-0.403722141076,2287.51097349,31498733.849,1.16943255386,5.86680198739,2.87022916667 +31499253,0.0,0.1,0.5,0.2,0.0,14.8672275641,869.229878197,377.266126661,278.90921875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.901786437,249.62434375,285.535453125,275.572524901,894.0,296.15,77777.0,31499253.0,0.693942910593,-1.83015225364,0.18703125,0.46109375,101325.0,0.05415,0.393718508397,-0.403717724629,2287.53431003,31499054.7495,1.1770778184,5.93994569937,2.754328125 +31499574,0.0,0.1,0.5,0.2,0.0,13.549732906,862.704603589,368.920245098,278.948229167,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.898274003,249.7213125,285.455760417,275.502654524,894.0,296.15,77777.0,31499574.0,0.693942910593,-1.83015225364,0.192604166667,0.4778125,101325.0,0.0523666666667,0.385556284882,-0.403713305633,2287.55764657,31499375.65,1.18524004192,6.01244214531,2.68801041667 +31499895,0.0,0.1,0.5,0.2,0.0,12.2322382479,856.179328981,360.574363536,278.987239583,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.89476157,249.81828125,285.376067708,275.432784146,894.0,296.15,77777.0,31499895.0,0.693942910593,-1.83015225364,0.198177083333,0.49453125,101325.0,0.0505833333333,0.377394061367,-0.403708886638,2287.58098311,31499696.5505,1.19340226543,6.08493859125,2.62169270833 +31500216,0.0,0.1,0.5,0.2,0.0,11.0585897436,849.16866717,351.5271537,278.64,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.805954911,250.054,285.194,275.319432249,894.0,296.15,77777.0,31500216.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0503075,0.368605736981,-0.403704464366,2287.60431965,31500017.4509,1.20219058982,5.90924972362,2.6 +31500537,0.0,0.1,0.5,0.2,0.0,9.954866453,841.922053247,342.139020399,278.105,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.675685781,250.357166667,284.962166667,275.184943502,894.0,296.15,77777.0,31500537.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0507644791667,0.359513058005,-0.403700040502,2287.6276562,31500338.3514,1.21128326879,5.61291521744,2.6 +31500858,0.0,0.1,0.5,0.2,0.0,8.85114316239,834.675439323,332.750887097,277.57,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.545416651,250.660333333,284.730333333,275.050454755,894.0,296.15,77777.0,31500858.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0512214583333,0.35042037903,-0.403695616637,2287.65099274,31500659.2519,1.22037594777,5.31658071126,2.6 +31501179,0.0,0.1,0.5,0.2,0.0,7.86764423077,827.301826119,322.060547913,277.035,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.414363651,250.9635,284.4985,274.94726204,894.0,296.15,77777.0,31501179.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0545265625,0.34057025702,-0.403691188542,2287.67432928,31500980.1524,1.23022606977,4.63311670592,2.6 +31501500,0.0,0.1,0.5,0.2,0.0,6.90224358974,819.909094743,311.174177736,276.5,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.28319265,251.266666667,284.266666667,274.848780557,894.0,296.15,77777.0,31501500.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0582604166667,0.330606111327,-0.403686759809,2287.69766583,31501301.053,1.24019021547,3.89137514158,2.6 +31501821,0.0,0.1,0.5,0.2,0.0,5.95375868056,812.366247339,300.218281539,275.965,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.151963247,251.569833333,284.034833333,274.751096051,894.0,296.15,77777.0,31501821.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0620905208333,0.320588837138,-0.403682330757,2287.72100237,31501621.9535,1.25020748965,3.14897363972,2.6 +31502142,0.0,0.1,0.5,0.2,0.0,5.24692708333,802.678885237,288.269156493,275.43,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.019899531,251.873,283.803,274.664796938,894.0,296.15,77777.0,31502142.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.067295625,0.309812584432,-0.403677897156,2287.74433892,31501942.854,1.26098374236,2.39714445907,2.6 +31502463,0.0,0.1,0.5,0.2,0.0,4.54009548611,792.991523135,276.320031446,274.895,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,263.887835815,252.176166667,283.571166667,274.578497825,894.0,296.15,77777.0,31502463.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0725007291667,0.299036331727,-0.403673463555,2287.76767546,31502263.7545,1.27175999506,1.64531527842,2.6 +31502784,0.0,0.1,0.5,0.2,0.0,3.92773148148,782.187643521,264.305343445,274.36,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,263.75554085,252.479333333,283.339333333,274.489939386,894.0,296.15,77777.0,31502784.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0776183333333,0.288062911456,-0.40366902868,2287.79101201,31502584.6551,1.28273341533,1.00476171568,2.6 +31503105,0.0,0.1,0.5,0.2,0.0,3.58190104167,768.233589498,252.105674251,273.825,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,263.622593435,252.7825,283.1075,274.39500642,894.0,296.15,77777.0,31503105.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0824890625,0.276533196986,-0.403664590211,2287.81434855,31502905.5556,1.29426312981,0.6781643606,2.6 +31503426,0.0,0.1,0.5,0.2,0.0,3.23607060185,754.279535474,239.906005056,273.29,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,263.489646019,253.085666667,282.875666667,274.300073454,894.0,296.15,77777.0,31503426.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0873597916667,0.265003482515,-0.403660151741,2287.8376851,31503226.4561,1.30579284428,0.351567005522,2.6 +31503747,0.0,0.1,0.5,0.2,0.0,3.00877025463,738.7562029,227.641566007,272.755,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,263.356297984,253.388833333,282.643833333,274.199738369,894.0,296.15,77777.0,31503747.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0919115104167,0.253154864012,-0.403655711043,2287.86102164,31503547.3566,1.31764146278,0.188786447424,2.6 +31504068,0.0,0.1,0.5,0.2,0.0,2.92177083333,721.375356939,215.300460599,272.22,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,263.222475747,253.692,282.412,274.09300894,894.0,296.15,77777.0,31504068.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.096085625,0.240928767268,-0.403651267706,2287.88435819,31503868.2572,1.32986755953,0.219911485751,2.6 +31504389,0.0,0.1,0.5,0.2,0.0,2.83477141204,703.994510978,202.959355192,271.685,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,263.088653509,253.995166667,282.180166667,273.98627951,894.0,296.15,77777.0,31504389.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.100259739583,0.228702670523,-0.403646824369,2287.90769473,31504189.1577,1.34209365627,0.251036524078,2.6 +31504710,0.0,0.1,0.5,0.2,0.0,2.85026041667,684.921305795,190.597100444,271.15,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.954264678,254.298333333,281.948333333,273.878013127,894.0,296.15,77777.0,31504710.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.104543229167,0.216056902957,-0.403642377848,2287.93103128,31504510.0582,1.35473942384,0.282161562406,2.6 +31505031,0.0,0.1,0.5,0.2,0.0,2.919921875,664.953567882,178.223666759,270.615,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.81957636,254.6015,281.7165,273.768934354,894.0,296.15,77777.0,31505031.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.10888453125,0.203189309385,-0.403637929643,2287.95436783,31504830.9588,1.36760701741,0.313286600733,2.6 +31505352,0.0,0.1,0.5,0.2,0.0,2.98958333333,644.985829968,165.850233074,270.08,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.684888043,254.904666667,281.484666667,273.659855581,894.0,296.15,77777.0,31505352.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.113225833333,0.190321715814,-0.403633481438,2287.97770437,31505151.8594,1.38047461098,0.34441163906,2.6 +31505673,0.0,0.1,0.5,0.2,0.0,3.5971875,606.029350011,152.855759085,269.545,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.549470476,255.207833333,281.252833333,273.548996443,894.0,296.15,77777.0,31505673.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.117737760417,0.176952998358,-0.403629029094,2288.00104092,31505472.7599,1.39384332844,0.375536677388,2.6 +31505994,0.0,0.1,0.5,0.2,0.0,4.299375,563.734190135,139.752091195,269.01,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.413924689,255.511,281.021,273.437824274,894.0,296.15,77777.0,31505994.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.1222796875,0.163496171209,-0.403624576022,2288.02437747,31505793.6605,1.40730015559,0.406661715715,2.6 +31506315,0.0,0.1,0.5,0.2,0.0,5.0333912037,520.290743632,126.617463021,268.475,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.278339229,255.814166667,280.789166667,273.326564414,894.0,296.15,77777.0,31506315.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.126832552083,0.150014117448,-0.403620122722,2288.04771401,31506114.5611,1.42078220935,0.437786754042,2.6 +31506636,0.0,0.1,0.5,0.2,0.0,6.41671296296,453.422249954,112.85124505,267.94,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.141944451,256.117333333,280.557333333,273.213515629,894.0,296.15,77777.0,31506636.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.131608541667,0.136017440796,-0.403615664782,2288.07105056,31506435.4616,1.434778886,0.468911792369,2.6 +31506957,0.0,0.1,0.5,0.2,0.0,7.80003472222,386.553756277,99.085027079,267.405,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.005549674,256.4205,280.3255,273.100466845,894.0,296.15,77777.0,31506957.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.13638453125,0.122020764144,-0.403611206843,2288.09438711,31506756.3622,1.44877556265,0.500036830696,2.6 +31507278,0.0,0.1,0.5,0.2,0.0,9.16831018518,320.294803063,85.4633746797,266.806083333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.859659137,256.727661458,280.093666667,272.992168696,894.0,296.15,77777.0,31507278.0,0.693942910593,-1.83015225364,0.198645833333,0.505416666667,101325.0,0.1418078125,0.107904181076,-0.403606747721,2288.11772366,31507077.2627,1.46289214572,0.53009830901,2.6 +31507599,0.0,0.1,0.5,0.2,0.0,10.4897106481,255.934802829,72.292099639,266.008041667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.684185659,257.047268229,279.861833333,272.898670602,894.0,296.15,77777.0,31507599.0,0.693942910593,-1.83015225364,0.193072916667,0.527708333333,101325.0,0.14924765625,0.0934140433994,-0.403602284914,2288.14106021,31507398.1633,1.4773822834,0.556846388823,2.6 +31507920,0.0,0.1,0.5,0.2,0.0,11.8111111111,191.574802595,59.1208245982,265.21,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.508712181,257.366875,279.63,272.805172509,894.0,296.15,77777.0,31507920.0,0.693942910593,-1.83015225364,0.1875,0.55,101325.0,0.1566875,0.0789239057233,-0.403597822108,2288.16439676,31507719.0639,1.49187242107,0.583594468636,2.6 +31508241,0.0,0.1,0.5,0.2,0.0,12.7789236111,140.21241986,46.7632363732,264.282708333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.307561386,257.688684896,279.398166667,272.719405331,894.0,296.15,77777.0,31508241.0,0.693942910593,-1.83015225364,0.178989583333,0.584041666667,101325.0,0.165326822917,0.0642360723248,-0.403593357164,2288.1877333,31508039.9645,1.50656025447,0.609060822279,2.6 +31508562,0.0,0.1,0.5,0.2,0.0,13.2953472222,105.442740314,35.4443972746,263.190416667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.073631039,258.013307292,279.166333333,272.643507408,894.0,296.15,77777.0,31508562.0,0.693942910593,-1.83015225364,0.166729166667,0.633083333333,101325.0,0.175497395833,0.0492958614083,-0.403588889491,2288.21106985,31508360.8651,1.52150046539,0.632890929748,2.6 +31508883,0.0,0.1,0.5,0.2,0.0,13.8117708333,70.6730607689,24.1255581761,262.098125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,260.839700692,258.337929688,278.9345,272.567609485,894.0,296.15,77777.0,31508883.0,0.693942910593,-1.83015225364,0.15446875,0.682125,101325.0,0.18566796875,0.0343556504918,-0.403584421817,2288.2344064,31508681.7657,1.5364406763,0.656721037217,2.6 +31509204,0.0,0.1,0.5,0.2,0.0,13.4563541667,52.0324495754,15.7263888889,261.039833333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,260.591535789,258.639177083,278.702666667,272.483059043,894.0,296.15,77777.0,31509204.0,0.693942910593,-1.83015225364,0.142208333333,0.731166666667,101325.0,0.195342708333,0.0191551292691,-0.403579951051,2288.25774295,31509002.6663,1.55164119753,0.684259969347,2.6 +31509525,0.0,0.1,0.5,0.2,0.0,12.6009114583,42.6423334661,9.00173611111,260.001041667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,260.33520695,258.927018229,278.470833333,272.393546128,894.0,296.15,77777.0,31509525.0,0.693942910593,-1.83015225364,0.129947916667,0.780208333333,101325.0,0.204733072917,0.00380531242957,-0.403575478512,2288.2810795,31509323.5669,1.56699101436,0.713926021503,2.6 +31509846,0.0,0.1,0.5,0.2,0.0,11.74546875,33.2522173567,2.27708333333,258.96225,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,260.07887811,259.214859375,278.239,272.304033212,894.0,296.15,77777.0,31509846.0,0.693942910593,-1.83015225364,0.1176875,0.82925,101325.0,0.2141234375,-0.01154450441,-0.403571005972,2288.30441606,31509644.4675,1.5823408312,0.743592073658,2.6 +31510167,0.0,0.1,0.5,0.2,0.0,10.1808072917,26.326883183,0.805902777775,258.257208333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,259.853295759,259.437341146,278.007166667,272.181010367,894.0,296.15,77777.0,31510167.0,0.693942910593,-1.83015225364,0.110989583333,0.856041666667,101325.0,0.21994453125,-0.0272036714268,-0.403566529385,2288.32775261,31509965.3681,1.59799999822,0.785393618269,2.6 +31510488,0.0,0.1,0.5,0.2,0.0,8.47270833333,19.9000442321,0.397222222221,257.619666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,259.633931798,259.646604167,277.775333333,272.051210233,894.0,296.15,77777.0,31510488.0,0.693942910593,-1.83015225364,0.105416666667,0.878333333333,101325.0,0.22504375,-0.042925403648,-0.403562051979,2288.35108916,31510286.2687,1.61372173044,0.829649532141,2.6 +31510809,0.0,0.1,0.5,0.2,0.0,6.765546875,13.5499382962,0.0,256.992482143,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.417182894,259.852717516,277.545479167,271.922076045,894.0,296.15,77777.0,31510809.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.23005,-0.0586565791938,-0.403557574437,2288.37442572,31510607.1693,1.62945290599,0.874478132173,2.60047086149 +31511130,0.0,0.1,0.5,0.2,0.0,5.09088541667,9.85991020878,0.0,256.724345238,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.291089268,259.94964227,277.384236111,271.816027974,894.0,296.15,77777.0,31511130.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.231833333333,-0.0747151233258,-0.403553092165,2288.39776227,31510928.0699,1.64551145012,0.939159852448,2.61726492117 +31511451,0.0,0.1,0.5,0.2,0.0,3.41622395833,6.16988212137,0.0,256.456208334,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.164995643,260.046567023,277.222993056,271.709979903,894.0,296.15,77777.0,31511451.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.233616666667,-0.0907736674578,-0.403548609893,2288.42109882,31511248.9706,1.66156999425,1.00384157272,2.63405898086 +31511772,0.0,0.1,0.5,0.2,0.0,1.9478125,3.04292197452,0.0,256.206642857,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.055902467,260.124985198,277.084972223,271.62110788,894.0,296.15,77777.0,31511772.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.2354,-0.106900414869,-0.403544126529,2288.44443537,31511569.8712,1.67769674166,1.07179578534,2.65669763514 +31512093,0.0,0.1,0.5,0.2,0.0,1.19268229167,1.86323845541,0.0,256.021303572,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.00560251,260.139401453,277.027261574,271.591636358,894.0,296.15,77777.0,31512093.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.237183333333,-0.123263031952,-0.403539639391,2288.46777192,31511890.7718,1.69405935875,1.15106736733,2.69954884572 +31512414,0.0,0.1,0.5,0.2,0.0,0.437552083333,0.683554936306,0.0,255.835964286,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.955302553,260.153817709,276.969550926,271.562164835,894.0,296.15,77777.0,31512414.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.238966666667,-0.139625649036,-0.403535152253,2288.49110847,31512211.6725,1.71042197583,1.23033894932,2.74240005631 +31512735,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.670982143,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.920422346,260.156071135,276.931631944,271.547448188,894.0,296.15,77777.0,31512735.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.24075,-0.156103269417,-0.403530663069,2288.51444503,31512532.5731,1.72689959621,1.31206490057,2.79145903716 +31513056,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.534047619,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.90678713,260.141566886,276.920981481,271.553060481,894.0,296.15,77777.0,31513056.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.242533333333,-0.172739338786,-0.403526171065,2288.53778158,31512853.4738,1.74353566558,1.39717242725,2.84907094595 +31513377,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.397113095,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.893151913,260.127062637,276.910331019,271.558672774,894.0,296.15,77777.0,31513377.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.244316666667,-0.189375408155,-0.403521679061,2288.56111814,31513174.3745,1.76017173495,1.48227995392,2.90668285473 +31513698,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.268821428,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.8779466,260.127773849,276.893875,271.559874665,894.0,296.15,77777.0,31513698.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.2461,-0.206162405102,-0.403517184056,2288.58445469,31513495.2751,1.7769587319,1.56558760981,2.96643158784 +31514019,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.145898809,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.861765924,260.137937089,276.8738125,271.558336759,894.0,296.15,77777.0,31514019.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.247883333333,-0.223043160091,-0.403512687187,2288.60779124,31513816.1758,1.79383948689,1.64777716414,3.02750774212 +31514340,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.02297619,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.845585247,260.148100329,276.85375,271.556798854,894.0,296.15,77777.0,31514340.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.249666666667,-0.239923915079,-0.403508190318,2288.6311278,31514137.0765,1.81072024187,1.72996671847,3.0885838964 +31514661,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.902607549,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.829948047,260.196552632,276.8239,271.54829397,894.0,296.15,77777.0,31514661.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.25151796875,-0.256981510065,-0.403503689493,2288.65446435,31514457.9771,1.82777783686,1.80859743738,3.21355067567 +31514982,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.782826028,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.814435785,260.253807018,276.7918,271.538187481,894.0,296.15,77777.0,31514982.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.253384895833,-0.274079757925,-0.403499187759,2288.6778009,31514778.8778,1.84487608472,1.88641003319,3.35320495495 +31515303,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.663210904,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.799043279,260.311179825,276.759796296,271.528156458,894.0,296.15,77777.0,31515303.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.25525234375,-0.291179796226,-0.403494685979,2288.70113746,31515099.7785,1.86197612302,1.96422262901,3.49364977477 +31515624,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.561233766,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.796345018,260.381105263,276.738,271.526124746,894.0,296.15,77777.0,31515624.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.257175,-0.308469621409,-0.40349017938,2288.72447402,31515420.6791,1.8792659482,2.04203522483,3.71789189189 +31515945,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.459256629,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.793646756,260.451030702,276.716203704,271.524093035,894.0,296.15,77777.0,31515945.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.25909765625,-0.325759446592,-0.403485672781,2288.74781057,31515741.5798,1.89655577339,2.11984782065,3.94213400901 +31516266,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.361743777,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.788278989,260.517048245,276.692614815,271.520502187,894.0,296.15,77777.0,31516266.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.260997395833,-0.343083530428,-0.403481165181,2288.77114713,31516062.4805,1.91387985722,2.19766041647,4.16013288288 +31516587,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.281479302,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.772597219,260.567967105,276.6621,271.510887403,894.0,296.15,77777.0,31516587.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.26280859375,-0.360539977246,-0.403476653717,2288.79448369,31516383.3812,1.93133630404,2.27547301229,4.35401013513 +31516908,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.201214827,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.756915449,260.618885965,276.631585185,271.50127262,894.0,296.15,77777.0,31516908.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.264619791667,-0.377996424065,-0.403472142253,2288.81782025,31516704.2819,1.94879275086,2.3532856081,4.54788738739 +31517229,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.131246618,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.725660443,260.649436403,276.589922222,271.482254829,894.0,296.15,77777.0,31517229.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.266319010417,-0.395510048993,-0.403467628834,2288.8411568,31517025.1826,1.96630637579,2.43109820392,4.68336599099 +31517550,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.076603084,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.671226666,260.649671053,276.531666666,271.449241864,894.0,296.15,77777.0,31517550.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.2678515625,-0.413108776225,-0.403463112505,2288.86449336,31517346.0833,1.98390510302,2.50891079974,4.73192567567 +31517871,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.021959551,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.616792889,260.649905702,276.473411111,271.4162289,894.0,296.15,77777.0,31517871.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.269384114583,-0.430707503457,-0.403458596176,2288.88782992,31517666.9839,2.00150383025,2.58672339556,4.78048536036 +31518192,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.178030303,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,258.660825392,260.628666667,276.394,271.365145109,894.0,296.15,77777.0,31518192.0,0.693942910593,-1.83015225364,0.113333333333,0.903333333333,101325.0,0.270683333333,-0.448376911049,-0.403454076938,2288.91116647,31517987.8846,2.01917323784,2.67151730839,4.74063157895 +31518513,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.475674716,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,258.771014925,260.593,276.300375,271.301919981,894.0,296.15,77777.0,31518513.0,0.693942910593,-1.83015225364,0.135625,0.90890625,101325.0,0.27182578125,-0.466093807009,-0.403449555745,2288.93450303,31518308.7854,2.03689013381,2.76100179358,4.641375 +31518834,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.773319128,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,258.881204459,260.557333333,276.20675,271.238694853,894.0,296.15,77777.0,31518834.0,0.693942910593,-1.83015225364,0.157916666667,0.914479166667,101325.0,0.272968229167,-0.483810702968,-0.403445034552,2288.95783959,31518629.6861,2.05460702977,2.85048627877,4.54211842106 +31519155,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.378847064,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.076343136,260.521666667,276.097541667,271.161602009,894.0,296.15,77777.0,31519155.0,0.693942910593,-1.83015225364,0.201458333333,0.925364583333,101325.0,0.273889322917,-0.501602149051,-0.403440509495,2288.98117615,31518950.5868,2.07239847585,2.9461521384,4.4044627193 +31519476,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.0640625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.293468651,260.486,275.9843,271.080919874,894.0,296.15,77777.0,31519476.0,0.693942910593,-1.83015225364,0.2505,0.937625,101325.0,0.274753125,-0.51941289046,-0.403435983438,2289.00451271,31519271.4875,2.09020921726,3.04341788317,4.25686842105 +31519797,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.749277935,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.510594166,260.450333333,275.871058333,271.000237739,894.0,296.15,77777.0,31519797.0,0.693942910593,-1.83015225364,0.299541666667,0.949885416667,101325.0,0.275616927083,-0.53722363187,-0.403431457382,2289.02784927,31519592.3882,2.10801995866,3.14068362794,4.1092741228 +31520118,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.389322917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.639508852,260.414666667,275.754283333,270.915645909,894.0,296.15,77777.0,31520118.0,0.693942910593,-1.83015225364,0.348583333333,0.962145833333,101325.0,0.2763703125,-0.55510252004,-0.403426926506,2289.05118583,31519913.289,2.12589884683,3.22253229765,3.95145175439 +31520439,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.028941761,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.767591361,260.379,275.637475,270.831017196,894.0,296.15,77777.0,31520439.0,0.693942910593,-1.83015225364,0.397625,0.97440625,101325.0,0.27712265625,-0.572982051104,-0.403422395585,2289.07452239,31520234.1897,2.1437783779,3.30423552326,3.79353289474 +31520760,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.57907197,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.872310607,260.343333333,275.523,270.748192846,894.0,296.15,77777.0,31520760.0,0.693942910593,-1.83015225364,0.441666666667,0.985416666667,101325.0,0.277885416667,-0.590869501295,-0.403417863755,2289.09785895,31520555.0904,2.16166582809,3.37866654365,3.64078947369 +31521081,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.73992661,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.87539966,260.307666667,275.418675,270.673217476,894.0,296.15,77777.0,31521081.0,0.693942910593,-1.83015225364,0.463958333333,0.990989583333,101325.0,0.278693489583,-0.608791399686,-0.40341332797,2289.12119551,31520875.9912,2.17958772648,3.42146347135,3.51055921053 +31521402,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.90078125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.878488714,260.272,275.31435,270.598242106,894.0,296.15,77777.0,31521402.0,0.693942910593,-1.83015225364,0.48625,0.9965625,101325.0,0.2795015625,-0.626713298077,-0.403408792186,2289.14453207,31521196.8919,2.19750962487,3.46426039905,3.38032894737 +31521723,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.865565814,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.843331378,260.236333333,275.214423958,270.526769282,894.0,296.15,77777.0,31521723.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.280341666667,-0.644640478267,-0.403404254538,2289.16786863,31521517.7927,2.21543680507,3.48618609778,3.25928097588 +31522044,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.514725379,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.746606685,260.200666667,275.121579167,270.460934704,894.0,296.15,77777.0,31522044.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.281233333333,-0.662576160864,-0.403399713889,2289.19120519,31521838.6935,2.23337248766,3.47451420841,3.15301425438 +31522365,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.163884943,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.649881992,260.165,275.028734375,270.395100125,894.0,296.15,77777.0,31522365.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.282125,-0.680511843461,-0.403395173241,2289.21454176,31522159.5942,2.25130817026,3.46284231903,3.04674753289 +31522686,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.720572917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.553773334,260.129333333,274.936535417,270.329591247,894.0,296.15,77777.0,31522686.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.283016666667,-0.698437106823,-0.403390629775,2289.23787832,31522480.495,2.26923343362,3.42862659349,2.94058278509 +31523007,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.210144413,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.458111799,260.093666667,274.844805208,270.264318765,894.0,296.15,77777.0,31523007.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.283908333333,-0.716354807837,-0.403386084264,2289.26121488,31522801.3957,2.28715113463,3.37804840621,2.83449205044 +31523328,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.699715909,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.362450263,260.058,274.753075,270.199046282,894.0,296.15,77777.0,31523328.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.2848,-0.734272508851,-0.403381538753,2289.28455144,31523122.2965,2.30506883565,3.32747021893,2.72840131579 +31523649,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.177497633,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.269082107,260.022333333,274.663765625,270.135432776,894.0,296.15,77777.0,31523649.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.285691666667,-0.752148107398,-0.40337698947,2289.307888,31523443.1973,2.32294443419,3.26482017099,2.6285901864 +31523970,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.651870265,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.176377098,259.986666667,274.57515625,270.072298975,894.0,296.15,77777.0,31523970.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.286583333333,-0.770011531737,-0.403372439096,2289.33122457,31523764.0981,2.34080785853,3.19867946454,2.53059484649 +31524291,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.126242898,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.083672088,259.951,274.486546875,270.009165174,894.0,296.15,77777.0,31524291.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.287475,-0.787874956076,-0.403367888722,2289.35456113,31524084.9989,2.35867128287,3.13253875809,2.43259950657 +31524612,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.726183712,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,258.995680269,259.915333333,274.402920833,269.949659874,894.0,296.15,77777.0,31524612.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.288366666667,-0.805644183807,-0.403363333621,2289.3778977,31524405.8997,2.3764405106,3.07396114507,2.35016995614 +31524933,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.329746686,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,258.907824408,259.879666667,274.319438542,269.890259243,894.0,296.15,77777.0,31524933.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.289258333333,-0.823410694329,-0.403358778384,2289.40123426,31524726.8004,2.39420702113,3.01560169821,2.26818941886 +31525254,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.954872159,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.821380053,259.8461375,274.236875,269.832023844,894.0,296.15,77777.0,31525254.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.290225,-0.841152243918,-0.403354222328,2289.42457083,31525047.7012,2.41194857072,2.95920574676,2.18940625 +31525575,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.686612216,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.741914807,259.823177083,274.158854167,269.779549864,894.0,296.15,77777.0,31525575.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.2915625,-0.858770375567,-0.403349662229,2289.44790739,31525368.602,2.42956670237,2.91251818927,2.12643229167 +31525896,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.418352273,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.662449562,259.800216667,274.080833333,269.727075885,894.0,296.15,77777.0,31525896.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.2929,-0.876388507216,-0.40334510213,2289.47124396,31525689.5028,2.44718483401,2.86583063177,2.06345833333 +31526217,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.155816761,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.586128975,259.78359375,274.0044375,269.677162639,894.0,296.15,77777.0,31526217.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.294454166667,-0.893929318843,-0.403340540258,2289.49458052,31526010.4036,2.46472564564,2.81914307428,2.005765625 +31526538,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.90326231,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.515291384,259.778020833,273.930875,269.631714263,894.0,296.15,77777.0,31526538.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.296386111111,-0.911335316074,-0.403335975297,2289.51791709,31526331.3045,2.48213164287,2.77245551679,1.95728125 +31526859,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.65070786,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.444453793,259.772447917,273.8573125,269.586265887,894.0,296.15,77777.0,31526859.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.298318055556,-0.928741313305,-0.403331410335,2289.54125365,31526652.2053,2.4995376401,2.7257679593,1.908796875 +31527180,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.394176136,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.376737475,259.769875,273.78625,269.543118721,894.0,296.15,77777.0,31527180.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.300333333334,-0.945982976794,-0.403326842647,2289.56459021,31526973.1061,2.51677930359,2.67908040181,1.8665625 +31527501,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.134528883,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.311466154,259.769652083,273.717145833,269.501774168,894.0,296.15,77777.0,31527501.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.302413888889,-0.963095912186,-0.403322272823,2289.58792678,31527294.0069,2.53389223898,2.63239284432,1.82922395833 +31527822,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.874881629,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.246194833,259.769429167,273.648041667,269.460429616,894.0,296.15,77777.0,31527822.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.304494444444,-0.980208847578,-0.403317702999,2289.61126334,31527614.9077,2.55100517437,2.58570528683,1.79188541667 +31528143,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.592606534,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.182825414,259.76414375,273.5823125,269.420082193,894.0,296.15,77777.0,31528143.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.30635,-0.997020425353,-0.403313129494,2289.63459991,31527935.8085,2.56781675215,2.53901772934,1.760453125 +31528464,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.303068182,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.120066483,259.757233333,273.517666667,269.380054837,894.0,296.15,77777.0,31528464.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.308133333333,-1.01373527105,-0.403308554809,2289.65793648,31528256.7093,2.58453159785,2.49233017185,1.73091666667 +31528785,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.01352983,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.057307551,259.750322917,273.453020833,269.34002748,894.0,296.15,77777.0,31528785.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.309916666667,-1.03045011675,-0.403303980123,2289.68127305,31528577.6101,2.60124644355,2.44564261436,1.70138020833 +31529106,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.67328125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.973828296,259.735975,273.392625,269.300468133,894.0,296.15,75917.6010937,31529106.0,0.693942910593,-1.83015225364,0.495484375,0.99096875,101325.0,0.311275,-1.04665302213,-0.403299400803,2289.70460961,31528898.511,2.61744934893,2.39895505686,1.6781125 +31529427,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.330546875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.889333339,259.7212625,273.3324375,269.260931728,894.0,296.15,73967.0551823,31529427.0,0.693942910593,-1.83015225364,0.490747395833,0.981494791667,101325.0,0.3126125,-1.06283083239,-0.403294821255,2289.72794618,31529219.4118,2.63362715919,2.35226749937,1.65515208333 +31529748,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.982534722,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.80100437,259.706327778,273.272916667,269.221622397,894.0,296.15,71639.0534375,31529748.0,0.693942910593,-1.83015225364,0.48509375,0.9701875,101325.0,0.313905555556,-1.0789004442,-0.403290240981,2289.75128275,31529540.3127,2.649696771,2.30557994188,1.63345833333 +31530069,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.604505208,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.690869464,259.690129167,273.2171875,269.183604547,894.0,296.15,67164.2716406,31530069.0,0.693942910593,-1.83015225364,0.4742265625,0.948453125,101325.0,0.314945833333,-1.09435467729,-0.403285656572,2289.77461932,31529861.2136,2.66515100408,2.25889238439,1.61896875 +31530390,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.226475695,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.580734557,259.673930555,273.161458333,269.145586697,894.0,296.15,62689.4898438,31530390.0,0.693942910593,-1.83015225364,0.463359375,0.92671875,101325.0,0.315986111111,-1.10980891037,-0.403281072164,2289.79795589,31530182.1144,2.68060523717,2.2122048269,1.60447916667 +31530711,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.849730903,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.470460592,259.656909722,273.107270833,269.108119701,894.0,296.15,58056.005026,31530711.0,0.693942910593,-1.83015225364,0.452106770833,0.904213541667,101325.0,0.316923611111,-1.124925679,-0.403276486074,2289.82129246,31530503.0153,2.69572200579,2.16551726941,1.59338125 +31531032,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.475416667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.359923541,259.638333333,273.056,269.071694863,894.0,296.15,53122.27125,31531032.0,0.693942910593,-1.83015225364,0.440125,0.88025,101325.0,0.317666666667,-1.13940400135,-0.403271896804,2289.84462903,31530823.9162,2.71020032815,2.11882971192,1.5887 +31531353,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.101102431,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.249386491,259.619756944,273.004729167,269.035270025,894.0,296.15,48188.537474,31531353.0,0.693942910593,-1.83015225364,0.428143229167,0.856286458333,101325.0,0.318409722222,-1.1538823237,-0.403267307534,2289.8679656,31531144.817,2.7246786505,2.07214215443,1.58401875 +31531674,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.749947917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.150945259,259.599408333,272.955875,268.999743699,894.0,296.15,44125.5256771,31531674.0,0.693942910593,-1.83015225364,0.418276041667,0.836552083333,101325.0,0.318991666667,-1.16764746482,-0.403262715629,2289.89130217,31531465.7179,2.73844379162,2.02545459694,1.58537916667 +31531995,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.418359375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.06272291,259.5775625,272.9090625,268.96497646,894.0,296.15,40798.1238281,31531995.0,0.693942910593,-1.83015225364,0.4101953125,0.820390625,101325.0,0.3194375,-1.18081009077,-0.403258121498,2289.91463874,31531786.6188,2.75160641756,1.97876703945,1.59184375 +31532316,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.086770833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,256.97450056,259.555716667,272.86225,268.930209221,894.0,296.15,37470.7219792,31532316.0,0.693942910593,-1.83015225364,0.402114583333,0.804229166667,101325.0,0.319883333333,-1.19397271671,-0.403253527367,2289.9379753,31532107.5196,2.7647690435,1.93207948195,1.59830833333 +31532637,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,246.806614583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.905025108,259.529838542,272.818729167,268.895796727,894.0,296.15,35583.4428125,31532637.0,0.693942910593,-1.83015225364,0.39753125,0.7950625,101325.0,0.319958854167,-1.20583448443,-0.403248929648,2289.96131188,31532428.4205,2.77663081122,1.89724107384,1.61588229167 +31532958,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,246.5446875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.842194126,259.50253125,272.776375,268.861509966,894.0,296.15,34206.586875,31532958.0,0.693942910593,-1.83015225364,0.3941875,0.788375,101325.0,0.319903125,-1.21723518848,-0.403244330656,2289.98464845,31532749.3214,2.78803151527,1.86660236424,1.63739375 +31533279,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,246.282760417,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.779363143,259.475223958,272.734020833,268.827223204,894.0,296.15,32829.7309375,31533279.0,0.693942910593,-1.83015225364,0.39084375,0.7816875,101325.0,0.319847395833,-1.22863589253,-0.403239731665,2290.00798502,31533070.2223,2.79943221932,1.83596365463,1.65890520833 +31533600,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,246.079861111,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.728952442,259.442013889,272.695833333,268.7927189,894.0,296.15,32310.7291667,31533600.0,0.693942910593,-1.83015225364,0.389583333333,0.779166666667,101325.0,0.319201388889,-1.23787409677,-0.403235128131,2290.03132159,31533391.1232,2.80867042357,1.82986863764,1.69604166667 +31533921,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.88109375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.67941116,259.408390625,272.6579375,268.758199368,894.0,296.15,31851.7771875,31533921.0,0.693942910593,-1.83015225364,0.38846875,0.7769375,101325.0,0.3185140625,-1.24696092603,-0.403230524279,2290.05465816,31533712.0241,2.81775725283,1.82549167912,1.734271875 +31534242,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.689131944,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.631650666,259.374086806,272.620625,268.723744542,894.0,296.15,31512.9247917,31534242.0,0.693942910593,-1.83015225364,0.387645833333,0.775291666667,101325.0,0.317758680556,-1.25566570644,-0.403225919791,2290.07799473,31534032.925,2.82646203324,1.82340546525,1.77442708333 +31534563,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.542378472,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.59571969,259.335262153,272.5871875,268.689719549,894.0,296.15,31971.8767708,31534563.0,0.693942910593,-1.83015225364,0.388760416667,0.777520833333,101325.0,0.316551215278,-1.26183259091,-0.403221311078,2290.10133131,31534353.8259,2.83262891771,1.8365363408,1.82736979167 +31534884,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.395625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.559788714,259.2964375,272.55375,268.655694556,894.0,296.15,32430.82875,31534884.0,0.693942910593,-1.83015225364,0.389875,0.77975,101325.0,0.31534375,-1.26799947539,-0.403216702366,2290.12466788,31534674.7268,2.83879580219,1.84966721634,1.8803125 +31535205,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.262239583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.528377825,259.256276042,272.521770833,268.622059648,894.0,296.15,33190.0296875,31535205.0,0.693942910593,-1.83015225364,0.39171875,0.7834375,101325.0,0.314002604167,-1.27303797759,-0.403212092064,2290.14800446,31534995.6277,2.84383430439,1.86566152269,1.93741145833 +31535526,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.156354167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.506265399,259.213364583,272.492791667,268.589227201,894.0,296.15,34566.885625,31535526.0,0.693942910593,-1.83015225364,0.3950625,0.790125,101325.0,0.312386458333,-1.27575523627,-0.403207478491,2290.17134103,31535316.5286,2.84655156307,1.88754631526,2.00306041667 +31535847,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.05046875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.484152974,259.170453125,272.4638125,268.556394753,894.0,296.15,35943.7415625,31535847.0,0.693942910593,-1.83015225364,0.39840625,0.7968125,101325.0,0.3107703125,-1.27847249495,-0.403202864918,2290.1946776,31535637.4295,2.84926882174,1.90943110783,2.068709375 +31536168,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.14,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.236442547,265.549,273.15,270.333636126,894.0,296.15,77777.0,168.0,0.693942910593,-1.83015225364,0.157,0.366333333333,101325.0,0.5128,-1.27893846331,-0.402883655591,-3.14267365083,-14.8647791778,2.84973479011,3.35167211789,2.27566666667 +31536489,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.4075,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.367684679,265.642625,273.15,270.365681341,894.0,296.15,77777.0,489.0,0.693942910593,-1.83015225364,0.170375,0.397541666667,101325.0,0.51815,-1.27782377119,-0.402878920592,-3.11933715038,306.035137152,2.84862009799,3.36956901492,2.32470833333 +31536810,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.675,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.498926811,265.73625,273.15,270.397726557,894.0,296.15,77777.0,810.0,0.693942910593,-1.83015225364,0.18375,0.42875,101325.0,0.5235,-1.27670907908,-0.402874185593,-3.09600064992,626.935053481,2.84750540588,3.38746591196,2.37375 +31537131,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.9425,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.621256394,265.829875,273.15,270.429720168,894.0,296.15,77777.0,1131.0,0.693942910593,-1.83015225364,0.197125,0.459958333333,101325.0,0.52885,-1.2729991892,-0.402869447101,-3.07266414894,947.83497708,2.843795516,3.405362809,2.42279166667 +31537452,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.21,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.740113554,265.9235,273.15,270.461693673,894.0,296.15,77777.0,1452.0,0.693942910593,-1.83015225364,0.2105,0.491166666667,101325.0,0.5342,-1.26827818331,-0.402864707248,-3.04932764775,1268.73490351,2.8390745101,3.42325970604,2.47183333333 +31537773,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.4775,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.858970714,266.017125,273.15,270.493667178,894.0,296.15,77777.0,1773.0,0.693942910593,-1.83015225364,0.223875,0.522375,101325.0,0.53955,-1.26355717741,-0.402859967395,-3.02599114656,1589.63482994,2.8343535042,3.44115660308,2.520875 +31538094,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.745,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.96837882,266.11075,273.15,270.525575131,894.0,296.15,77777.0,2094.0,0.693942910593,-1.83015225364,0.23725,0.553583333333,101325.0,0.5449,-1.25593484922,-0.402855223097,-3.00265464469,1910.53476563,2.82673117602,3.45905350012,2.56991666667 +31538415,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.0125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,258.076919156,266.204375,273.15,270.557477064,894.0,296.15,77777.0,2415.0,0.693942910593,-1.83015225364,0.250625,0.584791666667,101325.0,0.55025,-1.24804607307,-0.402850478391,-2.97931814277,2231.43470217,2.81884239986,3.47695039715,2.61895833333 +31538736,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.28,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,258.184530746,266.298,273.15,270.589370986,894.0,296.15,77777.0,2736.0,0.693942910593,-1.83015225364,0.264,0.616,101325.0,0.5556,-1.23986846344,-0.40284573314,-2.95598164076,2552.33463984,2.81066479024,3.49484729419,2.668 +31539057,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.5475,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,258.284789767,266.391625,273.15,270.621201487,894.0,296.15,77777.0,3057.0,0.693942910593,-1.83015225364,0.277375,0.647208333333,101325.0,0.56095,-1.22940425551,-0.40284098358,-2.9326451381,2873.2345865,2.80020058231,3.51274419123,2.71704166667 +31539378,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.815,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,258.385048788,266.48525,273.15,270.653031988,894.0,296.15,77777.0,3378.0,0.693942910593,-1.83015225364,0.29075,0.678416666667,101325.0,0.5663,-1.21894004759,-0.40283623402,-2.90930863544,3194.13453316,2.78973637439,3.53064108827,2.76608333333 +31539699,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.08078125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.482220237,266.575927849,273.15,270.683923163,894.0,296.15,77777.0,3699.0,0.693942910593,-1.83015225364,0.3040390625,0.7087484375,101325.0,0.5714953125,-1.20786201124,-0.402831482963,-2.88597213255,3515.03448294,2.77865833804,3.54715808437,2.8150390625 +31540020,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.342708333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.57246804,266.659996936,273.15,270.712707971,894.0,296.15,77777.0,4020.0,0.693942910593,-1.83015225364,0.317135416667,0.737114583333,101325.0,0.57634375,-1.19540751115,-0.402826728549,-2.86263562916,3835.93443973,2.76620383795,3.56058075715,2.86380208333 +31540341,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.604635417,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.662715843,266.744066024,273.15,270.741492779,894.0,296.15,77777.0,4341.0,0.693942910593,-1.83015225364,0.330231770833,0.765480729167,101325.0,0.5811921875,-1.18295301106,-0.402821974136,-2.83929912576,4156.83439652,2.75374933786,3.57400342992,2.91256510417 +31540662,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.8496875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.743953018,266.816670037,273.15,270.766584862,894.0,296.15,77777.0,4662.0,0.693942910593,-1.83015225364,0.342484375,0.790640625,101325.0,0.585421875,-1.16974328823,-0.402817217273,-2.81596262199,4477.73435843,2.74053961503,3.58291006326,2.960484375 +31540983,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.078177083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.816346427,266.878021293,273.15,270.788052602,894.0,296.15,77777.0,4983.0,0.693942910593,-1.83015225364,0.353908854167,0.812653645833,101325.0,0.589044270833,-1.15579232827,-0.402812458006,-2.79262611785,4798.63432536,2.72658865506,3.58738428752,3.00757552083 +31541304,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.306666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.888739837,266.939372549,273.15,270.809520342,894.0,296.15,77777.0,5304.0,0.693942910593,-1.83015225364,0.365333333333,0.834666666667,101325.0,0.592666666667,-1.14184136831,-0.402807698739,-2.76928961371,5119.53429228,2.7126376951,3.59185851178,3.05466666667 +31541625,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.48828125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.943702654,266.981008731,273.15,270.824495889,894.0,296.15,77777.0,5625.0,0.693942910593,-1.83015225364,0.3744140625,0.8515234375,101325.0,0.5951953125,-1.12711068193,-0.402802936071,-2.74595310906,5440.43426633,2.69790700872,3.59006045904,3.0994140625 +31541946,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.649895833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.991228419,267.01423315,273.15,270.836701433,894.0,296.15,77777.0,5946.0,0.693942910593,-1.83015225364,0.382494791667,0.866180208333,101325.0,0.597257291667,-1.11204731229,-0.402798171952,-2.72261660419,5761.33424341,2.68284363908,3.58558623478,3.14316145833 +31542267,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.811510417,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,259.038754184,267.047457568,273.15,270.848906977,894.0,296.15,77777.0,6267.0,0.693942910593,-1.83015225364,0.390575520833,0.880836979167,101325.0,0.599319270833,-1.09698394264,-0.402793407832,-2.69928009932,6082.23422049,2.66778026943,3.58111201052,3.18690885417 +31542588,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.883125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,259.056880317,267.05059375,273.15,270.851049238,894.0,296.15,77777.0,6588.0,0.693942910593,-1.83015225364,0.39415625,0.88799375,101325.0,0.59968125,-1.08118048947,-0.402788639359,-2.67594359378,6403.13420668,2.65197681627,3.5686092717,3.22615625 +31542909,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.944427083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,259.071637742,267.050282322,273.15,270.852038414,894.0,296.15,77777.0,6909.0,0.693942910593,-1.83015225364,0.397221354167,0.894291145833,101325.0,0.5998484375,-1.06529223507,-0.402783870387,-2.65260708817,6724.03419392,2.63608856186,3.55518659893,3.26488802083 +31543230,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.084043135,267.045960478,273.15,270.851732835,894.0,296.15,77777.0,7230.0,0.693942910593,-1.83015225364,0.4,0.899416666667,101325.0,0.599796875,-1.04934676223,-0.402779100961,-2.62927058249,7044.93418211,2.62014308903,3.54030039485,3.30333333333 +31543551,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.073633825,267.002737592,273.15,270.838868133,894.0,296.15,77777.0,7551.0,0.693942910593,-1.83015225364,0.4,0.893175,101325.0,0.5976234375,-1.03284627057,-0.402774327137,-2.60593407614,7365.83417952,2.60364259737,3.51121793716,3.339 +31543872,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.063224515,266.959514706,273.15,270.826003431,894.0,296.15,77777.0,7872.0,0.693942910593,-1.83015225364,0.4,0.886933333333,101325.0,0.59545,-1.01634577892,-0.402769553313,-2.58259756979,7686.73417693,2.58714210572,3.48213547948,3.37466666667 +31544193,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.050872689,266.908247396,273.15,270.810646406,894.0,296.15,77777.0,8193.0,0.693942910593,-1.83015225364,0.4,0.878108333333,101325.0,0.592856770833,-0.999713610177,-0.402764778083,-2.55926106322,8007.63417729,2.57050993698,3.44916421005,3.41033333333 +31544514,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.033758568,266.837258272,273.15,270.789179167,894.0,296.15,77777.0,8514.0,0.693942910593,-1.83015225364,0.4,0.86295,101325.0,0.589234375,-0.982758620182,-0.402759999406,-2.53592455613,8328.53418488,2.55355494698,3.40665907958,3.446 +31544835,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.016644447,266.766269148,273.15,270.767711928,894.0,296.15,77777.0,8835.0,0.693942910593,-1.83015225364,0.4,0.847791666667,101325.0,0.585611979167,-0.965803630187,-0.402755220729,-2.51258804903,8649.43419247,2.53659995698,3.36415394912,3.48166666667 +31545156,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.999942782,266.697032476,273.15,270.74687228,894.0,296.15,77777.0,9156.0,0.693942910593,-1.83015225364,0.4,0.8335,101325.0,0.582097916667,-0.948685310317,-0.402750439694,-2.48925154158,8970.33420501,2.51948163711,3.32164881865,3.51733333333 +31545477,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.983677369,266.629649357,273.15,270.726696429,894.0,296.15,77777.0,9477.0,0.693942910593,-1.83015225364,0.4,0.820125,101325.0,0.5786984375,-0.931394237694,-0.402745656166,-2.46591503375,9291.23422279,2.50219056449,3.27914368819,3.553 +31545798,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.967411955,266.562266237,273.15,270.706520578,894.0,296.15,77777.0,9798.0,0.693942910593,-1.83015225364,0.4,0.80675,101325.0,0.575298958333,-0.914103165071,-0.402740872637,-2.44257852592,9612.13424057,2.48489949187,3.23663855772,3.58866666667 +31546119,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.956902031,266.518746783,273.15,270.694010664,894.0,296.15,77777.0,10119.0,0.693942910593,-1.83015225364,0.4,0.801891666667,101325.0,0.5731921875,-0.896644516314,-0.402736085798,-2.41924201758,9933.0342653,2.46744084311,3.20329095167,3.62433333333 +31546440,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.949072745,266.486341912,273.15,270.685071187,894.0,296.15,77777.0,10440.0,0.693942910593,-1.83015225364,0.4,0.801,101325.0,0.5716875,-0.879107818399,-0.402731297418,-2.395905509,10253.9342933,2.44990414519,3.17420849399,3.66 +31546761,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.941243459,266.45393704,273.15,270.67613171,894.0,296.15,77777.0,10761.0,0.693942910593,-1.83015225364,0.4,0.800108333333,101325.0,0.5701828125,-0.861571120484,-0.402726509038,-2.37256900042,10574.8343212,2.43236744728,3.1451260363,3.69566666667 +31547082,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.939688776,266.447503125,273.15,270.675045605,894.0,296.15,77777.0,11082.0,0.693942910593,-1.83015225364,0.4,0.807833333333,101325.0,0.57,-0.843880629296,-0.402721716395,-2.3492324912,10895.7343582,2.41467695609,3.1312420027,3.73133333333 +31547403,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.939001858,266.444660938,273.15,270.675045605,894.0,296.15,77777.0,11403.0,0.693942910593,-1.83015225364,0.4,0.81675,101325.0,0.57,-0.826168868826,-0.402716923163,-2.32589598188,11216.6343964,2.39696519562,3.11945987882,3.767 +31547724,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938361263,266.442010417,273.15,270.675045605,894.0,296.15,77777.0,11724.0,0.693942910593,-1.83015225364,0.4,0.825666666667,101325.0,0.57,-0.808448232511,-0.402712129569,-2.30255947251,11537.5344354,2.37924455931,3.10842856972,3.80266666667 +31548045,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938293916,266.441731771,273.15,270.675045605,894.0,296.15,77777.0,12045.0,0.693942910593,-1.83015225364,0.4,0.834583333333,101325.0,0.57,-0.790617757604,-0.402707331486,-2.27922296245,11858.4344838,2.3614140844,3.10668859362,3.83833333333 +31548366,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938226569,266.441453125,273.15,270.675045605,894.0,296.15,77777.0,12366.0,0.693942910593,-1.83015225364,0.4,0.8435,101325.0,0.57,-0.772787282696,-0.402702533403,-2.25588645239,12179.3345322,2.34358360949,3.10494861752,3.874 +31548687,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938261438,266.441597396,273.15,270.675045605,894.0,296.15,77777.0,12687.0,0.693942910593,-1.83015225364,0.4,0.852416666667,101325.0,0.57,-0.754937140439,-0.402697734005,-2.23254994213,12500.2345834,2.32573346723,3.10504107553,3.90966666667 +31549008,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.93857123,266.442879167,273.15,270.675045605,894.0,296.15,77777.0,13008.0,0.693942910593,-1.83015225364,0.4,0.861333333333,101325.0,0.57,-0.737034099792,-0.402692931071,-2.20921343132,12821.134642,2.30783042659,3.11006214942,3.94533333333 +31549329,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938881023,266.444160938,273.15,270.675045605,894.0,296.15,77777.0,13329.0,0.693942910593,-1.83015225364,0.4,0.87025,101325.0,0.57,-0.719131059146,-0.402688128137,-2.18587692051,13142.0347007,2.28992738594,3.11508322331,3.981 +31549650,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.93925375,266.445703125,273.15,270.675045605,894.0,296.15,77777.0,13650.0,0.693942910593,-1.83015225364,0.4,0.879166666667,101325.0,0.57,-0.701212247631,-0.402683322937,-2.16254040936,13462.9347641,2.27200857443,3.12173044309,4.01666666667 +31549971,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.939698223,266.447542188,273.15,270.675045605,894.0,296.15,77777.0,13971.0,0.693942910593,-1.83015225364,0.4,0.888083333333,101325.0,0.57,-0.683275457326,-0.402678515152,-2.13920389781,13783.834833,2.25407178412,3.13023146918,4.05233333333 +31550292,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.940142695,266.44938125,273.15,270.675045605,894.0,296.15,77777.0,14292.0,0.693942910593,-1.83015225364,0.4,0.897,101325.0,0.57,-0.665338667021,-0.402673707367,-2.11586738627,14104.7349019,2.23613499381,3.13873249528,4.088 +31550613,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.049753788,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,258.952355167,266.453832971,273.15,270.675045605,894.0,296.15,77777.0,14613.0,0.693942910593,-1.83015225364,0.402311197917,0.906471354167,101325.0,0.57,-0.647401750515,-0.402668896364,-2.09253087422,14425.6349776,2.21819807731,3.1521191197,4.12630143229 +31550934,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.124734849,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,258.970534512,266.45960942,273.15,270.675045605,894.0,296.15,77777.0,14934.0,0.693942910593,-1.83015225364,0.405794270833,0.916223958333,101325.0,0.57,-0.629464770021,-0.402664083729,-2.06919436192,14746.5350567,2.20026109681,3.1679829489,4.16593880208 +31551255,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.199715909,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,258.988713858,266.465385869,273.15,270.675045605,894.0,296.15,77777.0,15255.0,0.693942910593,-1.83015225364,0.40927734375,0.9259765625,101325.0,0.57,-0.611527789526,-0.402659271094,-2.04585784963,15067.4351358,2.18232411632,3.1838467781,4.20557617188 +31551576,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.368787879,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.029814972,266.475495652,273.15,270.675045605,894.0,296.15,77777.0,15576.0,0.693942910593,-1.83015225364,0.4173125,0.936208333333,101325.0,0.57,-0.593616295793,-0.402654454289,-2.02252133669,15388.3352238,2.16441262258,3.21119757932,4.25004513889 +31551897,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.553200757,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.074653331,266.486311956,273.15,270.675045605,894.0,296.15,77777.0,15897.0,0.693942910593,-1.83015225364,0.42608984375,0.946518229167,101325.0,0.57,-0.575708957511,-0.402649636803,-1.99918482365,15709.2353131,2.1465052843,3.24042125642,4.29530186632 +31552218,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.740340909,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.120285644,266.497163043,273.15,270.675045605,894.0,296.15,77777.0,16218.0,0.693942910593,-1.83015225364,0.4350234375,0.956765625,101325.0,0.57,-0.557804809733,-0.402644819046,-1.97584831057,16030.1354031,2.12860113652,3.27038792646,4.34067838541 +31552539,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.973390151,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.179282847,266.508599638,273.15,270.675045605,894.0,296.15,77777.0,16539.0,0.693942910593,-1.83015225364,0.446587239583,0.9659609375,101325.0,0.57,-0.539954368767,-0.40263999671,-1.95251179678,16351.0355028,2.11075069556,3.31286164449,4.38807139757 +31552860,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.206439394,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.238280049,266.520036232,273.15,270.675045605,894.0,296.15,77777.0,16860.0,0.693942910593,-1.83015225364,0.458151041667,0.97515625,101325.0,0.57,-0.522103927801,-0.402635174375,-1.929175283,16671.9356024,2.0929002546,3.35533536251,4.43546440972 +31553181,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.436420454,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.29786933,266.530514131,273.15,270.675045605,894.0,296.15,77777.0,17181.0,0.693942910593,-1.83015225364,0.46978515625,0.9836484375,101325.0,0.57,-0.50427429433,-0.402630350815,-1.90583876902,16992.8357047,2.07507062113,3.40112484051,4.48251757812 +31553502,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.657310606,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.359212917,266.53815145,273.15,270.675045605,894.0,296.15,77777.0,17502.0,0.693942910593,-1.83015225364,0.481627604167,0.990057291667,101325.0,0.57,-0.486506312695,-0.40262552363,-1.88250225448,17313.7358147,2.05730263949,3.45673879249,4.52856380208 +31553823,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.878200758,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.420556504,266.545788768,273.15,270.675045605,894.0,296.15,77777.0,17823.0,0.693942910593,-1.83015225364,0.493470052083,0.996466145833,101325.0,0.57,-0.468738331059,-0.402620696445,-1.85916573995,17634.6359246,2.03953465785,3.51235274447,4.57461002604 +31554144,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.091948052,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.475715037,266.490576087,273.15,270.662652384,894.0,296.15,77090.3689319,18144.0,0.693942910593,-1.83015225364,0.5066875,1.0,101325.0,0.567916666667,-0.451018360999,-0.402615867084,-1.83582922507,17955.5360392,2.0218146878,3.58840641061,4.61873125 +31554465,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.296915585,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.523271106,266.358110281,273.15,270.635025828,894.0,296.15,75559.7538427,18465.0,0.693942910593,-1.83015225364,0.521595052083,1.0,101325.0,0.563272569445,-0.433357405169,-0.402611035049,-1.81249270979,18276.4361594,2.00415373197,3.68958389207,4.66048632812 +31554786,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.501883117,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.570827176,266.225644474,273.15,270.607399273,894.0,296.15,74029.1387534,18786.0,0.693942910593,-1.83015225364,0.536502604167,1.0,101325.0,0.558628472223,-0.415696449338,-0.402606203014,-1.7891561945,18597.3362796,1.98649277613,3.79076137352,4.70224140625 +31555107,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.727012987,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.617203915,265.989397418,273.15,270.55636168,894.0,296.15,71285.1097239,19107.0,0.693942910593,-1.83015225364,0.55446484375,1.0,101325.0,0.550071180556,-0.398120075042,-0.402601367852,-1.76581967873,18918.2364065,1.96891640184,3.92546624204,4.74110351562 +31555428,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.963246753,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.662931169,265.695995471,273.15,270.492431053,894.0,296.15,67872.8237418,19428.0,0.693942910593,-1.83015225364,0.574109375,1.0,101325.0,0.539358796296,-0.380590281882,-0.402596530968,-1.7424831627,19239.1365371,1.95138660868,4.07863546866,4.77837239583 +31555749,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.199480519,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.708658422,265.402593524,273.15,270.428500425,894.0,296.15,64460.5377597,19749.0,0.693942910593,-1.83015225364,0.59375390625,1.0,101325.0,0.528646412037,-0.363060488722,-0.402591694084,-1.71914664667,19560.0366676,1.93385681551,4.23180469527,4.81564127604 +31556070,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.475162338,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.775360569,265.115794837,273.15,270.358067867,894.0,296.15,60953.7669478,20070.0,0.693942910593,-1.83015225364,0.6138671875,1.0,101325.0,0.516892361111,-0.34566135786,-0.402586853121,-1.69581013001,19880.9368068,1.91645768465,4.39581540468,4.84967578125 +31556391,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.758295455,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.846024639,264.830243433,273.15,270.286407166,894.0,296.15,57429.1490014,20391.0,0.693942910593,-1.83015225364,0.634069010417,1.0,101325.0,0.504941550926,-0.328286907653,-0.402582011388,-1.67247361322,20201.8369477,1.89908323445,4.56187394974,4.88309934896 +31556712,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.043766234,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.918094223,264.55129529,273.15,270.215543545,894.0,296.15,53966.4752405,20712.0,0.693942910593,-1.83015225364,0.654135416667,1.0,101325.0,0.493125,-0.310919185455,-0.402577169473,-1.64913709641,20522.7370889,1.88171551225,4.72695256551,4.916403125 +31557033,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.389431818,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,260.026355784,264.442381114,273.15,270.165204734,894.0,296.15,52098.8642583,21033.0,0.693942910593,-1.83015225364,0.67071484375,1.0,101325.0,0.484765625,-0.293724709467,-0.402572322891,-1.62580057888,20843.6372401,1.86452103626,4.86679800227,4.94662226562 +31557354,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.735097403,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,260.134617344,264.333466938,273.15,270.114865922,894.0,296.15,50231.2532761,21354.0,0.693942910593,-1.83015225364,0.687294270833,1.0,101325.0,0.47640625,-0.276530233479,-0.402567476309,-1.60246406135,21164.5373913,1.84732656028,5.00664343904,4.97684140625 +31557675,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,260.152566964,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,260.264566926,264.280364583,273.190390625,270.10416503,894.0,296.15,48759.0804367,21675.0,0.693942910593,-1.83015225364,0.700113932292,1.0,101325.0,0.468974358974,-0.259383752354,-0.402562628594,-1.57912754364,21485.4375448,1.83018007915,5.13743204203,4.98041212452 +31557996,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,260.805553571,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,260.465653216,264.410325,273.3632625,270.223476513,894.0,296.15,48583.9447057,21996.0,0.693942910593,-1.83015225364,0.7006015625,1.0,101325.0,0.464584615384,-0.242394694376,-0.402557777164,-1.55579102535,21806.3377064,1.81319102117,5.23851423021,4.89657601744 +31558317,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,261.458540178,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,260.666739506,264.540285417,273.536134375,270.342787997,894.0,296.15,48408.8089748,22317.0,0.693942910593,-1.83015225364,0.701089192708,1.0,101325.0,0.460194871795,-0.225405636399,-0.402552925733,-1.53245450707,22127.2378679,1.79620196319,5.33959641839,4.81273991037 +31558638,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,262.287723214,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,260.910521742,264.720270833,273.80071875,270.542024347,894.0,296.15,48376.6475649,22638.0,0.693942910593,-1.83015225364,0.694688802083,1.0,101325.0,0.456421082621,-0.208516318225,-0.402548072218,-1.50911798846,22448.1380338,1.77931264501,5.42567310526,4.66820378715 +31558959,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,263.350558036,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,261.210922517,264.96659375,274.186921875,270.847248019,894.0,296.15,48534.0825372,22959.0,0.693942910593,-1.83015225364,0.679154296875,1.0,101325.0,0.453464102564,-0.191759263701,-0.402543215939,-1.48578146942,22769.0382056,1.76255559049,5.49185119257,4.44317416425 +31559280,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,264.413392857,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,261.511323292,265.212916667,274.573125,271.152471692,894.0,296.15,48691.5175095,23280.0,0.693942910593,-1.83015225364,0.663619791667,1.0,101325.0,0.450507122507,-0.175002209178,-0.402538359659,-1.46244495038,23089.9383774,1.74579853597,5.55802927987,4.21814454134 +31559601,0.0,0.1,0.5,0.2,0.0,0.0832923497267,0.0376875,0.0870878623189,265.60903125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,261.825403174,265.464264583,274.968540625,271.471221064,894.0,296.15,48854.4943082,23601.0,0.693942910593,-1.83015225364,0.647212890625,1.0,101325.0,0.448733618234,-0.158407981169,-0.402533500345,-1.43910843087,23410.8385558,1.72920430796,5.5932792933,3.98373253795 +31559922,0.0,0.1,0.5,0.2,0.0,0.21631147541,0.097875,0.226168478261,266.883955357,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,262.147649687,265.7186125,275.36945625,271.79804548,894.0,296.15,49020.7796598,23922.0,0.693942910593,-1.83015225364,0.63028515625,1.0,101325.0,0.447666666667,-0.14191096302,-0.402528639217,-1.41577191109,23731.738738,1.71270728981,5.61006478503,3.74371911337 +31560243,0.0,0.1,0.5,0.2,0.0,0.349330601093,0.1580625,0.365249094203,268.158879464,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,262.4698962,265.972960417,275.770371875,272.124869897,894.0,296.15,49187.0650115,24243.0,0.693942910593,-1.83015225364,0.613357421875,1.0,101325.0,0.446599715099,-0.125413944871,-0.40252377809,-1.3924353913,24052.6389202,1.69621027166,5.62685027675,3.50370568879 +31560564,0.0,0.1,0.5,0.2,0.0,0.726393442623,0.300138888889,0.751696859904,269.445589286,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,262.707963906,266.144808333,276.0200375,272.338490039,894.0,296.15,49094.3919039,24564.0,0.693942910593,-1.83015225364,0.607315104167,1.0,101325.0,0.447463247863,-0.109155270835,-0.402518912976,-1.36909887089,24373.5391109,1.67995159763,5.59109804935,3.35516778101 +31560885,0.0,0.1,0.5,0.2,0.0,1.15614754098,0.459895833334,1.19155344203,270.73484375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,262.927856643,266.29884375,276.237046875,272.52766835,894.0,296.15,48945.8073109,24885.0,0.693942910593,-1.83015225364,0.603623046875,1.0,101325.0,0.448743589744,-0.09294805746,-0.402514047,-1.34576235035,24694.4393035,1.66374438426,5.54400245079,3.2263802689 +31561206,0.0,0.1,0.5,0.2,0.0,1.59230874317,0.620930555556,1.6376660628,272.027375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,263.146883547,266.451112121,276.449396528,272.713343107,894.0,296.15,48790.2572891,25206.0,0.693942910593,-1.83015225364,0.60048530506,1.0,101325.0,0.450074941725,-0.0767468549461,-0.402509180935,-1.32242582979,25015.3394962,1.64754318174,5.49438365737,3.10057312235 +31561527,0.0,0.1,0.5,0.2,0.0,2.36484289618,0.849048611111,2.41222071256,273.4919375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,263.320454205,266.510610606,276.417110764,272.715081309,894.0,296.15,48269.0222566,25527.0,0.693942910593,-1.83015225364,0.626449125744,1.0,101325.0,0.454084324009,-0.0608612226303,-0.402504310112,-1.29908930849,25336.2396992,1.63165754943,5.31229713438,3.13123516802 +31561848,0.0,0.1,0.5,0.2,0.0,3.13737704918,1.07716666667,3.18677536232,274.9565,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,263.494024862,266.570109091,276.384825,272.716819512,894.0,296.15,47747.787224,25848.0,0.693942910593,-1.83015225364,0.652412946429,1.0,101325.0,0.458093706294,-0.0449755903145,-0.402499439289,-1.27575278719,25657.1399021,1.61577191711,5.13021061138,3.16189721369 +31562169,0.0,0.1,0.5,0.2,0.0,3.99349043716,1.31327083333,4.04056612319,276.4814375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,263.705992879,266.627400505,276.328234838,272.700867729,894.0,296.15,47201.8606732,26169.0,0.693942910593,-1.83015225364,0.682975911459,1.0,101325.0,0.462500718725,-0.0291663999318,-0.402494567425,-1.25241626573,25978.0401072,1.59996272672,4.91998660024,3.21002813277 +31562490,0.0,0.1,0.5,0.2,0.0,5.15484972678,1.57854166667,5.18374094203,278.226875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,264.058194733,266.676631313,276.182880787,272.620309043,894.0,296.15,46565.7564035,26490.0,0.693942910593,-1.83015225364,0.730335751488,1.0,101325.0,0.46835994561,-0.013636388783,-0.402489691755,-1.22907974368,26298.9403205,1.58443271558,4.60699958888,3.32195841561 +31562811,0.0,0.1,0.5,0.2,0.0,6.31620901639,1.8438125,6.32691576087,279.9723125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,264.410396586,266.725862121,276.037526736,272.539750357,894.0,296.15,45929.6521338,26811.0,0.693942910593,-1.83015225364,0.777695591518,1.0,101325.0,0.474219172494,0.00189362236585,-0.402484816085,-1.20574322163,26619.8405338,1.56890270443,4.29401257753,3.43388869844 +31563132,0.0,0.1,0.5,0.2,0.0,8.82262636612,3.18337115839,8.80340555146,281.71775,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,264.847602338,266.774737374,275.888363426,272.456317871,894.0,296.15,45307.8388109,27132.0,0.693942910593,-1.83015225364,0.824646205357,1.0,101325.0,0.480249339549,0.0172623712605,-0.402479938421,-1.18240669926,26940.7407514,1.55353395554,3.96762465569,3.55316759909 +31563453,0.0,0.1,0.5,0.2,0.0,13.2549223019,6.0611146572,13.1889599607,283.4631875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,265.406518218,266.823103535,275.733745949,272.368770626,894.0,296.15,44706.4875256,27453.0,0.693942910593,-1.83015225364,0.871010881697,1.0,101325.0,0.486524261849,0.0324002219275,-0.402475057904,-1.15907017646,27261.6409751,1.53839610487,3.62204906656,3.68296838434 +31563774,0.0,0.1,0.5,0.2,0.0,17.6872182377,8.93885815602,17.5745143699,285.208625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,265.965434098,266.871469697,275.579128472,272.281223382,894.0,296.15,44105.1362403,27774.0,0.693942910593,-1.83015225364,0.917375558036,1.0,101325.0,0.492799184149,0.0475380725946,-0.402470177386,-1.13573365365,27582.5411988,1.5232582542,3.27647347743,3.81276916959 +31564095,0.0,0.1,0.5,0.2,0.0,24.5260459358,14.0075985027,24.4756427577,286.7834375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,266.429681763,266.925022727,275.481942708,272.23732266,894.0,296.15,43615.788585,28095.0,0.693942910593,-1.83015225364,0.949533575149,1.0,101325.0,0.49845541958,0.0624138540262,-0.402465293925,-1.11239713038,27903.4414288,1.50838247277,2.9708232774,3.91491322492 +31564416,0.0,0.1,0.5,0.2,0.0,32.919863388,20.4920598897,33.002218947,288.248,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,266.832759195,266.981927273,275.421866667,272.221624306,894.0,296.15,43198.8125059,28416.0,0.693942910593,-1.83015225364,0.972511904762,1.0,101325.0,0.503711888112,0.0771202984134,-0.402460408561,-1.08906060682,28224.3416629,1.49367602838,2.6909710211,3.99918677783 +31564737,0.0,0.1,0.5,0.2,0.0,41.3136808402,26.9765212766,41.5287951363,289.7125625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,267.235836628,267.038831818,275.361790625,272.205925951,894.0,296.15,42781.8364267,28737.0,0.693942910593,-1.83015225364,0.995490234375,1.0,101325.0,0.508968356643,0.0918267428007,-0.402455523197,-1.06572408325,28545.241897,1.478969584,2.41111876479,4.08346033074 +31565058,0.0,0.1,0.5,0.2,0.0,50.2864122268,34.4286012608,51.029717596,290.356429687,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,267.30489899,267.126005577,275.37929375,272.247664876,894.0,296.15,42600.4230859,29058.0,0.693942910593,-1.83015225364,0.997248511905,1.0,101325.0,0.512943525095,0.106152595915,-0.402450633937,-1.04238755908,28866.1421395,1.46464373088,2.20181338874,4.06166426983 +31565379,0.0,0.1,0.5,0.2,0.0,59.4005063183,42.1169602049,60.7685618193,290.799894531,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,267.292399533,267.220570654,275.415740625,272.303429182,894.0,296.15,42476.5308789,29379.0,0.693942910593,-1.83015225364,0.993825148809,1.0,101325.0,0.516605817945,0.12038551395,-0.402445743726,-1.01905103476,29187.042384,1.45041081285,2.00973457647,4.01396748926 +31565700,0.0,0.1,0.5,0.2,0.0,68.5146004098,49.8053191489,70.5074060427,291.243359375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,267.279900076,267.315135732,275.4521875,272.359193489,894.0,296.15,42352.6386718,29700.0,0.693942910593,-1.83015225364,0.990401785714,1.0,101325.0,0.520268110795,0.134618431986,-0.402440853515,-0.995714510434,29507.9426285,1.43617789481,1.8176557642,3.9662707087 +31566021,0.0,0.1,0.5,0.2,0.0,75.1077262636,56.2947553191,78.5297645541,290.662800781,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,267.133969155,267.441130559,275.52383044,272.43503337,894.0,296.15,42510.2327288,30021.0,0.693942910593,-1.83015225364,0.977902529762,1.0,101325.0,0.522399962516,0.148332716586,-0.402435958458,-0.972377985354,29828.8428835,1.42246361021,1.67698807065,3.81667649371 +31566342,0.0,0.1,0.5,0.2,0.0,81.7008521175,62.7841914894,86.5521230656,290.082242188,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.988038233,267.567125386,275.59547338,272.510873251,894.0,296.15,42667.8267859,30342.0,0.693942910593,-1.83015225364,0.965403273809,1.0,101325.0,0.524531814236,0.162047001186,-0.4024310634,-0.949041460275,30149.7431384,1.40874932561,1.5363203771,3.66708227872 +31566663,0.0,0.1,0.5,0.2,0.0,87.8235354764,67.7056256739,93.6391915342,289.462636719,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.850764209,267.690726484,275.675759375,272.591475424,894.0,296.15,42874.6136521,30663.0,0.693942910593,-1.83015225364,0.952716517857,1.0,101325.0,0.526270081677,0.175650051488,-0.402426167392,-0.925704935046,30470.6433954,1.39514627531,1.40784139256,3.51934839507 +31566984,0.0,0.1,0.5,0.2,0.0,92.0196448087,66.2057183936,96.8960245897,288.683125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.74894224,267.804524692,275.791440741,272.691580313,894.0,296.15,43282.8567842,30984.0,0.693942910593,-1.83015225364,0.939261904762,1.0,101325.0,0.526396527778,0.188797570857,-0.402421267488,-0.902368409208,30791.5436607,1.38199875594,1.32927807352,3.3792330112 +31567305,0.0,0.1,0.5,0.2,0.0,96.2157541411,64.7058111133,100.152857645,287.903613281,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.647120271,267.9183229,275.907122106,272.791685203,894.0,296.15,43691.0999162,31305.0,0.693942910593,-1.83015225364,0.925807291666,1.0,101325.0,0.52652297388,0.201945090226,-0.402416367584,-0.879031883371,31112.4439261,1.36885123657,1.25071475448,3.23911762732 +31567626,0.0,0.1,0.5,0.2,0.0,100.144145748,60.209173053,102.113064723,287.369867188,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.61352681,268.010209281,276.043560416,272.902667806,894.0,296.15,44185.6243493,31626.0,0.693942910593,-1.83015225364,0.915165178571,1.0,101325.0,0.525675816762,0.214850085098,-0.402411465778,-0.855695357235,31433.3441955,1.3559462417,1.20072620622,3.14644069259 +31567947,0.0,0.1,0.5,0.2,0.0,103.658212304,51.0747373572,102.066588742,287.216472656,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.685525087,268.068184502,276.212122569,273.030484965,894.0,296.15,44813.6793672,31947.0,0.693942910593,-1.83015225364,0.908875744047,1.0,101325.0,0.523321892756,0.227379744438,-0.402406561029,-0.832358830637,31754.2444714,1.34341658236,1.1949605175,3.12718040535 +31568268,0.0,0.1,0.5,0.2,0.0,107.172278859,41.9403016613,102.020112761,287.063078125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.757523365,268.126159722,276.380684722,273.158302125,894.0,296.15,45441.7343852,32268.0,0.693942910593,-1.83015225364,0.902586309524,1.0,101325.0,0.52096796875,0.239909403777,-0.402401656279,-0.809022304039,32075.1447472,1.33088692302,1.18919482878,3.10792011812 +31568589,0.0,0.1,0.5,0.2,0.0,109.78152728,33.2065370286,102.288531659,287.886789363,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,267.034031363,268.052671875,276.6327,273.30594162,894.0,296.15,46262.7132552,32589.0,0.693942910593,-1.83015225364,0.905578125,1.0,101325.0,0.511783544922,0.252043559376,-0.402396748677,-0.785685776994,32396.0450291,1.31875276742,1.35413110094,3.33090100577 +31568910,0.0,0.1,0.5,0.2,0.0,111.758839225,24.7526061542,102.776877141,289.392923678,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,267.453371547,267.887368552,276.943,273.467425286,894.0,296.15,47218.4325935,32910.0,0.693942910593,-1.83015225364,0.915052083333,1.0,101325.0,0.497828613282,0.26390149014,-0.402391839082,-0.762349249637,32716.9453154,1.30689483666,1.63828779023,3.72306620604 +31569231,0.0,0.1,0.5,0.2,0.0,113.73615117,16.2986752799,103.265222622,290.899057992,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,267.872711731,267.722065228,277.2533,273.628908952,894.0,296.15,48174.1519318,33231.0,0.693942910593,-1.83015225364,0.924526041667,1.0,101325.0,0.483873681641,0.275759420905,-0.402386929487,-0.739012722279,33037.8456017,1.2950369059,1.92244447951,4.11523140631 +31569552,0.0,0.1,0.5,0.2,0.0,113.836050205,14.9066621335,107.186539738,293.342199519,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,268.491850842,267.367062831,277.6616,273.783492415,894.0,296.15,49415.7965366,33552.0,0.693942910593,-1.83015225364,0.941291666667,1.0,101325.0,0.459961067709,0.287045819197,-0.402382016087,-0.715676194324,33358.7458962,1.2837505076,2.43842776044,4.80751186374 +31569873,0.0,0.1,0.5,0.2,0.0,113.421895705,15.4482693174,112.047837183,296.041902544,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,269.165696802,266.96011902,278.096733333,273.936186538,894.0,296.15,50735.7302026,33873.0,0.693942910593,-1.83015225364,0.960053819445,1.0,101325.0,0.433321945529,0.298175726455,-0.402377101647,-0.692339666206,33679.6461929,1.27262060034,3.01788737003,5.58196673681 +31570194,0.0,0.1,0.5,0.2,0.0,113.007741206,15.9898765012,116.909134627,298.741605569,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,269.839542762,266.553175209,278.531866667,274.08888066,894.0,296.15,52055.6638685,34194.0,0.693942910593,-1.83015225364,0.978815972223,1.0,101325.0,0.40668282335,0.309305633713,-0.402372187206,-0.669003138088,34000.5464896,1.26149069308,3.59734697962,6.35642160989 +31570515,0.0,0.1,0.5,0.2,0.0,111.106445312,55.498609891,132.225682164,301.215196815,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,270.277282629,266.085756862,278.9425,274.183716375,894.0,296.15,53597.7888174,34515.0,0.693942910593,-1.83015225364,0.986458333334,1.0,101325.0,0.378961344401,0.319664027566,-0.40236726801,-0.645666609223,34321.4467966,1.25113229923,4.16540365592,7.14471943763 +31570836,0.0,0.1,0.5,0.2,0.0,109.176822917,95.749574256,147.741377321,303.68448117,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,270.710525236,265.617186618,279.352666667,274.277450025,894.0,296.15,55144.1459813,34836.0,0.693942910593,-1.83015225364,0.993888888889,1.0,101325.0,0.351219249132,0.330007725926,-0.402362348725,-0.622330080343,34642.3471038,1.24078860087,4.73324313349,7.93328094071 +31571157,0.0,0.1,0.5,0.2,0.0,107.233841146,143.231218487,164.881835255,305.859992488,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,271.091382407,265.169638476,279.7318,274.359366169,894.0,296.15,56706.2416563,35157.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.325337776693,0.340201282785,-0.402357428579,-0.598993551327,34963.2474128,1.23059504401,5.24451886805,8.65896906206 +31571478,0.0,0.1,0.5,0.2,0.0,105.228984375,224.202327359,189.547510258,306.674870793,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,271.229612296,264.819455853,279.9672,274.386548599,894.0,296.15,58341.2314882,35478.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.308073925782,0.349699447433,-0.402352504447,-0.575657021685,35284.1477305,1.22109687936,5.49381516127,9.09345415231 +31571799,0.0,0.1,0.5,0.2,0.0,103.224127604,305.173436231,214.213185261,307.489749099,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,271.367842185,264.469273231,280.2026,274.41373103,894.0,296.15,59976.2213202,35799.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.29081007487,0.359197612081,-0.402347580316,-0.552320492043,35605.0480482,1.21159871471,5.74311145449,9.52793924256 +31572120,0.0,0.1,0.5,0.2,0.0,101.188020833,387.81954699,239.368323786,307.499238782,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,271.265108839,264.164649725,280.376730769,274.425069896,894.0,296.15,61879.6342256,36120.0,0.693942910593,-1.83015225364,0.990104166667,0.999027777778,101325.0,0.277176195549,0.368357453611,-0.402342654374,-0.528983962116,35925.9483698,1.20243887318,5.88058799151,9.84369338768 +31572441,0.0,0.1,0.5,0.2,0.0,99.0995703125,473.27128591,265.343313709,306.159702524,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,270.758762075,263.936337741,280.448235577,274.409870794,894.0,296.15,64232.6557792,36441.0,0.693942910593,-1.83015225364,0.9636328125,0.996427083333,101325.0,0.269622518643,0.376950603917,-0.402337725399,-0.505647431711,36246.8486979,1.19384572288,5.83076643688,9.96057319972 +31572762,0.0,0.1,0.5,0.2,0.0,97.0111197917,558.72302483,291.318303631,304.820166266,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,270.252415311,263.708025756,280.519740384,274.394671691,894.0,296.15,66585.6773328,36762.0,0.693942910593,-1.83015225364,0.937161458333,0.993826388889,101325.0,0.262068841737,0.385543754223,-0.402332796423,-0.482310901306,36567.7490261,1.18525257257,5.78094488226,10.0774530118 +31573083,0.0,0.1,0.5,0.2,0.0,94.8702473958,626.069231516,313.569813644,302.876373197,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,269.716545444,263.495817976,280.572671474,274.373568719,894.0,296.15,69374.3634402,37083.0,0.693942910593,-1.83015225364,0.905712673611,0.988542824074,101325.0,0.255451501834,0.393587657912,-0.402327864685,-0.458974370465,36888.6493602,1.17720866888,5.70588234547,10.1704241206 +31573404,0.0,0.1,0.5,0.2,0.0,92.68984375,679.762086026,333.013453561,300.476911057,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,269.158412253,263.29575435,280.611596154,274.348013648,894.0,296.15,72491.5834735,37404.0,0.693942910593,-1.83015225364,0.870510416666,0.981236111111,101325.0,0.24954025213,0.401217375628,-0.402322930865,-0.435637839296,37209.5496989,1.16957895117,5.6117856254,10.2453657156 +31573725,0.0,0.1,0.5,0.2,0.0,90.5094401042,733.454940535,352.457093477,298.077448918,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,268.600279062,263.095690724,280.650520834,274.322458578,894.0,296.15,75608.8035067,37725.0,0.693942910593,-1.83015225364,0.835308159722,0.973929398148,101325.0,0.243629002426,0.408847093344,-0.402317997045,-0.412301308127,37530.4500376,1.16194923346,5.51768890534,10.3203073105 +31574046,0.0,0.1,0.5,0.2,0.0,88.2916666667,764.940000433,367.099855734,295.607353766,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,268.123562269,262.943604357,280.688131411,274.311486694,894.0,296.15,78535.6296609,38046.0,0.693942910593,-1.83015225364,0.796404513889,0.963585648148,101325.0,0.239460543916,0.415695622617,-0.402313059512,-0.388964776373,37851.3503843,1.15510070418,5.42506956556,10.3559139116 +31574367,0.0,0.1,0.5,0.2,0.0,86.0625,789.654391242,380.278935777,293.115724158,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,267.671667548,262.806145204,280.725341346,274.304960903,894.0,296.15,81404.4089007,38367.0,0.693942910593,-1.83015225364,0.756372395833,0.952315972222,101325.0,0.235823424183,0.422305984682,-0.402308120848,-0.365628244439,38172.2507335,1.14849034212,5.33290064661,10.3795281363 +31574688,0.0,0.1,0.5,0.2,0.0,83.8333333333,814.368782051,393.45801582,290.624094551,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,267.219772827,262.66868605,280.762551282,274.298435112,894.0,296.15,84273.1881406,38688.0,0.693942910593,-1.83015225364,0.716340277778,0.941046296296,101325.0,0.232186304451,0.428916346747,-0.402303182183,-0.342291712506,38493.1510827,1.14187998005,5.24073172765,10.4031423611 +31575009,0.0,0.1,0.5,0.2,0.0,81.6041666667,835.522204825,405.15598055,288.975323517,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,266.941287518,262.624562786,280.827822116,274.337857317,894.0,296.15,85928.030494,39009.0,0.693942910593,-1.83015225364,0.6754140625,0.926677083333,101325.0,0.231346388198,0.434495569338,-0.402298238856,-0.318955179836,38814.051442,1.13630075746,5.19489429532,10.3683098392 +31575330,0.0,0.1,0.5,0.2,0.0,79.375,856.537337578,416.79642624,287.359284856,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,266.669536556,262.584064217,280.894182692,274.379063911,894.0,296.15,87535.7296673,39330.0,0.693942910593,-1.83015225364,0.634453125,0.9121875,101325.0,0.230615101207,0.440034747677,-0.402293295347,-0.295618647138,39134.9518017,1.13076157912,5.15085614402,10.3312075408 +31575651,0.0,0.1,0.5,0.2,0.0,77.1458333333,876.568917836,428.009394029,285.862215545,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,266.417738432,262.565283654,280.965634415,274.427455008,894.0,296.15,88846.7830046,39651.0,0.693942910593,-1.83015225364,0.592651041667,0.891765625,101325.0,0.23025797822,0.445396422507,-0.402288351069,-0.272282114318,39455.8521631,1.12539990429,5.11289043901,10.2848372396 +31575972,0.0,0.1,0.5,0.2,0.0,74.9166666667,891.393455475,436.959243518,284.994983974,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,266.271572983,262.661480769,281.064039263,274.513881706,894.0,296.15,88587.3583864,39972.0,0.693942910593,-1.83015225364,0.546395833333,0.8399375,101325.0,0.231881723485,0.449818372872,-0.402283402717,-0.248945580854,39776.7525333,1.12097795392,5.10707297913,10.1894010417 +31576293,0.0,0.1,0.5,0.2,0.0,72.6875,906.217993113,445.909093008,284.127752404,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,266.125407534,262.757677884,281.16244411,274.600308404,894.0,296.15,88327.9337681,40293.0,0.693942910593,-1.83015225364,0.500140625,0.788109375,101325.0,0.23350546875,0.454240323237,-0.402278454365,-0.22560904739,40097.6529035,1.11655600356,5.10125551925,10.0939648438 +31576614,0.0,0.1,0.5,0.2,0.0,70.4583333333,917.959227737,453.494295715,283.285184295,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.990807672,262.887693376,281.263360977,274.691179402,894.0,296.15,87662.6527878,40614.0,0.693942910593,-1.83015225364,0.45190625,0.721195601852,101325.0,0.235393702651,0.458251796623,-0.402273504292,-0.202272513653,40418.5532775,1.11254453017,5.09568433916,9.99044704861 +31576935,0.0,0.1,0.5,0.2,0.0,68.2291666667,924.101833203,458.60158716,282.487399839,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.877208481,263.079115918,281.368839142,274.79012031,894.0,296.15,86260.4220972,40935.0,0.693942910593,-1.83015225364,0.400078125,0.626889467593,101325.0,0.237762192235,0.461517930231,-0.402268551096,-0.178935979422,40739.4536583,1.10927839656,5.09056035132,9.87225477431 +31577256,0.0,0.1,0.5,0.2,0.0,66.0,930.244438669,463.708878604,281.689615384,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.76360929,263.270538461,281.474317307,274.889061218,894.0,296.15,84858.1914066,41256.0,0.693942910593,-1.83015225364,0.34825,0.532583333334,101325.0,0.240130681818,0.464784063839,-0.4022635979,-0.155599445191,41060.354039,1.10601226295,5.08543636348,9.7540625 +31577577,0.0,0.1,0.5,0.2,0.0,63.7708333333,933.521916238,467.195656425,281.006710737,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.625719208,263.466247329,281.577668069,274.985563725,894.0,296.15,83367.7898043,41577.0,0.693942910593,-1.83015225364,0.298880208333,0.439233217593,101325.0,0.242381841856,0.467396553543,-0.402258642034,-0.132262910537,41381.2544256,1.10339977325,5.083328943,9.64560112847 +31577898,0.0,0.1,0.5,0.2,0.0,61.5416666667,934.468442298,469.36405028,280.417267628,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.468067046,263.665443376,281.679288061,275.080082448,894.0,296.15,81805.6559348,41898.0,0.693942910593,-1.83015225364,0.251510416667,0.34666087963,101325.0,0.244537547348,0.469477265155,-0.402253683995,-0.108926375539,41702.1548169,1.10131906164,5.08367567902,9.54505642361 +31578219,0.0,0.1,0.5,0.2,0.0,59.3125,935.414968358,471.532444134,279.827824519,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.310414884,263.864639423,281.780908053,275.174601172,894.0,296.15,80243.5220653,42219.0,0.693942910593,-1.83015225364,0.204140625,0.254088541667,101325.0,0.246693252841,0.471557976767,-0.402248725956,-0.0855898405409,42023.0552083,1.09923835003,5.08402241503,9.44451171875 +31578540,0.0,0.1,0.5,0.2,0.0,57.0833333333,936.262712537,472.753351956,279.497996795,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.131428408,264.00426282,281.871470353,275.252785649,894.0,296.15,79296.7150851,42540.0,0.693942910593,-1.83015225364,0.167604166667,0.195868055556,101325.0,0.247973958333,0.472737909855,-0.402243764296,-0.0622533049684,42343.9556075,1.09805841694,5.09203118895,9.38736979167 +31578861,0.0,0.1,0.5,0.2,0.0,54.8541666667,937.077117831,473.65448324,279.255789263,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,264.945241601,264.123780449,281.958300681,275.325457318,894.0,296.15,78557.5809301,42861.0,0.693942910593,-1.83015225364,0.134723958333,0.149241319445,101325.0,0.248959351326,0.47361383019,-0.402238801414,-0.0389167692021,42664.8560094,1.0971824966,5.10262590065,9.34487630208 +31579182,0.0,0.1,0.5,0.2,0.0,52.625,937.891523125,474.555614525,279.013581731,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,264.759054794,264.243298077,282.04513101,275.398128986,894.0,296.15,77818.446775,43182.0,0.693942910593,-1.83015225364,0.10184375,0.102614583333,101325.0,0.249944744318,0.474489750526,-0.402233838531,-0.0155802334357,42985.7564112,1.09630657627,5.11322061236,9.3023828125 +31579503,0.0,0.1,0.5,0.2,0.0,50.3958333333,938.464001317,474.260544693,279.109153646,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.691846413,264.290242187,282.105891927,275.441639455,894.0,296.15,77777.0,43503.0,0.693942910593,-1.83015225364,0.0892912946429,0.096528125,101325.0,0.249885227273,0.474220626258,-0.402228871078,0.00775630305629,43306.6568231,1.09657570054,5.14118487833,9.3 +31579824,0.0,0.1,0.5,0.2,0.0,48.1666666667,939.022107601,473.894413408,279.224791667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.631706057,264.332875,282.165104167,275.483417576,894.0,296.15,77777.0,43824.0,0.693942910593,-1.83015225364,0.0779464285714,0.09285,101325.0,0.249763636364,0.473883479538,-0.402223903353,0.0310928395914,43627.5572356,1.09691284726,5.170180999,9.3 +31580145,0.0,0.1,0.5,0.2,0.0,45.9375,939.526875952,473.350628492,279.362695313,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.591170753,264.372408854,282.221308594,275.522367236,894.0,296.15,77777.0,44145.0,0.693942910593,-1.83015225364,0.0686662946428,0.090078125,101325.0,0.249577651515,0.473376724366,-0.402218934949,0.0544293762344,43948.4576495,1.09741960243,5.20106013057,9.3 +31580466,0.0,0.1,0.5,0.2,0.0,43.7083333333,939.70450498,471.717234637,279.637161458,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.670879767,264.392935764,282.259065104,275.543969,894.0,296.15,77777.0,44466.0,0.693942910593,-1.83015225364,0.0720498511905,0.0928645833333,101325.0,0.248996717172,0.471829704022,-0.402213962382,0.0777659135391,44269.3580726,1.09896662278,5.2434883956,9.3 +31580787,0.0,0.1,0.5,0.2,0.0,41.4791666667,939.882134009,470.083840782,279.911627604,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.750588782,264.413462673,282.296821615,275.565570764,894.0,296.15,77777.0,44787.0,0.693942910593,-1.83015225364,0.0754334077381,0.0956510416667,101325.0,0.248415782828,0.470282683677,-0.402208989814,0.101102450844,44590.2584956,1.10051364312,5.28591666063,9.3 +31581108,0.0,0.1,0.5,0.2,0.0,39.2789903846,940.045189412,468.283565965,280.18046875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.84049177,264.423364583,282.333265625,275.584380269,894.0,296.15,77777.0,45108.0,0.693942910593,-1.83015225364,0.08015625,0.0985875,101325.0,0.247653030303,0.468333487297,-0.402204015618,0.124438988408,44911.1589222,1.1024628395,5.3278487815,9.3 +31581429,0.0,0.1,0.5,0.2,0.0,37.1359895834,940.179502388,466.154164804,280.438216146,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.950499541,264.412311632,282.367121094,275.597682818,894.0,296.15,77777.0,45429.0,0.693942910593,-1.83015225364,0.0875204613095,0.101819791667,101325.0,0.246531691919,0.465591110401,-0.402199038208,0.147775526483,45232.0593559,1.1052052164,5.36880239584,9.3 +31581750,0.0,0.1,0.5,0.2,0.0,34.9929887821,940.313815363,464.024763644,280.695963542,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,265.060507313,264.40125868,282.400976562,275.610985368,894.0,296.15,77777.0,45750.0,0.693942910593,-1.83015225364,0.094884672619,0.105052083333,101325.0,0.245410353535,0.462848733505,-0.402194060798,0.171112064558,45552.9597895,1.10794759329,5.40975601017,9.3 +31582071,0.0,0.1,0.5,0.2,0.0,32.9280889423,940.445429213,461.634294156,280.851289062,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,265.132058669,264.368335937,282.442105469,275.62612497,894.0,296.15,77777.0,46071.0,0.693942910593,-1.83015225364,0.0986439732143,0.105315625,101325.0,0.243957954545,0.459482996463,-0.402189080809,0.194448603044,45873.8602288,1.11131333033,5.44198305995,9.3 +31582392,0.0,0.1,0.5,0.2,0.0,30.9316987179,940.574675409,459.014817362,280.916770833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,265.169876329,264.316229167,282.489614583,275.642876023,894.0,296.15,77777.0,46392.0,0.693942910593,-1.83015225364,0.0992410714286,0.102975,101325.0,0.242215151515,0.455570452275,-0.402184098557,0.217785141889,46194.760673,1.11522587452,5.46655522855,9.3 +31582713,0.0,0.1,0.5,0.2,0.0,28.9353084936,940.703921604,456.395340567,280.982252604,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,265.207693989,264.264122396,282.537123698,275.659627075,894.0,296.15,77777.0,46713.0,0.693942910593,-1.83015225364,0.0998381696429,0.100634375,101325.0,0.240472348485,0.451657908087,-0.402179116305,0.241121680735,46515.6611172,1.11913841871,5.49112739715,9.3 +31583034,0.0,0.1,0.5,0.2,0.0,27.0176682692,940.412104177,452.581763215,280.852008928,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.201576752,264.158432651,282.630742188,275.69389835,894.0,296.15,77777.0,47034.0,0.693942910593,-1.83015225364,0.0937321428572,0.09341875,101325.0,0.2372375,0.446917692144,-0.402174130523,0.264458220144,46836.5615692,1.12387863465,5.48783758777,9.3 +31583355,0.0,0.1,0.5,0.2,0.0,25.129306891,939.963737453,448.324225398,280.648995535,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.179124745,264.032821031,282.741503906,275.734683553,894.0,296.15,77777.0,47355.0,0.693942910593,-1.83015225364,0.0851339285715,0.084390625,101325.0,0.233447916667,0.441869752087,-0.40216914343,0.287794759761,47157.4620241,1.12892657471,5.47418883786,9.3 +31583676,0.0,0.1,0.5,0.2,0.0,23.2409455128,939.51537073,444.06668758,280.445982142,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.156672739,263.907209411,282.852265625,275.775468756,894.0,296.15,77777.0,47676.0,0.693942910593,-1.83015225364,0.0765357142858,0.0753625,101325.0,0.229658333333,0.43682181203,-0.402164156336,0.311131299379,47478.3624789,1.13397451476,5.46054008794,9.3 +31583997,0.0,0.1,0.5,0.2,0.0,21.4168389423,938.002838149,437.231405887,280.117745535,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.128285811,263.727492726,283.008660156,275.828341809,894.0,296.15,77777.0,47997.0,0.693942910593,-1.83015225364,0.0657767857143,0.064615625,101325.0,0.22408125,0.430763087759,-0.402159164763,0.334467839711,47799.2629436,1.14003323903,5.41735399899,9.3 +31584318,0.0,0.1,0.5,0.2,0.0,19.5979246795,936.404312368,430.187821659,279.779389881,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.099419293,263.543403915,283.168742188,275.882191658,894.0,296.15,77777.0,48318.0,0.693942910593,-1.83015225364,0.0548432539683,0.0537298611111,101325.0,0.218359722222,0.424622683956,-0.402154172827,0.357804380101,48120.1634091,1.14617364284,5.37178105436,9.3 +31584639,0.0,0.1,0.5,0.2,0.0,17.8043333333,934.339758084,422.866655658,279.441421131,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.067063085,263.359712015,283.325371094,275.933650839,894.0,296.15,77777.0,48639.0,0.693942910593,-1.83015225364,0.0440128968254,0.0429704861111,101325.0,0.212674305555,0.418355561135,-0.402149180304,0.381140920585,48441.0638758,1.15244076566,5.32564598792,9.3 +31584960,0.0,0.1,0.5,0.2,0.0,16.1938461538,928.905459239,413.538359921,279.10625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.009473727,263.178890086,283.45703125,275.967823652,894.0,296.15,77777.0,48960.0,0.693942910593,-1.83015225364,0.0339285714286,0.033125,101325.0,0.20725,0.411172162331,-0.402144183527,0.404477461749,48761.9643519,1.15962416446,5.2754463484,9.3 +31585281,0.0,0.1,0.5,0.2,0.0,14.5833589743,923.471160393,404.210064184,278.771078869,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,264.951884368,262.998068157,283.588691406,276.001996464,894.0,296.15,77777.0,49281.0,0.693942910593,-1.83015225364,0.0238442460318,0.0232795138889,101325.0,0.201825694444,0.403988763527,-0.402139186751,0.427814002912,49082.864828,1.16680756327,5.22524670888,9.3 +31585602,0.0,0.1,0.5,0.2,0.0,13.0705128205,916.60754791,394.593621048,278.4809375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,264.883088509,262.837903915,283.686617187,276.020973968,894.0,296.15,77777.0,49602.0,0.693942910593,-1.83015225364,0.0150416666667,0.0146854166667,101325.0,0.197204166667,0.396491203028,-0.402134188436,0.451150544321,49403.7653075,1.17430512377,5.18225087653,9.3 +31585923,0.0,0.1,0.5,0.2,0.0,11.7673076923,906.675114969,384.358508495,278.287477678,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,264.790231632,262.722092942,283.712113281,276.00732625,894.0,296.15,77777.0,49923.0,0.693942910593,-1.83015225364,0.00899107142858,0.008778125,101325.0,0.19430625,0.388319118891,-0.402129186818,0.474487086259,49724.6657942,1.1824772079,5.15472204196,9.3 +31586244,0.0,0.1,0.5,0.2,0.0,10.4641025641,896.742682028,374.123395942,278.094017857,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,264.697374756,262.606281968,283.737609375,275.993678533,894.0,296.15,77777.0,50244.0,0.693942910593,-1.83015225364,0.00294047619048,0.00287083333333,101325.0,0.191408333333,0.380147034754,-0.402124185201,0.497823628196,50045.566281,1.19064929204,5.12719320739,9.3 +31586565,0.0,0.1,0.5,0.2,0.0,9.26807692308,885.763809436,363.507928822,278.076729911,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.654267409,262.528053083,283.7225,275.966098864,894.0,296.15,77777.0,50565.0,0.693942910593,-1.83015225364,0.00229166666667,0.00229166666667,101325.0,0.189813802083,0.371496303882,-0.402119181095,0.521160170531,50366.4667732,1.19930002291,5.12126038346,9.16980755208 +31586886,0.0,0.1,0.5,0.2,0.0,8.17338461539,873.795575722,352.532853747,278.226004464,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.658195982,262.485356353,283.669,275.925347169,894.0,296.15,77777.0,50886.0,0.693942910593,-1.83015225364,0.00675,0.00675,101325.0,0.1894515625,0.362393034278,-0.402114174636,0.544496713243,50687.3672706,1.20840329252,5.13574560595,8.9165240625 +31587207,0.0,0.1,0.5,0.2,0.0,7.07869230769,861.827342007,341.557778673,278.375279018,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.662124554,262.442659624,283.6155,275.884595474,894.0,296.15,77777.0,51207.0,0.693942910593,-1.83015225364,0.0112083333333,0.0112083333333,101325.0,0.189089322917,0.353289764674,-0.402109168177,0.567833255954,51008.2677681,1.21750656212,5.15023082845,8.66324057292 +31587528,0.0,0.1,0.5,0.2,0.0,6.06194871795,850.162065991,330.175636072,278.712857143,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.753122654,262.424296852,283.562,275.851031143,894.0,296.15,77777.0,51528.0,0.693942910593,-1.83015225364,0.022,0.022,101325.0,0.1894,0.343567123457,-0.402104158281,0.591169799217,51329.168273,1.22722920334,5.18472009941,8.1908 +31587849,0.0,0.1,0.5,0.2,0.0,5.077,838.620364826,318.62745277,279.127243304,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.879635956,262.415859773,283.5085,275.8203985,894.0,296.15,77777.0,51849.0,0.693942910593,-1.83015225364,0.035375,0.035375,101325.0,0.18998515625,0.333591843819,-0.402099146982,0.614506342704,51650.0687811,1.23720448298,5.22736891645,7.62896640625 +31588170,0.0,0.1,0.5,0.2,0.0,4.09205128205,827.07866366,307.079269468,279.541629464,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.006149258,262.407422695,283.455,275.789765857,894.0,296.15,77777.0,52170.0,0.693942910593,-1.83015225364,0.04875,0.04875,101325.0,0.1905703125,0.323616564182,-0.402094135683,0.637842886191,51970.9692891,1.24717976261,5.27001773349,7.0671328125 +31588491,0.0,0.1,0.5,0.2,0.0,3.29590798611,815.705349483,295.245727569,279.943024554,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.119231715,262.422163091,283.4015,275.76649475,894.0,296.15,77777.0,52491.0,0.693942910593,-1.83015225364,0.062125,0.062125,101325.0,0.191862760417,0.312904740377,-0.402089119995,0.661179430382,52291.8698068,1.25789158642,5.31780711756,6.49485151042 +31588812,0.0,0.1,0.5,0.2,0.0,2.51922916666,804.349394789,283.38276726,280.343080357,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.23092955,262.439292916,283.348,275.743982564,894.0,296.15,77777.0,52812.0,0.693942910593,-1.83015225364,0.0755,0.0755,101325.0,0.193228125,0.302116984183,-0.402084103856,0.684515974645,52612.7703255,1.26867934261,5.36612645699,5.921493125 +31589133,0.0,0.1,0.5,0.2,0.0,1.77609780092,792.821765686,271.505206671,280.712935268,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.331833881,262.458157468,283.2945,275.722104094,894.0,296.15,77777.0,53133.0,0.693942910593,-1.83015225364,0.0879583333333,0.0879583333333,101325.0,0.194656510417,0.29125174751,-0.402079087219,0.707852518989,52933.6708454,1.27954457928,5.41271637542,5.37748526042 +31589454,0.0,0.1,0.5,0.2,0.0,1.32574421296,779.7958872,259.500225473,280.81921875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.33854037,262.492161451,283.241,275.705756238,894.0,296.15,77777.0,53454.0,0.693942910593,-1.83015225364,0.0924166666667,0.0924166666667,101325.0,0.196634895833,0.279710317567,-0.402074066239,0.731189064029,53254.5713748,1.29108600923,5.44421316509,5.08962739583 +31589775,0.0,0.1,0.5,0.2,0.0,0.875390624999,766.770008715,247.495244275,280.925502232,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.345246859,262.526165433,283.1875,275.689408383,894.0,296.15,77777.0,53775.0,0.693942910593,-1.83015225364,0.096875,0.096875,101325.0,0.19861328125,0.268168887623,-0.402069045259,0.754525609069,53575.4719042,1.30262743918,5.47570995476,4.80176953125 +31590096,0.0,0.1,0.5,0.2,0.0,0.501851851852,753.256678493,235.459301059,280.924375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,265.318436911,262.578217391,283.134,275.67537369,894.0,296.15,77777.0,54096.0,0.693942910593,-1.83015225364,0.0978333333333,0.0978333333333,101325.0,0.200825,0.256419172207,-0.402064022832,0.777862154341,53896.3724368,1.31437715459,5.4945362887,4.66288261468 +31590417,0.0,0.1,0.5,0.2,0.0,0.308347800926,738.600883265,223.350790614,280.671503906,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,265.213072812,262.672569293,283.0805,275.666760474,894.0,296.15,77777.0,54417.0,0.693942910593,-1.83015225364,0.0905885416667,0.0905885416667,101325.0,0.20358359375,0.244181287713,-0.402058997013,0.801198700159,54217.2729769,1.32661503909,5.48366624203,4.87314635751 +31590738,0.0,0.1,0.5,0.2,0.0,0.11484375,723.945088036,211.24228017,280.418632812,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,265.107708714,262.766921195,283.027,275.658147258,894.0,296.15,77777.0,54738.0,0.693942910593,-1.83015225364,0.08334375,0.08334375,101325.0,0.2063421875,0.231943403219,-0.402053971194,0.824535245977,54538.173517,1.33885292358,5.47279619536,5.08341010034 +31591059,0.0,0.1,0.5,0.2,0.0,0.0141510416667,708.501767444,199.101554838,280.060175781,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.977260767,262.89050951,282.9735,275.651834983,894.0,296.15,77777.0,55059.0,0.693942910593,-1.83015225364,0.0737065972222,0.0737065972222,101325.0,0.20934921875,0.21938779238,-0.402048942977,0.84787179218,54859.0740624,1.35140853442,5.43905278485,5.44777423021 +31591380,0.0,0.1,0.5,0.2,0.0,0.00802083333333,692.256062519,186.928006791,279.594140625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.821255692,263.043885869,282.92,275.647867064,894.0,296.15,77777.0,55380.0,0.693942910593,-1.83015225364,0.0616319444444,0.0616319444444,101325.0,0.212609375,0.206508460359,-0.402043912318,0.871208338776,55179.9746132,1.36428786643,5.38200443757,5.9691463016 +31591701,0.0,0.1,0.5,0.2,0.0,0.001890625,676.010357594,174.754458744,279.128105469,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.665250618,263.197262228,282.8665,275.643899145,894.0,296.15,77777.0,55701.0,0.693942910593,-1.83015225364,0.0495572916666,0.0495572916666,101325.0,0.21586953125,0.193629128338,-0.402038881659,0.894544885372,55500.875164,1.37716719845,5.3249560903,6.49051837299 +31592022,0.0,0.1,0.5,0.2,0.0,0.546135416667,643.380950311,161.588243793,278.540664063,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.501443838,263.338975543,282.813,275.637156073,894.0,296.15,77777.0,56022.0,0.693942910593,-1.83015225364,0.0379965277778,0.0379965277778,101325.0,0.2188984375,0.180342395123,-0.402033847653,0.917881432506,55821.7757223,1.39045393167,5.24296065607,7.01789488245 +31592343,0.0,0.1,0.5,0.2,0.0,1.33581770833,603.445297383,147.979353061,277.899082031,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.33415792,263.475487772,282.7595,275.629175433,894.0,296.15,77777.0,56343.0,0.693942910593,-1.83015225364,0.0266649305555,0.0266649305555,101325.0,0.22182421875,0.166873982996,-0.402028812154,0.941217979881,56142.6762838,1.4039223438,5.14984016953,7.54794904673 +31592664,0.0,0.1,0.5,0.2,0.0,2.1255,563.509644454,134.370462328,277.2575,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.166872003,263.612,282.706,275.621194793,894.0,296.15,77777.0,56664.0,0.693942910593,-1.83015225364,0.0153333333333,0.0153333333333,101325.0,0.22475,0.153405570869,-0.402023776656,0.964554527256,56463.5768453,1.41739075592,5.056719683,8.07800321101 +31592985,0.0,0.1,0.5,0.2,0.0,3.66847511574,499.431561545,119.573902147,276.493457031,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.049213325,263.666161685,282.6525,275.602249185,894.0,296.15,77777.0,56985.0,0.693942910593,-1.83015225364,0.009609375,0.009609375,101325.0,0.22663671875,0.139458067672,-0.402018736861,0.987891075322,56784.4774163,1.43133825912,4.94054529082,8.34725650086 +31593306,0.0,0.1,0.5,0.2,0.0,5.30660300926,432.303908532,104.627320562,275.713945313,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,263.937823351,263.709921196,282.599,275.581918529,894.0,296.15,77777.0,57306.0,0.693942910593,-1.83015225364,0.00459375,0.00459375,101325.0,0.2283921875,0.125450047708,-0.402013696524,1.01122762347,57105.3779886,1.44534627909,4.82145882635,8.58356652236 +31593627,0.0,0.1,0.5,0.2,0.0,6.94012673611,365.238917919,89.7566700557,274.915167969,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,263.822056024,263.742238543,282.537365954,275.555000879,894.0,296.15,77777.0,57627.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.230075,0.111400548234,-0.402008655779,1.03456417169,57426.2785617,1.45939577856,4.68498764536,8.79866513761 +31593948,0.0,0.1,0.5,0.2,0.0,8.52351620371,298.856251211,75.712824629,273.906609375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,263.658624173,263.649963437,282.387161184,275.456358183,894.0,296.15,77777.0,57948.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.230966666667,0.0968993829797,-0.402003610603,1.05790072063,57747.1791447,1.47389694382,4.35921621792,8.78279510704 +31594269,0.0,0.1,0.5,0.2,0.0,10.1069056713,232.473584503,61.6689792023,272.898050781,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,263.495192323,263.557688332,282.236956415,275.357715488,894.0,296.15,77777.0,58269.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.231858333333,0.0823982177257,-0.401998565427,1.08123726957,58068.0797276,1.48839810907,4.03344479048,8.76692507646 +31594590,0.0,0.1,0.5,0.2,0.0,11.42171875,174.132592381,48.5063944777,271.835351563,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,263.2926377,263.441824963,282.051175987,275.233201268,894.0,296.15,77777.0,58590.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.23275,0.0677709696248,-0.401993518894,1.10457381872,58388.9803136,1.50302535717,3.64694113134,8.74211009175 +31594911,0.0,0.1,0.5,0.2,0.0,12.0471857639,136.431898363,37.6057122217,270.633691406,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,262.989667961,263.265418387,281.774084704,275.04228347,894.0,296.15,77777.0,58911.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.233641666667,0.0528201088835,-0.401988468879,1.12791036844,58709.8809073,1.51797621791,3.10455807748,8.69433639144 +31595232,0.0,0.1,0.5,0.2,0.0,12.6726527778,98.7312043456,26.7050299657,269.43203125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,262.686698222,263.08901181,281.496993421,274.851365672,894.0,296.15,77777.0,59232.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.234533333333,0.0378692481422,-0.401983418864,1.15124691815,59030.781501,1.53292707865,2.56217502363,8.64656269113 +31595553,0.0,0.1,0.5,0.2,0.0,12.61325,73.1353551962,18.1412109375,268.247105469,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,262.369659758,262.904386849,281.206984375,274.650210655,894.0,296.15,77777.0,59553.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.235425,0.0227233595604,-0.401978366542,1.17458346824,59351.6820999,1.54807296723,2.04347266026,8.56720642202 +31595874,0.0,0.1,0.5,0.2,0.0,11.8018333333,60.8311004118,12.143359375,267.080554688,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,262.037173283,262.71073778,280.902791118,274.43781477,894.0,296.15,77777.0,59874.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.236316666667,0.00736332276153,-0.401973311689,1.19792001874,59672.5827044,1.56343300403,1.55077262371,8.45317125383 +31596195,0.0,0.1,0.5,0.2,0.0,10.9904166667,48.5268456274,6.1455078125,265.914003906,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.704686807,262.517088711,280.598597862,274.225418885,894.0,296.15,77777.0,60195.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.237208333333,-0.00799671403736,-0.401968256836,1.22125656924,59993.4833089,1.57879304083,1.05807258716,8.33913608563 +31596516,0.0,0.1,0.5,0.2,0.0,9.659,38.5753670058,3.17953125,264.924640625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.426282989,262.356846624,280.3433125,274.047517885,894.0,296.15,77777.0,60516.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.2381,-0.0236066925725,-0.401963198727,1.24459312027,60314.3839206,1.59440301936,0.777993032803,8.15739449542 +31596837,0.0,0.1,0.5,0.2,0.0,8.07480555555,29.7675990189,1.6873828125,264.021410156,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.17416935,262.212844042,280.111801809,273.886385232,894.0,296.15,77777.0,60837.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.238991666667,-0.0393381705629,-0.401958139035,1.26792967155,60635.2845358,1.61013449736,0.601270657284,7.94274006116 +31597158,0.0,0.1,0.5,0.2,0.0,6.49061111111,20.959831032,0.195234375,263.118179688,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,260.922055712,262.068841459,279.880291118,273.725252578,894.0,296.15,77777.0,61158.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.239883333333,-0.0550696485532,-0.401953079344,1.29126622283,60956.185151,1.62586597535,0.424548281765,7.72808562691 +31597479,0.0,0.1,0.5,0.2,0.0,4.94,15.2044140625,0.0,262.5195,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.769856695,261.969159942,279.743947368,273.633084443,894.0,296.15,77777.0,61479.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.240775,-0.0710934239291,-0.401948015447,1.31460277479,61277.0857756,1.64188975072,0.462294085622,7.45975 +31597800,0.0,0.1,0.5,0.2,0.0,3.39444444444,9.90849079457,0.0,261.966666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.632698588,261.876150412,279.621929825,273.551298063,894.0,296.15,77777.0,61800.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.241666666667,-0.0871612010621,-0.401942950918,1.33793932685,61597.9864016,1.65795752786,0.532325421858,7.18333333333 +31598121,0.0,0.1,0.5,0.2,0.0,1.9045,4.84331910126,0.0,261.4255,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.498740569,261.784255866,279.50304386,273.471791825,894.0,296.15,77777.0,62121.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.242558333333,-0.103248834998,-0.401937886072,1.36127587896,61918.8870283,1.67404516179,0.602356758094,6.90691666667 +31598442,0.0,0.1,0.5,0.2,0.0,1.209,3.07459847384,0.0,261.051,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.410498104,261.708289663,279.428894737,273.424859039,894.0,296.15,77777.0,62442.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.24345,-0.119620137544,-0.401932816705,1.38461243181,62239.7876651,1.69041646434,0.672388094331,6.6305 +31598763,0.0,0.1,0.5,0.2,0.0,0.5135,1.30587784641,0.0,260.6765,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.322255638,261.632323461,279.354745614,273.377926254,894.0,296.15,77777.0,62763.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.244341666667,-0.135991440091,-0.401927747339,1.40794898466,62560.6883018,1.70678776688,0.742419430567,6.35408333333 +31599084,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,260.306666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.236058244,261.564466232,279.280596491,273.330929252,894.0,296.15,77777.0,63084.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.245233333333,-0.152434148378,-0.401922676706,1.43128553772,62881.5889414,1.72323047517,0.812450766803,6.07766666667 +31599405,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.95,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.155630872,261.519487895,279.206447368,273.283751067,894.0,296.15,77777.0,63405.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.246125,-0.169078322863,-0.401917602502,1.45462209135,63202.489589,1.73987464966,0.88248210304,5.80125 +31599726,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.593333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.0752035,261.474509558,279.132298245,273.236572883,894.0,296.15,77777.0,63726.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.247016666667,-0.185722497349,-0.401912528297,1.47795864498,63523.3902366,1.75651882414,0.952513439276,5.52483333333 +31600047,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.171333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.979540979,261.450107743,279.03622807,273.173001597,894.0,296.15,77777.0,64047.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.247908333333,-0.202478443422,-0.401907451878,1.50129519897,63844.2908891,1.77327477021,1.02254477551,5.24841666667 +31600368,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.672,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.865845016,261.450061813,278.914210526,273.090026233,894.0,296.15,77777.0,64368.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.2488,-0.219366690559,-0.401902372836,1.52463175339,64165.1915475,1.79016301735,1.09257611175,4.972 +31600689,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.172666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.752149053,261.450015882,278.792192982,273.007050869,894.0,296.15,77777.0,64689.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.249691666667,-0.236254937696,-0.401897293795,1.54796830781,64486.0922059,1.80705126449,1.16260744799,4.69558333333 +31601010,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.496875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,259.585640893,261.514037761,278.59623538,272.892178756,894.0,296.15,77777.0,65010.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.253513020833,-0.25328504652,-0.401892211589,1.57130486274,64806.9928713,1.82408137332,1.23263878422,4.41916666667 +31601331,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.7278125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,259.391217714,261.611924052,278.361195175,272.760446934,894.0,296.15,77777.0,65331.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.258882924107,-0.270390139379,-0.401887127711,1.59464141795,65127.8935405,1.84118646618,1.30267012046,4.14275 +31601652,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.95875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,259.196794535,261.709810343,278.126154971,272.628715112,894.0,296.15,77777.0,65652.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.264252827381,-0.287495232238,-0.401882043833,1.61797797315,65448.7942097,1.85829155904,1.3727014567,3.86633333333 +31601973,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.056979167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.959195997,261.883147415,277.824771686,272.480050626,894.0,296.15,77777.0,65973.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.274436793154,-0.304762673069,-0.401876955841,1.64131452903,65769.6948881,1.87555899987,1.44273279293,3.58991666667 +31602294,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.131875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.714006186,262.069750558,277.511723685,272.328408968,894.0,296.15,77777.0,66294.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.2854671875,-0.322058658599,-0.401871867126,1.66465108502,66090.5955681,1.89285498539,1.51276412916,3.3135 +31602615,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.208854167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.469965674,262.256790086,277.199814815,272.177466294,894.0,296.15,77777.0,66615.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.296531063988,-0.339362396198,-0.401866778186,1.68798764105,66411.4962486,1.91015872299,1.5827954654,3.03708333333 +31602936,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.328333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.249370839,262.452731845,276.91114425,272.040782922,894.0,296.15,77777.0,66936.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.30827797619,-0.35682427603,-0.401861684634,1.71132419783,66732.3969394,1.92762060283,1.65282680163,2.76066666667 +31603257,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.4478125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.028776004,262.648673605,276.622473684,271.904099549,894.0,296.15,77777.0,67257.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.320024888393,-0.374286155862,-0.401856591083,1.73466075461,67053.2976303,1.94508248266,1.72285813787,2.48425 +31603578,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.626875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,257.832628652,262.827596391,276.364605263,271.782674994,894.0,296.15,77777.0,67578.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.330744568452,-0.391782419654,-0.401851496357,1.75799731158,67374.1983237,1.96257874645,1.79288947411,2.20783333333 +31603899,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.9915625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,257.712644613,262.95349853,276.202697368,271.708787529,894.0,296.15,77777.0,67899.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.338264025297,-0.409385802706,-0.401846397969,1.78133386915,67695.0990254,1.9801821295,1.86292081034,1.93141666667 +31604220,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.35625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,257.592660574,263.07940067,276.040789474,271.634900063,894.0,296.15,77777.0,68220.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.345783482143,-0.426989185759,-0.401841299582,1.80467042672,68015.9997271,1.99778551255,1.93295214658,1.655 +31604541,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.840151042,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.505852297,263.172159766,275.923230283,271.581349421,894.0,296.15,77777.0,68541.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.351306356957,-0.444644107269,-0.40183619907,1.82800698463,68336.9004335,2.01544043406,1.99240924192,1.47359408602 +31604862,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.476239583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.461396056,263.222608594,275.862286458,271.553760682,894.0,296.15,77777.0,68862.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.354280403646,-0.462364822556,-0.401831095847,1.85134354299,68657.8011461,2.03316114935,2.03836730633,1.41347849462 +31605183,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.112328125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.416939816,263.273057422,275.801342634,271.526171944,894.0,296.15,77777.0,69183.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.357254450335,-0.480085537842,-0.401825992623,1.87468010135,68978.7018586,2.05088186464,2.08432537074,1.35336290322 +31605504,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.839791667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.371178936,263.303938542,275.744170965,271.494781131,894.0,296.15,77777.0,69504.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.359289322917,-0.49786531628,-0.401820886327,1.8980166602,69299.602578,2.06866164308,2.10524886868,1.47366666666 +31605825,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.619661458,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.324669807,263.323597005,275.68916274,271.461209716,894.0,296.15,77777.0,69825.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.360785551526,-0.515678969172,-0.401815778268,1.92135321935,69620.5033014,2.08647529597,2.11181430645,1.69744623656 +31606146,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.39953125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.278160679,263.343255469,275.634154514,271.427638302,894.0,296.15,77777.0,70146.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.362281780134,-0.533492622064,-0.40181067021,1.9446897785,69941.4040248,2.10428894886,2.11837974422,1.92122580645 +31606467,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.273963542,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.227957645,263.333757161,275.582869337,271.389147647,894.0,296.15,77777.0,70467.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.362660542225,-0.551362665453,-0.401805558129,1.9680263383,70262.3047573,2.12215899225,2.10310129558,2.19560618279 +31606788,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.167520833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.177007529,263.318361979,275.532337136,271.349662091,894.0,296.15,77777.0,70788.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.362813299852,-0.569244113661,-0.401800445234,1.99136289824,70583.2054916,2.14004044046,2.08340498226,2.48022043011 +31607109,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.063421875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.125865468,263.301864453,275.481889509,271.31000988,894.0,296.15,77777.0,71109.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.362932156808,-0.587126718906,-0.401795332204,2.0146994582,70904.1062262,2.1579230457,2.06334051356,2.76028629032 +31607430,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.040572917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.068069297,263.247152343,275.43437376,271.264580306,894.0,296.15,77777.0,71430.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.361875790551,-0.605049434743,-0.401790214475,2.03803601892,71225.0069713,2.17584576154,2.03051332469,2.88267473118 +31607751,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.017723958,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.010273127,263.192440234,275.386858011,271.219150733,894.0,296.15,77777.0,71751.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.360819424293,-0.622972150581,-0.401785096745,2.06137257965,71545.9077164,2.19376847738,1.99768613583,3.00506317204 +31608072,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.005053571,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.959300208,263.122853125,275.340133929,271.171452182,894.0,296.15,77777.0,72072.0,0.693942910593,-1.83015225364,0.0006875,0.0006875,101325.0,0.35933671875,-0.640897682665,-0.401779977932,2.08470914056,71866.808464,2.21169400946,1.95898289821,3.08541468108 +31608393,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.027584077,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.931924365,263.001823307,275.296147693,271.115906752,894.0,296.15,77777.0,72393.0,0.693942910593,-1.83015225364,0.00375260416667,0.00375260416667,101325.0,0.356379589844,-0.65883295427,-0.401774855368,2.10804570208,72187.70922,2.22962928106,1.8999583253,3.02038846759 +31608714,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.050114583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.904548522,262.880793489,275.252161458,271.060361322,894.0,296.15,77777.0,72714.0,0.693942910593,-1.83015225364,0.00681770833333,0.00681770833333,101325.0,0.353422460937,-0.676768225876,-0.401769732804,2.13138226361,72508.609976,2.24756455267,1.84093375239,2.95536225409 +31609035,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.087712054,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.899730275,262.736455078,275.209146205,271.001246594,894.0,296.15,77777.0,73035.0,0.693942910593,-1.83015225364,0.0119921875,0.0119921875,101325.0,0.349815917969,-0.694695352219,-0.401764608206,2.15471882546,72829.5107367,2.26549167901,1.77026897232,2.87351568227 +31609356,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.146068452,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.925991382,262.560002604,275.16746875,270.937214167,894.0,296.15,77777.0,73356.0,0.693942910593,-1.83015225364,0.0200729166667,0.0200729166667,101325.0,0.345314626736,-0.712611256202,-0.401759480807,2.17805538778,73150.4115036,2.28340758299,1.6835665735,2.76849439455 +31609677,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.204424851,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.952252489,262.38355013,275.125791295,270.873181739,894.0,296.15,77777.0,73677.0,0.693942910593,-1.83015225364,0.0281536458333,0.0281536458333,101325.0,0.340813335504,-0.730527160186,-0.401754353408,2.20139195009,73471.3122706,2.30132348698,1.59686417469,2.66347310683 +31609998,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.292834821,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.996343145,262.205344531,275.083033483,270.809148531,894.0,296.15,77777.0,73998.0,0.693942910593,-1.83015225364,0.038296875,0.038296875,101325.0,0.336412304688,-0.748408611087,-0.401749223027,2.22472851289,73792.2130443,2.31920493788,1.51190870929,2.55589637555 +31610319,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.399914435,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.051509733,262.02604987,275.039604539,270.745114838,894.0,296.15,77777.0,74319.0,0.693942910593,-1.83015225364,0.0497213541667,0.0497213541667,101325.0,0.332073556858,-0.766268659316,-0.401744090794,2.248065076,74113.1138221,2.33706498611,1.42803846011,2.44673217177 +31610640,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.506994048,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.106676321,261.846755208,274.996175596,270.681081146,894.0,296.15,77777.0,74640.0,0.693942910593,-1.83015225364,0.0611458333333,0.0611458333333,101325.0,0.327734809028,-0.784128707545,-0.401738958561,2.27140163911,74434.0146,2.35492503434,1.34416821092,2.33756796798 +31610961,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.66417634,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.169582502,261.707901953,274.948021206,270.623821533,894.0,296.15,77777.0,74961.0,0.693942910593,-1.83015225364,0.0739296875,0.0739296875,101325.0,0.324915917969,-0.801908480754,-0.401733822397,2.29473820286,74754.9153867,2.37270480755,1.28740791396,2.25418604518 +31611282,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.832876488,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.2342679,261.578345573,274.898780506,270.568119179,894.0,296.15,77777.0,75282.0,0.693942910593,-1.83015225364,0.0870260416667,0.0870260416667,101325.0,0.322446419271,-0.819669799934,-0.40172868533,2.31807476676,75075.8161754,2.39046612673,1.23687978993,2.17673108351 +31611603,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.002673993,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.299282266,261.449202387,274.849307055,270.512411798,894.0,296.15,77777.0,75603.0,0.693942910593,-1.83015225364,0.10019140625,0.10019140625,101325.0,0.320003389617,-0.837429712743,-0.401723548218,2.34141133067,75396.7169643,2.40822603954,1.18676072745,2.09977300508 +31611924,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.288791209,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.39916723,261.363857813,274.775161932,270.456171436,894.0,296.15,77777.0,75924.0,0.693942910593,-1.83015225364,0.120671875,0.120671875,101325.0,0.320366078629,-0.855040550147,-0.401718406317,2.36474789536,75717.617764,2.42583687694,1.18000218856,2.07548454893 +31612245,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.574908425,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.499052194,261.278513238,274.701016809,270.399931073,894.0,296.15,77777.0,76245.0,0.693942910593,-1.83015225364,0.14115234375,0.14115234375,101325.0,0.320728767641,-0.872651387551,-0.401713264416,2.38808446006,76038.5185638,2.44344771435,1.17324364968,2.05119609278 +31612566,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.882783883,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.600817788,261.199391175,274.620986269,270.341829407,894.0,296.15,77777.0,76566.0,0.693942910593,-1.83015225364,0.1635234375,0.1635234375,101325.0,0.32152311548,-0.89021810478,-0.401708121521,2.41142102492,76359.4193657,2.46101443157,1.17042894532,2.03684226673 +31612887,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.274725275,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.709849452,261.144310634,274.518216619,270.276536338,894.0,296.15,77777.0,76887.0,0.693942910593,-1.83015225364,0.19319921875,0.19319921875,101325.0,0.323985236055,-0.907614357694,-0.401702974786,2.43475759041,76680.3201764,2.47841068449,1.18285178346,2.06087223881 +31613208,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.666666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.818881115,261.089230092,274.41544697,270.211243269,894.0,296.15,77777.0,77208.0,0.693942910593,-1.83015225364,0.222875,0.222875,101325.0,0.326447356631,-0.925010610608,-0.401697828051,2.4580941559,77001.220987,2.4958069374,1.1952746216,2.08490221088 +31613529,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.065695971,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.915952159,261.062365813,274.308808949,270.145863596,894.0,296.15,77777.0,77529.0,0.693942910593,-1.83015225364,0.25322265625,0.25322265625,101325.0,0.32941687528,-0.942287941151,-0.401692679374,2.48143072172,77322.1218021,2.51308426795,1.20655930614,2.12690078801 +31613850,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.475274725,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.99522135,261.07749783,274.196413353,270.080355024,894.0,296.15,77777.0,77850.0,0.693942910593,-1.83015225364,0.2845703125,0.2845703125,101325.0,0.333141591062,-0.959388270954,-0.401687527806,2.50476728801,77643.0226237,2.53018459775,1.21614999466,2.19564333546 +31614171,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.884853479,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.074490541,261.092629847,274.084017756,270.014846452,894.0,296.15,77777.0,78171.0,0.693942910593,-1.83015225364,0.31591796875,0.31591796875,101325.0,0.336866306844,-0.976488600758,-0.401682376237,2.52810385429,77963.9234452,2.54728492755,1.22574068317,2.26438588291 +31614492,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.252234432,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.142919144,261.173652605,273.97722822,269.954861618,894.0,296.15,77777.0,78492.0,0.693942910593,-1.83015225364,0.343765625,0.343765625,101325.0,0.340845682124,-0.99334882858,-0.401677221779,2.55144042106,78284.8242734,2.56414515538,1.22047040643,2.35771562887 +31614813,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.591263736,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.204064228,261.298945703,273.874205256,269.898588045,894.0,296.15,77777.0,78813.0,0.693942910593,-1.83015225364,0.36926171875,0.36926171875,101325.0,0.344996156754,-1.01004773788,-0.401672065378,2.57477698814,78605.725106,2.58084406468,1.20521541866,2.46756489883 +31615134,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.93029304,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.265209312,261.424238802,273.771182292,269.842314472,894.0,296.15,77777.0,79134.0,0.693942910593,-1.83015225364,0.3947578125,0.3947578125,101325.0,0.349146631384,-1.02674664719,-0.401666908977,2.59811355523,78926.6259386,2.59754297398,1.1899604309,2.57741416879 +31615455,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.096033654,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.297719089,261.608371001,273.697114846,269.815529521,894.0,296.15,77777.0,79455.0,0.693942910593,-1.83015225364,0.40630859375,0.40630859375,101325.0,0.354379851823,-1.04301589835,-0.401661748736,2.62145012295,79247.5267798,2.61381222514,1.15861879493,2.95298518446 +31615776,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.216923077,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.322817375,261.807732143,273.630541769,269.796376919,894.0,296.15,77777.0,79776.0,0.693942910593,-1.83015225364,0.41425,0.41425,101325.0,0.359893312353,-1.05917394388,-0.401656587502,2.64478669083,79568.4276234,2.62997027068,1.1231135559,3.39733124019 +31616097,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.3378125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.347915661,262.007093285,273.563968692,269.777224316,894.0,296.15,77777.0,80097.0,0.693942910593,-1.83015225364,0.42219140625,0.42219140625,101325.0,0.365406772882,-1.07533198941,-0.401651426268,2.66812325871,79889.3284669,2.64612831621,1.08760831686,3.84167729591 +31616418,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.266746795,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.332286583,262.213962322,273.526905623,269.797179536,894.0,296.15,77777.0,80418.0,0.693942910593,-1.83015225364,0.415502604167,0.415502604167,101325.0,0.373459729872,-1.09076898998,-0.401646260246,2.69145982739,80210.2293213,2.66156531678,1.05152279625,4.64877012471 +31616739,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.193870193,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.316273286,262.420902188,273.490120949,269.817503697,894.0,296.15,77777.0,80739.0,0.693942910593,-1.83015225364,0.40867578125,0.40867578125,101325.0,0.381536644375,-1.10619918823,-0.40164109418,2.71479639607,80531.1301758,2.67699551503,1.01543180129,5.45928509288 +31617060,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.116506411,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.299433642,262.628203331,273.452995879,269.839845951,894.0,296.15,77777.0,81060.0,0.693942910593,-1.83015225364,0.401744791667,0.401744791667,101325.0,0.390010097036,-1.1214461383,-0.40163592721,2.7381329649,80852.0310324,2.6922424651,0.979341614349,6.26418999651 +31617381,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.019623398,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.27899939,262.837076027,273.414390081,269.87096691,894.0,296.15,77777.0,81381.0,0.693942910593,-1.83015225364,0.394360677083,0.394360677083,101325.0,0.40020849069,-1.13589595877,-0.401630756311,2.76146953439,81172.9318979,2.70669228557,0.943254942308,7.0446911194 +31617702,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.922740385,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.258565139,263.045948722,273.375784283,269.90208787,894.0,296.15,77777.0,81702.0,0.693942910593,-1.83015225364,0.3869765625,0.3869765625,101325.0,0.410406884343,-1.15034577925,-0.401625585412,2.78480610387,81493.8327634,2.72114210605,0.907168270267,7.82519224228 +31618023,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.881706731,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.250875298,263.253398654,273.324368608,269.925954825,894.0,296.15,77777.0,82023.0,0.693942910593,-1.83015225364,0.38482421875,0.38482421875,101325.0,0.421248826383,-1.16428990337,-0.401620412662,2.80814267366,81814.7336331,2.73508623017,0.871309359653,8.44238438644 +31618344,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.930576923,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.26370085,263.458558284,273.252332156,269.9381446,894.0,296.15,77777.0,82344.0,0.693942910593,-1.83015225364,0.39109375,0.39109375,101325.0,0.433126724364,-1.17741997972,-0.401615236931,2.83147924394,82135.6345096,2.74821630651,0.835817089385,8.79668890633 +31618665,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.979447115,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.276526401,263.663717913,273.180295704,269.950334376,894.0,296.15,77777.0,82665.0,0.693942910593,-1.83015225364,0.39736328125,0.39736328125,101325.0,0.445004622345,-1.19055005606,-0.4016100612,2.85481581422,82456.5353861,2.76134638286,0.800324819117,9.15099342622 +31618986,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.403397436,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.28366421,263.86671131,272.990132561,269.901402853,894.0,296.15,75304.2010417,82986.0,0.693942910593,-1.83015225364,0.4251875,0.4251875,101325.0,0.463978353659,-1.20265781663,-0.401604882669,2.87815238497,82777.436269,2.77345414343,0.7615918724,9.25219478438 +31619307,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.099583333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.286673819,264.068132441,272.714232303,269.808109099,894.0,296.15,71036.6286458,83307.0,0.693942910593,-1.83015225364,0.46865625,0.46865625,101325.0,0.488102286585,-1.21402357381,-0.401599702106,2.90148895605,83098.3371565,2.78481990061,0.720506821808,9.16969223485 +31619628,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.795769231,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.289683428,264.269553572,272.438332046,269.714815344,894.0,296.15,66769.05625,83628.0,0.693942910593,-1.83015225364,0.512125,0.512125,101325.0,0.512226219512,-1.225389331,-0.401594521543,2.92482552713,83419.238044,2.7961856578,0.679421771216,9.08718968532 +31619949,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.944198718,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.361435419,264.469616071,271.995327971,269.518440341,894.0,296.15,58529.0519792,83949.0,0.693942910593,-1.83015225364,0.578072916667,0.578072916667,101325.0,0.546913533198,-1.23496115804,-0.401589337233,2.94816209883,83740.1389401,2.80575748484,0.635385821352,8.91803935994 +31620270,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.223397436,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.453064727,264.669285714,271.504004719,269.292258713,894.0,296.15,49140.3927083,84270.0,0.693942910593,-1.83015225364,0.650520833333,0.650520833333,101325.0,0.584655318428,-1.24401425829,-0.401584151838,2.97149867072,84061.0398386,2.81481058509,0.590496599409,8.72383425602 +31620591,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.502596153,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.544694034,264.868955357,271.012681467,269.066077084,894.0,296.15,39751.7334375,84591.0,0.693942910593,-1.83015225364,0.72296875,0.72296875,101325.0,0.622397103659,-1.25306735855,-0.401578966444,2.9948352426,84381.9407371,2.82386368535,0.545607377466,8.52962915209 +31620912,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.688461538,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.970082306,265.064369047,270.512881167,268.796481209,894.0,296.15,30363.0741667,84912.0,0.693942910593,-1.83015225364,0.791083333333,0.791083333333,101325.0,0.6595399729,-1.25928919466,-0.401573776354,3.01817181526,84702.8416464,2.83008552146,0.509222433908,8.33123212898 +31621233,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.871634615,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,259.405098241,265.25965997,270.012836336,268.525632999,894.0,296.15,20974.4148958,85233.0,0.693942910593,-1.83015225364,0.859072916667,0.859072916667,101325.0,0.696665565718,-1.2654293597,-0.401568586128,3.04150838795,85023.742556,2.83622568649,0.473082806072,8.13271418512 +31621554,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,260.924423077,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,259.819312476,265.453772321,269.546096525,268.270191792,894.0,296.15,12447.246875,85554.0,0.693942910593,-1.83015225364,0.9206875,0.9206875,101325.0,0.731292987805,-1.27099148643,-0.401563395089,3.06484496077,85344.6434674,2.84178781322,0.440526920968,7.95153627623 +31621875,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,261.332532051,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,260.130673863,265.642057292,269.244031532,268.090929648,894.0,296.15,8179.67447917,85875.0,0.693942910593,-1.83015225364,0.95078125,0.95078125,101325.0,0.753568343496,-1.27369553494,-0.401558200033,3.08818153426,85665.544388,2.84449186173,0.425690652698,7.85609520688 +31622196,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,261.740641026,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,260.442035251,265.830342262,268.941966538,267.911667505,894.0,296.15,3912.10208333,86196.0,0.693942910593,-1.83015225364,0.980875,0.980875,101325.0,0.775843699187,-1.27639958344,-0.401553004976,3.11151810775,85986.4453086,2.84719591023,0.410854384429,7.76065413753 +31622517,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,261.88875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,260.606170883,265.979524383,268.707792208,267.769067357,894.0,296.15,1224.22760214,86517.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.792532291667,-1.27775347557,-0.401547808159,3.13485468153,86307.3462333,2.84854980237,0.401425727959,7.69714904379 +31622838,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,261.583525641,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,260.5136052,266.060527176,268.591991342,267.690390689,894.0,296.15,1290.69820288,86838.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.799479861111,-1.27675324892,-0.401542608271,3.15819125582,86628.2471649,2.84754957571,0.401425727959,7.68932718958 +31623159,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,261.278301282,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,260.421039517,266.141529969,268.476190476,267.61171402,894.0,296.15,1357.16880362,87159.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.806427430556,-1.27575302226,-0.401537408384,3.18152783012,86949.1480966,2.84654934906,0.401425727959,7.68150533537 +31623480,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,260.874358974,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,260.317841229,266.131355847,268.372337662,267.530234903,894.0,296.15,1468.48822707,87480.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.810305555556,-1.27273286111,-0.401532205787,3.20486440486,87270.0490345,2.84352918791,0.401425727959,7.67530487805 +31623801,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,260.393087607,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,260.206314068,266.049759808,268.277844155,267.446560534,894.0,296.15,1614.9392283,87801.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.811779282407,-1.26813041794,-0.401527001069,3.22820097996,87590.9499772,2.83892674474,0.401425727959,7.67037451497 +31624122,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.911816239,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,260.094786908,265.968163769,268.183350649,267.362886165,894.0,296.15,1761.39022954,88122.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.813253009259,-1.26352797478,-0.401521796351,3.25153755505,87911.8509199,2.83432430158,0.401425727959,7.66544415188 +31624443,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.32323718,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,259.963845553,265.812542276,268.087454545,267.263788102,894.0,296.15,1908.24940947,88443.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.811539236111,-1.25652148382,-0.401516587976,3.27487413076,88232.751871,2.82731781062,0.401425727959,7.66534056263 +31624764,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.700213675,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,259.826672482,265.633159526,267.991108225,267.159739224,894.0,296.15,2055.23960971,88764.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.808802314815,-1.24874332321,-0.401511378428,3.29821070666,88553.6528248,2.81953965001,0.401425727959,7.6667863082 +31625085,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.077190171,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,259.689499412,265.453776776,267.894761905,267.055690346,894.0,296.15,2202.22980995,89085.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.806065393519,-1.2409651626,-0.40150616888,3.32154728256,88874.5537785,2.81176148939,0.401425727959,7.66823205377 +31625406,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.351730769,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,259.521475013,265.242960307,267.774571428,266.917167004,894.0,296.15,2274.00501719,89406.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.80051875,-1.23071753983,-0.401500954727,3.34488385923,89195.4547429,2.80151386662,0.401425727959,7.6790777439 +31625727,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.62125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,259.351938294,265.03060297,267.653212121,266.776953738,894.0,296.15,2342.09321497,89727.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.794834375,-1.22034886499,-0.401495740348,3.36822043594,89516.3557078,2.79114519179,0.401425727959,7.69038421563 +31626048,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.880625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,259.176637828,264.806779858,267.528820076,266.630753669,894.0,296.15,2398.46712704,90048.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.788380392157,-1.20968002832,-0.401490525248,3.39155701277,89837.2566744,2.78047635512,0.401425727959,7.7056300813 +31626369,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.082304687,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.968556054,264.517745158,267.387179332,266.450503666,894.0,296.15,2388.2160391,90369.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.777549264706,-1.19730402121,-0.401485306039,3.41489359029,90158.1576503,2.76810034801,0.401425727959,7.74328125 +31626690,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.283984375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.76047428,264.228710458,267.245538589,266.270253662,894.0,296.15,2377.96495116,90690.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.766718137255,-1.18492801411,-0.401480086831,3.4382301678,90479.0586263,2.75572434091,0.401425727959,7.7809324187 +31627011,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.476349826,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.544813009,263.909762895,267.103760614,266.084725965,894.0,296.15,2364.60487609,91011.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.754486410675,-1.17202906043,-0.401474865953,3.46156674559,90799.9596061,2.74282538723,0.401425727959,7.8263859248 +31627332,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.65109375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.31481215,263.53422343,266.961723011,265.889213443,894.0,296.15,2345.36293349,91332.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.739604901961,-1.15814074833,-0.401469641915,3.48490332391,91120.8605931,2.72893707513,0.401425727959,7.88660060975 +31627653,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.825837674,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.084811292,263.158683966,266.819685409,265.69370092,894.0,296.15,2326.12099088,91653.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.724723393246,-1.14425243624,-0.401464417877,3.50823990223,91441.7615802,2.71504876304,0.401425727959,7.94681529471 +31627974,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.00561632,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,257.858095788,262.798929399,266.677199259,265.503844309,894.0,296.15,2314.87248645,91974.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.711010729848,-1.12975385256,-0.401459191222,3.53157648099,91762.6625733,2.70055017936,0.401425727959,8.00467225609 +31628295,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.189648438,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,257.634155841,262.45251035,266.534334162,265.318765967,894.0,296.15,2310.37705912,92295.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.698285539216,-1.11473969463,-0.401453962355,3.55491306012,92083.5635714,2.68553602143,0.401425727959,8.06053734756 +31628616,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.373680556,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,257.410215895,262.106091302,266.391469066,265.133687626,894.0,296.15,2305.88163178,92616.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.685560348584,-1.09972553669,-0.401448733488,3.57824963925,92404.4645696,2.67052186349,0.401425727959,8.11640243902 +31628937,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.591315104,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,257.211800393,261.866540496,266.247675071,264.973767513,894.0,296.15,2329.79954026,92937.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.679009722222,-1.08409429516,-0.401443501055,3.60158621898,92725.365576,2.65489062196,0.401425727959,8.14918572154 +31629258,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.820859375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,257.022431531,261.664867043,266.103551847,264.822764242,894.0,296.15,2363.78799814,93258.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.67464754902,-1.06824434045,-0.401438267359,3.62492279892,93046.2665853,2.63904066725,0.401425727959,8.17378810975 +31629579,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.050403646,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,256.833062669,261.46319359,265.959428622,264.671760971,894.0,296.15,2397.77645603,93579.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.670285375817,-1.05239438574,-0.401433033663,3.64825937885,93367.1675946,2.62319071254,0.401425727959,8.19839049797 +31629900,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,246.326822917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,256.667189304,261.378394717,265.809505208,264.549451422,894.0,296.15,2505.86080586,93900.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.674588661552,-1.03596410251,-0.401427795455,3.67159595955,93688.0686143,2.60676042931,0.401425727959,8.10104166667 +31630221,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.606523437,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,256.502960624,261.301777065,265.659175781,264.429150433,894.0,296.15,2619.13186813,94221.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.679498529412,-1.01949319629,-0.40142255693,3.6949325403,94008.9696348,2.59028952309,0.401425727959,7.99515625 +31630542,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,244.892421875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,256.338805282,261.228406808,265.508080729,264.30983377,894.0,296.15,2740.5054945,94542.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.684900724638,-1.00296191431,-0.401417317774,3.71826912115,94329.8706567,2.57375824111,0.401425727959,7.87225694444 +31630863,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,244.219492188,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,256.175137117,261.176608538,265.35189974,264.197055835,894.0,296.15,2915.7032967,94863.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.693573380222,-0.986029564899,-0.40141207442,3.74160570271,94650.7716882,2.5568258917,0.401425727959,7.63633680556 +31631184,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,243.5465625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,256.011468951,261.124810268,265.19571875,264.084277901,894.0,296.15,3090.9010989,95184.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.702246035806,-0.969097215486,-0.401406831067,3.76494228427,94971.6727198,2.53989354228,0.401425727959,7.40041666667 +31631505,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,242.897330729,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,255.849934044,261.079431268,265.040084635,263.9717971,894.0,296.15,3265.58608058,95505.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.711030583973,-0.95205311049,-0.401401586134,3.78827886609,95292.573755,2.52284943728,0.401425727959,7.16206597223 +31631826,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,242.296848958,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,255.692787554,261.047257626,264.885575521,263.859927547,894.0,296.15,3439.21611721,95826.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.720045311168,-0.934779108297,-0.401396337953,3.81161544846,95613.4747977,2.50557543509,0.401425727959,6.91871527778 +31632147,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,241.696367187,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,255.535641063,261.015083984,264.731066406,263.748057993,894.0,296.15,3612.84615384,96147.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.729060038363,-0.917505106104,-0.401391089772,3.83495203083,95934.3758404,2.48830143289,0.401425727959,6.67536458333 +31632468,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,241.146927083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,255.385025432,260.990462426,264.581369792,263.634034261,894.0,296.15,3752.42490842,96468.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.736463512362,-0.900100187581,-0.401385839063,3.85828861362,96255.2768889,2.47089651437,0.401425727959,6.49229166667 +31632789,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,240.643971354,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,255.240357546,260.972718657,264.43605599,263.518048686,894.0,296.15,3860.99267399,96789.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.742399595056,-0.882576041686,-0.401380586054,3.8816251968,96576.1779428,2.45337236848,0.401425727959,6.36411458333 +31633110,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,240.141015625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,255.095689661,260.954974888,264.290742187,263.402063112,894.0,296.15,3969.56043956,97110.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.748335677749,-0.865051895791,-0.401375333044,3.90496177998,96897.0789967,2.43584822258,0.401425727959,6.2359375 +31633431,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,239.793463542,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,254.995346495,260.951052734,264.187792268,263.318856629,894.0,296.15,4023.84289439,97431.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.752360914855,-0.847399094782,-0.401370076561,3.92829836375,97217.9800586,2.41819542157,0.412137017842,6.19369791667 +31633752,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,239.506458333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,254.912272699,260.952515625,264.101347757,263.24842122,894.0,296.15,4056.97522816,97752.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.755641666667,-0.829696168404,-0.401364818723,3.95163494774,97538.8811237,2.4004924952,0.427021537549,6.18494047619 +31634073,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,239.219453125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,254.829198904,260.953978515,264.014903246,263.177985812,894.0,296.15,4090.10756193,98073.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.758922418478,-0.811993242026,-0.401359560886,3.97497153174,97859.7821887,2.38278956882,0.441906057257,6.17618303571 +31634394,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,239.11109375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,254.807225559,260.967563802,263.988648638,263.163934836,894.0,296.15,4093.21382008,98394.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.762040428744,-0.794178739142,-0.401354298628,3.99830811647,98180.683264,2.36497506594,0.476331527102,6.18930059524 +31634715,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,239.019140625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,254.79086348,260.98226237,263.967921675,263.155062023,894.0,296.15,4093.56258149,98715.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.765143493358,-0.776353989436,-0.401349035963,4.02164470128,98501.5843402,2.34715031623,0.512551574001,6.20442708333 +31635036,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,238.9284375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,254.775251121,260.996054687,263.948204327,263.146941067,894.0,296.15,4092.03389831,99036.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.768188586957,-0.758520804899,-0.401343772757,4.04498128617,98822.4854177,2.32931713169,0.549745668622,6.21919642857 +31635357,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,238.847630208,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,254.765574045,261.002672526,263.936479768,263.144772312,894.0,296.15,4075.64211213,99357.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.770774743358,-0.740620844623,-0.401338505265,4.06831787179,99143.3865051,2.31141717141,0.594650974377,6.23113839286 +31635678,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,238.766822917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,254.75589697,261.009290364,263.924755209,263.142603556,894.0,296.15,4059.25032595,99678.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.773360899759,-0.722720884346,-0.401333237773,4.09165445741,99464.2875925,2.29351721114,0.639556280133,6.24308035714 +31635999,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,238.632734375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,254.729769856,261.006841796,263.898315505,263.12546009,894.0,296.15,4042.64341591,99999.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.775683016305,-0.704809808789,-0.401327968793,4.11499104328,99785.1886834,2.27560613558,0.683238732499,6.24569196428 +31636320,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,238.379166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,254.666754779,260.9840625,263.838878205,263.074736969,894.0,296.15,4025.55410691,100320.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.777413043478,-0.686873808057,-0.401322696474,4.13832762972,100106.089782,2.25767013485,0.724179028776,6.22738095238 +31636641,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,238.125598958,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,254.603739702,260.961283203,263.779440906,263.024013848,894.0,296.15,4008.46479791,100641.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.779143070652,-0.668937807325,-0.401317424155,4.16166421615,100426.990881,2.23973413412,0.765119325054,6.20906994048 +31636962,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.790820312,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,254.513191541,260.917325368,263.696908654,262.94955895,894.0,296.15,3971.69580866,100962.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.780405,-0.651000690745,-0.401312149401,4.185000803,100747.891985,2.22179701754,0.803445718069,6.17829443993 +31637283,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,237.376334635,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,254.395620168,260.852581189,263.591709135,262.851811753,894.0,296.15,3915.61157767,101283.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.7812075,-0.633062478981,-0.401306872255,4.20833739025,101068.793095,2.20385880578,0.839206613437,6.13528527462 +31637604,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.961848958,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,254.278048795,260.78783701,263.486509615,262.754064555,894.0,296.15,3859.52734668,101604.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.78201,-0.615124267216,-0.40130159511,4.2316739775,101389.694205,2.18592059401,0.874967508806,6.0922761093 +31637925,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.530761719,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,254.152619926,260.701171875,263.378786058,262.652278409,894.0,296.15,3764.87677405,101925.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.782354166667,-0.59720555996,-0.401296314581,4.25501056532,101710.595322,2.16800188676,0.911450945888,6.04851444129 +31638246,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,236.092591146,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,254.023838525,260.605153799,263.269985577,262.548768979,894.0,296.15,3653.77122898,102246.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.782502777778,-0.579295174628,-0.401291032609,4.27834715338,102031.496443,2.15009150142,0.948242667434,6.00443170545 +31638567,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.654420573,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,253.895057123,260.509135723,263.161185096,262.445259549,894.0,296.15,3542.66568392,102567.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.782651388889,-0.561384789296,-0.401285750637,4.30168374145,102352.397564,2.13218111609,0.98503438898,5.96034896961 +31638888,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,235.19875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,253.762345131,260.397235294,263.052384615,262.340295999,894.0,296.15,3426.56115989,102888.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.782373333334,-0.543523961422,-0.401280464335,4.32502033024,102673.298695,2.11432028821,1.02139320043,5.91533549784 +31639209,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.741074219,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,253.629182758,260.283515012,262.943584135,262.235165831,894.0,296.15,3309.88383619,103209.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.782046388889,-0.525668812007,-0.401275177537,4.34835691912,102994.199828,2.0964651388,1.05770240759,5.87021537924 +31639530,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,234.281966146,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,253.496249376,260.169408701,262.835120192,262.130267531,894.0,296.15,3197.30723743,103530.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.781691666667,-0.507821224481,-0.401269890288,4.37169350808,103315.100961,2.07861755128,1.09382508626,5.82500169102 +31639851,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.808964844,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,253.365537199,260.051557904,262.729920673,262.027618358,894.0,296.15,3124.50767051,103851.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.7810675,-0.490046987273,-0.401264598664,4.39503009778,103636.002104,2.06084331407,1.12813843849,5.77888037744 +31640172,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,233.335963542,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,253.234825023,259.933707108,262.624721154,261.924969184,894.0,296.15,3051.7081036,104172.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.780443333333,-0.472272750065,-0.40125930704,4.41836668748,103956.903248,2.04306907686,1.16245179071,5.73275906385 +31640493,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.829863281,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,253.103329625,259.809196155,262.520428285,261.821630562,894.0,296.15,3148.42464664,104493.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.779320952381,-0.454529095889,-0.401254014018,4.44170327742,104277.804395,2.02532542268,1.1856896546,5.68444653003 +31640814,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,232.242617188,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,252.969914071,259.668357077,262.418358173,261.71660168,894.0,296.15,3660.72907213,104814.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.776977142857,-0.436860419467,-0.401248717568,4.46503986794,104598.705549,2.00765674626,1.18177470838,5.6307619724 +31641135,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,231.655371094,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,252.836498517,259.527517999,262.316288061,261.611572797,894.0,296.15,4173.03349762,105135.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.774633333334,-0.419191743045,-0.401243421118,4.48837645846,104919.606704,1.98998806984,1.17785976215,5.57707741477 +31641456,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,231.024114583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,252.700239312,259.372571691,262.214926282,261.504268876,894.0,296.15,5000.91388932,105456.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.771299047619,-0.401586124436,-0.401238122324,4.51171304937,105240.507865,1.97238245123,1.15093252853,5.51998457792 +31641777,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,230.346308594,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,252.5609724,259.202704274,262.114313702,261.394558666,894.0,296.15,6162.57655296,105777.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.766917142857,-0.384047201592,-0.401232821049,4.5350496407,105561.409031,1.95484352838,1.09966537555,5.45928683036 +31642098,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,229.668502604,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,252.421705488,259.032836857,262.013701122,261.284848455,894.0,296.15,7324.2392166,106098.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.762535238095,-0.366508278748,-0.401227519774,4.55838623204,105882.310197,1.93730460554,1.04839822258,5.39858908279 +31642419,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,229.057233073,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,252.285189986,258.865541437,261.915311298,261.177120962,894.0,296.15,8474.54239034,106419.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.758014285714,-0.349074399641,-0.401222215207,4.58172282393,106203.211371,1.91987072643,0.99153480468,5.34040959821 +31642740,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,228.476953125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,252.149955962,258.699443934,261.81795673,261.070316925,894.0,296.15,9619.55484275,106740.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.753428571429,-0.331689445013,-0.401216909107,4.60505941609,106524.112548,1.90248577181,0.932064907231,5.28340300325 +31643061,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,227.896673177,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,252.014721938,258.53334643,261.720602163,260.963512888,894.0,296.15,10764.5672952,107061.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.748842857143,-0.314304490386,-0.401211603006,4.62839600824,106845.013725,1.88510081718,0.872595009782,5.22639640828 +31643382,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,227.567304688,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,251.891769087,258.399374234,261.627691506,260.865578388,894.0,296.15,11309.8609242,107382.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.74568952381,-0.297076450624,-0.401206292668,4.65173260112,107165.914913,1.86787277742,0.840311948527,5.18203632305 +31643703,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,227.272636719,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,251.770514697,258.269844899,261.535395433,260.768870526,894.0,296.15,11772.214716,107703.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.742734285714,-0.279870111853,-0.401200981743,4.6750691941,107486.816101,1.85066643865,0.811788768872,5.13942522322 +31644024,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.993333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,251.652710158,258.148793445,261.444479167,260.674890018,894.0,296.15,12170.7092216,108024.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.740254047619,-0.262679029974,-0.401195670457,4.69840578714,107807.71729,1.83347535677,0.785398163397,5.10234126984 +31644345,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.904166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,251.577597531,258.132655774,261.370638021,260.614660514,894.0,296.15,11778.9450605,108345.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.743651934524,-0.245676752126,-0.401190354707,4.72174238093,108128.61849,1.81647307892,0.785398163397,5.13365575397 +31644666,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.815,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,251.502484904,258.116518102,261.296796875,260.55443101,894.0,296.15,11387.1808993,108666.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.747049821428,-0.228674474277,-0.401185038957,4.74507897473,108449.51969,1.79947080107,0.785398163397,5.1649702381 +31644987,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.725833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,251.441188264,258.129485423,261.229752604,260.505487951,894.0,296.15,10900.4431002,108987.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.752120386904,-0.211734704962,-0.4011797219,4.76841556875,108770.420892,1.78253103176,0.785398163397,5.2194348545 +31645308,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.636666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,251.417051865,258.220735137,261.180989583,260.486901536,894.0,296.15,10158.2589643,109308.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.761689880952,-0.194963062045,-0.401174401326,4.79175216337,109091.322104,1.76575938884,0.785398163397,5.33616534392 +31645629,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.5475,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,251.392915466,258.311984851,261.132226562,260.468315121,894.0,296.15,9416.07482848,109629.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.771259375,-0.178191419128,-0.401169080752,4.81508875799,109412.223315,1.74898774592,0.785398163397,5.45289583333 +31645950,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.458333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,251.378128311,258.410685023,261.091276042,260.457882115,894.0,296.15,8672.16521685,109950.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.781132440476,-0.161540638741,-0.401163757924,4.83842535299,109733.124531,1.73233696553,0.785398163397,5.580869709 +31646271,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.369166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,251.373999295,258.517878715,261.059231771,260.456743998,894.0,296.15,7926.28856285,110271.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.791351577381,-0.145027641636,-0.401158432526,4.86176194843,110054.025754,1.71582396843,0.785398163397,5.72166104497 +31646592,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.28,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,251.369870279,258.625072408,261.0271875,260.45560588,894.0,296.15,7180.41190885,110592.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.801570714285,-0.128514644532,-0.401153107129,4.88509854387,110374.926977,1.69931097133,0.785398163397,5.86245238095 +31646913,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.190833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,251.358580157,258.68216835,261.000690104,260.450285342,894.0,296.15,6662.15656906,110913.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.808556815476,-0.11219300472,-0.40114777853,4.90843513986,110695.828206,1.68298933152,0.785398163397,5.97849702381 +31647234,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.101666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,251.343659053,258.713862614,260.977005208,260.44284414,894.0,296.15,6259.31485339,111234.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.813903630952,-0.0959683911405,-0.401142448308,4.93177173612,111016.72944,1.66676471794,0.785398163397,6.08199404762 +31647555,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,226.0125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,251.328737949,258.745556879,260.953320313,260.435402938,894.0,296.15,5856.47313771,111555.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.819250446429,-0.0797437775612,-0.401137118085,4.95510833238,111337.630674,1.65054010436,0.785398163397,6.18549107143 +31647876,0.0,0.1,0.5,0.2,0.0,0.129375,0.0,0.0,225.923333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,251.303096388,258.681954268,260.943139205,260.417452276,894.0,296.15,5701.13063263,111876.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.816425884146,-0.0637944094455,-0.401131783716,4.97844492935,111658.531918,1.63459073624,0.785398163397,6.25299019608 +31648197,0.0,0.1,0.5,0.2,0.0,0.27984375,0.0,0.0,225.834166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,251.275706928,258.602814124,260.935159801,260.397788114,894.0,296.15,5586.14125971,112197.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.812269032012,-0.0478899183074,-0.401126448671,5.00178152644,111979.433163,1.6186862451,0.785398163397,6.31462009804 +31648518,0.0,0.1,0.5,0.2,0.0,0.4734375,0.0,0.06,225.745,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,251.248505633,258.520764249,260.928132102,260.377988157,894.0,296.15,5471.34378468,112518.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.807746783536,-0.0320052843991,-0.401121113355,5.02511812358,112300.334409,1.6028016112,0.785398163397,6.37577614379 +31648839,0.0,0.1,0.5,0.2,0.0,1.39296875,0.0,1.13,225.655833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,251.224471786,258.389733928,260.937124763,260.355902298,894.0,296.15,5359.77659083,112839.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.797073696646,-0.0164549138583,-0.401115773486,5.04845472149,112621.235665,1.58725124065,0.785398163397,6.42895561002 +31649160,0.0,0.1,0.5,0.2,0.0,2.3125,0.0,2.2,225.566666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,251.200437939,258.258703606,260.946117424,260.33381644,894.0,296.15,5248.20939697,113160.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.786400609756,-0.00090454331746,-0.401110433617,5.07179131941,112942.136922,1.57170087011,0.785398163397,6.48213507626 +31649481,0.0,0.1,0.5,0.2,0.0,3.423,0.035859375,3.45759375,225.4775,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,251.176137655,258.127190118,260.954982244,260.311126091,894.0,296.15,5138.22644285,113481.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.775573589939,0.0145472606352,-0.401105092531,5.09512791753,113263.038181,1.55624906616,0.785398163397,6.53207924837 +31649802,0.0,0.1,0.5,0.2,0.0,5.09933333333,0.17796875,5.27102083333,225.388333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,251.151047928,257.994245029,260.963468277,260.286644659,894.0,296.15,5032.93753238,113802.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.764290472561,0.0297070154376,-0.40109974784,5.11846451626,113583.939449,1.54108931136,0.785398163397,6.57243736384 +31650123,0.0,0.1,0.5,0.2,0.0,6.77566666667,0.320078125,7.08444791667,225.299166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,251.125958201,257.861299941,260.971954309,260.262163227,894.0,296.15,4927.6486219,114123.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.753007355183,0.04486677024,-0.401094403148,5.141801115,113904.840716,1.52592955655,0.785398163397,6.61279547931 +31650444,0.0,0.1,0.5,0.2,0.0,8.66,0.5446875,9.026875,225.21,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,251.098478375,257.749914767,260.972372159,260.236841431,894.0,296.15,4826.45738069,114444.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.744100091464,0.0598337095418,-0.401089056293,5.16513771411,114225.741989,1.51096261725,0.785398163397,6.64544117647 +31650765,0.0,0.1,0.5,0.2,0.0,10.8,0.870703125,11.1278645833,225.120833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,251.068060719,257.665030322,260.962872869,260.210486686,894.0,296.15,4730.30285794,114765.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.738113147866,0.0745636464574,-0.401083706778,5.18847431367,114546.643268,1.49623268034,0.785398163397,6.66860702614 +31651086,0.0,0.1,0.5,0.2,0.0,12.94,1.19671875,13.2288541667,225.031666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,251.037643062,257.580145878,260.95337358,260.184131942,894.0,296.15,4634.14833518,115086.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.732126204268,0.089293583373,-0.401078357264,5.21181091324,114867.544548,1.48150274342,0.785398163397,6.69177287582 +31651407,0.0,0.1,0.5,0.2,0.0,15.172,1.544296875,15.39021875,224.9425,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,251.000782901,257.562646875,260.919616477,260.155007986,894.0,296.15,4542.39007353,115407.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.733178436807,0.103719212184,-0.401073004639,5.23514751334,115188.445834,1.46707711461,0.795561124458,6.69782563025 +31651728,0.0,0.1,0.5,0.2,0.0,17.4546666667,1.90375,17.5848333333,224.853333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.960374694,257.582258696,260.8725,260.124358957,894.0,296.15,4453.05294117,115728.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.738107317073,0.117977251024,-0.401067650302,5.25848411373,115509.347124,1.45281907577,0.811321078566,6.69445378151 +31652049,0.0,0.1,0.5,0.2,0.0,19.7373333333,2.263203125,19.7794479167,224.764166667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.919966487,257.601870516,260.825383522,260.093709928,894.0,296.15,4363.71580882,116049.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.74303619734,0.132235289864,-0.401062295965,5.28182071412,115830.248415,1.43856103693,0.827081032675,6.69108193278 +31652370,0.0,0.1,0.5,0.2,0.0,21.87,2.52421875,21.8896875,224.675,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.875185648,257.684653533,260.757301136,260.060206504,894.0,296.15,4278.01838235,116370.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.754131374723,0.146058491697,-0.401056937572,5.3051573152,116151.149715,1.4247378351,0.861713987426,6.66228991597 +31652691,0.0,0.1,0.5,0.2,0.0,23.9743333333,2.766640625,23.9839895833,224.585833333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.829578867,257.779368886,260.685258523,260.026163916,894.0,296.15,4193.00845588,116691.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.766391297117,0.159799557653,-0.401051578413,5.32849391642,116472.051017,1.41099676914,0.899911842298,6.62869631186 +31653012,0.0,0.1,0.5,0.2,0.0,26.0714444444,3.00489583333,26.0740555556,224.496666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.784153704,257.873947282,260.613443182,259.992244462,894.0,296.15,4108.25735294,117012.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.778629933481,0.173519498953,-0.401046219073,5.35183051767,116792.95232,1.39727682785,0.938439225753,6.59412698413 +31653333,0.0,0.1,0.5,0.2,0.0,27.9825833333,3.135859375,28.0550416667,224.4075,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.743405209,257.964999049,260.547480114,259.961495676,894.0,296.15,4030.17095588,117333.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.790320454545,0.186695480394,-0.401040855092,5.37516711971,117113.853633,1.38410084641,0.985451970212,6.53443277311 +31653654,0.0,0.1,0.5,0.2,0.0,29.8937222222,3.26682291667,30.0360277778,224.318333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.702656714,258.056050815,260.481517045,259.930746891,894.0,296.15,3952.08455882,117654.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.80201097561,0.199871461835,-0.401035491111,5.39850372176,117434.754946,1.37092486496,1.03246471467,6.47473856209 +31653975,0.0,0.1,0.5,0.2,0.0,31.8025462963,3.39388020833,32.0158564815,224.229166667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.665436706,258.12784307,260.42421875,259.902747345,894.0,296.15,3876.22242647,117975.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.811722560976,0.212903476817,-0.401030126003,5.421840324,117755.656262,1.35789284998,1.07835406623,6.40990896359 +31654296,0.0,0.1,0.5,0.2,0.0,33.7037777778,3.508125,33.9918888889,224.14,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.639790134,258.13646413,260.395340909,259.883765304,894.0,296.15,3807.65588235,118296.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.814943237251,0.225463281814,-0.4010247572,5.44517692687,118076.557587,1.34533304498,1.1205586891,6.32823529412 +31654617,0.0,0.1,0.5,0.2,0.0,35.6050092593,3.62236979167,35.9679212963,224.050833333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.614143561,258.14508519,260.366463068,259.864783263,894.0,296.15,3739.08933824,118617.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.818163913526,0.238023086811,-0.401019388397,5.46851352975,118397.458911,1.33277323998,1.16276331197,6.24656162465 +31654938,0.0,0.1,0.5,0.2,0.0,37.4917592593,3.72223958333,37.9367129629,223.9425,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,250.583509675,258.085850858,260.35,259.841897767,894.0,296.15,3750.90441177,118938.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.815643939394,0.250294826387,-0.401014017521,5.49185013298,118718.360241,1.32050150041,1.20454978304,6.14956500627 +31655259,0.0,0.1,0.5,0.2,0.0,39.3593055556,3.803046875,39.8959027778,223.80875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,250.546262178,257.936634375,260.35,259.813835949,894.0,296.15,3869.3125,119259.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.805511363636,0.262184566164,-0.401008643897,5.51518673669,119039.261577,1.30861176063,1.24578174845,6.03224882519 +31655580,0.0,0.1,0.5,0.2,0.0,41.2268518519,3.88385416667,41.8550925926,223.675,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,250.509014681,257.787417892,260.35,259.785774131,894.0,296.15,3987.72058824,119580.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.795378787879,0.274074305941,-0.401003270272,5.53852334039,119360.162914,1.29672202085,1.28701371387,5.91493264411 +31655901,0.0,0.1,0.5,0.2,0.0,43.0584166667,3.93325520833,43.7962916667,223.504027778,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,250.455040429,257.571817218,260.35,259.744535562,894.0,296.15,4239.63602941,119901.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.780508838384,0.285509191028,-0.400997893629,5.56185994461,119681.064257,1.28528713577,1.33052551562,5.77602827381 +31656222,0.0,0.1,0.5,0.2,0.0,44.8685,3.96390625,45.72675,223.310833333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,250.391080054,257.316584191,260.35,259.695430276,894.0,296.15,4571.25735294,120222.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.762810606061,0.296672521075,-0.400992515183,5.58519654915,120001.965604,1.27412380572,1.3753984137,5.62423543233 +31656543,0.0,0.1,0.5,0.2,0.0,46.6785833333,3.99455729167,47.6572083333,223.117638889,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,250.327119679,257.061351164,260.35,259.64632499,894.0,296.15,4902.87867647,120543.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.745112373738,0.307835851122,-0.400987136737,5.60853315369,120322.866952,1.26296047567,1.42027131177,5.47244259085 +31656864,0.0,0.1,0.5,0.2,0.0,48.368125,4.0,49.4692857143,222.912222222,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,250.264156639,256.81110049,260.35,259.5983624,894.0,296.15,5225.44117647,120864.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.727858585859,0.318353836515,-0.400981754327,5.63186975891,120643.768309,1.25244249028,1.45789458102,5.31397807017 +31657185,0.0,0.1,0.5,0.2,0.0,50.031640625,4.0,51.2558035714,222.704166667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,250.201408932,256.561925551,260.35,259.550646529,894.0,296.15,5546.04779412,121185.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.710700757576,0.328732486131,-0.40097637106,5.65520636428,120964.669667,1.24206384066,1.49395258951,5.15407307331 +31657506,0.0,0.1,0.5,0.2,0.0,51.6916261574,4.0,53.038287037,222.496666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,250.13921499,256.314958701,260.35,259.503379361,894.0,296.15,5862.25735295,121506.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.693704545455,0.339095357573,-0.400970987703,5.67854296966,121285.571026,1.23170096922,1.5296130146,4.99450924186 +31657827,0.0,0.1,0.5,0.2,0.0,53.1662818287,4.0,54.6089649471,222.318333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,250.106093691,256.183916483,260.35,259.479669132,894.0,296.15,5947.62132353,121827.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.685193181818,0.348629874891,-0.400965599616,5.70187957585,121606.472397,1.2221664519,1.54440031126,4.85285659461 +31658148,0.0,0.1,0.5,0.2,0.0,54.6409375,4.0,56.1796428571,222.14,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,250.072972392,256.052874265,260.35,259.455958904,894.0,296.15,6032.98529412,122148.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.676681818182,0.358164392208,-0.400960211529,5.72521618205,121927.373768,1.21263193458,1.55918760792,4.71120394737 +31658469,0.0,0.1,0.5,0.2,0.0,56.0849797454,4.0,57.7153339947,221.991015625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,250.048238305,255.947508535,260.351976562,259.438464395,894.0,296.15,6064.37331081,122469.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.669735197368,0.367504637614,-0.400954822406,5.74855278843,122248.275141,1.20329168918,1.567617749,4.57813185716 +31658790,0.0,0.1,0.5,0.2,0.0,57.4172164352,4.0,59.1232473545,221.94921875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,250.054135776,255.935917805,260.361171875,259.443670779,894.0,296.15,5898.63175675,122790.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.668503289474,0.376135368212,-0.400949429498,5.77188939546,122569.176522,1.19466095858,1.55283045234,4.47639745352 +31659111,0.0,0.1,0.5,0.2,0.0,58.749453125,4.0,60.5311607143,221.907421875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,250.060033248,255.924327075,260.370367187,259.448877163,894.0,296.15,5732.8902027,123111.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.667271381579,0.384766098809,-0.40094403659,5.79522600249,122890.077904,1.18603022799,1.53804315568,4.37466304988 +31659432,0.0,0.1,0.5,0.2,0.0,60.0422222223,4.0,61.893968254,221.915277778,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,250.071150841,255.923794118,260.382083333,259.457210697,894.0,296.15,5536.37837837,123432.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.666312865497,0.393001064354,-0.400938641701,5.81856260986,123210.979291,1.17779526244,1.51450902425,4.28981077071 +31659753,0.0,0.1,0.5,0.2,0.0,61.2784809028,4.0,63.1921924603,221.994227431,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,250.0897427,255.939093881,260.397408854,259.47002174,894.0,296.15,5295.80912162,123753.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.665745796784,0.400669366302,-0.400933243973,5.84189921772,123531.880684,1.17012696049,1.47845101577,4.22913062429 +31660074,0.0,0.1,0.5,0.2,0.0,62.5147395833,4.0,64.4904166667,222.073177084,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,250.108334558,255.954393645,260.412734375,259.482832784,894.0,296.15,5055.23986486,124074.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.66517872807,0.40833766825,-0.400927846245,5.86523582559,123852.782077,1.16245865854,1.44239300728,4.16845047787 +31660395,0.0,0.1,0.5,0.2,0.0,63.6645996094,4.0,65.6872111345,222.140842014,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,250.119487839,255.968566833,260.420611979,259.490176036,894.0,296.15,4808.08277027,124395.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.665158077486,0.415387178879,-0.40092244559,5.88857243396,124173.683478,1.15540914791,1.40098015932,4.13001852033 +31660716,0.0,0.1,0.5,0.2,0.0,64.7586328125,4.0,66.8184663866,222.201215278,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,250.125834655,255.98201208,260.423677083,259.493986253,894.0,296.15,4556.66891892,124716.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.665490497076,0.422036855118,-0.400917043042,5.91190904265,124494.584883,1.14875947167,1.35610726125,4.10596231562 +31661037,0.0,0.1,0.5,0.2,0.0,65.8526660156,4.0,67.9497216387,222.261588542,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,250.13218147,255.995457326,260.426742187,259.49779647,894.0,296.15,4305.25506757,125037.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.665822916667,0.428686531356,-0.400911640494,5.93524565135,124815.486287,1.14210979543,1.31123436318,4.0819061109 +31661358,0.0,0.1,0.5,0.2,0.0,66.7804101562,4.0,68.8885609244,222.195052083,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,250.108642915,255.984308561,260.405171875,259.481000556,894.0,296.15,4096.55067567,125358.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.667066885965,0.434475584703,-0.400906234073,5.95858226072,125136.387701,1.13632074209,1.2692878222,4.08372515711 +31661679,0.0,0.1,0.5,0.2,0.0,67.6675488281,4.0,69.780414916,222.097526042,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,250.07780677,255.96715428,260.377585937,259.459172911,894.0,296.15,3898.27533784,125679.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.668533442983,0.440054485948,-0.400900826705,5.98191887025,125457.289117,1.13074184084,1.22805585678,4.09186257856 +31662000,0.0,0.1,0.5,0.2,0.0,68.5546875,4.0,70.6722689076,222.0,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,250.046970624,255.95,260.35,259.437345266,894.0,296.15,3700.0,126000.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.67,0.445633387194,-0.400895419338,6.00525547979,125778.190533,1.1251629396,1.18682389136,4.1 +31662321,0.0,0.1,0.5,0.2,0.0,69.2537402344,4.0,71.3550682773,221.658658854,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,249.96481983,255.892917411,260.279502604,259.376971613,894.0,296.15,3552.74471425,126321.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.672157598684,0.450095108009,-0.400890007151,6.02859209016,126099.091961,1.12070121879,1.14461926849,4.34965003109 +31662642,0.0,0.1,0.5,0.2,0.0,69.9527929688,4.0,72.0378676471,221.317317708,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,249.882669035,255.835834821,260.209005208,259.316597959,894.0,296.15,3405.48942849,126642.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.674315197368,0.454556828824,-0.400884594965,6.05192870052,126419.993389,1.11623949797,1.10241464563,4.59930006219 +31662963,0.0,0.1,0.5,0.2,0.0,70.6186230469,4.0,72.6855934874,220.945898438,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,249.794055307,255.776033482,260.132492188,259.250625169,894.0,296.15,3260.89727618,126963.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.676515625,0.458791639945,-0.400879181832,6.07526531105,126740.894819,1.11200468685,1.05926637273,4.90106483209 +31663284,0.0,0.1,0.5,0.2,0.0,71.1483984375,4.0,73.189684874,220.451302083,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,249.678974326,255.705098214,260.03134375,259.161722581,894.0,296.15,3127.21128942,127284.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.678891447368,0.462097201845,-0.400873764826,6.09860192226,127061.796258,1.10869912495,1.01225362827,5.41625186567 +31663605,0.0,0.1,0.5,0.2,0.0,71.6781738281,4.0,73.6937762605,219.956705729,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,249.563893344,255.634162947,259.930195312,259.072819993,894.0,296.15,2993.52530265,127605.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.681267269737,0.465402763745,-0.400868347821,6.12193853346,127382.697697,1.10539356305,0.965240883809,5.93143889925 +31663926,0.0,0.1,0.5,0.2,0.0,72.132890625,4.0,74.1250735294,219.451171875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,249.445243228,255.567352679,259.824234375,258.979664267,894.0,296.15,2869.47732264,127926.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.683803355263,0.468242727338,-0.400862928923,6.14527514499,127703.599141,1.10255359946,0.921688189468,6.44001772388 +31664247,0.0,0.1,0.5,0.2,0.0,72.4714453125,4.0,74.4437132353,218.928710938,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,249.321069449,255.50692634,259.710825521,258.879926303,894.0,296.15,2760.34530546,128247.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.686587467105,0.47036212212,-0.400857507099,6.16861175703,128024.500592,1.10043420468,0.883490334596,6.93836955845 +31664568,0.0,0.1,0.5,0.2,0.0,72.81,4.0,74.7623529411,218.40625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,249.19689567,255.4465,259.597416667,258.780188338,894.0,296.15,2651.21328829,128568.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.689371578947,0.472481516903,-0.400852085274,6.19194836907,128345.402043,1.0983148099,0.845292479723,7.43672139303 +31664889,0.0,0.1,0.5,0.2,0.0,73.0156640625,4.0,74.9559191176,217.941210937,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,249.081394823,255.406604911,259.487617188,258.684545388,894.0,296.15,2563.00589105,128889.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.692507993421,0.473890875351,-0.400846660613,6.21528498161,128666.3035,1.09690545145,0.820305725301,7.75890438433 +31665210,0.0,0.1,0.5,0.2,0.0,73.128515625,4.0,75.0621323529,217.516276042,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,248.971951263,255.381049107,259.380338542,258.591762447,894.0,296.15,2489.41251408,129210.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.695890460526,0.474804335406,-0.40084123397,6.23862159449,128987.204963,1.09599199139,0.804545771192,7.95804881841 +31665531,0.0,0.1,0.5,0.2,0.0,73.2413671875,4.0,75.1683455882,217.091341146,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,248.862507702,255.355493304,259.273059896,258.498979506,894.0,296.15,2415.81913711,129531.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.699272927632,0.475717795462,-0.400835807327,6.26195820737,129308.106425,1.09507853134,0.788785817084,8.15719325249 +31665852,0.0,0.1,0.5,0.2,0.0,73.17703125,4.0,75.1077941176,216.74078125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,248.758145776,255.35,259.16578125,258.409367987,894.0,296.15,2437.3953125,129852.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.7040425,0.475677749279,-0.400830376901,6.2852948209,129629.007896,1.09511857752,0.785398163397,8.12323863636 +31666173,0.0,0.1,0.5,0.2,0.0,73.0641796875,4.0,75.0015808823,216.410585938,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,248.655175249,255.35,259.058502604,258.320624833,894.0,296.15,2485.02981771,130173.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.709191875,0.475376624007,-0.40082494544,6.30863143462,129949.90937,1.09541970279,0.785398163397,8.0254592803 +31666494,0.0,0.1,0.5,0.2,0.0,72.951328125,4.0,74.895367647,216.080390625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,248.552204722,255.35,258.951223958,258.23188168,894.0,296.15,2532.66432292,130494.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.71434125,0.475075498735,-0.400819513979,6.33196804833,130270.810844,1.09572082806,0.785398163397,7.92767992425 +31666815,0.0,0.1,0.5,0.2,0.0,72.6169921875,4.0,74.5806985294,215.774804687,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,248.443460147,255.35,258.837929688,258.141091692,894.0,296.15,2700.56575521,130815.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.721226041667,0.473585297158,-0.400814077789,6.35530466287,130591.712328,1.09721102964,0.785398163397,7.76593276515 +31667136,0.0,0.1,0.5,0.2,0.0,72.2784375,4.0,74.2620588235,215.4696875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,248.33460559,255.35,258.724520833,258.050262717,894.0,296.15,2870.75798611,131136.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.728143888889,0.472072446508,-0.40080864151,6.37864127743,130912.613814,1.09872388028,0.785398163397,7.60296717172 +31667457,0.0,0.1,0.5,0.2,0.0,71.9059277344,4.0,73.9104884454,215.173476563,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,248.227840689,255.35,258.613289063,257.961464706,894.0,296.15,3042.19379341,131457.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.735098680555,0.470346958232,-0.400803204375,6.40197789214,131233.515301,1.10044936856,0.785398163397,7.43940183081 +31667778,0.0,0.1,0.5,0.2,0.0,71.3761523437,4.0,73.4063970588,214.918515625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,248.130754192,255.35,258.512140625,257.882073272,894.0,296.15,3219.38932292,131778.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.742224583333,0.467636622001,-0.400797763278,6.42531450753,131554.416798,1.10315970479,0.785398163397,7.27305871212 +31668099,0.0,0.1,0.5,0.2,0.0,70.8463769531,4.0,72.9023056723,214.663554688,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,248.033667695,255.35,258.410992188,257.802681837,894.0,296.15,3396.58485243,132099.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.749350486111,0.46492628577,-0.40079232218,6.44865112292,131875.318295,1.10587004102,0.785398163397,7.10671559343 +31668420,0.0,0.1,0.5,0.2,0.0,70.2533203125,4.0,72.3314075631,214.43671875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,247.947579386,255.35,258.321302083,257.732841973,894.0,296.15,3533.20052083,132420.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.755970833333,0.461777629146,-0.400786879282,6.47198773863,132196.219796,1.10901869765,0.785398163397,6.96221590909 +31668741,0.0,0.1,0.5,0.2,0.0,69.5542675781,4.0,71.6486081933,214.256992188,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,247.87991304,255.35,258.250804687,257.679000991,894.0,296.15,3601.84492188,132741.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.761744375,0.457894785865,-0.400781433368,6.49532435486,132517.121304,1.11290154093,0.785398163397,6.85430397727 +31669062,0.0,0.1,0.5,0.2,0.0,68.8552148438,4.0,70.9658088236,214.077265625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,247.812246694,255.35,258.180307292,257.625160009,894.0,296.15,3670.48932292,133062.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.767517916667,0.454011942584,-0.400775987453,6.5186609711,132838.022813,1.11678438421,0.785398163397,6.74639204545 +31669383,0.0,0.1,0.5,0.2,0.0,68.0489355469,4.0,70.1638287815,213.968546875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,247.768061477,255.35,258.134273437,257.591198514,894.0,296.15,3639.2984189,133383.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.771817291667,0.449480404322,-0.400770538792,6.54199758782,133158.924328,1.12131592247,0.785398163397,6.6671763502 +31669704,0.0,0.1,0.5,0.2,0.0,67.161796875,4.0,69.2719747899,213.913375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,247.741583342,255.35,258.1066875,257.572228106,894.0,296.15,3532.821875,133704.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.775005,0.444459686237,-0.40076508806,6.56533420489,133479.825848,1.12633664056,0.785398163397,6.60960043988 +31670025,0.0,0.1,0.5,0.2,0.0,66.2746582031,4.0,68.3801207983,213.858203125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,247.715105206,255.35,258.079101562,257.553257698,894.0,296.15,3426.3453311,134025.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.778192708333,0.439438968152,-0.400759637329,6.58867082197,133800.727368,1.13135735865,0.785398163397,6.55202452957 +31670346,0.0,0.1,0.5,0.2,0.0,65.2289648438,4.0,67.3048004202,213.87734375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,247.711173354,255.35,258.075005208,257.552432338,894.0,296.15,3247.53205605,134346.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.77950125,0.433579083005,-0.400754182905,6.61200743969,134121.628897,1.13721724379,0.785398163397,6.49816420251 +31670667,0.0,0.1,0.5,0.2,0.0,64.1349316406,4.0,66.1735451681,213.919140625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,247.714115369,255.35,258.078070313,257.557139005,894.0,296.15,3046.66489956,134667.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.780236875,0.427463354241,-0.400748727356,6.63534405761,134442.530429,1.14333297255,0.785398163397,6.44543667522 +31670988,0.0,0.1,0.5,0.2,0.0,63.0408984375,4.0,65.042289916,213.9609375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,247.717057384,255.35,258.081135417,257.561845672,894.0,296.15,2845.79774306,134988.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.7809725,0.421347625477,-0.400743271808,6.65868067553,134763.43196,1.14944870132,0.785398163397,6.39270914794 +31671309,0.0,0.1,0.5,0.2,0.0,61.8099565972,4.0,63.7503075397,214.009171875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,247.731327532,255.35,258.096002604,257.573432381,894.0,296.15,2655.52436136,135309.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.779819791667,0.414225438635,-0.400737811623,6.68201729426,135084.333503,1.15657088816,0.785398163397,6.35015492628 +31671630,0.0,0.1,0.5,0.2,0.0,60.5736979167,4.0,62.4520833333,214.05765625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,247.746037607,255.35,258.111328125,257.585286275,894.0,296.15,2465.6623884,135630.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.77859375,0.407064166043,-0.400732351258,6.70535391302,135405.235046,1.16373216075,0.785398163397,6.30799578446 +31671951,0.0,0.1,0.5,0.2,0.0,59.3221903935,4.0,61.1364318783,214.092859375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,247.759812837,255.35,258.125679687,257.595639714,894.0,296.15,2294.29402902,135951.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.777133958333,0.399745416488,-0.400726890127,6.72869053192,135726.136591,1.1710509103,0.785398163397,6.26842451735 +31672272,0.0,0.1,0.5,0.2,0.0,57.9899537037,4.0,59.7285185185,214.05775,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,247.768638882,255.35,258.134875,257.59804956,894.0,296.15,2220.83303572,136272.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.774436666667,0.391592965367,-0.400721424945,6.75202715152,136047.038146,1.17920336142,0.785398163397,6.24255376344 +31672593,0.0,0.1,0.5,0.2,0.0,56.6577170139,4.0,58.3206051587,214.022640625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,247.777464927,255.35,258.144070312,257.600459406,894.0,296.15,2147.37204241,136593.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.771739375,0.383440514247,-0.400715959763,6.77536377112,136367.9397,1.18735581254,0.785398163397,6.21668300953 +31672914,0.0,0.1,0.5,0.2,0.0,55.2749016204,4.0,56.8548875661,213.962791667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,247.776069152,255.321895833,258.15,257.594811769,894.0,296.15,2115.84464286,136914.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.766991666667,0.374956512702,-0.400710492871,6.79870039103,136688.841259,1.19583981409,0.778381333787,6.20713673351 +31673235,0.0,0.1,0.5,0.2,0.0,53.8002459491,4.0,55.2842096561,213.858020833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,247.756112705,255.242760417,258.15,257.574533439,894.0,296.15,2160.45982143,137235.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.758520833333,0.365870485388,-0.400705022873,6.82203701147,137009.742826,1.2049258414,0.758623418832,6.2272322726 +31673556,0.0,0.1,0.5,0.2,0.0,52.3255902778,4.0,53.713531746,213.75325,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,247.736156257,255.163625,258.15,257.55425511,894.0,296.15,2205.075,137556.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.75005,0.356784458073,-0.400699552875,6.84537363192,137330.644392,1.21401186872,0.738865503878,6.24732781169 +31673877,0.0,0.1,0.5,0.2,0.0,50.746796875,4.0,52.0238392857,213.6361875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,247.702187825,255.029177083,258.15,257.526500443,894.0,296.15,2264.96696428,137877.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.738465277778,0.347216360555,-0.400694080221,6.86871025283,137651.545965,1.22357996624,0.705551673184,6.29172805871 +31674198,0.0,0.1,0.5,0.2,0.0,49.08328125,4.0,50.2373214286,213.509125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,247.656819812,254.849729167,258.15,257.492663333,894.0,296.15,2337.2875,138198.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.724347222222,0.337256070329,-0.400688605408,6.89204687413,137972.447543,1.23354025646,0.661209300873,6.35590162744 +31674519,0.0,0.1,0.5,0.2,0.0,47.419765625,4.0,48.4508035714,213.3820625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,247.611451798,254.67028125,258.15,257.458826222,894.0,296.15,2409.60803572,138519.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.710229166667,0.327295780104,-0.400683130594,6.91538349542,138293.34912,1.24350054669,0.616866928562,6.42007519616 +31674840,0.0,0.1,0.5,0.2,0.0,45.6466666667,3.97708333333,46.5566666667,213.208333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,247.563422256,254.480833333,258.15,257.427620564,894.0,296.15,2478.21428572,138840.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.697222222222,0.316726467589,-0.40067765218,6.93872011735,138614.250707,1.2540698592,0.570889118099,6.48607962801 +31675161,0.0,0.1,0.5,0.2,0.0,43.8365833333,3.94643229167,44.6262083333,213.018854167,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,247.514494448,254.288010417,258.15,257.397303021,894.0,296.15,2545.56696429,139161.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.684590277778,0.305951610052,-0.40067217255,6.96205673949,138935.152297,1.26484471674,0.524359347261,6.55270197617 +31675482,0.0,0.1,0.5,0.2,0.0,42.0265,3.91578125,42.69575,212.829375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,247.465566639,254.0951875,258.15,257.366985478,894.0,296.15,2612.91964286,139482.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.671958333333,0.295176752515,-0.400666692921,6.98539336163,139256.053886,1.27561957428,0.477829576423,6.61932432432 +31675803,0.0,0.1,0.5,0.2,0.0,40.1621759259,3.83778645833,40.7381712963,212.543104167,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,247.434170444,253.971802083,258.15,257.356187293,894.0,296.15,2644.74196428,139803.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.6674625,0.283688676325,-0.400661208746,7.00872998456,139576.955487,1.28710765047,0.450376213908,6.64896323743 +31676124,0.0,0.1,0.5,0.2,0.0,38.2946296296,3.75697916667,38.7789814815,212.251083333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,247.403815731,253.852541667,258.15,257.346548675,894.0,296.15,2674.45357143,140124.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.66345,0.27215823071,-0.400655724301,7.03206660755,139897.857088,1.29863809609,0.424056103373,6.67640511479 +31676445,0.0,0.1,0.5,0.2,0.0,36.4223611111,3.671484375,36.8174305555,211.95,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,247.370040455,253.7425,258.143984375,257.33347237,894.0,296.15,2700.0,140445.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.660375,0.26052990848,-0.400650239182,7.05540323065,140218.758691,1.31026641831,0.407101684131,6.68662208351 +31676766,0.0,0.1,0.5,0.2,0.0,34.5211296296,3.55723958333,34.8413981481,211.593333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,247.315285732,253.689,258.101072917,257.299311596,894.0,296.15,2700.0,140766.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.66305,0.24830127634,-0.400644749921,7.07873985448,140539.660304,1.32249505045,0.447590171488,6.59119294588 +31677087,0.0,0.1,0.5,0.2,0.0,32.6198981481,3.44299479167,32.8653657408,211.236666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,247.260531008,253.6355,258.058161458,257.265150822,894.0,296.15,2700.0,141087.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.665725,0.236072644201,-0.400639260661,7.10207647831,140860.561917,1.33472368259,0.488078658845,6.49576380825 +31677408,0.0,0.1,0.5,0.2,0.0,30.7153333333,3.323125,30.8876666667,210.88,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,247.186017491,253.582,257.994625,257.21140179,894.0,296.15,2700.0,141408.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.6684,0.223627676338,-0.400633769781,7.12541310243,141181.463534,1.34716865045,0.548446446382,6.36495703125 +31677729,0.0,0.1,0.5,0.2,0.0,28.8041944444,3.19216145833,28.9066805556,210.523333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,247.072535239,253.5285,257.890411458,257.119020363,894.0,296.15,2700.0,141729.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.671075,0.210756046354,-0.400628275707,7.14874972711,141502.365158,1.36004028044,0.648020631497,6.16437768775 +31678050,0.0,0.1,0.5,0.2,0.0,26.8930555555,3.06119791667,26.9256944445,210.166666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,246.959052988,253.475,257.786197917,257.026638935,894.0,296.15,2700.0,142050.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.67375,0.197884416369,-0.400622781632,7.17208635179,141823.266783,1.37291191042,0.747594816613,5.96379834424 +31678371,0.0,0.1,0.5,0.2,0.0,24.879,2.91390625,24.88434375,209.81,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,246.833067928,253.4215,257.668921875,256.921670617,894.0,296.15,2700.0,142371.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.676425,0.184698245273,-0.400617284993,7.19542297692,142144.168413,1.38609808152,0.847169001727,5.76606238123 +31678692,0.0,0.1,0.5,0.2,0.0,22.7746666667,2.75229166667,22.7900416667,209.453333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,246.696115493,253.368,257.5401875,256.805661167,894.0,296.15,2700.0,142692.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.6791,0.171236160921,-0.400611786104,7.21875960245,142465.070049,1.39956016587,0.946743186841,5.57082061163 +31679013,0.0,0.1,0.5,0.2,0.0,20.6703333333,2.59067708333,20.6957395833,209.096666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,246.559163058,253.3145,257.411453125,256.689651718,894.0,296.15,2700.0,143013.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.681775,0.157774076568,-0.400606287214,7.24209622797,142785.971685,1.41302225023,1.04631737195,5.37557884203 +31679334,0.0,0.1,0.5,0.2,0.0,18.436,2.4046875,18.5283125,208.74,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,246.430787235,253.261,257.29165625,256.581842338,894.0,296.15,2700.0,143334.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.68445,0.14391775323,-0.400600784816,7.26543285412,143106.87333,1.42687857357,1.10281974001,5.26477050782 +31679655,0.0,0.1,0.5,0.2,0.0,16.1533333333,2.20963541667,16.3336979167,208.383333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,246.305600153,253.2075,257.175182292,256.477081703,894.0,296.15,2700.0,143655.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.687125,0.129914853859,-0.400595281112,7.28876948049,143427.774978,1.44088147293,1.14330822737,5.18535409189 +31679976,0.0,0.1,0.5,0.2,0.0,13.8706666667,2.01458333333,14.1390833333,208.026666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,246.180413071,253.154,257.058708333,256.372321068,894.0,296.15,2700.0,143976.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.6898,0.115911954488,-0.400589777409,7.31210610686,143748.676626,1.4548843723,1.18379671473,5.10593767596 +31680297,0.0,0.1,0.5,0.2,0.0,11.72,1.81953125,12.03109375,207.65453125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,246.071537641,253.1005,256.95925,256.283453175,894.0,296.15,2700.0,144297.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.692475,0.101451807943,-0.400584269251,7.33544273403,144069.578285,1.46934451885,1.16314115193,5.16469482422 +31680618,0.0,0.1,0.5,0.2,0.0,9.58,1.62447916667,9.93010416667,207.281145833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,245.963980325,253.047,256.861166667,256.195869543,894.0,296.15,2700.0,144618.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.69515,0.0869547121314,-0.400578760734,7.35877936125,144390.479945,1.48384161466,1.13754465578,5.23461751302 +31680939,0.0,0.1,0.5,0.2,0.0,7.49633333333,1.43348958333,7.86405208333,206.90640625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,245.856424802,252.9935,256.763083333,256.108250502,894.0,296.15,2700.0,144939.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.697825,0.0724028701964,-0.400573251632,7.38211598858,144711.381606,1.4983934566,1.10948836507,5.31231396484 +31681260,0.0,0.1,0.5,0.2,0.0,5.82,1.271875,6.050625,206.521875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,245.748882246,252.94,256.665,256.02037542,894.0,296.15,2700.0,145260.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.7005,0.0574551716786,-0.400567738301,7.40545261666,145032.283277,1.51334115512,1.06364586757,5.44622070312 +31681581,0.0,0.1,0.5,0.2,0.0,4.14366666667,1.11026041667,4.23719791667,206.13734375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,245.641339689,252.8865,256.566916667,255.932500338,894.0,296.15,2700.0,145581.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.703175,0.0425074731608,-0.40056222497,7.42878924474,145353.184948,1.52828885363,1.01780337008,5.58012744141 +31681902,0.0,0.1,0.5,0.2,0.0,2.7078125,0.958385416667,2.66,205.759895833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,245.533801829,252.833,256.468833333,255.844534335,894.0,296.15,2700.0,145902.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.70585,0.0274295096134,-0.400556710109,7.45212587309,145674.086623,1.54336681718,0.971937264106,5.71281673177 +31682223,0.0,0.1,0.5,0.2,0.0,1.78828125,0.827421875,1.59,205.39765625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,245.426274051,252.7795,256.37075,255.756373119,894.0,296.15,2700.0,146223.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.708525,0.0120718593848,-0.400551191964,7.47546250201,145994.988306,1.55872446741,0.926020469355,5.84289208985 +31682544,0.0,0.1,0.5,0.2,0.0,0.86875,0.696458333333,0.52,205.035416667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,245.318746272,252.726,256.272666667,255.668211903,894.0,296.15,2700.0,146544.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.7112,-0.00328579084387,-0.40054567382,7.49879913094,146315.889988,1.57408211764,0.880103674603,5.97296744792 +31682865,0.0,0.1,0.5,0.2,0.0,0.34453125,0.574088541667,0.0,204.701822917,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,245.2112261,252.6725,256.174583333,255.579906322,894.0,296.15,2700.0,146865.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.713875,-0.0188347060656,-0.400540153201,7.52213576031,146636.791677,1.58963103286,0.844517322623,6.06621500651 +31683186,0.0,0.1,0.5,0.2,0.0,0.1940625,0.45984375,0.0,204.3953125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,245.103713119,252.619,256.0765,255.49146425,894.0,296.15,2700.0,147186.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.71655,-0.0345644536445,-0.400534630243,7.54547239008,146957.693372,1.60536078044,0.818697934716,6.12464355469 +31683507,0.0,0.1,0.5,0.2,0.0,0.04359375,0.345598958333,0.0,204.088802083,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,244.996200139,252.5655,255.978416667,255.403022178,894.0,296.15,2700.0,147507.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.719225,-0.0502942012234,-0.400529107285,7.56880901986,147278.595067,1.62109052802,0.792878546809,6.18307210287 +31683828,0.0,0.1,0.5,0.2,0.0,0.0,0.255104166667,0.0,203.837708333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,244.903956054,252.533235294,255.890625,255.325790128,894.0,296.15,2700.0,147828.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.722652083333,-0.0662632047582,-0.400523580909,7.59214565025,147599.49677,1.63705953156,0.779400212359,6.2 +31684149,0.0,0.1,0.5,0.2,0.0,0.0,0.174296875,0.0,203.60921875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,244.817940071,252.509632353,255.80703125,255.253130587,894.0,296.15,2700.0,148149.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.7263859375,-0.0823297995381,-0.400518053139,7.61548228088,147920.398476,1.65312612634,0.77095572866,6.2 +31684470,0.0,0.1,0.5,0.2,0.0,0.0,0.0934895833333,0.0,203.380729167,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,244.731924088,252.486029411,255.7234375,255.180471046,894.0,296.15,2700.0,148470.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.730119791667,-0.0983963943181,-0.400512525368,7.63881891151,148241.300182,1.66919272112,0.762511244962,6.2 +31684791,0.0,0.1,0.5,0.2,0.0,0.0,0.0581510416667,0.0,203.202760417,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,244.675902168,252.496661765,255.662072917,255.131300411,894.0,296.15,2700.0,148791.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.735032465278,-0.114738555987,-0.400506993234,7.66215554292,148562.2019,1.68553488279,0.757164530889,6.2 +31685112,0.0,0.1,0.5,0.2,0.0,0.0,0.0275,0.0,203.03,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,244.62297242,252.510823529,255.603,255.084551313,894.0,296.15,2700.0,149112.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.740066666666,-0.131109126614,-0.400501460651,7.6854921744,148883.103618,1.70190545341,0.75213717451,6.2 +31685433,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,202.85953125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,244.571920148,252.525470588,255.545760417,255.039560894,894.0,296.15,2700.0,149433.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.745108506944,-0.147507786735,-0.400495927573,7.70882880597,149204.005337,1.71830411353,0.747802295891,6.2 +31685754,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,202.7090625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,244.537253123,252.544352941,255.504520833,255.009918944,894.0,296.15,2700.0,149754.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.750217013889,-0.164151591537,-0.400490390177,7.73216543831,149524.907067,1.73494791833,0.749510859551,6.2 +31686075,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,202.55859375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,244.502586098,252.563235294,255.46328125,254.980276994,894.0,296.15,2700.0,150075.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.755325520833,-0.180795396338,-0.400484852781,7.75550207065,149845.808797,1.75159172313,0.75121942321,6.2 +31686396,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,202.404791667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,244.468955126,252.573647059,255.425375,254.95313108,894.0,296.15,2700.0,150396.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.760089583333,-0.197512279275,-0.400479313946,7.77883870325,150166.71053,1.76830860607,0.755935003769,6.2 +31686717,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,202.243177083,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,244.437752407,252.564205882,255.39528125,254.931835252,894.0,296.15,2700.0,150717.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.764046354167,-0.21440043909,-0.400473771739,7.80217533644,150487.612272,1.78519676588,0.767698280188,6.2 +31687038,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,202.0815625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,244.406549687,252.554764706,255.3651875,254.910539423,894.0,296.15,2700.0,151038.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.768003125,-0.231288598906,-0.400468229531,7.82551196964,150808.514013,1.8020849257,0.779461556606,6.2 +31687359,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,201.907526042,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,244.369672364,252.486508252,255.344805398,254.888829239,894.0,296.15,2700.0,151359.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.766970805921,-0.248284272167,-0.40046268494,7.84884860325,151129.415761,1.81908059896,0.80146564631,6.2 +31687680,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,201.720833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,244.327013369,252.358326797,255.334318182,254.866696881,894.0,296.15,2700.0,151680.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.760855263158,-0.26538948743,-0.40045713792,7.87218523731,151450.317514,1.83618581422,0.833903772192,6.2 +31688001,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,201.534140625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,244.284354374,252.230145343,255.323830966,254.844564523,894.0,296.15,2700.0,152001.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.754739720395,-0.282494702693,-0.400451590901,7.89552187136,151771.219267,1.85329102949,0.866341898074,6.2 +31688322,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,201.34359375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,244.234150559,252.021583606,255.327008523,254.81997364,894.0,296.15,2700.0,152322.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.74066566155,-0.299732036281,-0.400446040554,7.918858506,152092.121029,1.87052836308,0.909610155574,6.2 +31688643,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,201.151328125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,244.180582162,251.777176607,255.33627983,254.794286388,894.0,296.15,2700.0,152643.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.723042534722,-0.3170282875,-0.400440488723,7.94219514091,152413.022794,1.8878246143,0.957708066362,6.2 +31688964,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,200.9590625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,244.127013765,251.532769608,255.345551136,254.768599135,894.0,296.15,2700.0,152964.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.705419407895,-0.334324538719,-0.400434936891,7.96553177581,152733.924559,1.90512086552,1.00580597715,6.2 +31689285,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,200.776692708,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,244.071422281,251.279597358,255.355362216,254.740629217,894.0,296.15,2700.0,153285.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.686459475512,-0.351768152172,-0.400429380788,7.98886841148,153054.826335,1.92256447897,1.04993144584,6.2 +31689606,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,200.595572917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,244.01557525,251.02531792,255.365241477,254.712370962,894.0,296.15,2700.0,153606.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.667330683479,-0.369230379802,-0.400423824146,8.01220504724,153375.728112,1.9400267066,1.09355513237,6.2 +31689927,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,200.416796875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,243.96030763,250.779153677,255.37356108,254.684034588,894.0,296.15,2700.0,153927.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.648916529605,-0.386704511707,-0.400418267098,8.03554168307,153696.62989,1.95750083851,1.1351089675,6.2 +31690248,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,200.263541667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,243.911349167,250.621354902,255.364897727,254.654847593,894.0,296.15,2700.0,154248.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.638283991228,-0.404308267945,-0.400412705645,8.05887831969,154017.531679,1.97510459474,1.1541244206,6.2 +31690569,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,200.110286458,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,243.862390704,250.463556128,255.356234375,254.625660598,894.0,296.15,2700.0,154569.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.627651452851,-0.421912024183,-0.400407144191,8.08221495631,154338.433467,1.99270835098,1.17313987371,6.2 +31690890,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,199.96796875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,243.817326078,250.350265625,255.339630682,254.596227553,894.0,296.15,2700.0,154890.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.620706414474,-0.439548669604,-0.400401581389,8.10555159317,154659.335259,2.0103449964,1.18682389136,6.175 +31691211,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,199.853723958,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,243.782255635,250.351213021,255.30264678,254.566162983,894.0,296.15,2700.0,155211.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.62322595943,-0.457269730596,-0.400396015125,8.12888823065,154980.23706,2.02806605739,1.18682389136,6.08583333333 +31691532,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,199.739479167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,243.747185191,250.352160417,255.265662879,254.536098412,894.0,296.15,2700.0,155532.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.625745504386,-0.474990791588,-0.400390448861,8.15222486813,155301.13886,2.04578711838,1.18682389136,5.99666666667 +31691853,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,199.638515625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,243.71656851,250.397231076,255.221434659,254.505400076,894.0,296.15,2700.0,155853.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.631511266448,-0.492756113324,-0.400384880304,8.17556150602,155622.040666,2.06355244012,1.18682389136,5.8565 +31692174,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,199.552135417,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,243.690842235,250.49075081,255.169251894,254.47400584,894.0,296.15,2700.0,156174.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.640841502193,-0.510570035094,-0.40037930923,8.19889814435,155942.942479,2.08136636189,1.18682389136,5.66033333333 +31692495,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,199.465755208,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,243.66511596,250.584270544,255.117069129,254.442611605,894.0,296.15,2700.0,156495.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.650171737939,-0.528383956864,-0.400373738155,8.22223478269,156263.844291,2.09918028365,1.18682389136,5.46416666667 +31692816,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,199.386875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,243.64042365,250.682006944,255.064886364,254.411343095,894.0,296.15,2700.0,156816.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.659715131579,-0.546243415424,-0.400368163844,8.24557142161,156584.746112,2.11703974222,1.18682389136,5.268 +31693137,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,199.311640625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,243.616233963,250.781793114,255.012703599,254.380135703,894.0,296.15,2700.0,157137.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.669362143641,-0.564125009925,-0.400362587959,8.26890806081,156905.647936,2.13492133672,1.18682389136,5.07183333333 +31693458,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,199.23640625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,243.592044276,250.881579283,254.960520834,254.348928311,894.0,296.15,2700.0,157458.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.679009155702,-0.582006604426,-0.400357012074,8.29224470001,157226.54976,2.15280293122,1.18682389136,4.87566666667 +31693779,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,199.156328125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,243.562572334,250.911798438,254.921548296,254.319844199,894.0,296.15,2700.0,157779.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.68328725329,-0.599923924457,-0.400351432009,8.31558133995,157547.451595,2.17072025125,1.18682389136,4.7725 +31694100,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,199.075520833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,243.532305213,250.931545139,254.884564394,254.291079721,894.0,296.15,2700.0,158100.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.686757127193,-0.617846622524,-0.400345851314,8.33891798001,157868.35343,2.18864294932,1.18682389136,4.68333333333 +31694421,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,198.994166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,243.501643432,250.942050681,254.849651989,254.262924203,894.0,296.15,2700.0,158421.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.689504292385,-0.635770128937,-0.400340270304,8.36225462012,158189.255267,2.20656645573,1.18682389136,4.60182291667 +31694742,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,198.905,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,243.465343635,250.820539664,254.844332386,254.24346812,894.0,296.15,2700.0,158742.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.681927047414,-0.653705183149,-0.4003346848,8.38559126104,158510.157115,2.22450150995,1.18682389136,4.6296875 +31695063,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,198.815833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,243.429043838,250.699028646,254.839012784,254.224012036,894.0,296.15,2700.0,159063.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.674349802443,-0.671640237362,-0.400329099295,8.40892790196,158831.058962,2.24243656416,1.18682389136,4.65755208333 +31695384,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,198.726666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,243.392343141,250.555930556,254.839128788,254.206476406,894.0,296.15,2700.0,159384.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.665061781609,-0.689570164247,-0.400323512532,8.43226454311,159151.960813,2.26036649105,1.18682389136,4.69416666667 +31695705,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,198.6375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,243.354511334,250.351926082,254.854580966,254.194359198,894.0,296.15,2700.0,159705.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.650946928879,-0.707485624746,-0.400317922218,8.45560118489,159472.862673,2.27828195154,1.18682389136,4.75546875 +31696026,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,198.548333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,243.316679528,250.147921608,254.870033144,254.182241991,894.0,296.15,2700.0,160026.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.63683207615,-0.725401085244,-0.400312331905,8.47893782667,159793.764533,2.29619741204,1.18682389136,4.81677083333 +31696347,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,198.459166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,243.277854395,249.949034389,254.883165246,254.168752856,894.0,296.15,2700.0,160347.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.623192438937,-0.743290858022,-0.400306739389,8.50227446884,160114.666399,2.31408718481,1.18682389136,4.87807291667 +31696668,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,198.37,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,243.23785349,249.756204327,254.893551136,254.153639807,894.0,296.15,2700.0,160668.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.610115301724,-0.761150224929,-0.400301144266,8.52561111148,160435.56827,2.33194655172,1.18682389136,4.939375 +31696989,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,198.280833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,243.197852584,249.563374266,254.903937026,254.138526759,894.0,296.15,2700.0,160989.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.597038164511,-0.779009591835,-0.400295549143,8.54894775412,160756.470141,2.34980591863,1.18682389136,5.00067708333 +31697310,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,198.191666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,243.156275438,249.439132613,254.894105114,254.115079975,894.0,296.15,2700.0,161310.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.589595725575,-0.796804222329,-0.400289950874,8.57228439733,161077.372021,2.36760054912,1.18682389136,5.04010416667 +31697631,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,198.1025,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,243.113865137,249.351144832,254.873586648,254.087228219,894.0,296.15,2700.0,161631.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.585131627155,-0.814564635006,-0.400284350943,8.59562104084,161398.273904,2.3853609618,1.18682389136,5.06796875 +31697952,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,198.013333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,243.071454835,249.263157051,254.853068182,254.059376462,894.0,296.15,2700.0,161952.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.580667528736,-0.832325047683,-0.400278751011,8.61895768435,161719.175788,2.40312137448,1.18682389136,5.09583333333 +31698273,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.924166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,243.037963483,249.298893939,254.808232422,254.027358176,894.0,296.15,2700.0,162273.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.586105513649,-0.849957334444,-0.40027314699,8.64229432859,162040.077681,2.42075366124,1.18682389136,5.1 +31698594,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.835,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,243.006040298,249.356384615,254.759121093,253.994607315,894.0,296.15,2700.0,162594.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.593284524204,-0.867567093572,-0.400267542249,8.66563097296,162360.979576,2.43836342036,1.18682389136,5.1 +31698915,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.745833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,242.974759408,249.417397047,254.709729817,253.962071137,894.0,296.15,2700.0,162915.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.600729325541,-0.885166823043,-0.400261937285,8.68896761737,162681.881472,2.45596314983,1.18682389136,5.1 +31699236,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.656666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,242.956581339,249.550253302,254.654627604,253.933914506,894.0,296.15,2700.0,163236.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.613596258842,-0.902561947498,-0.400256327736,8.71230426261,163002.78338,2.47335827429,1.18682389136,5.1 +31699557,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.5675,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,242.93840327,249.683109557,254.59952539,253.905757875,894.0,296.15,2700.0,163557.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.626463192142,-0.919957071953,-0.400250718188,8.73564090785,163323.685287,2.49075339875,1.18682389136,5.1 +31699878,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.478333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,242.920051658,249.816672883,254.544084635,253.877038245,894.0,296.15,2700.0,163878.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.63927797027,-0.937280334911,-0.400245107471,8.75897755329,163644.587197,2.5080766617,1.18682389136,5.1 +31700199,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.389166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,242.901159392,249.952439005,254.487589192,253.846564658,894.0,296.15,2700.0,164199.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.651930264976,-0.954379721668,-0.400239493115,8.78231419939,163965.489116,2.52517604846,1.18682389136,5.1 +31700520,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.3,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,242.882267126,250.088205128,254.43109375,253.816091071,894.0,296.15,2700.0,164520.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.664582559682,-0.971479108424,-0.400233878758,8.80565084549,164286.391035,2.54227543522,1.18682389136,5.1 +31700841,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.210833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,242.856809398,250.193423077,254.376005859,253.781836402,894.0,296.15,2700.0,164841.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.674547860025,-0.988402438718,-0.40022826229,8.82898749198,164607.292959,2.55919876551,1.18682389136,5.1 +31701162,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.121666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,242.822970228,250.259643356,254.322714844,253.74275482,894.0,296.15,2700.0,165162.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.681082954797,-1.00510101608,-0.400222643126,8.85232413894,164928.19489,2.57589734287,1.18682389136,5.1 +31701483,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.0325,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,242.789131059,250.325863636,254.269423828,253.703673239,894.0,296.15,2700.0,165483.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.687618049569,-1.02179959344,-0.400217023962,8.87566078591,165249.096822,2.59259592023,1.18682389136,5.1 +31701804,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.910041667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,242.742283251,250.331969697,254.21870857,253.659870714,894.0,296.15,2700.0,165804.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.690247235577,-1.0381553032,-0.400211401742,8.89899743343,165569.99876,2.60895162999,1.17042676544,5.1 +31702125,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.768489583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,242.687974606,250.303598485,254.169470585,253.613360589,894.0,296.15,2700.0,166125.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.690636268029,-1.05431436829,-0.40020577777,8.92233408126,165890.900703,2.62511069508,1.14462540554,5.1 +31702446,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.6269375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,242.633665962,250.275227272,254.1202326,253.566850464,894.0,296.15,2700.0,166446.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.69102530048,-1.07047343339,-0.400200153799,8.9456707291,166211.802646,2.64126976018,1.11882404564,5.1 +31702767,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.431614583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,242.572534201,250.212694444,254.073048947,253.520437705,894.0,296.15,2700.0,166767.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.690374929887,-1.08602925896,-0.400194525829,8.96900737765,166532.704598,2.65682558575,1.06879125355,5.1 +31703088,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.225416667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,242.510022484,250.143252525,254.026280777,253.474044637,894.0,296.15,2700.0,167088.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.689514342948,-1.10146308103,-0.40018889705,8.99234402635,166853.606553,2.67225940782,1.01385772237,5.1 +31703409,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.01909375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,242.447633312,250.073931818,253.979608488,253.427755624,894.0,296.15,2700.0,167409.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.688660366586,-1.11686954656,-0.400183268136,9.01568067508,167174.508508,2.68766587335,0.959052424401,5.1 +31703730,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.8084375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,242.389492377,250.008813131,253.936260062,253.385073824,894.0,296.15,2700.0,167730.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.688035556891,-1.1313276522,-0.40017763455,9.03901732465,167495.410475,2.70212397899,0.90869254468,5.1 +31704051,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.59778125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,242.331351443,249.943694444,253.892911636,253.342392024,894.0,296.15,2700.0,168051.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.687410747196,-1.14578575784,-0.400172000965,9.06235397422,167816.312442,2.71658208463,0.858332664959,5.1 +31704372,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.399625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,242.27701765,249.889727273,253.850543324,253.301327171,894.0,296.15,2700.0,168372.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.687171995193,-1.15994961555,-0.400166366301,9.08569062398,168137.214412,2.73074594234,0.81655883553,5.1 +31704693,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.244697917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,242.235850225,249.874325757,253.811564572,253.265854261,894.0,296.15,2700.0,168693.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.688268359375,-1.17309586584,-0.400160727908,9.10902727442,168458.116391,2.74389219263,0.804478430029,5.1 +31705014,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.089770833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,242.194682799,249.858924242,253.772585819,253.23038135,894.0,296.15,2700.0,169014.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.689364723558,-1.18624211612,-0.400155089516,9.13236392486,168779.018369,2.75703844292,0.792398024528,5.1 +31705335,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.0215625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,242.182155605,249.882556818,253.753089489,253.215367404,894.0,296.15,2700.0,169335.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.691470703125,-1.19865164393,-0.400149449102,9.15570057566,169099.920353,2.76944797073,0.804628910735,5.1 +31705656,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.072833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,242.209088286,249.959969697,253.760435606,253.228541364,894.0,296.15,2700.0,169656.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.694967708333,-1.21004613188,-0.400143805904,9.17903722697,169420.822344,2.78084245867,0.850355354405,5.1 +31705977,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.124104167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,242.236020967,250.037382576,253.767781724,253.241715325,894.0,296.15,2700.0,169977.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.698464713542,-1.22144061983,-0.400138162705,9.20237387829,169741.724335,2.79223694662,0.896081798075,5.1 +31706298,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.299125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,242.305514072,250.151628788,253.809815341,253.289440873,894.0,296.15,2700.0,170298.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.702620572917,-1.23141991913,-0.400132516542,9.22571053013,170062.626333,2.80221624592,0.96372608223,5.1 +31706619,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.551020833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,242.401446229,250.288756314,253.873397254,253.358630287,894.0,296.15,2700.0,170619.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.707185720486,-1.2405200861,-0.400126868537,9.24904718231,170383.528336,2.8113164129,1.04498599456,5.1 +31706940,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.802916667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,242.497378387,250.425883839,253.936979166,253.427819701,894.0,296.15,2700.0,170940.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.711750868056,-1.24962025307,-0.400121220532,9.27238383449,170704.430338,2.82041657987,1.1262459069,5.1 +31707261,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.0765625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,242.598442402,250.555541667,254.007975852,253.503628092,894.0,296.15,2700.0,171261.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.715938411459,-1.25637101634,-0.40011556862,9.29572048738,171025.33235,2.82716734313,1.21282189182,5.1 +31707582,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.355208333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,242.700686156,250.683482324,254.080677083,253.580958087,894.0,296.15,2700.0,171582.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.720039149306,-1.2625816868,-0.400109915809,9.31905714043,171346.234365,2.83337801359,1.30061996239,5.1 +31707903,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.632479167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,242.802403547,250.810693182,254.153023201,253.657913468,894.0,296.15,2700.0,171903.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.724121223958,-1.26876047146,-0.400104262954,9.34239379349,171667.136379,2.83955679825,1.38820815303,5.1 +31708224,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.764,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,242.848326507,250.860545455,254.187727273,253.69515969,894.0,296.15,2700.0,172224.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.726225,-1.2715593614,-0.400098605338,9.36573044741,171988.038406,2.84235568819,1.4535490714,5.1 +31708545,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.895520833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,242.894249468,250.910397727,254.222431345,253.732405912,894.0,296.15,2700.0,172545.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.728328776042,-1.27435825133,-0.400092947722,9.38906710133,172308.940433,2.84515457812,1.51888998977,5.1 +31708866,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.974791667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,242.922708687,250.9421875,254.243697917,253.756000757,894.0,296.15,2711.45833333,172866.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.730045833333,-1.27639921181,-0.400087289118,9.41240375543,172629.842462,2.8471955386,1.57960970755,5.09541666667 +31709187,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.8521875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,242.883694359,250.904190341,254.213046875,253.726851649,894.0,296.15,2767.1875,173187.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.73026875,-1.27551180847,-0.400081626696,9.43574041023,172950.744501,2.84630813527,1.62247478668,5.073125 +31709508,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.729583333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,242.844680031,250.866193182,254.182395833,253.697702541,894.0,296.15,2822.91666667,173508.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.730491666667,-1.27462440513,-0.400075964275,9.45907706502,173271.64654,2.84542073193,1.66533986581,5.05083333333 +31709829,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.550243056,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,242.788923528,250.815735795,254.137560764,253.654336407,894.0,296.15,2905.52083333,173829.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.730415972222,-1.27229169943,-0.400070299923,9.48241372017,173592.548583,2.84308802623,1.70662187997,5.01659722222 +31710150,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.286458334,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,242.708248439,250.746732955,254.071614584,253.589810049,894.0,296.15,3028.125,174150.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.729895833333,-1.26780784603,-0.400064632696,9.50575037583,173913.450634,2.83860417282,1.74554770441,4.96458333333 +31710471,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.022673611,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,242.627573349,250.677730114,254.005668403,253.525283691,894.0,296.15,3150.72916667,174471.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.729375694445,-1.26332399262,-0.40005896547,9.5290870315,174234.352685,2.83412031941,1.78447352885,4.91256944445 +31710792,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.767777778,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,242.549021193,250.608727273,253.941944445,253.462122028,894.0,296.15,3273.33333333,174792.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.728411111111,-1.25693670895,-0.40005329537,9.5524236877,174555.254743,2.82773303574,1.82034789448,4.85611111111 +31711113,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.518854167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,242.471895383,250.539724432,253.879713542,253.399877268,894.0,296.15,3395.9375,175113.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.727147916667,-1.24927055807,-0.400047623339,9.57576034424,174876.156805,2.82006688486,1.85417206121,4.79666666667 +31711434,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.269930556,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,242.394769572,250.470721591,253.817482639,253.337632509,894.0,296.15,3518.54166667,175434.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.725884722222,-1.2416044072,-0.400041951308,9.59909700078,175197.058868,2.81240073399,1.88799622795,4.73722222222 +31711755,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.156770833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,242.356372214,250.426349432,253.789192708,253.307106974,894.0,296.15,3588.02083333,175755.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.72403125,-1.23186901134,-0.40003627546,9.62243365801,175517.96094,2.80266533813,1.91684427167,4.68958333333 +31712076,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.07875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,242.32799869,250.388352273,253.7696875,253.284791121,894.0,296.15,3643.75,176076.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.722025,-1.2215980462,-0.400030598625,9.64577031543,175838.863015,2.79239437299,1.94440437767,4.645 +31712397,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.000729167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,242.299625166,250.350355114,253.750182292,253.262475267,894.0,296.15,3699.47916667,176397.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.72001875,-1.21132708106,-0.40002492179,9.66910697285,176159.765089,2.78212340785,1.97196448367,4.60041666667 +31712718,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.1325,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,242.330410438,250.347741477,253.783125,253.289872147,894.0,296.15,3700.0,176718.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.71754875,-1.19905091334,-0.400019240195,9.69244363113,176480.667176,2.76984724014,1.99001833286,4.59171875 +31713039,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.26625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,242.361753811,250.345461648,253.8165625,253.317738015,894.0,296.15,3700.0,177039.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.715074375,-1.18675582862,-0.400013558556,9.71578028943,176801.569263,2.75755215542,2.00798250039,4.583359375 +31713360,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.416666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,242.39758647,250.345170455,253.854166667,253.349542596,894.0,296.15,3700.0,177360.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.712569444444,-1.17417509279,-0.400007876018,9.73911694789,177122.471352,2.74497141959,2.02369162189,4.57951388889 +31713681,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.639583333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,242.452947518,250.35352983,253.909895833,253.398480578,894.0,296.15,3700.0,177681.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.709931597222,-1.16035177461,-0.400002189575,9.76245360706,177443.37345,2.73114810141,2.02959129315,4.59530381944 +31714002,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.8625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,242.508308567,250.361889205,253.965625,253.44741856,894.0,296.15,3700.0,178002.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.70729375,-1.14652845643,-0.399996503132,9.78579026623,177764.275549,2.71732478322,2.03549096441,4.61109375 +31714323,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.085416667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,242.563371206,250.369083807,254.021354167,253.496225046,894.0,296.15,3700.0,178323.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.704610347223,-1.13226849657,-0.399990814848,9.80912692573,178085.177652,2.70306482336,2.03681859179,4.62546006944 +31714644,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.308333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,242.61795348,250.374403409,254.077083333,253.544819854,894.0,296.15,3700.0,178644.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.701853611111,-1.11730565009,-0.399985123601,9.83246358577,178406.079763,2.68810197688,2.03078634365,4.63753472222 +31714965,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.53125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,242.672535753,250.379723011,254.1328125,253.593414662,894.0,296.15,3700.0,178965.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.699096875,-1.10234280361,-0.399979432354,9.85580024581,178726.981874,2.6731391304,2.02475409551,4.649609375 +31715286,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.7025,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,242.712294205,250.375355113,254.175625,253.62947094,894.0,296.15,3700.0,179286.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.696297083333,-1.08688916661,-0.399973738324,9.87913690637,179047.883992,2.6576854934,2.01188484517,4.64338541667 +31715607,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.83625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,242.741293431,250.363955966,254.2090625,253.656426672,894.0,296.15,3700.0,179607.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.693466041667,-1.07107931069,-0.399968042274,9.90247356729,179368.786115,2.64187563748,1.99405325452,4.62388020833 +31715928,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.97,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,242.770292657,250.352556818,254.2425,253.683382404,894.0,296.15,3700.0,179928.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.690635,-1.05526945477,-0.399962346224,9.92581022821,179689.688238,2.62606578156,1.97622166387,4.604375 +31716249,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.051875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,242.780768731,250.321311553,254.261888021,253.69603804,894.0,296.15,3700.0,180249.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.687371666667,-1.03897093429,-0.399956646448,9.94914688982,180010.59037,2.60976726108,1.93137966588,4.54769270833 +31716570,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.11875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,242.785888712,250.284327651,254.277213542,253.704558707,894.0,296.15,3700.0,180570.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.683983333333,-1.02253111322,-0.399950945594,9.97248355162,180331.492505,2.59332744001,1.87872742963,4.48026041667 +31716891,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.185625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,242.791008694,250.24734375,254.292539062,253.713079375,894.0,296.15,3700.0,180891.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.680595,-1.00609129214,-0.399945244741,9.99582021342,180652.39464,2.57688761894,1.82607519338,4.412828125 +31717212,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.238055555,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,242.788003916,250.195587121,254.303350695,253.716189334,894.0,296.15,3700.0,181212.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.676628888889,-0.989195948884,-0.39993953922,10.0191568761,180973.296787,2.55999227568,1.73963928613,4.31614583333 +31717533,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.290069444,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,242.784764769,250.143404356,254.314032118,253.719143215,894.0,296.15,3700.0,181533.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.672646111111,-0.972287465561,-0.399933833564,10.0424935387,181294.198934,2.54308379236,1.65222884991,4.21861979167 +31717854,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.332083333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,242.779434804,250.091221591,254.322526042,253.720040554,894.0,296.15,3700.0,181854.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.668683333333,-0.955320530246,-0.3999281271,10.0658302016,181615.101083,2.52611685704,1.56481841369,4.11996875 +31718175,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.324652778,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,242.763766901,250.039038826,254.320203993,253.710769433,894.0,296.15,3700.0,182175.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.664819444444,-0.938064582302,-0.399922416642,10.0891668652,181936.003242,2.5088609091,1.47740797747,4.01575520833 +31718496,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.317222222,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,242.748098999,249.986856061,254.317881945,253.701498312,894.0,296.15,3700.0,182496.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.660955555555,-0.920808634358,-0.399916706183,10.1125035287,182256.905401,2.49160496115,1.38999754125,3.91154166667 +31718817,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.271875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,242.726425037,249.940213068,254.307773438,253.685360788,894.0,296.15,3700.0,182817.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.657395,-0.903459789345,-0.399910993975,10.1358401926,182577.807565,2.47425611614,1.31525598165,3.813421875 +31719138,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.160416667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,242.694278974,249.903229167,254.284088542,253.657251075,894.0,296.15,3700.0,183138.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.654363333333,-0.885948969954,-0.399905278714,10.1591768571,182898.709736,2.45674529675,1.2626037454,3.72592708333 +31719459,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,197.048958333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,242.66213291,249.866245265,254.260403646,253.629141362,894.0,296.15,3700.0,183459.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.651331666667,-0.868438150563,-0.399899563454,10.1825135215,183219.611907,2.43923447736,1.20995150915,3.63843229167 +31719780,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.9,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,242.625759839,249.844087358,254.22828125,253.596795846,894.0,296.15,3705.625,183780.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.650392857143,-0.850824894578,-0.3998938455,10.2058501864,183540.514086,2.42162122137,1.18121350784,3.5525 +31720101,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.721666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,242.586075614,249.833543146,254.189549479,253.561132285,894.0,296.15,3715.65625,184101.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.651093452381,-0.833131396594,-0.399888125437,10.2291868517,183861.416269,2.40392772339,1.17120832391,3.46779166667 +31720422,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.543333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,242.546391389,249.822998935,254.150817708,253.525468724,894.0,296.15,3725.6875,184422.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.651794047619,-0.815437898609,-0.399882405375,10.252523517,184182.318453,2.3862342254,1.16120313997,3.38308333333 +31720743,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.365,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,242.507533573,249.825542436,254.109414063,253.492684859,894.0,296.15,3754.28125,184743.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.655548214285,-0.797649708357,-0.399876681677,10.275860183,184503.220645,2.36844603515,1.16407994394,3.298375 +31721064,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.186666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,242.468941024,249.832286932,254.067152778,253.460825341,894.0,296.15,3788.83333333,185064.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.660282539682,-0.779831123057,-0.399870956813,10.2991968493,184824.122841,2.35062744985,1.17109170699,3.21366666667 +31721385,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,196.008333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,242.430348475,249.839031428,254.024891493,253.428965823,894.0,296.15,3823.38541667,185385.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.665016865079,-0.762012537756,-0.399865231949,10.3225335155,185145.025036,2.33280886455,1.17810347004,3.12895833333 +31721706,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.83,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,242.388502688,249.847587003,253.978734375,253.394648829,894.0,296.15,3887.6875,185706.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.670560714286,-0.744119607402,-0.399859502508,10.3458701825,185465.927243,2.3149159342,1.18654200379,3.0825 +31722027,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.651666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,242.346497428,249.856231357,253.932386285,253.360211371,894.0,296.15,3953.44791667,186027.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.676144246032,-0.726223032683,-0.399853772843,10.3692068496,185786.829451,2.29701935948,1.19505047729,3.03791666667 +31722348,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.473333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,242.303309619,249.862858665,253.88534375,253.324464961,894.0,296.15,4024.875,186348.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.681378571429,-0.708320708767,-0.39984804246,10.3925435168,186107.731661,2.27911703556,1.20146197492,3.00533333333 +31722669,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.295,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,242.253396062,249.858014027,253.834351562,253.28127388,894.0,296.15,4128.53125,186669.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.684626785714,-0.690385686296,-0.399842307993,10.4158801848,186428.633881,2.26118201309,1.19594692231,3.041 +31722990,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,195.116666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,242.203482506,249.853169389,253.783359375,253.2380828,894.0,296.15,4232.1875,186990.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.687875,-0.672450663825,-0.399836573526,10.4392168528,186749.5361,2.24324699062,1.1904318697,3.07666666667 +31723311,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,194.938333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,242.150497602,249.839608203,253.7315,253.192307956,894.0,296.15,4348.99609375,187311.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.690138726061,-0.654514142718,-0.3998308374,10.462553521,187070.438324,2.22531046951,1.17351787604,3.13083333333 +31723632,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,194.76,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,242.091702041,249.80955625,253.678,253.141644909,894.0,296.15,4490.6875,187632.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.690539906832,-0.636574786355,-0.399825098133,10.4858901899,187391.340556,2.20737111315,1.13503831822,3.22 +31723953,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,194.581666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,242.03290648,249.779504296,253.6245,253.090981862,894.0,296.15,4632.37890625,187953.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.690941087604,-0.618635429991,-0.399819358865,10.5092268588,187712.242788,2.18943175679,1.09655876041,3.30916666667 +31724274,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,194.403333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,241.971160343,249.737988281,253.571,253.039328665,894.0,296.15,4786.60677083,188274.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.690773751294,-0.600710124044,-0.399813616996,10.5325635281,188033.145027,2.17150645084,1.04730091873,3.39833333333 +31724595,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,194.225,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,241.906921478,249.686787109,253.5175,252.986838961,894.0,296.15,4951.42578125,188595.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.690126116071,-0.582796688277,-0.399807872928,10.5559001978,188354.047271,2.15359301507,0.988937285524,3.4875 +31724916,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,194.046666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,241.842682613,249.635585937,253.464,252.934349257,894.0,296.15,5116.24479167,188916.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.689478480849,-0.564883252509,-0.399802128861,10.5792368675,188674.949515,2.1356795793,0.930573652315,3.57666666667 +31725237,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,193.868333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,241.775994997,249.574880078,253.4105,252.880905569,894.0,296.15,5286.41276042,189237.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.688263493142,-0.547009312576,-0.399796381249,10.6025735379,188995.851768,2.11780563937,0.881533349138,3.66583333333 +31725558,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,193.69,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,241.708439468,249.510805469,253.357,252.827123761,894.0,296.15,5458.4765625,189558.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.686847418478,-0.529149371166,-0.39979063238,10.6259102085,189316.754024,2.09994569796,0.835797517364,3.755 +31725879,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,193.511666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,241.64088394,249.44673086,253.3035,252.773341953,894.0,296.15,5630.54036458,189879.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.685431343815,-0.511289429756,-0.399784883512,10.6492468791,189637.65628,2.08208575655,0.79006168559,3.84416666667 +31726200,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,193.333333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,241.572218034,249.378359375,253.25,252.718831154,894.0,296.15,5794.53125,190200.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.683559135611,-0.493503594085,-0.399779130158,10.6725835506,189958.558548,2.06429992088,0.786512469018,3.93333333333 +31726521,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,193.155,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,241.503474401,249.30968711,253.1965,252.664269326,894.0,296.15,5957.95703125,190521.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.681654998059,-0.475722945816,-0.39977337649,10.6959202221,190279.460817,2.04651927261,0.785916315511,4.0225 +31726842,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,192.90060704,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,241.407273469,249.234484549,253.14234375,252.608517165,894.0,296.15,6119.5015625,190842.0,0.693942910593,-1.83015225364,0.998629166667,0.998629166667,101325.0,0.679407110507,-0.457955909039,-0.399767622195,10.7192568938,190600.363087,2.02875223583,0.789867907459,4.11166666667 +31727163,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,192.140960848,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,241.128677611,249.11590217,253.083828125,252.544857787,894.0,296.15,6268.54921875,191163.0,0.693942910593,-1.83015225364,0.988152083333,0.988152083333,101325.0,0.674875740813,-0.440279291453,-0.399761863727,10.7425935662,190921.265368,2.01107561825,0.824029522788,4.20083333333 +31727484,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,191.381314655,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,240.850081754,248.997319792,253.0253125,252.48119841,894.0,296.15,6417.596875,191484.0,0.693942910593,-1.83015225364,0.977675,0.977675,101325.0,0.670344371118,-0.422602673867,-0.39975610526,10.7659302386,191242.167648,1.99339900066,0.858191138116,4.29 +31727805,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,190.387957974,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,240.504009671,248.85866305,252.965703125,252.414919922,894.0,296.15,6563.41796875,191805.0,0.693942910593,-1.83015225364,0.96296875,0.96296875,101325.0,0.664816398162,-0.404968018724,-0.399750345222,10.7892669113,191563.069933,1.97576434552,0.892972514149,4.37916666667 +31728126,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,188.913825431,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,240.019129353,248.678710475,252.90384375,252.343253552,894.0,296.15,6702.6015625,192126.0,0.693942910593,-1.83015225364,0.9395625,0.9395625,101325.0,0.657238269927,-0.387419686322,-0.399744581955,10.8126035845,191883.972226,1.95821601312,0.929028826485,4.46833333333 +31728447,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,187.439692888,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,239.534249035,248.498757899,252.841984375,252.271587182,894.0,296.15,6841.78515625,192447.0,0.693942910593,-1.83015225364,0.91615625,0.91615625,101325.0,0.649660141693,-0.369871353919,-0.399738818689,10.8359402578,192204.874519,1.94066768071,0.965085138821,4.5575 +31728768,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,185.943433908,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,239.079906929,248.317593287,252.783625,252.203256936,894.0,296.15,6975.54375,192768.0,0.693942910593,-1.83015225364,0.892283333333,0.892283333333,101325.0,0.641984187371,-0.352402855065,-0.39973305291,10.8592769316,192525.776818,1.92319918186,1.00149986699,4.64666666667 +31729089,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,184.427024066,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,238.653376411,248.135324855,252.728453125,252.137964944,894.0,296.15,7104.36171875,193089.0,0.693942910593,-1.83015225364,0.867985416667,0.867985416667,101325.0,0.634219141434,-0.335007061763,-0.399727284844,10.8826136058,192846.679123,1.90580338856,1.03824100957,4.73583333333 +31729410,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,182.910614224,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,238.226845892,247.953056424,252.67328125,252.072672953,894.0,296.15,7233.1796875,193410.0,0.693942910593,-1.83015225364,0.8436875,0.8436875,101325.0,0.626454095497,-0.317611268462,-0.399721516778,10.9059502799,193167.581428,1.88840759525,1.07498215215,4.825 +31729731,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,181.847519756,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,237.948815929,247.81161849,252.630140625,252.02210149,894.0,296.15,7354.17734375,193731.0,0.693942910593,-1.83015225364,0.827410416667,0.827410416667,101325.0,0.620612554995,-0.300342998228,-0.399715745258,10.9292869547,193488.483742,1.87113932502,1.11134546471,4.91416666667 +31730052,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,180.961041667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,237.728643326,247.686088542,252.5916875,251.977265299,894.0,296.15,7472.128125,194052.0,0.693942910593,-1.83015225364,0.814258333333,0.814258333333,101325.0,0.615520432195,-0.283124412306,-0.399709972393,10.9526236298,193809.386059,1.8539207391,1.14756157077,5.00333333333 +31730373,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,180.074563578,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,237.508470723,247.560558594,252.553234375,251.932429107,894.0,296.15,7590.07890625,194373.0,0.693942910593,-1.83015225364,0.80110625,0.80110625,101325.0,0.610428309394,-0.265905826384,-0.399704199528,10.9759603048,194130.288376,1.83670215317,1.18377767683,5.0925 +31730694,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,180.459022989,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,237.604281795,247.605533333,252.53621875,251.922824061,894.0,296.15,7550.69375,194694.0,0.693942910593,-1.83015225364,0.809902083333,0.808370833333,101325.0,0.614577406609,-0.248872851994,-0.399698422268,10.9992969807,194451.190705,1.81966917878,1.21861338383,5.17034469697 +31731015,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,180.96020115,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,237.729111776,247.666166667,252.521171875,251.916454529,894.0,296.15,7496.859375,195015.0,0.693942910593,-1.83015225364,0.820713541667,0.817510416667,101325.0,0.619575187295,-0.231856923561,-0.399692644605,11.0226336566,194772.093035,1.80265325035,1.25332231949,5.24714962121 +31731336,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,181.574482759,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,237.888074839,247.745688889,252.508,251.913552115,894.0,296.15,7419.4,195336.0,0.693942910593,-1.83015225364,0.8334,0.8284,101325.0,0.625627586207,-0.214866702435,-0.399686866404,11.0459703327,195092.995366,1.78566302923,1.28791927447,5.3216969697 +31731657,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,183.084166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,238.317258134,247.974748148,252.509671875,251.938097732,894.0,296.15,7154.909375,195657.0,0.693942910593,-1.83015225364,0.860930208333,0.85314375,101325.0,0.64002904608,-0.198079997498,-0.399681083942,11.0693070096,195413.897707,1.76887632429,1.32162971574,5.37837184343 +31731978,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,184.593850574,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,238.746441429,248.203807407,252.51134375,251.962643349,894.0,296.15,6890.41875,195978.0,0.693942910593,-1.83015225364,0.888460416667,0.8778875,101325.0,0.654430505953,-0.18129329256,-0.399675301481,11.0926436864,195734.800049,1.75208961935,1.35534015702,5.43504671717 +31732299,0.0,0.1,0.5,0.2,0.0,0.0404897836539,0.0188157894737,0.0416796875,186.095948275,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,239.197572929,248.434944444,252.515078125,251.98923085,894.0,296.15,6617.265625,196299.0,0.693942910593,-1.83015225364,0.915578125,0.90290625,101325.0,0.668865494151,-0.164585915786,-0.399669517539,11.1159803635,196055.702395,1.73538224258,1.38905918868,5.48763825757 +31732620,0.0,0.1,0.5,0.2,0.0,0.171774839744,0.0798245614035,0.176822916667,187.581034483,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,239.697921614,248.67074074,252.5234375,252.020397123,894.0,296.15,6324.6875,196620.0,0.693942910593,-1.83015225364,0.941770833333,0.928541666667,101325.0,0.683375667077,-0.148056426412,-0.39966373028,11.1393170412,196376.604749,1.71885275321,1.42279748365,5.53107323232 +31732941,0.0,0.1,0.5,0.2,0.0,0.303059895834,0.140833333333,0.311966145833,189.06612069,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,240.198270299,248.906537037,252.531796875,252.051563396,894.0,296.15,6032.109375,196941.0,0.693942910593,-1.83015225364,0.967963541667,0.954177083333,101325.0,0.697885840004,-0.131526937038,-0.39965794302,11.1626537189,196697.507103,1.70232326383,1.45653577861,5.57450820707 +31733262,0.0,0.1,0.5,0.2,0.0,0.583515625,0.252368421053,0.597578125,190.017413793,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,240.522672114,249.064133333,252.53846875,252.073730093,894.0,296.15,5817.49375,197262.0,0.693942910593,-1.83015225364,0.98436875,0.9728375,101325.0,0.707759959975,-0.115142251311,-0.39965215334,11.1859903971,197018.409463,1.68593857811,1.49080610064,5.61473863636 +31733583,0.0,0.1,0.5,0.2,0.0,1.01037960737,0.413494152047,1.03087239583,190.444798851,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,240.674385333,249.144977778,252.543484375,252.087063873,894.0,296.15,5679.396875,197583.0,0.693942910593,-1.83015225364,0.991167708333,0.984652083333,101325.0,0.713083879823,-0.0988996876836,-0.399646361282,11.2093270758,197339.311829,1.66969601448,1.52559859738,5.65182386364 +31733904,0.0,0.1,0.5,0.2,0.0,1.43724358974,0.574619883041,1.46416666667,190.872183908,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,240.826098552,249.225822222,252.5485,252.100397653,894.0,296.15,5541.3,197904.0,0.693942910593,-1.83015225364,0.997966666667,0.996466666667,101325.0,0.718407799672,-0.082657124056,-0.399640569225,11.2326637544,197660.214196,1.65345345085,1.56039109412,5.68890909091 +31734225,0.0,0.1,0.5,0.2,0.0,2.10599459134,0.782894736843,2.1357421875,190.606445312,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,240.735412151,249.168541667,252.55,252.096353545,894.0,296.15,5592.16452206,198225.0,0.693942910593,-1.83015225364,0.99375,0.9955078125,101325.0,0.714967983256,-0.0666378995709,-0.399634773805,11.2560004336,197981.116571,1.63743422637,1.760453173,5.61550324675 +31734546,0.0,0.1,0.5,0.2,0.0,2.87795072115,1.01128654971,2.908984375,190.044973958,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,240.541301911,249.052327778,252.55,252.084894873,894.0,296.15,5723.65257353,198546.0,0.693942910593,-1.83015225364,0.984833333333,0.989098958333,101325.0,0.707788972701,-0.0507139664534,-0.39962897695,11.2793371132,198302.018949,1.62151029325,2.0310302736,5.49495454545 +31734867,0.0,0.1,0.5,0.2,0.0,3.64990685096,1.23967836258,3.6822265625,189.483502604,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,240.347191671,248.936113889,252.55,252.073436201,894.0,296.15,5855.140625,198867.0,0.693942910593,-1.83015225364,0.975916666667,0.982690104167,101325.0,0.700609962146,-0.0347900333359,-0.399623180095,11.3026737927,198622.921328,1.60558636013,2.3016073742,5.37440584415 +31735188,0.0,0.1,0.5,0.2,0.0,4.77590144231,1.49894736842,4.79796875,188.79953125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,240.144238792,248.750388889,252.55,252.053822137,894.0,296.15,6121.2757353,199188.0,0.693942910593,-1.83015225364,0.967,0.96978125,101325.0,0.688327768568,-0.0191824427551,-0.399617378937,11.326010473,198943.823718,1.58997876955,2.82769313352,5.07993506493 +31735509,0.0,0.1,0.5,0.2,0.0,5.9424629407,1.76175438597,5.95295572917,188.101523437,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,239.940272693,248.556699074,252.55,252.0332736,894.0,296.15,6402.83915441,199509.0,0.693942910593,-1.83015225364,0.958083333333,0.956127604167,101325.0,0.675460835267,-0.00361109975673,-0.399611577285,11.3493471535,199264.726109,1.57440742655,3.38305592667,4.76553571429 +31735830,0.0,0.1,0.5,0.2,0.0,7.3892978766,2.17418797584,7.40325520833,187.404036458,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,239.737296972,248.363324074,252.55,252.012755794,894.0,296.15,6682.60110294,199830.0,0.693942910593,-1.83015225364,0.949166666667,0.942578125,101325.0,0.662613961649,0.0119238839134,-0.399605775185,11.3726838339,199585.628501,1.55887244288,3.93909330584,4.44979437229 +31736151,0.0,0.1,0.5,0.2,0.0,11.5547851563,4.03799931728,11.7180859375,186.711601562,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,239.543927924,248.173002778,252.55,251.992536068,894.0,296.15,6944.88878676,200151.0,0.693942910593,-1.83015225364,0.94025,0.9300390625,101325.0,0.649961666943,0.0271061820991,-0.399599968737,11.3960205152,199906.530904,1.54369014469,4.50167416953,4.12103571429 +31736472,0.0,0.1,0.5,0.2,0.0,15.7202724359,5.90181065872,16.0329166667,186.019166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,239.350558875,247.982681481,252.55,251.972316342,894.0,296.15,7207.17647059,200472.0,0.693942910593,-1.83015225364,0.931333333333,0.9175,101325.0,0.637309372237,0.0422884802848,-0.399594162288,11.4193571965,200227.433307,1.52850784651,5.06425503323,3.79227705628 +31736793,0.0,0.1,0.5,0.2,0.0,20.8931665665,8.31460171163,21.4157942708,185.369518229,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,239.166222978,247.816758333,252.55,251.954927329,894.0,296.15,7414.81525736,200793.0,0.693942910593,-1.83015225364,0.922416666667,0.907705729167,101325.0,0.626429350409,0.0573467183555,-0.39958835445,11.442693878,200548.335714,1.51344960844,5.54851032594,3.51136038961 +31737114,0.0,0.1,0.5,0.2,0.0,28.5358323317,12.0732785088,29.417109375,184.824765625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,239.004032871,247.71065,252.55,251.944478127,894.0,296.15,7488.47610294,201114.0,0.693942910593,-1.83015225364,0.9135,0.904640625,101325.0,0.619894255636,0.0721008090473,-0.399582543205,11.4660305602,200869.23813,1.49869551775,5.84074163818,3.34773376624 +31737435,0.0,0.1,0.5,0.2,0.0,36.1784980969,15.8319553059,37.4184244792,184.280013021,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,238.841842764,247.604541667,252.55,251.934028924,894.0,296.15,7562.13694853,201435.0,0.693942910593,-1.83015225364,0.904583333333,0.901575520833,101325.0,0.613359160864,0.0868548997392,-0.39957673196,11.4893672424,201190.140545,1.48394142705,6.13297295042,3.18410714286 +31737756,0.0,0.1,0.5,0.2,0.0,43.9852263621,19.5677533654,45.5903645833,183.790104167,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,238.695929976,247.544339583,252.55,251.928218047,894.0,296.15,7554.87279412,201756.0,0.693942910593,-1.83015225364,0.895666666667,0.903927083333,101325.0,0.609725,0.101380456467,-0.399570918384,11.5127039251,201511.042967,1.46941587033,6.28318530718,3.19832999022 +31738077,0.0,0.1,0.5,0.2,0.0,51.9654822716,23.2793527599,53.9427734375,183.358203125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,238.567233583,247.532692188,252.55,251.927313091,894.0,296.15,7462.0148897,202077.0,0.693942910593,-1.83015225364,0.88675,0.9120078125,101325.0,0.609159134615,0.11566429458,-0.399565102342,11.5360406082,201831.945394,1.45513203221,6.28318530718,3.4006628547 +31738398,0.0,0.1,0.5,0.2,0.0,59.9457381811,26.9909521544,62.2951822917,182.926302083,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,238.43853719,247.521044792,252.55,251.926408134,894.0,296.15,7369.15698529,202398.0,0.693942910593,-1.83015225364,0.877833333333,0.920088541667,101325.0,0.60859326923,0.129948132693,-0.399559286301,11.5593772913,202152.847822,1.4408481941,6.28318530718,3.60299571918 +31738719,0.0,0.1,0.5,0.2,0.0,66.0143504607,29.3455564176,68.6115755208,182.505807292,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,238.320904752,247.529379456,252.55,251.926737978,894.0,296.15,7256.25091912,202719.0,0.693942910593,-1.83015225364,0.868916666667,0.930830729167,101325.0,0.60879951923,0.143880410565,-0.399553466988,11.582713975,202473.750258,1.42691591623,6.28318530718,3.98483949636 +31739040,0.0,0.1,0.5,0.2,0.0,71.1926081731,31.0681355512,73.9796875,182.090625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,238.20842539,247.547020834,252.55,251.927642935,894.0,296.15,7134.00735294,203040.0,0.693942910593,-1.83015225364,0.86,0.9428125,101325.0,0.609365384615,0.157648948051,-0.399547646151,11.606050659,202794.652698,1.41314737874,6.28318530718,4.45029109589 +31739361,0.0,0.1,0.5,0.2,0.0,76.3708658854,32.7907146847,79.3477994792,181.675442708,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,238.095946028,247.564662211,252.55,251.928547891,894.0,296.15,7011.76378677,203361.0,0.693942910593,-1.83015225364,0.851083333333,0.954794270833,101325.0,0.60993125,0.171417485537,-0.399541825314,11.6293873429,203115.555138,1.39937884126,6.28318530718,4.91574269542 +31739682,0.0,0.1,0.5,0.2,0.0,79.16679127,32.197252334,82.1648059702,181.319010417,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,237.990028387,247.579670718,252.55,251.929452823,894.0,296.15,6866.50404412,203682.0,0.693942910593,-1.83015225364,0.842166666667,0.965796875,101325.0,0.610497115385,0.184691074827,-0.399536000263,11.6527240277,203436.457589,1.38610525196,6.28318530718,5.36986840889 +31740003,0.0,0.1,0.5,0.2,0.0,81.6332451625,31.2834863737,84.629,180.970703125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,237.885018219,247.594315104,252.55,251.930357752,894.0,296.15,6718.06121323,204003.0,0.693942910593,-1.83015225364,0.83325,0.9766640625,101325.0,0.61106298077,0.197896213835,-0.39953017463,11.6760607127,203757.360041,1.37290011296,6.28318530718,5.82242777642 +31740324,0.0,0.1,0.5,0.2,0.0,84.0740264556,30.2648033774,87.0626865672,180.631145833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,237.779915071,247.606321527,252.55,251.931127364,894.0,296.15,6567.89779411,204324.0,0.693942910593,-1.83015225364,0.824333333333,0.987072916667,101325.0,0.61154423077,0.211055409297,-0.399524348638,11.6993973976,204078.262495,1.35974091749,6.28318530718,6.25338690476 +31740645,0.0,0.1,0.5,0.2,0.0,86.1971093319,27.94777206,89.1188432836,180.399869792,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,237.673661309,247.58568316,252.55,251.930222435,894.0,296.15,6396.44209559,204645.0,0.693942910593,-1.83015225364,0.815416666667,0.991809895833,101325.0,0.610978365385,0.223646053382,-0.39951851821,11.7227340834,204399.16496,1.34715027341,6.28318530718,6.41704307322 +31740966,0.0,0.1,0.5,0.2,0.0,88.3201922082,25.6307407426,91.175,180.16859375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,237.567407546,247.565044792,252.55,251.929317507,894.0,296.15,6224.98639706,204966.0,0.693942910593,-1.83015225364,0.8065,0.996546875,101325.0,0.6104125,0.236236697467,-0.399512687781,11.7460707692,204720.067424,1.33455962933,6.28318530718,6.58069924168 +31741287,0.0,0.1,0.5,0.2,0.0,90.4254951797,23.1715277479,93.1985858209,180.008684896,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,237.477259667,247.527209126,252.545071272,251.922782221,894.0,296.15,6046.76320997,205287.0,0.693942910593,-1.83015225364,0.799798611111,1.0,101325.0,0.609259333643,0.248646183047,-0.399506856053,11.7694074552,205040.969893,1.32215014375,6.26337495507,6.66700049943 +31741608,0.0,0.1,0.5,0.2,0.0,92.4829763383,20.3298950692,95.1345671642,180.040729167,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,237.43043106,247.443118659,252.526885965,251.901103214,894.0,296.15,5850.33781226,205608.0,0.693942910593,-1.83015225364,0.799055555556,1.0,101325.0,0.60652653019,0.26056841472,-0.399501020829,11.7927441419,205361.87237,1.31022791208,6.19028158693,6.54524372146 +31741929,0.0,0.1,0.5,0.2,0.0,94.5404574969,17.4882623906,97.0705485074,180.072773437,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,237.383602453,247.359028193,252.508700658,251.879424208,894.0,296.15,5653.91241455,205929.0,0.693942910593,-1.83015225364,0.7983125,1.0,101325.0,0.603793726737,0.272490646392,-0.399495185606,11.8160808286,205682.774847,1.29830568041,6.11718821879,6.42348694349 +31742250,0.0,0.1,0.5,0.2,0.0,96.6970823848,14.8120795414,99.0848880597,180.215494792,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,237.380214937,247.256380208,252.477905702,251.84465831,894.0,296.15,5447.96197084,206250.0,0.693942910593,-1.83015225364,0.802893518519,1.0,101325.0,0.600359155293,0.284074178929,-0.399489348142,11.8394175157,206003.67733,1.28672214787,6.03846595757,6.27559574771 +31742571,0.0,0.1,0.5,0.2,0.0,98.9667311241,12.3245094977,101.18855597,180.484388021,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,237.426350264,247.132576653,252.432735746,251.794973354,894.0,296.15,5231.15297466,206571.0,0.693942910593,-1.83015225364,0.813543981482,1.0,101325.0,0.596124568342,0.29527159445,-0.399483508123,11.8627542033,206324.57982,1.27552473235,5.95332675822,6.09791131564 +31742892,0.0,0.1,0.5,0.2,0.0,101.236379863,9.83693945396,103.292223881,180.75328125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,237.472485592,247.008773098,252.387565789,251.745288398,894.0,296.15,5014.34397849,206892.0,0.693942910593,-1.83015225364,0.824194444445,1.0,101325.0,0.59188998139,0.306469009972,-0.399477668105,11.8860908909,206645.482309,1.26432731683,5.86818755888,5.92022688356 +31743213,0.0,0.1,0.5,0.2,0.0,103.990389652,7.99484064059,105.657125487,181.040664063,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,237.553343393,246.888860394,252.333832237,251.687458796,894.0,296.15,4792.63611299,207213.0,0.693942910593,-1.83015225364,0.837474537037,1.0,101325.0,0.587600338606,0.31714674333,-0.399471824905,11.9094275791,206966.384807,1.25364958347,5.78907668918,5.74722310217 +31743534,0.0,0.1,0.5,0.2,0.0,106.989990958,6.48002301442,108.154483614,181.337421875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,237.651806955,246.770920516,252.275756579,251.625499514,894.0,296.15,4568.44431376,207534.0,0.693942910593,-1.83015225364,0.852087962963,1.0,101325.0,0.58328278019,0.327560975873,-0.399465980092,11.9327642675,207287.287308,1.24323535092,5.71302243734,5.57659260844 +31743855,0.0,0.1,0.5,0.2,0.0,109.989592264,4.96520538826,110.651841742,181.634179687,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,237.750270518,246.652980639,252.217680921,251.563540233,894.0,296.15,4344.25251452,207855.0,0.693942910593,-1.83015225364,0.866701388889,1.0,101325.0,0.578965221775,0.337975208416,-0.399460135279,11.956100956,207608.18981,1.23282111838,5.63696818551,5.40596211472 +31744176,0.0,0.1,0.5,0.2,0.0,113.455184287,4.31688358022,113.511798544,181.775208333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,237.836583679,246.579269928,252.160614035,251.504426911,894.0,296.15,4124.89113862,208176.0,0.693942910593,-1.83015225364,0.878333333333,1.0,101325.0,0.575796236559,0.347664813002,-0.399454286344,11.9794376453,207929.092323,1.2231315138,5.58689381041,5.29554908675 +31744497,0.0,0.1,0.5,0.2,0.0,116.996753057,3.80983826427,116.430874694,181.890846354,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,237.920915796,246.512770494,252.103711623,251.445777606,894.0,296.15,3906.31733173,208497.0,0.693942910593,-1.83015225364,0.889479166667,1.0,101325.0,0.572814518714,0.357236271724,-0.399448436737,12.0027743346,208249.994837,1.21356005507,5.54105528479,5.19495412386 +31744818,0.0,0.1,0.5,0.2,0.0,120.524924535,3.35948069436,119.373088201,181.993370536,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,238.000171555,246.451067935,252.044873549,251.386009204,894.0,296.15,3691.15163431,208818.0,0.693942910593,-1.83015225364,0.900284375,1.0,101325.0,0.570305040323,0.366757116528,-0.399442586861,12.0261110241,208570.897352,1.20403921027,5.49685390438,5.0975 +31745139,0.0,0.1,0.5,0.2,0.0,123.827574934,3.86336684946,122.704780545,181.875145089,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,237.993975273,246.470112772,251.953451835,251.307402682,894.0,296.15,3533.35577954,209139.0,0.693942910593,-1.83015225364,0.905355729167,1.0,101325.0,0.575744926075,0.375425960361,-0.39943673246,12.0494477143,208891.799879,1.19537036643,5.480211135,5.05291666667 +31745460,0.0,0.1,0.5,0.2,0.0,127.130225333,4.36725300457,126.03647289,181.756919643,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,237.987778992,246.489157609,251.862030121,251.228796159,894.0,296.15,3375.55992477,209460.0,0.693942910593,-1.83015225364,0.910427083333,1.0,101325.0,0.581184811828,0.384094804195,-0.399430878058,12.0727844046,209212.702405,1.1867015226,5.46356836563,5.00833333333 +31745781,0.0,0.1,0.5,0.2,0.0,130.17554196,5.12703118829,129.469986616,181.607555804,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,237.962058182,246.522362772,251.76000537,251.143199323,894.0,296.15,3244.57077416,209781.0,0.693942910593,-1.83015225364,0.9146015625,1.0,101325.0,0.588829334677,0.392521028048,-0.399425022448,12.0961210951,209533.604935,1.17827529874,5.45010298906,4.96375 +31746102,0.0,0.1,0.5,0.2,0.0,132.458388151,6.6450079753,133.205193327,181.36593006,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,237.878486918,246.597524457,251.626564209,251.036890443,894.0,296.15,3193.00889511,210102.0,0.693942910593,-1.83015225364,0.916118634259,1.0,101325.0,0.603006115591,0.400228377884,-0.399419163253,12.1194577863,209854.507474,1.17056794891,5.44605210971,4.91916666667 +31746423,0.0,0.1,0.5,0.2,0.0,134.741234343,8.1629847623,136.940400038,181.124304316,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,237.794915653,246.672686141,251.493123049,250.930581564,894.0,296.15,3141.44701606,210423.0,0.693942910593,-1.83015225364,0.917635706018,1.0,101325.0,0.617182896505,0.407935727721,-0.399413304058,12.1427944775,210175.410013,1.16286059908,5.44200123036,4.87458333333 +31746744,0.0,0.1,0.5,0.2,0.0,134.928095392,30.2116667434,147.315959627,180.843392857,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,237.695708843,246.750717391,251.366118421,250.829861336,894.0,296.15,3136.84388105,210744.0,0.693942910593,-1.83015225364,0.917675,1.0,101325.0,0.631359677419,0.415186414177,-0.399407442713,12.166131169,210496.312558,1.15560991262,5.44259191708,4.83 +31747065,0.0,0.1,0.5,0.2,0.0,132.538641371,77.4960071921,165.85361963,180.514192708,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,237.577283341,246.832275815,251.247025364,250.736010491,894.0,296.15,3189.96086891,211065.0,0.693942910593,-1.83015225364,0.915897858796,1.0,101325.0,0.645536458333,0.421875785229,-0.399401578724,12.1894678611,210817.215109,1.14892054157,5.4488878621,4.78541666667 +31747386,0.0,0.1,0.5,0.2,0.0,130.14918735,124.780347641,184.391279633,180.184992559,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,237.458857839,246.913834239,251.127932307,250.642159646,894.0,296.15,3243.07785677,211386.0,0.693942910593,-1.83015225364,0.914120717592,1.0,101325.0,0.659713239247,0.428565156281,-0.399395714736,12.2128045532,211138.117661,1.14223117052,5.45518380711,4.74083333333 +31747707,0.0,0.1,0.5,0.2,0.0,124.377044984,208.470167605,214.514067611,179.822421875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,237.347854023,246.967455163,251.054440934,250.583739441,894.0,296.15,3362.695212,211707.0,0.693942910593,-1.83015225364,0.910386979166,1.0,101325.0,0.668255947581,0.434564228968,-0.399389847657,12.2361412459,211459.02022,1.13623209783,5.46670425072,4.69625 +31748028,0.0,0.1,0.5,0.2,0.0,116.741972805,312.209382085,251.017070997,179.441473214,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,237.240937513,247.005690217,251.006063532,250.544831761,894.0,296.15,3518.93595796,212028.0,0.693942910593,-1.83015225364,0.905575694444,1.0,101325.0,0.673695833333,0.440183137339,-0.399383978875,12.2594779389,211779.922784,1.13061318946,5.48110195443,4.65166666667 +31748349,0.0,0.1,0.5,0.2,0.0,109.106900627,415.948596565,287.520074383,179.060524554,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,237.134021002,247.043925272,250.957686129,250.505924081,894.0,296.15,3675.17670391,212349.0,0.693942910593,-1.83015225364,0.900764409722,1.0,101325.0,0.679135719086,0.445802045709,-0.399378110094,12.2828146319,212100.825348,1.12499428109,5.49549965814,4.60708333333 +31748670,0.0,0.1,0.5,0.2,0.0,100.287750682,524.19823187,324.950135222,178.421428571,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,236.753061663,247.0239375,251.036518842,250.571980228,894.0,296.15,7270.43194912,212670.0,0.693942910593,-1.83015225364,0.864234375,0.96125,101325.0,0.672237140366,0.450481218035,-0.399372237282,12.3061513257,212421.727922,1.12031510876,5.52022273776,4.558984375 +31748991,0.0,0.1,0.5,0.2,0.0,91.2449416037,633.299835552,362.555306914,177.733571428,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,236.320338677,246.992952083,251.139380132,250.657862876,894.0,296.15,11515.278822,212991.0,0.693942910593,-1.83015225364,0.821713020833,0.915180555555,101325.0,0.663007962802,0.454982884663,-0.399366363707,12.3294880196,212742.630499,1.11581344214,5.54689616615,4.51022135417 +31749312,0.0,0.1,0.5,0.2,0.0,82.2929790433,740.69190295,399.571282091,177.033333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,235.888159396,246.960527778,251.247033701,250.747791787,894.0,296.15,15940.4751047,213312.0,0.693942910593,-1.83015225364,0.7775875,0.867074074074,101325.0,0.653439814008,0.459441313135,-0.399360489954,12.3528247135,213063.533075,1.11135501366,5.57401869071,4.46135416667 +31749633,0.0,0.1,0.5,0.2,0.0,75.6803143216,804.063411005,421.415447011,176.014285714,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,235.469980491,246.891052083,251.478088465,250.941911978,894.0,296.15,25009.6686929,213633.0,0.693942910593,-1.83015225364,0.6921546875,0.766513888889,101325.0,0.63514315606,0.462786359093,-0.399354611587,12.3761614083,213384.435664,1.1080099677,5.61270544154,4.4098046875 +31749954,0.0,0.1,0.5,0.2,0.0,69.0676495998,867.43491906,443.259611931,174.995238095,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,235.051801587,246.821576389,251.709143229,251.136032169,894.0,296.15,34078.8622811,213954.0,0.693942910593,-1.83015225364,0.606721875,0.665953703704,101325.0,0.616846498111,0.466131405051,-0.399348733221,12.3994981031,213705.338253,1.10466492174,5.65139219237,4.35825520833 +31750275,0.0,0.1,0.5,0.2,0.0,63.1184035411,919.931591203,461.399211578,173.988095238,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,234.693991571,246.751336805,251.947022442,251.33565914,894.0,296.15,43135.9481441,214275.0,0.693942910593,-1.83015225364,0.521653645833,0.565856481482,101325.0,0.598432141819,0.469199105174,-0.399342853734,12.4228347981,214026.240844,1.10159722162,5.69080644425,4.3080078125 +31750596,0.0,0.1,0.5,0.2,0.0,59.3451706971,936.758801552,467.387837134,173.02,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,234.53419151,246.678591666,252.207285845,251.553348347,894.0,296.15,52153.3206685,214596.0,0.693942910593,-1.83015225364,0.43778125,0.467277777778,101325.0,0.579631734961,0.47135711096,-0.399336970575,12.4461714938,214347.143445,1.09943921584,5.73260689955,4.26203125 +31750917,0.0,0.1,0.5,0.2,0.0,55.5719378531,953.586011901,473.37646269,172.051904762,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,234.374391449,246.605846528,252.467549249,251.771037553,894.0,296.15,61170.6931928,214917.0,0.693942910593,-1.83015225364,0.353908854167,0.368699074074,101325.0,0.560831328103,0.473515116745,-0.399331087416,12.4695081895,214668.046046,1.09728121005,5.77440735485,4.2160546875 +31751238,0.0,0.1,0.5,0.2,0.0,52.1683191675,964.798646364,477.328803655,171.27,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,234.261592359,246.5468375,252.69781541,251.964722071,894.0,296.15,68069.4910744,215238.0,0.693942910593,-1.83015225364,0.289826041667,0.29525,101325.0,0.545495960477,0.475154134453,-0.399325202196,12.4928448855,214988.948653,1.09564219234,5.81372040807,4.17606770833 +31751559,0.0,0.1,0.5,0.2,0.0,49.2548409962,968.56586498,478.580854184,170.735,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,234.211120644,246.50604375,252.888302619,252.126574283,894.0,296.15,72158.8747556,215559.0,0.693942910593,-1.83015225364,0.2519859375,0.255125,101325.0,0.534755536182,0.47610492884,-0.399319314246,12.5161815822,215309.851267,1.09469139795,5.84973494985,4.1440234375 +31751880,0.0,0.1,0.5,0.2,0.0,46.341362825,972.333083596,479.832904714,170.2,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,234.16064893,246.46525,253.078789828,252.288426496,894.0,296.15,76248.2584369,215880.0,0.693942910593,-1.83015225364,0.214145833333,0.215,101325.0,0.524015111886,0.477055723226,-0.399313426295,12.5395182788,215630.75388,1.09374060356,5.88574949163,4.11197916667 +31752201,0.0,0.1,0.5,0.2,0.0,44.1255543019,968.145013705,478.092181267,170.178134921,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,234.264137242,246.481891359,253.227970378,252.420558095,894.0,296.15,77777.0,216201.0,0.693942910593,-1.83015225364,0.206598484848,0.208549479167,101325.0,0.519082681365,0.477244947653,-0.399307535344,12.562854976,215951.656502,1.09355137914,5.903617149,4.0921484375 +31752522,0.0,0.1,0.5,0.2,0.0,42.3262649716,959.207517838,474.564727087,170.462619048,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,234.459541988,246.532822336,253.352490235,252.534946043,894.0,296.15,77777.0,216522.0,0.693942910593,-1.83015225364,0.217136363636,0.222203125,101325.0,0.517617709815,0.476979503447,-0.399301642601,12.5861916735,216272.559128,1.09381682335,5.91065084551,4.079609375 +31752843,0.0,0.1,0.5,0.2,0.0,40.5269756413,950.270021971,471.037272907,170.747103175,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,234.654946734,246.583753313,253.477010091,252.649333992,894.0,296.15,77777.0,216843.0,0.693942910593,-1.83015225364,0.227674242424,0.235856770833,101325.0,0.516152738264,0.476714059241,-0.399295749858,12.609528371,216593.461755,1.09408226756,5.91768454202,4.0670703125 +31753164,0.0,0.1,0.5,0.2,0.0,39.8532828045,931.175979596,463.543704461,171.515820106,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,234.914430647,246.700253506,253.595858073,252.762357602,894.0,296.15,77777.0,217164.0,0.693942910593,-1.83015225364,0.248878787879,0.255366898148,101325.0,0.517055713608,0.475450423525,-0.399289853175,12.6328650693,216914.364391,1.09534590327,5.89396167979,4.06598958333 +31753485,0.0,0.1,0.5,0.2,0.0,39.4226164834,909.889046498,455.193815889,172.389087302,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,235.187749834,246.83091069,253.713481445,252.875086638,894.0,296.15,77777.0,217485.0,0.693942910593,-1.83015225364,0.272386363636,0.276141493056,101325.0,0.518469950213,0.473971269187,-0.399283955641,12.6562017677,217235.26703,1.09682505761,5.86359819693,4.0673828125 +31753806,0.0,0.1,0.5,0.2,0.0,39.0706551136,888.298902904,446.7551176,173.263201058,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,235.460438304,246.961704121,253.83067513,252.98741383,894.0,296.15,77777.0,217806.0,0.693942910593,-1.83015225364,0.29590909091,0.296927662037,101325.0,0.519884660976,0.472469689767,-0.399278058017,12.6795384661,217556.169668,1.09832663703,5.83278370657,4.06888020833 +31754127,0.0,0.1,0.5,0.2,0.0,42.8507036907,850.790208244,433.653909194,174.181759259,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,235.700014155,247.099650558,253.925310221,253.078644222,894.0,296.15,77777.0,218127.0,0.693942910593,-1.83015225364,0.320227272727,0.318321469908,101325.0,0.521324265054,0.469790793532,-0.399272155692,12.7028751654,217877.072319,1.10100553326,5.7782913228,4.07584635417 +31754448,0.0,0.1,0.5,0.2,0.0,46.6307522679,813.281513584,420.552700788,175.10031746,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,235.939590005,247.237596994,254.019945312,253.169874615,894.0,296.15,77777.0,218448.0,0.693942910593,-1.83015225364,0.344545454545,0.339715277778,101325.0,0.522763869133,0.467111897296,-0.399266253367,12.7262118648,218197.97497,1.1036844295,5.72379893904,4.0828125 +31754769,0.0,0.1,0.5,0.2,0.0,51.2758488129,773.489701491,406.951104825,175.911785714,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,236.155216783,247.36153972,254.106180013,253.25213318,894.0,296.15,77777.0,218769.0,0.693942910593,-1.83015225364,0.366424242424,0.359844618056,101325.0,0.523595483642,0.464180438499,-0.399260350012,12.7495485643,218518.877624,1.1066158883,5.66697202896,4.0891796875 +31755090,0.0,0.1,0.5,0.2,0.0,59.0802509798,725.359547467,391.522006479,176.332142857,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,236.283377381,247.434338456,254.161735026,253.301625071,894.0,296.15,77777.0,219090.0,0.693942910593,-1.83015225364,0.379393939394,0.375355902778,101325.0,0.52220661451,0.460326577302,-0.399254442896,12.7728852646,218839.780288,1.11046974949,5.60161902277,4.093359375 +31755411,0.0,0.1,0.5,0.2,0.0,66.8846531467,677.229393442,376.092908133,176.7525,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,236.411537978,247.507137193,254.217290039,253.351116962,894.0,296.15,77777.0,219411.0,0.693942910593,-1.83015225364,0.392363636364,0.3908671875,101325.0,0.520817745377,0.456472716106,-0.39924853578,12.7962219648,219160.682951,1.11432361069,5.53626601658,4.0975390625 +31755732,0.0,0.1,0.5,0.2,0.0,74.5805389612,630.720560331,361.139854165,176.992666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,236.487930403,247.498055147,254.259190538,253.381808232,894.0,296.15,77777.0,219732.0,0.693942910593,-1.83015225364,0.4013,0.403666666667,101325.0,0.516152412281,0.452149880749,-0.399242626694,12.8195586654,219481.58562,1.11864644604,5.37858458602,4.1 +31756053,0.0,0.1,0.5,0.2,0.0,82.1210490894,586.533163982,346.868409195,176.974833333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,236.490200215,247.371734708,254.281540256,253.385580431,894.0,296.15,77777.0,220053.0,0.693942910593,-1.83015225364,0.404461363637,0.412583333333,101325.0,0.506795778509,0.447155559662,-0.399236714787,12.8428953666,219802.488296,1.12364076713,5.08870563875,4.1 +31756374,0.0,0.1,0.5,0.2,0.0,89.6615592176,542.345767634,332.596964224,176.957,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,236.492470028,247.245414269,254.303889974,253.389352629,894.0,296.15,77777.0,220374.0,0.693942910593,-1.83015225364,0.407622727273,0.4215,101325.0,0.497439144736,0.442161238575,-0.39923080288,12.8662320677,220123.390972,1.12863508822,4.79882669147,4.1 +31756695,0.0,0.1,0.5,0.2,0.0,94.4367520714,509.400926018,321.146152759,176.919907407,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,236.456745066,247.018446038,254.316671187,253.378052917,894.0,296.15,77777.0,220695.0,0.693942910593,-1.83015225364,0.41009469697,0.429513888889,101325.0,0.484768366228,0.436500120991,-0.399224888064,12.8895687694,220444.293656,1.13429620581,4.33984613757,4.1 +31757016,0.0,0.1,0.5,0.2,0.0,97.4251245325,483.720504384,311.517904481,176.87037037,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,236.396469634,246.726443849,254.323269675,253.357014431,894.0,296.15,77777.0,221016.0,0.693942910593,-1.83015225364,0.412121212121,0.436944444444,101325.0,0.469956140351,0.430408150286,-0.399218971367,12.9129054715,220765.196344,1.14038817651,3.77159993015,4.1 +31757337,0.0,0.1,0.5,0.2,0.0,100.413496994,458.040082751,301.889656204,176.820833333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,236.336194203,246.434441661,254.329868164,253.335975946,894.0,296.15,77777.0,221337.0,0.693942910593,-1.83015225364,0.414147727272,0.444375,101325.0,0.455143914473,0.424316179581,-0.399213054671,12.9362421735,221086.099033,1.14648014721,3.20335372274,4.1 +31757658,0.0,0.1,0.5,0.2,0.0,99.8752666953,446.798397773,295.188346581,176.726703704,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,236.258308541,246.152883768,254.324833261,253.308820295,894.0,296.15,77777.0,221658.0,0.693942910593,-1.83015225364,0.414089393939,0.452402777778,101325.0,0.442877741228,0.417381755155,-0.399207134124,12.9595788763,221407.001731,1.15341457164,2.61472231465,4.1 +31757979,0.0,0.1,0.5,0.2,0.0,98.4758892116,439.082450817,289.201754537,176.621685185,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,236.176122707,245.873876226,254.316957646,253.280170919,894.0,296.15,77777.0,221979.0,0.693942910593,-1.83015225364,0.413521969697,0.460576388889,101325.0,0.431233278508,0.410241615287,-0.399201212637,12.9829155793,221727.904433,1.16055471151,2.021113125,4.1 +31758300,0.0,0.1,0.5,0.2,0.0,97.0765117278,431.36650386,283.215162492,176.516666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,236.093936873,245.594868685,254.309082031,253.251521542,894.0,296.15,77777.0,222300.0,0.693942910593,-1.83015225364,0.412954545455,0.46875,101325.0,0.419588815789,0.403101475418,-0.39919529115,13.0062522823,222048.807134,1.16769485138,1.42750393535,4.1 +31758621,0.0,0.1,0.5,0.2,0.0,94.4804941701,429.95989864,277.420644576,176.332388889,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,236.031360719,245.507532187,254.28800944,253.232365347,894.0,296.15,77777.0,222621.0,0.693942910593,-1.83015225364,0.408334090909,0.479895833333,101325.0,0.419735471491,0.394967603377,-0.399189364874,13.0295889862,222369.709847,1.17582872342,1.06153604138,4.1 +31758942,0.0,0.1,0.5,0.2,0.0,91.8844766124,428.553293419,271.626126659,176.148111111,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,235.968784566,245.42019569,254.266936849,253.213209152,894.0,296.15,77777.0,222942.0,0.693942910593,-1.83015225364,0.403713636364,0.491041666667,101325.0,0.419882127193,0.386833731336,-0.399183438597,13.0529256901,222690.612561,1.18396259546,0.695568147411,4.1 +31759263,0.0,0.1,0.5,0.2,0.0,89.1030305307,427.971891918,265.832698973,175.9488125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,235.906808477,245.378144028,254.243839614,253.195616767,894.0,296.15,77777.0,223263.0,0.693942910593,-1.83015225364,0.397025,0.504265625,101325.0,0.421921171875,0.378516156111,-0.399177511381,13.0762623941,223011.515277,1.19228017068,0.444215298199,4.09015625 +31759584,0.0,0.1,0.5,0.2,0.0,85.5622104938,430.769896119,260.043736037,175.688,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,235.847289796,245.521544552,254.21245098,253.184428555,894.0,296.15,77777.0,223584.0,0.693942910593,-1.83015225364,0.381866666667,0.526,101325.0,0.43171,0.369446272607,-0.399171580315,13.0995990989,223332.418003,1.20135005419,0.662238346566,4.04 +31759905,0.0,0.1,0.5,0.2,0.0,82.0213904568,433.567900321,254.254773101,175.4271875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,235.787771116,245.664945076,254.181062347,253.173240344,894.0,296.15,77777.0,223905.0,0.693942910593,-1.83015225364,0.366708333333,0.547734375,101325.0,0.441498828125,0.360376389103,-0.39916564925,13.1229358037,223653.32073,1.21041993769,0.880261394933,3.98984375 +31760226,0.0,0.1,0.5,0.2,0.0,78.2085655119,437.190155349,248.394777502,175.154125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,235.715407364,245.844823352,254.146320976,253.159661912,894.0,296.15,77777.0,224226.0,0.693942910593,-1.83015225364,0.34805,0.57340625,101325.0,0.45174921875,0.350962441144,-0.399159716304,13.1462725088,223974.223461,1.21983388565,1.28066507541,3.91489583333 +31760547,0.0,0.1,0.5,0.2,0.0,73.9747805903,442.088036658,242.424850398,174.862104167,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,235.623164335,246.081155291,254.106390846,253.142384328,894.0,296.15,77777.0,224547.0,0.693942910593,-1.83015225364,0.323975,0.605171875,101325.0,0.462713932292,0.341016012484,-0.399153780449,13.1696092145,224295.126199,1.22978031431,1.96332449604,3.80157986111 +31760868,0.0,0.1,0.5,0.2,0.0,69.7409956687,446.985917967,236.454923295,174.570083333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,235.530921307,246.317487231,254.066460716,253.125106744,894.0,296.15,77777.0,224868.0,0.693942910593,-1.83015225364,0.2999,0.6369375,101325.0,0.473678645833,0.331069583823,-0.399147844594,13.1929459203,224616.028938,1.23972674297,2.64598391667,3.68826388889 +31761189,0.0,0.1,0.5,0.2,0.0,64.6302822754,456.281000405,230.369205387,174.2833125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,235.429172458,246.557528772,254.021276297,253.103039652,894.0,296.15,77777.0,225189.0,0.693942910593,-1.83015225364,0.276875,0.668703125,101325.0,0.484833671875,0.320642310068,-0.39914190592,13.2162826265,224936.931684,1.25015401673,3.33104812684,3.57057291667 +31761510,0.0,0.1,0.5,0.2,0.0,58.9071109019,468.647143951,224.20261771,174.000208333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,235.320784623,246.800161146,253.972422215,253.077627508,894.0,296.15,77777.0,225510.0,0.693942910593,-1.83015225364,0.254583333333,0.70046875,101325.0,0.496121614583,0.309879207993,-0.399135965276,13.2396193331,225257.834436,1.2609171188,4.01779187256,3.44982638889 +31761831,0.0,0.1,0.5,0.2,0.0,53.1839395284,481.013287496,218.036030033,173.717104167,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,235.212396789,247.04279352,253.923568134,253.052215364,894.0,296.15,77777.0,225831.0,0.693942910593,-1.83015225364,0.232291666667,0.732234375,101325.0,0.507409557292,0.299116105917,-0.399130024633,13.2629560398,225578.737187,1.27168022087,4.70453561827,3.32907986111 +31762152,0.0,0.1,0.5,0.2,0.0,46.5019526627,499.559552614,211.791915858,173.4725,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,235.129998925,247.222362663,253.867408088,253.018850346,894.0,296.15,77777.0,226152.0,0.693942910593,-1.83015225364,0.2198,0.756125,101325.0,0.518281875,0.287758326894,-0.39912408023,13.2862927471,225899.639948,1.2830379999,5.03293087185,3.24625 +31762473,0.0,0.1,0.5,0.2,0.0,39.5574329837,519.797993877,205.526574188,173.2384375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,235.054717364,247.384664492,253.8092476,252.983307756,894.0,296.15,77777.0,226473.0,0.693942910593,-1.83015225364,0.209991666667,0.777859375,101325.0,0.529040390625,0.276237719659,-0.399118134798,13.3096294546,226220.542712,1.29455860714,5.26320689545,3.17380208333 +31762794,0.0,0.1,0.5,0.2,0.0,32.6129133046,540.036435139,199.261232519,173.004375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,234.979435802,247.546966321,253.751087112,252.947765166,894.0,296.15,77777.0,226794.0,0.693942910593,-1.83015225364,0.200183333333,0.79959375,101325.0,0.53979890625,0.264717112423,-0.399112189366,13.3329661622,226541.445475,1.30607921438,5.49348291904,3.10135416667 +31763115,0.0,0.1,0.5,0.2,0.0,26.2838495159,558.627299744,192.883169267,172.839375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,234.935635895,247.640974499,253.657835478,252.877812881,894.0,296.15,77777.0,227115.0,0.693942910593,-1.83015225364,0.2030078125,0.8093515625,101325.0,0.550114950284,0.252509677403,-0.399106239235,13.3563028706,226862.348252,1.3182866494,5.14144949282,3.091796875 +31763436,0.0,0.1,0.5,0.2,0.0,19.9665086964,577.186781935,186.502958938,172.675690476,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,234.892435639,247.733681846,253.563915441,252.807205173,894.0,296.15,77777.0,227436.0,0.693942910593,-1.83015225364,0.206072916667,0.81888125,101325.0,0.560422566288,0.240289159948,-0.399100289014,13.379639579,227183.251028,1.33050716685,4.77832445803,3.0834375 +31763757,0.0,0.1,0.5,0.2,0.0,14.0887792272,593.752113648,180.099489887,172.522184524,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,234.848201944,247.823970451,253.463720282,252.730478895,894.0,296.15,77777.0,227757.0,0.693942910593,-1.83015225364,0.210028645833,0.8271640625,101325.0,0.570718037406,0.227954193167,-0.399094337944,13.4029762877,227504.153807,1.34284213363,4.372212659,3.07936631944 +31764078,0.0,0.1,0.5,0.2,0.0,10.2471444325,601.081379981,173.588296229,172.415821429,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,234.799181794,247.903056466,253.334461397,252.625413981,894.0,296.15,77777.0,228078.0,0.693942910593,-1.83015225364,0.218109375,0.829671875,101325.0,0.580957258523,0.215089145295,-0.399088382935,13.426312997,227825.056596,1.3557071815,3.76700426768,3.09515625 +31764399,0.0,0.1,0.5,0.2,0.0,6.4055096378,608.410646315,167.077102571,172.309458334,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,234.750161645,247.982142481,253.205202512,252.520349067,894.0,296.15,77777.0,228399.0,0.693942910593,-1.83015225364,0.226190104167,0.8321796875,101325.0,0.59119647964,0.202224097423,-0.399082427927,13.4496497064,228145.959385,1.36857222937,3.16179587636,3.11094618055 +31764720,0.0,0.1,0.5,0.2,0.0,3.85401515151,601.601993203,158.961461568,172.220238095,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,234.705349003,248.049117588,253.077659314,252.416231371,894.0,296.15,77777.0,228720.0,0.693942910593,-1.83015225364,0.235520833333,0.8324375,101325.0,0.601261837121,0.189137814814,-0.399076471129,13.4729864161,228466.862179,1.38165851198,2.56770567326,3.12534722222 +31765041,0.0,0.1,0.5,0.2,0.0,3.46350568182,571.11232502,148.158371263,172.159732143,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,234.667583937,248.095806922,252.95298989,252.313700266,894.0,296.15,77777.0,229041.0,0.693942910593,-1.83015225364,0.2469453125,0.8289265625,101325.0,0.611035973011,0.17568096402,-0.399070511333,13.4963231264,228787.764981,1.39511536277,1.99223843542,3.137421875 +31765362,0.0,0.1,0.5,0.2,0.0,3.07299621212,540.622656837,137.355280958,172.099226191,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,234.62981887,248.142496256,252.828320466,252.211169162,894.0,296.15,77777.0,229362.0,0.693942910593,-1.83015225364,0.258369791667,0.825415625,101325.0,0.620810108902,0.162224113225,-0.399064551537,13.5196598367,229108.667783,1.40857221357,1.41677119759,3.14949652778 +31765683,0.0,0.1,0.5,0.2,0.0,3.83663446969,489.910876477,123.792619703,172.058327381,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,234.609851049,248.16001275,252.729030331,252.131611055,894.0,296.15,77777.0,229683.0,0.693942910593,-1.83015225364,0.270747395833,0.8190453125,101325.0,0.630092952178,0.148458277536,-0.399058589012,13.5429965475,229429.570592,1.42233804926,1.01322457163,3.14356770833 +31766004,0.0,0.1,0.5,0.2,0.0,5.47061363636,423.949634474,108.148970518,172.032214286,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,234.603304101,248.155530055,252.648878677,252.069376849,894.0,296.15,77777.0,230004.0,0.693942910593,-1.83015225364,0.28384375,0.81051875,101325.0,0.6390053125,0.134459436844,-0.399052624429,13.5663332587,229750.473406,1.43633688995,0.739322997269,3.1240625 +31766325,0.0,0.1,0.5,0.2,0.0,7.10459280303,357.988392472,92.5053213333,172.006101191,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,234.596757153,248.151047359,252.568727022,252.007142643,894.0,296.15,77777.0,230325.0,0.693942910593,-1.83015225364,0.296940104167,0.8019921875,101325.0,0.647917672822,0.120460596152,-0.399046659845,13.5896699699,230071.37622,1.45033573064,0.465421422904,3.10455729167 +31766646,0.0,0.1,0.5,0.2,0.0,8.94543560606,290.786642534,77.2921361895,172.10234747,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,234.63249278,248.087361111,252.536694711,251.980326608,894.0,296.15,75625.4822917,230646.0,0.693942910593,-1.83015225364,0.313666666667,0.786845833333,101325.0,0.650292623605,0.106082248809,-0.399040691593,13.6130066818,230392.279044,1.46471407798,0.379719170097,3.06583333333 +31766967,0.0,0.1,0.5,0.2,0.0,10.8493465909,223.206688958,62.2101900826,172.235898437,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,234.681119435,248.005625,252.519332932,251.964308795,894.0,296.15,72818.0140625,230967.0,0.693942910593,-1.83015225364,0.3315,0.76968125,101325.0,0.650674461723,0.0915881982197,-0.399034722223,13.6363433939,230713.181871,1.47920812857,0.351394759229,3.02125 +31767288,0.0,0.1,0.5,0.2,0.0,12.7532575758,155.626735382,47.1282439757,172.369449404,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,234.729746091,247.923888889,252.501971153,251.948290983,894.0,296.15,70010.5458333,231288.0,0.693942910593,-1.83015225364,0.349333333333,0.752516666667,101325.0,0.651056299841,0.07709414763,-0.399028752853,13.659680106,231034.084698,1.49370217916,0.32307034836,2.97666666667 +31767609,0.0,0.1,0.5,0.2,0.0,13.2280435606,119.075917498,37.7873109418,172.658190104,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,234.808510138,247.793195987,252.516384215,251.947054959,894.0,296.15,63960.0582292,231609.0,0.693942910593,-1.83015225364,0.371458333333,0.728914583333,101325.0,0.641643281499,0.0621655064856,-0.399022778875,13.6830168191,231354.987537,1.50863082031,0.307864125349,2.93208333333 +31767930,0.0,0.1,0.5,0.2,0.0,13.6473295455,83.7301145931,28.6693298719,172.952957589,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,234.888444569,247.660601852,252.53203125,251.946392985,894.0,296.15,57783.628125,231930.0,0.693942910593,-1.83015225364,0.39375,0.7050625,101325.0,0.631849880383,0.0472199880382,-0.399016804718,13.7063535321,231675.890377,1.52357633875,0.293167346527,2.8875 +31768251,0.0,0.1,0.5,0.2,0.0,13.794905303,52.8118870656,20.4266253397,173.24203311,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,234.967119314,247.529450617,252.547814503,251.945450597,894.0,296.15,51607.1980208,232251.0,0.693942910593,-1.83015225364,0.4156875,0.681635416667,101325.0,0.621812460127,0.0322092210878,-0.3990108298,13.7296902453,231996.793218,1.53858710571,0.281888138849,2.84291666667 +31768572,0.0,0.1,0.5,0.2,0.0,12.5040151515,45.3337644788,16.8177377717,173.500974702,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,235.039125132,247.405938272,252.56431891,251.943023661,894.0,296.15,45430.7679167,232572.0,0.693942910593,-1.83015225364,0.43575,0.660458333333,101325.0,0.610483173843,0.016853020887,-0.399004850856,13.7530269593,232317.696071,1.55394330591,0.288701954872,2.79833333333 +31768893,0.0,0.1,0.5,0.2,0.0,11.213125,37.8556418919,13.2088502038,173.759916294,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,235.11113095,247.282425926,252.580823317,251.940596725,894.0,296.15,39254.3378125,232893.0,0.693942910593,-1.83015225364,0.4558125,0.63928125,101325.0,0.599153887559,0.00149682068609,-0.398998871913,13.7763636732,232638.598923,1.56929950611,0.295515770894,2.75375 +31769214,0.0,0.1,0.5,0.2,0.0,9.79125000002,30.8583880309,10.0634748641,173.936156994,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,235.165776378,247.183425926,252.586213942,251.931638884,894.0,296.15,34274.3614583,233214.0,0.693942910593,-1.83015225364,0.472708333333,0.622379166667,101325.0,0.590347328548,-0.0139917420379,-0.398992891269,13.7997003875,232959.501779,1.58478806883,0.312768420473,2.70916666667 +31769535,0.0,0.1,0.5,0.2,0.0,8.13153409092,24.7342905405,7.75974014946,173.962230283,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,235.188898992,247.128935185,252.571424279,251.910822293,894.0,296.15,31466.8932292,233535.0,0.693942910593,-1.83015225364,0.483854166667,0.613239583333,101325.0,0.586121511164,-0.0297206472382,-0.39898690754,13.8230371024,233280.404644,1.60051697403,0.348975794141,2.66458333333 +31769856,0.0,0.1,0.5,0.2,0.0,6.47181818182,18.6101930502,5.45600543479,173.988303571,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,235.212021606,247.074444444,252.556634615,251.890005702,894.0,296.15,28659.425,233856.0,0.693942910593,-1.83015225364,0.495,0.6041,101325.0,0.58189569378,-0.0454495524385,-0.39898092381,13.8463738172,233601.307509,1.61624587924,0.385183167809,2.62 +31770177,0.0,0.1,0.5,0.2,0.0,4.93725378788,13.5812403475,3.74988620924,173.881948785,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,235.194116011,247.05,252.526899403,251.860745425,894.0,296.15,27400.0,234177.0,0.693942910593,-1.83015225364,0.498540364583,0.6,101325.0,0.581263592575,-0.0613644699269,-0.398974937441,13.8697105326,233922.21038,1.63216079673,0.438149501033,2.57541666667 +31770498,0.0,0.1,0.5,0.2,0.0,3.50450757576,9.44325289574,2.52996263587,173.667855903,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,235.142831533,247.05,252.485005099,251.824615709,894.0,296.15,27400.0,234498.0,0.693942910593,-1.83015225364,0.495893229167,0.6,101325.0,0.583555192669,-0.0774307194463,-0.398968948926,13.8930472484,234243.113258,1.64822704624,0.504750242031,2.53083333333 +31770819,0.0,0.1,0.5,0.2,0.0,2.07176136364,5.30526544401,1.3100390625,173.453763021,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,235.091547055,247.05,252.443110796,251.788485993,894.0,296.15,27400.0,234819.0,0.693942910593,-1.83015225364,0.49324609375,0.6,101325.0,0.585846792763,-0.0934969689658,-0.39896296041,13.9163839642,234564.016136,1.66429329576,0.571350983029,2.48625 +31771140,0.0,0.1,0.5,0.2,0.0,1.25416666667,3.12480694981,0.734952445649,173.182957176,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,235.008375369,247.05,252.399992716,251.751382948,894.0,296.15,27400.0,235140.0,0.693942910593,-1.83015225364,0.483723958333,0.6,101325.0,0.588298167293,-0.109790787243,-0.398956968316,13.9397206807,234884.919023,1.68058711404,0.648577866821,2.44166666667 +31771461,0.0,0.1,0.5,0.2,0.0,0.644185606062,1.60501447876,0.377498301629,172.893010706,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,234.91444175,247.05,252.356461611,251.713951405,894.0,296.15,27400.0,235461.0,0.693942910593,-1.83015225364,0.471881510417,0.6,101325.0,0.590803465695,-0.126161409975,-0.398950975015,13.9630573974,235205.821913,1.69695773677,0.729391073806,2.39708333333 +31771782,0.0,0.1,0.5,0.2,0.0,0.0342045454546,0.085222007722,0.0200441576086,172.603064237,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,234.820508131,247.05,252.312930507,251.676519862,894.0,296.15,27400.0,235782.0,0.693942910593,-1.83015225364,0.4600390625,0.6,101325.0,0.593308764097,-0.142532032708,-0.398944981714,13.9863941142,235526.724803,1.71332835951,0.810204280791,2.3525 +31772103,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.298505498,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,234.719496274,247.05,252.267633668,251.637727667,894.0,296.15,27400.0,236103.0,0.693942910593,-1.83015225364,0.446618489583,0.6,101325.0,0.596075105733,-0.159160858035,-0.398938983896,14.0097308317,235847.627706,1.72995718483,0.887547960549,2.30791666667 +31772424,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.993078704,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,234.618063929,247.05,252.222231935,251.598854641,894.0,296.15,27400.0,236424.0,0.693942910593,-1.83015225364,0.433104166667,0.6,101325.0,0.598856954887,-0.175805022131,-0.398932985809,14.0330675494,236168.530608,1.74660134893,0.964685529779,2.26333333333 +31772745,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.693945313,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,234.519978883,247.05,252.176535184,251.559759144,894.0,296.15,27400.0,236745.0,0.693942910593,-1.83015225364,0.42041015625,0.6,101325.0,0.601686383929,-0.192483473191,-0.398926987052,14.0564042671,236489.433513,1.76327979999,1.03880014459,2.21875 +31773066,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.433411458,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,234.442423939,247.05,252.129028992,251.519299166,894.0,296.15,27400.0,237066.0,0.693942910593,-1.83015225364,0.412747395833,0.6,101325.0,0.604807636278,-0.209372217639,-0.39892098418,14.0797409857,236810.336428,1.78016854444,1.09437397233,2.17416666667 +31773387,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.172877604,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,234.364868995,247.05,252.0815228,251.478839188,894.0,296.15,27400.0,237387.0,0.693942910593,-1.83015225364,0.405084635417,0.6,101325.0,0.607928888628,-0.226260962087,-0.398914981309,14.1030777043,237131.239344,1.79705728889,1.14994780006,2.12958333333 +31773708,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,170.92125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,234.294605205,247.05,252.032639205,251.437209615,894.0,296.15,27400.0,237708.0,0.693942910593,-1.83015225364,0.399390625,0.6,101325.0,0.61117224026,-0.243222785198,-0.398908976827,14.1264144232,237452.142263,1.814019112,1.17611429406,2.09925 +31774029,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,170.6871875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,234.238721192,247.05,251.981039063,251.393273339,894.0,296.15,27400.0,238029.0,0.693942910593,-1.83015225364,0.397579427083,0.6,101325.0,0.614656398809,-0.260328735672,-0.398902969171,14.1497511426,237773.045192,1.83112506247,1.14428299097,2.09702083333 +31774350,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,170.453125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,234.182837179,247.05,251.929438921,251.349337064,894.0,296.15,27400.0,238350.0,0.693942910593,-1.83015225364,0.395768229167,0.6,101325.0,0.618140557359,-0.277434686147,-0.398896961515,14.1730878621,238093.94812,1.84823101294,1.11245168788,2.09479166667 +31774671,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,170.220381944,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,234.127550642,247.05,251.875922586,251.303652408,894.0,296.15,27400.0,238671.0,0.693942910593,-1.83015225364,0.394501302083,0.6,101325.0,0.621731128247,-0.294642446981,-0.39889095131,14.1964245821,238414.851056,1.86543877377,1.03619559523,2.1234375 +31774992,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.988796296,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,234.072788207,247.05,251.820725379,251.256434084,894.0,296.15,27400.0,238992.0,0.693942910593,-1.83015225364,0.393711805555,0.6,101325.0,0.62541504329,-0.311939515147,-0.39888493887,14.2197613025,238735.753997,1.88273584194,0.92097038893,2.17916666667 +31775313,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.757210648,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,234.018025772,247.05,251.765528173,251.209215761,894.0,296.15,27400.0,239313.0,0.693942910593,-1.83015225364,0.392922309027,0.6,101325.0,0.629098958333,-0.329236583313,-0.398878926429,14.243098023,239056.656938,1.90003291011,0.805745182633,2.23489583333 +31775634,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.565347222,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,233.967342988,247.05,251.710257102,251.161794113,894.0,296.15,27400.0,239634.0,0.693942910593,-1.83015225364,0.393080729166,0.6,101325.0,0.632770211039,-0.346654656545,-0.398872910501,14.266434744,239377.559888,1.91745098334,0.693069131847,2.303625 +31775955,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.388252315,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,233.918176996,247.05,251.65495857,251.11429687,894.0,296.15,27400.0,239955.0,0.693942910593,-1.83015225364,0.393591579861,0.6,101325.0,0.636436755952,-0.364117718839,-0.398866893276,14.2897714654,239698.462841,1.93491404564,0.581340844007,2.3771875 +31776276,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.211157408,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,233.869011004,247.05,251.599660038,251.066799628,894.0,296.15,27400.0,240276.0,0.693942910593,-1.83015225364,0.394102430556,0.6,101325.0,0.640103300866,-0.381580781134,-0.398860876051,14.3131081867,240019.365795,1.95237710793,0.469612556167,2.45075 +31776597,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.132604167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,233.829132018,247.05,251.547502131,251.0218578,894.0,296.15,27400.0,240597.0,0.693942910593,-1.83015225364,0.39607421875,0.6,101325.0,0.643552881494,-0.399174751196,-0.3988548544,14.3364449089,240340.26876,1.96997107799,0.44151404657,2.5036875 +31776918,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.062013889,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,233.790003497,247.05,251.495598011,250.977122469,894.0,296.15,27400.0,240918.0,0.693942910593,-1.83015225364,0.3981640625,0.6,101325.0,0.646984929654,-0.416779299664,-0.398848832392,14.3597816311,240661.171727,1.98757562646,0.420173498852,2.55495833333 +31777239,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.011104167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,233.755603386,247.05,251.445859835,250.934238738,894.0,296.15,27400.0,241239.0,0.693942910593,-1.83015225364,0.400880208333,0.600677083333,101325.0,0.650269385027,-0.434398088021,-0.398842809802,14.3831183535,240982.074694,2.00519441481,0.417067520253,2.60121875 +31777560,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.1025,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,233.755393324,247.05,251.411783088,250.90474349,894.0,296.15,27400.0,241560.0,0.693942910593,-1.83015225364,0.408125,0.60625,101325.0,0.652486631016,-0.452119841733,-0.39883678301,14.4064550767,241302.977674,2.02291616853,0.545811502985,2.61125 +31777881,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.193895833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,233.755183262,247.05,251.377706342,250.875248242,894.0,296.15,27400.0,241881.0,0.693942910593,-1.83015225364,0.415369791667,0.611822916667,101325.0,0.654703877005,-0.469841595446,-0.398830756218,14.4297917999,241623.880653,2.04063792224,0.674555485717,2.62128125 +31778202,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.323541667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,233.769466914,247.05,251.351994179,250.852966709,894.0,296.15,27400.0,242202.0,0.693942910593,-1.83015225364,0.424149305556,0.619520833333,101325.0,0.656360516934,-0.487592807371,-0.398824727906,14.4531285234,241944.783636,2.05838913416,0.83225109246,2.6249375 +31778523,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.5353125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,233.814869422,247.05,251.344241268,250.846173445,894.0,296.15,27400.0,242523.0,0.693942910593,-1.83015225364,0.436223958333,0.63178125,101325.0,0.656813502674,-0.505407267811,-0.39881869633,14.4764652475,242265.686628,2.0762035946,1.052107539,2.61490625 +31778844,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.747083333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,233.860271929,247.05,251.336488358,250.839380182,894.0,296.15,27400.0,242844.0,0.693942910593,-1.83015225364,0.448298611111,0.644041666667,101325.0,0.657266488413,-0.523221728251,-0.398812664755,14.4998019717,242586.58962,2.09401805505,1.27196398553,2.604875 +31779165,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.972604167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,233.914622711,247.05,251.33948606,250.841921234,894.0,296.15,27400.0,243165.0,0.693942910593,-1.83015225364,0.459991319445,0.656302083333,101325.0,0.657033199643,-0.541070867732,-0.398806630721,14.5231386963,242907.492619,2.11186719453,1.49182043206,2.59484375 +31779486,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,170.211125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,233.97743368,247.05,251.352647978,250.853287458,894.0,296.15,27400.0,243486.0,0.693942910593,-1.83015225364,0.471322916667,0.6685625,101325.0,0.656151069519,-0.55895279467,-0.398800594363,14.5464754213,243228.395623,2.12974912147,1.7116768786,2.5848125 +31779807,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,170.449645833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,234.040244649,247.05,251.365809896,250.864653681,894.0,296.15,27400.0,243807.0,0.693942910593,-1.83015225364,0.482654513889,0.680822916667,101325.0,0.655268939394,-0.576834721608,-0.398794558004,14.5698121463,243549.298628,2.1476310484,1.93153332513,2.57478125 +31780128,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,170.640666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,234.093762916,247.05,251.389985294,250.885648511,894.0,296.15,27400.0,244128.0,0.693942910593,-1.83015225364,0.4895,0.688333333333,101325.0,0.653743315508,-0.594745661994,-0.398788518249,14.593148872,243870.201641,2.16554198879,2.08667437681,2.579 +31780449,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,170.8123125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,234.143490738,247.05,251.418653033,250.910570799,894.0,296.15,27400.0,244449.0,0.693942910593,-1.83015225364,0.494515625,0.69390625,101325.0,0.651955213904,-0.612668436811,-0.398782477108,14.616485598,244191.104659,2.18346476361,2.21541835954,2.58903125 +31780770,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,170.983958333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,234.193218561,247.05,251.447320772,250.935493087,894.0,296.15,27400.0,244770.0,0.693942910593,-1.83015225364,0.49953125,0.699479166667,101325.0,0.650167112299,-0.630591211629,-0.398776435967,14.639822324,244512.007677,2.20138753843,2.34416234227,2.5990625 +31781091,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.097505208,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,234.234925085,247.018860796,251.52322549,250.999130304,894.0,296.15,27400.0,245091.0,0.693942910593,-1.83015225364,0.494947916667,0.7,101325.0,0.643986322654,-0.64852491481,-0.39877039049,14.6631590508,244832.910706,2.21932124161,2.39402467691,2.684875 +31781412,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.2050625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,234.275804671,246.984511364,251.604,251.066758751,894.0,296.15,27400.0,245412.0,0.693942910593,-1.83015225364,0.489375,0.7,101325.0,0.637352678571,-0.666459744626,-0.398764344567,14.6864957777,245153.813736,2.23725607142,2.43575488289,2.7785 +31781733,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.312046875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,234.317586246,246.945974432,251.690112745,251.138603926,894.0,296.15,27400.0,245733.0,0.693942910593,-1.83015225364,0.483114583333,0.7,101325.0,0.630174522934,-0.684392525189,-0.398758298152,14.7098325047,245474.716767,2.25518885199,2.47614190379,2.880375 +31782054,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.41403125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,234.367239727,246.870892045,251.822813725,251.247249644,894.0,296.15,27400.0,246054.0,0.693942910593,-1.83015225364,0.470854166667,0.7,101325.0,0.618244266456,-0.702307421356,-0.398752247446,14.7331692325,245795.61981,2.27310374815,2.50480658221,3.05425 +31782375,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.516015625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,234.416893208,246.795809659,251.955514706,251.355895362,894.0,296.15,27400.0,246375.0,0.693942910593,-1.83015225364,0.45859375,0.7,101325.0,0.606314009979,-0.720222317524,-0.398746196741,14.7565059604,246116.522853,2.29101864432,2.53347126063,3.228125 +31782696,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.613333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,234.464528947,246.721090909,252.085627451,251.461900565,894.0,296.15,27400.0,246696.0,0.693942910593,-1.83015225364,0.446333333333,0.7,101325.0,0.594492997199,-0.738120328276,-0.398740144605,14.7798426885,246437.4259,2.30891665507,2.56231428727,3.402 +31783017,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.699713542,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,234.507435606,246.647224432,252.20967402,251.561717062,894.0,296.15,27400.0,247017.0,0.693942910593,-1.83015225364,0.434072916667,0.7,101325.0,0.582928024334,-0.755978763836,-0.398734089118,14.8031794172,246758.328956,2.32677509063,2.59157531757,3.575875 +31783338,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.78609375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,234.550342264,246.573357954,252.333720588,251.661533559,894.0,296.15,27400.0,247338.0,0.693942910593,-1.83015225364,0.4218125,0.7,101325.0,0.57136305147,-0.773837199396,-0.398728033631,14.826516146,247079.232012,2.34463352619,2.62083634787,3.74975 +31783659,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.859776042,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,234.581281169,246.520872159,252.423473039,251.733239162,894.0,296.15,27400.0,247659.0,0.693942910593,-1.83015225364,0.412864583333,0.7,101325.0,0.562783504026,-0.791646435244,-0.398721975776,14.8498528752,247400.135074,2.36244276203,2.65715986657,3.883875 +31783980,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.920520833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,234.600026513,246.490170454,252.478284314,251.776303476,894.0,296.15,27400.0,247980.0,0.693942910593,-1.83015225364,0.407291666667,0.7,101325.0,0.557245710784,-0.809405543084,-0.398715915507,14.8731896049,247721.038142,2.38020186987,2.70067912819,3.9775 +31784301,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.981265625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,234.618771857,246.45946875,252.533095588,251.81936779,894.0,296.15,27400.0,248301.0,0.693942910593,-1.83015225364,0.40171875,0.7,101325.0,0.551707917542,-0.827164650924,-0.398709855238,14.8965263346,248041.941211,2.39796097771,2.7441983898,4.071125 +31784622,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.016059028,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,234.628874712,246.466840706,252.55,251.833237939,894.0,296.15,27400.0,248622.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.55036765553,-0.844819330577,-0.398703791663,14.919863065,248362.844288,2.41561565737,2.80253731964,4.09113541667 +31784943,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.039279514,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,234.635123486,246.491191457,252.55,251.834089069,894.0,296.15,27400.0,248943.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.550899265553,-0.862427440905,-0.398697726613,14.9431997956,248683.74737,2.4332237677,2.86748502044,4.07831770833 +31785264,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.0625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,234.641372259,246.515542208,252.55,251.834940199,894.0,296.15,27400.0,249264.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.551430875576,-0.880035551232,-0.398691661563,14.9665365263,249004.650451,2.45083187802,2.93243272123,4.0655 +31785585,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.059881366,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,234.654264876,246.565821327,252.55,251.838467683,894.0,296.15,27400.0,249585.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.553634288595,-0.897452874173,-0.398685592269,14.9898732577,249325.553544,2.46824920097,3.00753735046,4.00815104167 +31785906,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.053998843,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,234.667996715,246.619375609,252.55,251.842333234,894.0,296.15,27400.0,249906.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.556048876728,-0.914846097654,-0.398679522438,15.0132099892,249646.456639,2.48564242445,3.08392496012,3.94517708333 +31786227,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.047387153,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,234.682040467,246.674153511,252.55,251.846360548,894.0,296.15,27400.0,250227.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.558564559332,-0.932214441492,-0.398673452204,15.0365467208,249967.359734,2.50301076829,3.16025904763,3.881640625 +31786548,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.032835648,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,234.699480609,246.742255276,252.55,251.8521493,894.0,296.15,27400.0,250548.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.562181048387,-0.949311873654,-0.398667377593,15.0598834533,250288.262841,2.52010820045,3.23601033829,3.81197916667 +31786869,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.018284143,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,234.716920751,246.810357042,252.55,251.857938052,894.0,296.15,27400.0,250869.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.565797537443,-0.966409305817,-0.398661302982,15.0832201858,250609.165948,2.53720563262,3.31176162896,3.74231770833 +31787190,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.00703125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,234.734346283,246.878428369,252.55,251.863960152,894.0,296.15,27400.0,251190.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.569560051844,-0.983394453052,-0.398655227031,15.1065569186,250930.069058,2.55419077985,3.38394865416,3.68296875 +31787511,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.004244792,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,234.751734318,246.946421571,252.55,251.87058118,894.0,296.15,27400.0,251511.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.573697364632,-1.0000914023,-0.398649147639,15.129893652,251250.972178,2.5708877291,3.44698739797,3.65008854167 +31787832,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.001458333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,234.769122352,247.014414773,252.55,251.877202207,894.0,296.15,27400.0,251832.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.577834677419,-1.01678835156,-0.398643068247,15.1532303855,251571.875299,2.58758467836,3.51002614179,3.61720833333 +31788153,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.085,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,234.792233309,247.104889509,252.55,251.88606848,894.0,296.15,27400.0,252153.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.583376008065,-1.03322863247,-0.398636986577,15.1765671194,251892.778425,2.60402495927,3.55435902779,3.614609375 +31788474,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.263333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,234.82162826,247.220049851,252.55,251.897400119,894.0,296.15,27400.0,252474.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.590459005376,-1.04938708147,-0.398630902405,15.1999038537,252213.681558,2.62018340827,3.57815214832,3.64526041667 +31788795,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.441666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,234.85102321,247.335210193,252.55,251.908731759,894.0,296.15,27400.0,252795.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.597542002688,-1.06554553047,-0.398624818234,15.2232405881,252534.584691,2.63634185727,3.60194526885,3.67591145833 +31789116,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.713333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,234.888311793,247.481602678,252.55,251.922891918,894.0,296.15,27400.0,253116.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.606395967742,-1.08121744703,-0.398618730846,15.2465773231,252855.487832,2.65201377383,3.59295063544,3.7303125 +31789437,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,173.03037037,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,234.929437558,247.643177455,252.55,251.938427052,894.0,296.15,27400.0,253437.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.616110819893,-1.09665285477,-0.398612641894,15.2699140584,253176.390977,2.66744918156,3.56801751053,3.79625868055 +31789758,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,173.347407408,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,234.970563324,247.804752232,252.55,251.953962186,894.0,296.15,27400.0,253758.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.625825672043,-1.11208826251,-0.398606552943,15.2932507937,253497.294123,2.6828845893,3.54308438563,3.86220486111 +31790079,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,173.526666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,235.002699734,247.931313616,252.55,251.966494083,894.0,296.15,27400.0,254079.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.633665524194,-1.12667926299,-0.398600459838,15.3165875298,253818.197279,2.69747558978,3.48753618926,3.924921875 +31790400,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,173.685185185,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,235.033482909,248.052604166,252.55,251.978573881,894.0,296.15,27400.0,254400.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.64122311828,-1.14114314839,-0.398594366107,15.339924266,254139.100438,2.71193947519,3.42737927246,3.98715277778 +31790721,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,173.813888889,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,235.062157829,248.165587425,252.55,251.98992731,894.0,296.15,27400.0,254721.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.648326276882,-1.15552169383,-0.398588272064,15.3632610023,254460.003597,2.72631802063,3.36580133353,4.04658854167 +31791042,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,173.516666666,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,235.060714833,248.159895089,252.55,251.990904052,894.0,296.15,27400.0,255042.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.6489375,-1.16868109688,-0.398582173554,15.3865977395,254780.906769,2.73947742368,3.2839230784,4.06609375 +31791363,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,173.219444444,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,235.059271837,248.154202753,252.55,251.991880795,894.0,296.15,27400.0,255363.0,0.693942910593,-1.83015225364,0.4,0.7,101325.0,0.649548723118,-1.18184049994,-0.398576075044,15.4099344767,255101.80994,2.75263682674,3.20204482327,4.08559895833 +31791684,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.836666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,235.030222334,248.100125,252.531479167,251.97195894,894.0,296.15,27334.375,255684.0,0.693942910593,-1.83015225364,0.4004375,0.699854166667,101325.0,0.648155208333,-1.19454465136,-0.398569975284,15.4332712141,255422.713115,2.76534097816,3.0985192212,4.07666666667 +31792005,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.2125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,234.923283044,247.90953125,252.460703125,251.893073188,894.0,296.15,27083.59375,256005.0,0.693942910593,-1.83015225364,0.402109375,0.699296875,101325.0,0.64110546875,-1.20596434282,-0.398563871995,15.4566079522,255743.616299,2.77676066962,2.93391717601,3.9875 +31792326,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.588333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,234.816343754,247.7189375,252.389927083,251.814187435,894.0,296.15,26832.8125,256326.0,0.693942910593,-1.83015225364,0.40378125,0.698739583333,101325.0,0.634055729167,-1.21738403427,-0.398557768706,15.4799446903,256064.519484,2.78818036107,2.76931513081,3.89833333333 +31792647,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,170.964166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,234.656368346,247.47015625,252.275765625,251.691598443,894.0,296.15,26444.21875,256647.0,0.693942910593,-1.83015225364,0.405963541667,0.696651041667,101325.0,0.625398177083,-1.22776128753,-0.398551663229,15.5032814288,256385.422674,2.79855761433,2.56279842764,3.76833333333 +31792968,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,170.34,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,234.433615493,247.1525,252.11025,251.517279084,894.0,296.15,25892.5,256968.0,0.693942910593,-1.83015225364,0.40875,0.69275,101325.0,0.6148375,-1.23690463435,-0.398545555162,15.5266181678,256706.325871,2.80770096115,2.30666845586,3.59 +31793289,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.715833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,234.21086264,246.83484375,251.944734375,251.342959726,894.0,296.15,25340.78125,257289.0,0.693942910593,-1.83015225364,0.411536458333,0.688848958333,101325.0,0.604276822917,-1.24604798117,-0.398539447094,15.5499549069,257027.229069,2.81684430797,2.05053848407,3.41166666667 +31793610,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.091666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,233.959947112,246.4909375,251.763177083,251.153032699,894.0,296.15,24789.0625,257610.0,0.693942910593,-1.83015225364,0.412864583333,0.680572916667,101325.0,0.593059895833,-1.25331635268,-0.398533335901,15.5732916466,257348.132274,2.82411267948,1.79458645607,3.23333333333 +31793931,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,168.4675,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,233.6941456,246.13315625,251.573140625,250.954855905,894.0,296.15,24237.34375,257931.0,0.693942910593,-1.83015225364,0.413421875,0.669984375,101325.0,0.58149609375,-1.25959366582,-0.398527223056,15.5966283865,257669.035484,2.83038999262,1.53872848406,3.055 +31794252,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,167.843333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,233.428344088,245.775375,251.383104167,250.75667911,894.0,296.15,23685.625,258252.0,0.693942910593,-1.83015225364,0.413979166667,0.659395833333,101325.0,0.569932291667,-1.26587097895,-0.39852111021,15.6199651265,257989.938694,2.83666730575,1.28287051206,2.87666666667 +31794573,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,167.219166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,233.188101062,245.45740625,251.231932292,250.59812487,894.0,296.15,23389.84375,258573.0,0.693942910593,-1.83015225364,0.409796875,0.640276041667,101325.0,0.559648177083,-1.26926794709,-0.398514993302,15.6433018673,258310.841915,2.84006427389,1.10531670155,2.77416666667 +31794894,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,166.595,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,232.952351834,245.1464375,251.08759375,250.446537233,894.0,296.15,23139.0625,258894.0,0.693942910593,-1.83015225364,0.40478125,0.61965625,101325.0,0.5495890625,-1.27215848094,-0.398508875679,15.6666386083,258631.745139,2.84295480774,0.941530655702,2.685 +31795215,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,165.970833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,232.717482062,244.837382812,250.945416667,250.297131343,894.0,296.15,23042.9088542,259215.0,0.693942910593,-1.83015225364,0.399401041667,0.59875,101325.0,0.539602864583,-1.27487766099,-0.398502757832,15.6899753493,258952.648362,2.84567398778,0.783075602856,2.60130208333 +31795536,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,165.346666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,232.500553166,244.567375,250.847333333,250.192233077,894.0,296.15,26101.1583333,259536.0,0.693942910593,-1.83015225364,0.386583333333,0.572,101325.0,0.531104166667,-1.27410122331,-0.398496635431,15.7133120911,259273.551598,2.8448975501,0.733372807277,2.62916666667 +31795857,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,164.7225,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,232.28362427,244.297367188,250.74925,250.087334811,894.0,296.15,29159.4078125,259857.0,0.693942910593,-1.83015225364,0.373765625,0.54525,101325.0,0.52260546875,-1.27332478563,-0.39849051303,15.736648833,259594.454834,2.84412111243,0.683670011699,2.65703125 +31796178,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,164.098333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,232.059373903,244.026230903,250.651166667,249.982581629,894.0,296.15,33109.4085417,260178.0,0.693942910593,-1.83015225364,0.35959375,0.5185,101325.0,0.514138368056,-1.27167624441,-0.398484389468,15.7599855751,259915.358073,2.84247257121,0.649991520315,2.69663194444 +31796499,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,163.474166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,231.812314334,243.751578993,250.553083333,249.87828044,894.0,296.15,39837.5573958,260499.0,0.693942910593,-1.83015225364,0.341203125,0.49175,101325.0,0.505769704861,-1.26731076522,-0.39847826229,15.7833223179,260236.261322,2.83810709202,0.666234899692,2.77279513889 +31796820,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,162.85,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,231.565254766,243.476927084,250.455,249.773979252,894.0,296.15,46565.70625,260820.0,0.693942910593,-1.83015225364,0.3228125,0.465,101325.0,0.497401041666,-1.26294528603,-0.398472135112,15.8066590607,260557.164571,2.83374161283,0.682478279069,2.84895833334 +31797141,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,162.225833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,231.311268506,243.212230035,250.356916667,249.670092434,894.0,296.15,53293.8551042,261141.0,0.693942910593,-1.83015225364,0.303442708333,0.43825,101325.0,0.489211892361,-1.25717969806,-0.398466005835,15.8299958039,260878.067826,2.82797602486,0.721792729496,2.92185763889 +31797462,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,161.601666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,231.048439661,242.96024132,250.258833333,249.566734602,894.0,296.15,60022.0039583,261462.0,0.693942910593,-1.83015225364,0.282822916667,0.4115,101325.0,0.481251909722,-1.24962673719,-0.39845987388,15.8533325477,261198.971088,2.82042306399,0.79055961105,2.99059027778 +31797783,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,160.9775,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,230.785610816,242.708252604,250.16075,249.463376769,894.0,296.15,66750.1528125,261783.0,0.693942910593,-1.83015225364,0.262203125,0.38475,101325.0,0.473291927083,-1.24207377632,-0.398453741925,15.8766692914,261519.87435,2.81287010312,0.859326492604,3.05932291667 +31798104,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,160.353333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,230.524133424,242.488020833,250.062666667,249.360818601,894.0,296.15,71146.0291667,262104.0,0.693942910593,-1.83015225364,0.242291666667,0.358,101325.0,0.46576875,-1.23285686529,-0.398447606934,15.9000060358,261840.77762,2.80365319209,0.952942499385,3.08791666667 +31798425,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,159.729166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,230.26343113,242.286002604,249.964583333,249.258719063,894.0,296.15,74204.2786458,262425.0,0.693942910593,-1.83015225364,0.222786458333,0.33125,101325.0,0.45849609375,-1.22268562992,-0.398441470202,15.9233427805,262161.680895,2.79348195672,1.06081021034,3.09348958333 +31798746,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,159.105,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,230.002728836,242.083984375,249.8665,249.156619525,894.0,296.15,77262.528125,262746.0,0.693942910593,-1.83015225364,0.20328125,0.3045,101325.0,0.4512234375,-1.21251439455,-0.398435333469,15.9466795252,262482.58417,2.78331072134,1.16867792129,3.0990625 +31799067,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,158.3603125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,229.732750093,241.916081682,249.768416667,249.057346591,894.0,296.15,77777.0,263067.0,0.693942910593,-1.83015225364,0.183776041667,0.2756640625,101325.0,0.445970579268,-1.20064584028,-0.398429192765,15.9700162706,262803.487455,2.77144216707,1.35261449466,3.06291666667 +31799388,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,157.59125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,229.460895215,241.75507876,249.670333333,248.958645329,894.0,296.15,77777.0,263388.0,0.693942910593,-1.83015225364,0.164270833333,0.24640625,101325.0,0.441126219512,-1.18843400804,-0.398423051256,15.9933530163,263124.390743,2.75923033483,1.55193578176,3.01833333333 +31799709,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,156.8178125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,229.18804562,241.594358105,249.57225,248.860043379,894.0,296.15,77777.0,263709.0,0.693942910593,-1.83015225364,0.144734375,0.2171015625,101325.0,0.436357977642,-1.17617888042,-0.398416909614,16.0166897619,263445.294031,2.74697520721,1.75349917054,2.97375 +31800030,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,155.892708333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,228.8807125,241.44342268,249.474166667,248.764884217,894.0,296.15,77777.0,264030.0,0.693942910593,-1.83015225364,0.124114583333,0.186171875,101325.0,0.43422848916,-1.16242284675,-0.39841076333,16.0400265085,263766.197332,2.73321917354,2.03278875057,2.92916666667 +31800351,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,154.967604167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,228.57337938,241.292487254,249.376083333,248.669725056,894.0,296.15,77777.0,264351.0,0.693942910593,-1.83015225364,0.103494791667,0.1552421875,101325.0,0.432099000678,-1.14866681308,-0.398404617045,16.0633632551,264087.100633,2.71946313987,2.3120783306,2.88458333333 +31800672,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,154.0525,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,228.263512944,241.142535569,249.278,248.574791145,894.0,296.15,77777.0,264672.0,0.693942910593,-1.83015225364,0.083375,0.1250625,101325.0,0.430151626017,-1.13465206668,-0.398398469689,16.0867000019,264408.003936,2.70544839347,2.58481581533,2.84 +31800993,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,153.171979167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,227.944885455,240.995985984,249.179916667,248.480636225,894.0,296.15,77777.0,264993.0,0.693942910593,-1.83015225364,0.064984375,0.0974765625,101325.0,0.428834061653,-1.1197426054,-0.398392318628,16.1100367494,264728.90725,2.69053893219,2.83489397049,2.79541666667 +31801314,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,152.291458333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,227.626257967,240.849436399,249.081833333,248.386481306,894.0,296.15,77777.0,265314.0,0.693942910593,-1.83015225364,0.04659375,0.069890625,101325.0,0.42751649729,-1.10483314413,-0.398386167568,16.133373497,265049.810564,2.67562947092,3.08497212566,2.75083333333 +31801635,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,151.5140625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,227.323199493,240.702341844,248.98375,248.291770789,894.0,296.15,77777.0,265635.0,0.693942910593,-1.83015225364,0.030546875,0.0458203125,101325.0,0.425740091463,-1.0895626296,-0.398380014499,16.1567102449,265370.713883,2.66035895639,3.27684839841,2.70625 +31801956,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,150.87875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,227.041591663,240.554496443,248.885666667,248.196294783,894.0,296.15,77777.0,265956.0,0.693942910593,-1.83015225364,0.0177291666667,0.02659375,101325.0,0.423331504065,-1.07379466394,-0.398373858663,16.1800469934,265691.61721,2.64459099073,3.38853541095,2.66166666667 +31802277,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,150.2434375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,226.759983832,240.406651042,248.787583333,248.100818776,894.0,296.15,77777.0,266277.0,0.693942910593,-1.83015225364,0.00491145833333,0.0073671875,101325.0,0.420922916667,-1.05802669829,-0.398367702827,16.2033837418,266012.520537,2.62882302508,3.50022242348,2.61708333333 +31802598,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,149.850039063,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,226.631560324,240.258449613,248.75378125,248.062826917,894.0,296.15,77777.0,266598.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.415811137779,-1.04186441836,-0.398361544046,16.2267204909,266333.423872,2.61266074515,3.53186125984,2.5725 +31802919,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,149.606920573,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,226.598296775,240.110027017,248.759911458,248.060544908,894.0,296.15,77777.0,266919.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.409020103572,-1.02545718564,-0.398355383435,16.2500572403,266654.327212,2.59625351243,3.5137731989,2.52791666667 +31803240,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,149.363802083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,226.565033225,239.96160442,248.766041667,248.058262898,894.0,296.15,77777.0,267240.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.402229069365,-1.00904995292,-0.398349222824,16.2733939897,266975.230551,2.57984627971,3.49568513795,2.48333333333 +31803561,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,149.375566406,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,226.632315067,239.816339226,248.881828125,248.155083216,894.0,296.15,77777.0,267561.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.392257930073,-0.992255570972,-0.398343058331,16.2967307398,267296.133902,2.56305189776,3.4531328608,2.43875 +31803882,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,149.445924479,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,226.722710793,239.671799872,249.022822917,248.274685679,894.0,296.15,77777.0,267882.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.38155573214,-0.975372189199,-0.398336892945,16.3200674902,267617.037254,2.54616851599,3.40495662591,2.39416666667 +31804203,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,149.517923177,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,226.813322233,239.527296166,249.164046875,248.394489838,894.0,296.15,77777.0,268203.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.370851944949,-0.958485503554,-0.398330727514,16.3434042406,267937.940607,2.52928183035,3.35675551582,2.34958333333 +31804524,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,149.763828125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,226.926799383,239.38657112,249.3295625,248.535673764,894.0,296.15,77777.0,268524.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.359979696419,-0.941248607368,-0.398324557353,16.3667409919,268258.843973,2.51204493416,3.30591763477,2.305 +31804845,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,150.009733073,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,227.040276533,239.245846074,249.495078125,248.676857689,894.0,296.15,77777.0,268845.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.34910744789,-0.924011711182,-0.398318387193,16.3900777432,268579.747339,2.49480803798,3.25507975373,2.26041666667 +31805166,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,150.263372396,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,227.137858418,239.105891106,249.642947917,248.802337478,894.0,296.15,77777.0,269166.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.338969436517,-0.906721396854,-0.39831221605,16.4134144947,268900.650708,2.47751772365,3.2093337175,2.21583333333 +31805487,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,150.546894531,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,227.17402678,238.968911435,249.722640625,248.867142193,894.0,296.15,77777.0,269487.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.331668250519,-0.889224694251,-0.398306041115,16.436751247,269221.554087,2.46002102105,3.18326071808,2.17125 +31805808,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,150.830416667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,227.210195143,238.831931765,249.802333333,248.931946907,894.0,296.15,77777.0,269808.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.324367064522,-0.871727991647,-0.39829986618,16.4600879992,269542.457465,2.44252431844,3.15718771866,2.12666666667 +31806129,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,151.150891927,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,227.258505126,238.850670362,249.85,248.977201557,894.0,296.15,77777.0,270129.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.324999180928,-0.854156237678,-0.398293689327,16.4834247519,269863.360849,2.42495256447,3.13966545894,2.12757486979 +31806450,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,151.526367188,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,227.324886358,239.10117568,249.85,248.993358433,894.0,296.15,77777.0,270450.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.337439003237,-0.836472779351,-0.398287509618,16.5067615051,270184.264241,2.40726910614,3.13486988156,2.19619140625 +31806771,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,151.901842448,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,227.391267591,239.351680998,249.85,249.00951531,894.0,296.15,77777.0,270771.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.349878825547,-0.818789321024,-0.398281329908,16.5300982583,270505.167633,2.38958564782,3.13007430417,2.26480794271 +31807092,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,152.344817708,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,227.530278249,239.880679462,249.85,249.041181828,894.0,296.15,77777.0,271092.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.374276711378,-0.801028999422,-0.398275147344,16.5534350121,270826.071033,2.37182532621,3.12608699959,2.4230078125 +31807413,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,152.833144531,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,227.718086802,240.596790509,249.85,249.083268885,894.0,296.15,77777.0,271413.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.406708921138,-0.783217035308,-0.398268962861,16.5767717663,271146.974438,2.3540133621,3.12264275329,2.64139648437 +31807734,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,153.321471354,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,227.905895354,241.312901555,249.85,249.125355942,894.0,296.15,77777.0,271734.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.439141130898,-0.765405071193,-0.398262778378,16.6001085205,271467.877843,2.33620139799,3.11919850699,2.85978515625 +31808055,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,153.750032552,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,228.092901869,242.034659528,249.85,249.167253035,894.0,296.15,77777.0,272055.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.471458670598,-0.747528839163,-0.398256590103,16.6234452754,271788.781258,2.31832516596,3.11902708785,3.10584309896 +31808376,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,154.163125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,228.279700797,242.757879058,249.85,249.20910096,894.0,296.15,77777.0,272376.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.50374653099,-0.729635973083,-0.398250400847,16.6467820305,272109.684676,2.30043229988,3.1197027534,3.3590625 +31808697,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,154.576217448,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,228.466499725,243.481098589,249.85,249.250948885,894.0,296.15,77777.0,272697.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.536034391381,-0.711743107003,-0.398244211592,16.6701187856,272430.588095,2.2825394338,3.12037841894,3.61228190104 +31809018,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,154.728450521,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,228.537076246,243.757147947,249.85,249.266743296,894.0,296.15,77777.0,273018.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.548230708449,-0.693809652446,-0.398238017607,16.6934555416,272751.491526,2.26460597924,3.12787819864,3.78613932292 +31809339,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,154.878222656,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,228.606556329,244.028978718,249.85,249.282291919,894.0,296.15,77777.0,273339.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.560237482655,-0.675875814978,-0.398231823577,16.7167922976,273072.394957,2.24667214177,3.13544235678,3.95924804687 +31809660,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,154.978385417,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,228.653897939,244.214165889,249.85,249.292487183,894.0,296.15,77777.0,273660.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.568110280797,-0.657940751589,-0.398225628655,16.7401290539,273393.29839,2.22873707839,3.14702862699,4.11595052083 +31809981,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,154.862747396,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,228.604937189,244.022453394,249.85,249.27939534,894.0,296.15,77777.0,273981.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.558000283062,-0.640000355441,-0.398219429853,16.7634658109,273714.201834,2.21079668224,3.17611108468,4.20128580729 +31810302,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,154.747109375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,228.555976439,243.830740899,249.85,249.266303496,894.0,296.15,77777.0,274302.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.547890285326,-0.622059959293,-0.398213231051,16.7868025679,274035.105279,2.19285628609,3.20519354236,4.28662109375 +31810623,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,154.596236979,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,228.496657365,243.599049753,249.85,249.250055514,894.0,296.15,77777.0,274623.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.535346222072,-0.604128730582,-0.39820703042,16.8101393253,274356.008728,2.17492505737,3.2417051637,4.36314778646 +31810944,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,154.388645833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,228.420663917,243.303002728,249.85,249.228726918,894.0,296.15,77777.0,274944.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.518883907005,-0.586212259208,-0.398200826846,16.8334760833,274676.912186,2.157008586,3.29017592651,4.42549479167 +31811265,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,154.181054687,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,228.344670468,243.006955704,249.85,249.207398322,894.0,296.15,77777.0,275265.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.502421591939,-0.568295787834,-0.398194623271,16.8568128412,274997.815643,2.13909211463,3.33864668932,4.48784179687 +31811586,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,153.963776042,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,228.267533145,242.707555518,249.85,249.185995166,894.0,296.15,77777.0,275586.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.485907797404,-0.550409257659,-0.398188416931,16.8801495997,275318.719108,2.12120558445,3.38538909136,4.53323567708 +31811907,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,153.739466146,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,228.189565591,242.405721587,249.85,249.164537893,894.0,296.15,77777.0,275907.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.469356638738,-0.532544459001,-0.398182208584,16.9034863587,275639.622578,2.10334078579,3.430877038,4.56632486979 +31812228,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,153.51515625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,228.111598036,242.103887656,249.85,249.14308062,894.0,296.15,77777.0,276228.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.452805480072,-0.514679660343,-0.398176000237,16.9268231176,275960.526049,2.08547598713,3.47636498463,4.5994140625 +31812549,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,153.336236979,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,228.051990579,241.874008298,249.85,249.127827397,894.0,296.15,77777.0,276549.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.441043987772,-0.496875057812,-0.398169788189,16.9501598773,276281.429529,2.0676713846,3.50218585828,4.60494466146 +31812870,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,153.170442708,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,227.997692067,241.664935082,249.85,249.114368115,894.0,296.15,77777.0,276870.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.430667459239,-0.479087861389,-0.39816357507,16.9734966371,276602.333013,2.04988418818,3.52231986745,4.60250651042 +31813191,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,153.004648438,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,227.943393555,241.455861866,249.85,249.100908834,894.0,296.15,77777.0,277191.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.420290930707,-0.461300664967,-0.398157361952,16.996833397,276923.236496,2.03209699176,3.54245387662,4.60006835937 +31813512,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,152.868645833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,227.90783639,241.319427381,249.85,249.094131799,894.0,296.15,77777.0,277512.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.415067583333,-0.443613032156,-0.398151144195,17.0201701578,277244.139992,2.01440935895,3.52127448795,4.54194746377 +31813833,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,152.733502604,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,227.87281984,241.185088244,249.85,249.087547521,894.0,296.15,77777.0,277833.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.409992885417,-0.425928271372,-0.398144926305,17.0435069186,277565.043489,1.99672459817,3.49890336665,4.48222033515 +31814154,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,152.596953125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,227.838120644,241.052025893,249.85,249.081100437,894.0,296.15,77777.0,278154.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4050240625,-0.408264834307,-0.398138707612,17.0668436796,277885.946988,1.9790611611,3.47201620591,4.41454483696 +31814475,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,152.453450521,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,227.804990586,240.925276537,249.85,249.075331699,894.0,296.15,77777.0,278475.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.400578732639,-0.390706831189,-0.39813248495,17.0901804414,278206.850498,1.96150315798,3.42279973906,4.30756906703 +31814796,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,152.309947917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,227.771860528,240.798527182,249.85,249.069562961,894.0,296.15,77777.0,278796.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.396133402778,-0.37314882807,-0.398126262288,17.1135172031,278527.754008,1.94394515486,3.37358327221,4.2005932971 +31815117,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,152.184726563,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,227.74180185,240.683609375,249.85,249.064358446,894.0,296.15,77777.0,279117.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.39212303125,-0.355645882682,-0.398120037887,17.1368539653,278848.657522,1.92644220947,3.32436680535,4.09149796195 +31815438,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,152.091380208,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,227.717098398,240.589320932,249.85,249.060137703,894.0,296.15,77777.0,279438.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.388871048611,-0.338238935389,-0.398113810455,17.160190728,279169.561045,1.90903526218,3.27515033849,3.97870697464 +31815759,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,151.998033854,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,227.692394945,240.49503249,249.85,249.055916961,894.0,296.15,77777.0,279759.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.385619065972,-0.320831988096,-0.398107583022,17.1835274907,279490.464568,1.89162831489,3.22593387164,3.86591598732 +31816080,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,151.965625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,227.676106832,240.432892857,249.85,249.052975091,894.0,296.15,77777.0,280080.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.3833525,-0.303523591668,-0.398101352914,17.206864254,279811.368098,1.87431991846,3.19177086958,3.77309782609 +31816401,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,151.980950521,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,227.666410733,240.395936458,249.85,249.051035004,894.0,296.15,77777.0,280401.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.38185784375,-0.286292393418,-0.398095120711,17.2302010177,280132.271634,1.85708872021,3.16939974829,3.69592504529 +31816722,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,151.996276042,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,227.656714635,240.358980059,249.85,249.049094917,894.0,296.15,77777.0,280722.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.3803631875,-0.269061195168,-0.398088888507,17.2535377814,280453.175171,1.83985752197,3.14702862699,3.61875226449 +31817043,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,152.0675,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,227.6596976,240.370347356,249.85,249.049184247,894.0,296.15,77777.0,281043.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.380432,-0.251982313255,-0.398082652693,17.2768745459,280774.078717,1.82277864005,3.14159265359,3.60789015524 +31817364,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,152.156666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,227.666750388,240.397225962,249.85,249.049924994,894.0,296.15,77777.0,281364.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.381002666667,-0.234952323007,-0.398076415719,17.3002113105,281094.982266,1.80574864981,3.14159265359,3.6183129529 +31817685,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,152.245833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,227.673803176,240.424104567,249.85,249.050665742,894.0,296.15,77777.0,281685.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.381573333333,-0.217922332759,-0.398070178745,17.3235480752,281415.885815,1.78871865956,3.14159265359,3.62873575056 +31818006,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,152.335,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,227.693494481,240.499231571,249.85,249.053877764,894.0,296.15,77777.0,282006.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.384048,-0.201109468543,-0.398063937224,17.3468848407,281736.789377,1.77190579534,3.14159265359,3.70337296196 +31818327,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,152.424166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,227.713805321,240.576723691,249.85,249.057210927,894.0,296.15,77777.0,282327.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.386616,-0.184307247761,-0.39805769548,17.3702216063,282057.69294,1.75510357456,3.14159265359,3.78115793873 +31818648,0.0,0.1,0.5,0.2,0.0,0.0918798449611,0.164639303483,0.0,152.513333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,227.735904689,240.66107906,249.85,249.060931627,894.0,296.15,77777.0,282648.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.389482666667,-0.167543269367,-0.398051453023,17.3935583721,282378.596504,1.73833959617,3.14159265359,3.85901460838 +31818969,0.0,0.1,0.5,0.2,0.0,0.706326308138,1.26566464552,0.0,152.6025,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,227.76817631,240.784469151,249.85,249.066856445,894.0,296.15,77777.0,282969.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.394048,-0.150996794558,-0.39804520651,17.4168951386,282699.50008,1.72179312136,3.14159265359,3.93727903128 +31819290,0.0,0.1,0.5,0.2,0.0,1.32077277132,2.36668998756,0.0,152.691666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,227.800447931,240.907859242,249.85,249.072781262,894.0,296.15,77777.0,283290.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.398613333333,-0.134450319748,-0.398038959996,17.4402319052,283020.403655,1.70524664655,3.14159265359,4.01554345417 +31819611,0.0,0.1,0.5,0.2,0.0,2.30297843992,4.34847870025,0.0,152.780833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,227.836398559,241.045489984,249.85,249.079601791,894.0,296.15,77777.0,283611.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.403869333333,-0.118002545656,-0.398032711833,17.4635686721,283341.307236,1.68879887245,3.14159265359,4.07084599281 +31819932,0.0,0.1,0.5,0.2,0.0,3.98094476744,7.99657649256,0.0,152.87,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,227.879309468,241.2100625,249.85,249.088116908,894.0,296.15,77777.0,283932.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.410432,-0.101741502649,-0.39802646055,17.4869054396,283662.210824,1.67253782944,3.14159265359,4.08270712881 +31820253,0.0,0.1,0.5,0.2,0.0,5.65891109496,11.6446742849,0.0,152.959166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,227.922220377,241.374635016,249.85,249.096632025,894.0,296.15,77777.0,284253.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.416994666667,-0.0854804596417,-0.398020209266,17.5102422072,283983.114413,1.65627678643,3.14159265359,4.09456826482 +31820574,0.0,0.1,0.5,0.2,0.0,7.77890261629,16.9539598881,0.7656,153.048333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,227.958588796,241.573123252,249.833293478,249.093564553,894.0,296.15,77777.0,284574.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.426785773438,-0.0693913056732,-0.398013955398,17.5335789752,284304.018009,1.64018763246,3.14159265359,4.00362256206 +31820895,0.0,0.1,0.5,0.2,0.0,10.2723292151,23.6666627799,2.178,153.1375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,227.98942994,241.800264423,249.802472826,249.08071179,894.0,296.15,77777.0,284895.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.439304355469,-0.0534473683062,-0.398007699346,17.5569157437,284624.921611,1.6242436951,3.14159265359,3.82582280585 +31821216,0.0,0.1,0.5,0.2,0.0,12.765755814,30.3793656716,3.5904,153.226666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,228.020271083,242.027405595,249.771652174,249.067859027,894.0,296.15,77777.0,285216.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4518229375,-0.0375034309391,-0.398001443294,17.5802525122,284945.825213,1.60829975773,3.14159265359,3.64802304965 +31821537,0.0,0.1,0.5,0.2,0.0,15.6781044089,39.7368244714,8.71053333333,153.315833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,228.03468618,242.292243639,249.712494565,249.033699973,894.0,296.15,77777.0,285537.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.468870647135,-0.0218186653346,-0.39799518372,17.6035892814,285266.728825,1.59261499213,3.14159265359,3.35786890514 +31821858,0.0,0.1,0.5,0.2,0.0,18.7389316861,50.0316651119,15.1448,153.405,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,228.043279387,242.570442599,249.643293478,248.991989323,894.0,296.15,77777.0,285858.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.487523617187,-0.00622575807619,-0.397988922899,17.6269260508,285587.63244,1.57702208487,3.14159265359,3.02789295213 +31822179,0.0,0.1,0.5,0.2,0.0,21.7997589632,60.3265057525,21.5790666667,153.494166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,228.051872595,242.84864156,249.574092391,248.950278673,894.0,296.15,77777.0,286179.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.50617658724,0.00936714918217,-0.397982662077,17.6502628203,285908.536056,1.56142917762,3.14159265359,2.69791699911 +31822500,0.0,0.1,0.5,0.2,0.0,27.1887112403,80.043760186,31.0876257862,153.583333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,228.056270878,243.124033605,249.501630435,248.905243898,894.0,296.15,77777.0,286500.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.525263411458,0.024597955438,-0.3979763968,17.6735995906,286229.439683,1.54619837136,3.14159265359,2.38855274822 +31822821,0.0,0.1,0.5,0.2,0.0,32.7406322674,100.420583585,40.8113853774,153.6725,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,228.060375517,243.399229167,249.428940218,248.859976433,894.0,296.15,77777.0,286821.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.544380605469,0.0398034146237,-0.39797013121,17.696936361,286550.343311,1.53099291217,3.14159265359,2.08063131649 +31823142,0.0,0.1,0.5,0.2,0.0,38.6572722868,122.188141351,50.6190789308,153.761666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,228.066275762,243.666958333,249.360358696,248.817710883,894.0,296.15,77777.0,287142.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.562816648438,0.054953060199,-0.397963864996,17.7202731315,286871.246941,1.5158432666,3.14159265359,1.7983920656 +31823463,0.0,0.1,0.5,0.2,0.0,46.996688469,153.194148841,60.984333805,153.850833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,228.084103955,243.885089306,249.319070652,248.795386619,894.0,296.15,77777.0,287463.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.576727902344,0.0697319439334,-0.397957594638,17.7436099029,287192.150583,1.50106438286,3.14159265359,1.68675587323 +31823784,0.0,0.1,0.5,0.2,0.0,55.3361046512,184.20015633,71.3495886792,153.94,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,228.101932148,244.10322028,249.277782609,248.773062354,894.0,296.15,77777.0,287784.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.59063915625,0.0845108276677,-0.39795132428,17.7669466743,287513.054225,1.48628549913,3.14159265359,1.57511968085 +31824105,0.0,0.1,0.5,0.2,0.0,63.7077398256,215.931596462,81.783423742,154.0484375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,228.129954593,244.297672033,249.254284575,248.764936648,894.0,296.15,77777.0,288105.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.602249685835,0.0991364342398,-0.397945052363,17.790283446,287833.957871,1.47165989256,3.09486584009,1.51633234797 +31824426,0.0,0.1,0.5,0.2,0.0,72.1456540698,249.155355175,92.3583380501,154.196517857,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,228.178948071,244.443412247,249.267383132,248.786019405,894.0,296.15,77777.0,288426.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.609127296814,0.113446727792,-0.397938777236,17.8136202183,288154.861526,1.457349599,2.95201529595,1.56626266892 +31824747,0.0,0.1,0.5,0.2,0.0,80.583568314,282.379113887,102.933252358,154.344598214,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,228.227941549,244.589152462,249.280481689,248.807102161,894.0,296.15,77777.0,288747.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.616004907794,0.127757021345,-0.39793250211,17.8369569906,288475.765181,1.44303930545,2.80916475181,1.61619298986 +31825068,0.0,0.1,0.5,0.2,0.0,87.6657073644,312.361319588,113.391887421,154.544345238,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,228.297907745,244.713055976,249.322565917,248.853165908,894.0,296.15,77777.0,289068.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.620508572553,0.14179850603,-0.397926224489,17.8602937635,288796.668842,1.42899782077,2.57982035898,1.66954448198 +31825389,0.0,0.1,0.5,0.2,0.0,93.5131225775,339.391396654,123.744625314,154.791145833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,228.386974093,244.817072496,249.391047812,248.921980199,894.0,296.15,77777.0,289389.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.622850250575,0.15559518264,-0.397919944595,17.8836305368,289117.572511,1.41520114416,2.27170478251,1.72601168356 +31825710,0.0,0.1,0.5,0.2,0.0,99.3605377907,366.42147372,134.097363207,155.037946428,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,228.476040442,244.921089015,249.459529706,248.990794491,894.0,296.15,77777.0,289710.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.625191928597,0.169391859249,-0.397913664702,17.90696731,289438.476179,1.40140446755,1.96358920604,1.78247888513 +31826031,0.0,0.1,0.5,0.2,0.0,103.3629375,386.685273305,144.212402411,155.33516369,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,228.597990404,245.005823127,249.56924122,249.095873423,894.0,296.15,77777.0,290031.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.624858052477,0.182784316548,-0.397907381377,17.930304084,289759.379857,1.38801201025,1.66654799381,1.83916286599 +31826352,0.0,0.1,0.5,0.2,0.0,106.6465,404.312860885,154.234831736,155.652023809,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,228.732752163,245.083044613,249.695016222,249.215081436,894.0,296.15,77777.0,290352.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.623481752665,0.196019285805,-0.397901096716,17.9536408583,290080.283538,1.37477704099,1.37382146894,1.8959313063 +31826673,0.0,0.1,0.5,0.2,0.0,109.9300625,421.940448466,164.25726106,155.968883928,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,228.867513923,245.160266099,249.820791224,249.334289449,894.0,296.15,77777.0,290673.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.622105452853,0.209254255061,-0.397894812055,17.9769776326,290401.18722,1.36154207173,1.08109494406,1.95269974662 +31826994,0.0,0.1,0.5,0.2,0.0,112.278541667,435.688558781,174.199828661,156.323660714,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,229.049232397,245.226619318,250.000789423,249.501761909,894.0,296.15,77777.0,290994.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.618073057473,0.221927953921,-0.397888523028,18.0003144077,290722.090913,1.34886837287,0.967921945175,2.00403293919 +31827315,0.0,0.1,0.5,0.2,0.0,114.541145833,449.080390572,184.135062021,156.681919643,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,229.235263222,245.291974432,250.185767303,249.673666818,894.0,296.15,77777.0,291315.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.61379673495,0.234550107541,-0.3978822336,18.023651183,291042.994608,1.33624621925,0.871238555817,2.05486697635 +31827636,0.0,0.1,0.5,0.2,0.0,116.64275,462.46281567,194.07117411,157.05125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,229.42355359,245.349170082,250.375464489,249.848678579,894.0,296.15,77777.0,291636.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.608587209302,0.247097483188,-0.397875943637,18.0469879583,291363.898304,1.3236988436,0.793932442073,2.10512065637 +31827957,0.0,0.1,0.5,0.2,0.0,117.469770833,475.770771108,204.014242795,157.508229167,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,229.629732007,245.341769979,250.602522846,250.048286251,894.0,296.15,77777.0,291957.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.595989825581,0.259052866551,-0.397869649442,18.0703247345,291684.802012,1.31174346024,0.870029760268,2.15077984234 +31828278,0.0,0.1,0.5,0.2,0.0,118.296791667,489.078726547,213.95731148,157.965208333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,229.835910423,245.334369877,250.829581203,250.247893923,894.0,296.15,77777.0,292278.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.58339244186,0.271008249914,-0.397863355247,18.0936615107,292005.70572,1.29978807688,0.946127078463,2.19643902832 +31828599,0.0,0.1,0.5,0.2,0.0,118.5531875,503.641299759,223.932105381,158.466383929,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,230.040941836,245.301003814,251.062616122,250.44878417,894.0,296.15,77777.0,292599.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.568328585271,0.282740577087,-0.397857059583,18.1169982872,292326.609432,1.28805574971,1.02976516884,2.24194779601 +31828920,0.0,0.1,0.5,0.2,0.0,117.53,521.017258283,233.978040678,159.066666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,230.243401179,245.20941105,251.30905303,250.652550495,894.0,296.15,77777.0,292920.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.547733850129,0.293972717651,-0.397850760621,18.1403350643,292647.513154,1.27682360915,1.13031286956,2.28711926212 +31829241,0.0,0.1,0.5,0.2,0.0,116.5068125,538.393216806,244.023975975,159.666949405,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,230.445860521,245.117818287,251.555489938,250.85631682,894.0,296.15,77777.0,293241.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.527139114987,0.305204858214,-0.39784446166,18.1636718415,292968.416875,1.26559146858,1.23086057029,2.33229072823 +31829562,0.0,0.1,0.5,0.2,0.0,114.943213415,563.070457127,255.94602759,160.315446428,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,230.654839163,245.028705032,251.808446733,251.065345517,894.0,296.15,77777.0,293562.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.50726996124,0.316042487645,-0.397838160294,18.1870086191,293289.320602,1.25475383915,1.34024136938,2.37704231017 +31829883,0.0,0.1,0.5,0.2,0.0,112.849210366,594.913770324,269.709452631,161.011264881,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,230.870216376,244.942025368,252.067802675,251.279539134,894.0,296.15,77777.0,293883.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.488112952196,0.326492911703,-0.397831856566,18.2103453973,293610.224337,1.24430341509,1.45829169096,2.42138178357 +31830204,0.0,0.1,0.5,0.2,0.0,110.755207317,626.757083521,283.472877671,161.707083333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,231.085593589,244.855345704,252.327158617,251.493732751,894.0,296.15,77777.0,294204.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.468955943152,0.336943335762,-0.397825552839,18.2336821754,293931.128072,1.23385299104,1.57634201253,2.46572125697 +31830525,0.0,0.1,0.5,0.2,0.0,108.645198171,666.926105462,300.276344686,162.436383928,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,231.321957648,244.834567111,252.591042258,251.722003637,894.0,296.15,77777.0,294525.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.45742005814,0.346803952683,-0.397819245771,18.2570189542,294252.031816,1.22399237412,1.70179059989,2.50923624517 +31830846,0.0,0.1,0.5,0.2,0.0,106.528359756,710.6474298,318.376896276,163.179970238,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,231.567276096,244.841906307,252.856857718,251.956280823,894.0,296.15,77777.0,294846.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.449135852713,0.356412918558,-0.397812937278,18.2803557333,294572.935564,1.21438340824,1.83039578064,2.55239945302 +31831167,0.0,0.1,0.5,0.2,0.0,104.411521341,754.368754138,336.477447867,163.923556548,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,231.812594543,244.849245503,253.122673177,252.19055801,894.0,296.15,77777.0,295167.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.440851647287,0.366021884434,-0.397806628785,18.3036925124,294893.839312,1.20477444236,1.9590009614,2.59556266088 +31831488,0.0,0.1,0.5,0.2,0.0,102.263658537,794.99192332,354.5238791,164.893035714,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,232.155644596,245.122828481,253.420443182,252.473562804,894.0,296.15,77777.0,295488.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.444510344828,0.374822029041,-0.397800316016,18.3270292923,295214.743072,1.19597429775,2.0928169102,2.61767857143 +31831809,0.0,0.1,0.5,0.2,0.0,100.112240854,835.260095558,372.564109041,165.888398437,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,232.509893062,245.426918558,253.721874645,252.762150969,894.0,296.15,77777.0,295809.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4495375,0.383529496212,-0.397794002757,18.3503660724,295535.646833,1.18726683058,2.22722992618,2.6373828125 +31832130,0.0,0.1,0.5,0.2,0.0,97.9564939024,873.772724305,390.187724979,166.908872768,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,232.873269839,245.755988755,254.026310369,253.054557956,894.0,296.15,77777.0,296130.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.455100095785,0.392147185021,-0.397787689052,18.3737028526,295856.550595,1.17864914177,2.3620849557,2.65434647817 +31832451,0.0,0.1,0.5,0.2,0.0,95.7587530488,895.256581199,403.770185073,168.172929688,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,233.325191231,246.327366115,254.359887429,253.384007521,894.0,296.15,77777.0,296451.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.465856465517,0.399894023726,-0.397781371028,18.3970396336,296177.45437,1.17090230307,2.50122751669,2.6447265625 +31832772,0.0,0.1,0.5,0.2,0.0,93.5610121951,916.740438094,417.352645167,169.436986607,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,233.777112622,246.898743475,254.693464488,253.713457086,894.0,296.15,77777.0,296772.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.476612835249,0.407640862432,-0.397775053004,18.4203764146,296498.358144,1.16315546436,2.64037007768,2.63510664682 +31833093,0.0,0.1,0.5,0.2,0.0,91.3524536331,933.643758831,429.425343051,170.68374442,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,234.22324482,247.472467453,255.020304332,254.037193329,894.0,296.15,77777.0,297093.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.487407806513,0.415092936129,-0.3977687336,18.443713196,296819.261923,1.15570339066,2.78046433403,2.62402591766 +31833414,0.0,0.1,0.5,0.2,0.0,89.1173742378,939.317378022,437.796688421,171.888091518,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,234.655184158,248.051944428,255.330627131,254.346922717,894.0,296.15,77777.0,297414.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.498297413793,0.421822360131,-0.397762410811,18.467049978,297140.165711,1.14897396666,2.92289177901,2.60936383928 +31833735,0.0,0.1,0.5,0.2,0.0,86.8822948425,944.990997214,446.168033791,173.092438616,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,235.087123495,248.631421403,255.640949929,254.656652105,894.0,296.15,77777.0,297735.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.509187021073,0.428551784133,-0.397756088023,18.49038676,297461.069499,1.14224454266,3.06531922399,2.59470176091 +31834056,0.0,0.1,0.5,0.2,0.0,84.6431859756,949.572233661,453.269657972,174.108169643,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,235.452924169,249.088874277,255.913048296,254.925978692,894.0,296.15,77777.0,298056.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.517421839081,0.434761088269,-0.397749762918,18.5137235424,297781.973293,1.13603523852,3.20864098293,2.58938988095 +31834377,0.0,0.1,0.5,0.2,0.0,82.3998151677,952.998065282,459.028307819,174.924402902,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,235.748770488,249.417263198,256.144716975,255.152571548,894.0,296.15,77777.0,298377.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.522848706897,0.440420265625,-0.397743435365,18.5370603254,298102.877094,1.13037606117,3.35290865088,2.59396763393 +31834698,0.0,0.1,0.5,0.2,0.0,80.1564443598,956.423896903,464.786957666,175.740636161,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,236.044616807,249.745652119,256.376385653,255.379164404,894.0,296.15,77777.0,298698.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.528275574713,0.446079442981,-0.397737107811,18.5603971083,298423.780895,1.12471688381,3.49717631884,2.5985453869 +31835019,0.0,0.1,0.5,0.2,0.0,77.9199358486,958.692376923,469.193062415,176.225545015,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,236.224171679,249.898938053,256.529552774,255.525491375,894.0,296.15,77777.0,299019.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.530212392241,0.450976273961,-0.397730777008,18.583733892,298744.684705,1.11982005283,3.68796011272,2.67775260417 +31835340,0.0,0.1,0.5,0.2,0.0,75.6866234756,960.421816471,472.969214653,176.556138393,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,236.34956341,249.970669173,256.646157525,255.634434235,894.0,296.15,77777.0,299340.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.530523706897,0.455518039505,-0.39772444469,18.6070706759,299065.58852,1.11527828729,3.90040895156,2.79171875 +31835661,0.0,0.1,0.5,0.2,0.0,73.4533111027,962.151256019,476.745366892,176.88673177,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,236.474955142,250.042400292,256.762762277,255.743377096,894.0,296.15,77777.0,299661.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.530835021552,0.460059805049,-0.397718112372,18.6304074599,299386.492335,1.11073652175,4.1128577904,2.90568489583 +31835982,0.0,0.1,0.5,0.2,0.0,71.2449555386,962.874810726,479.33351753,177.012749256,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,236.525140907,250.066896721,256.810575574,255.787225494,894.0,296.15,77777.0,299982.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.530599353449,0.463584963237,-0.397711775869,18.6537442447,299707.396161,1.10721136356,4.39415520189,3.11903645833 +31836303,0.0,0.1,0.5,0.2,0.0,69.0400514482,963.459253698,481.757370075,177.11047433,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,236.564925848,250.084860692,256.848875159,255.822071466,894.0,296.15,77777.0,300303.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.530288038793,0.466969526792,-0.397705438787,18.6770810296,300028.299989,1.1038268,4.68497422449,3.3461328125 +31836624,0.0,0.1,0.5,0.2,0.0,66.8417234848,964.020186213,484.13312178,177.205520833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,236.603056481,250.10280491,256.885383928,255.855255374,894.0,296.15,77777.0,300624.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.529976724138,0.470265264837,-0.397699101349,18.7004178146,300349.203818,1.10053106196,4.97524727476,3.5738125 +31836945,0.0,0.1,0.5,0.2,0.0,64.7247750947,964.290176811,485.913625586,177.267420015,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,236.620715058,250.120504669,256.899731346,255.867871242,894.0,296.15,77777.0,300945.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.529665409483,0.472461787197,-0.397692759504,18.7237546005,300670.107659,1.0983345396,5.25876391751,3.8087109375 +31837266,0.0,0.1,0.5,0.2,0.0,62.6078267045,964.56016741,487.694129391,177.329319196,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,236.638373635,250.138204429,256.914078763,255.880487109,894.0,296.15,77777.0,301266.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.529354094827,0.474658309557,-0.397686417658,18.7470913864,300991.011501,1.09613801724,5.54228056025,4.043609375 +31837587,0.0,0.1,0.5,0.2,0.0,60.5151822917,964.825889465,489.297956187,177.434912574,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,236.667242587,250.170333375,256.936665657,255.901113929,894.0,296.15,77777.0,301587.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.529211530172,0.476527261636,-0.397680074522,18.7704281725,301311.915346,1.09426906516,5.80059838655,4.25207552083 +31837908,0.0,0.1,0.5,0.2,0.0,58.487907197,965.080130612,490.426582748,177.658028274,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,236.726263582,250.241271858,256.981413903,255.943287448,894.0,296.15,77777.0,301908.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.529522844827,0.477515162614,-0.397673727913,18.7937649594,301632.8192,1.09328116418,5.99114008584,4.38944791667 +31838229,0.0,0.1,0.5,0.2,0.0,56.4606321023,965.334371758,491.555209309,177.881143973,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,236.785284577,250.312210341,257.026162149,255.985460967,894.0,296.15,77777.0,302229.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.529834159483,0.478503063592,-0.397667381305,18.8171017462,301953.723055,1.09229326321,6.18168178513,4.5268203125 +31838550,0.0,0.1,0.5,0.2,0.0,54.4433001894,965.466128853,492.17079918,178.181547619,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,236.869402933,250.41748118,257.088818027,256.045958278,894.0,296.15,77777.0,302550.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.530911570582,0.47892179309,-0.39766103247,18.8404385335,302274.626916,1.09187453371,6.17037213021,4.57578125 +31838871,0.0,0.1,0.5,0.2,0.0,52.4373035038,965.458254127,492.201527225,178.570059524,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,236.98213228,250.561890905,257.171888605,256.127344713,894.0,296.15,77777.0,302871.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.532862331627,0.4786916671,-0.397654681099,18.8637753214,302595.530784,1.0921046597,5.9289519315,4.523953125 +31839192,0.0,0.1,0.5,0.2,0.0,50.4313068182,965.450379401,492.232255269,178.958571428,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,237.094861626,250.70630063,257.254959183,256.208731147,894.0,296.15,77777.0,303192.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.534813092672,0.47846154111,-0.397648329727,18.8871121092,302916.434652,1.09233478568,5.6875317328,4.472125 +31839513,0.0,0.1,0.5,0.2,0.0,48.3940459281,965.105100537,491.238513173,179.372440476,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,237.21889362,250.871551689,257.344670918,256.298411854,894.0,296.15,77777.0,303513.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.537667611799,0.47742465075,-0.397641975195,18.9104488977,303237.338529,1.09337167604,5.1542484787,4.33228645833 +31839834,0.0,0.1,0.5,0.2,0.0,46.3409327652,964.588743517,489.725321429,179.799166667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,237.348656534,251.047370185,257.43775,256.392298109,894.0,296.15,77777.0,303834.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.540980374461,0.475978696766,-0.39763561906,18.9337856865,303558.242411,1.09481763003,4.47297832328,4.14782291667 +31840155,0.0,0.1,0.5,0.2,0.0,44.2878196023,964.072386498,488.212129684,180.225892857,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,237.478419447,251.223188681,257.530829082,256.486184363,894.0,296.15,77777.0,304155.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.544293137122,0.474532742782,-0.397629262926,18.9571224754,303879.146293,1.09626358401,3.79170816786,3.963359375 +31840476,0.0,0.1,0.5,0.2,0.0,42.0920913078,962.886804957,485.355259696,180.685476191,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,237.614238749,251.391672304,257.632513605,256.588307623,894.0,296.15,77777.0,304476.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.547643076508,0.472053185527,-0.397622902696,18.980459265,304200.050185,1.09874314127,3.08561161761,3.76547916667 +31840797,0.0,0.1,0.5,0.2,0.0,39.8731105462,961.592110722,482.279311733,181.150416667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,237.751045506,251.558960023,257.73560119,256.691773873,894.0,296.15,77777.0,304797.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.550999077317,0.469405106001,-0.397616541799,19.0037960548,304520.95408,1.10139122079,2.3754672856,3.56541145833 +31841118,0.0,0.1,0.5,0.2,0.0,37.6455711722,960.253499461,479.128184586,181.6175,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,237.887691764,251.72352978,257.83925,256.795600544,894.0,296.15,77777.0,305118.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.554283553341,0.46669099614,-0.397610180635,19.0271328446,304841.857976,1.10410533065,1.68674921174,3.37103125 +31841439,0.0,0.1,0.5,0.2,0.0,35.2739618222,958.175618265,474.711541155,182.120654762,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,238.021636281,251.842347173,257.952346088,256.905494286,894.0,296.15,77777.0,305439.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.556364028826,0.46286537566,-0.397603814976,19.0504696354,305162.761884,1.10793095113,1.35870648326,3.272390625 +31841760,0.0,0.1,0.5,0.2,0.0,32.9023524721,956.097737069,470.294897725,182.623809524,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,238.155580798,251.961164566,258.065442177,257.015388028,894.0,296.15,77777.0,305760.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.55844450431,0.459039755179,-0.397597449317,19.0738064261,305483.665792,1.11175657162,1.03066375478,3.17375 +31842081,0.0,0.1,0.5,0.2,0.0,30.5249297249,953.860367726,465.518581247,183.189241071,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,238.315150239,252.050049721,258.214372449,257.150724252,894.0,296.15,77777.0,306081.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.557449414063,0.454925676059,-0.397591082457,19.0971432171,305804.569704,1.11587065073,0.785398163397,3.11945588235 +31842402,0.0,0.1,0.5,0.2,0.0,28.1302820973,951.150440912,459.676566846,183.939196428,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,238.550645376,252.050246763,258.46947808,257.361445608,894.0,296.15,77777.0,306402.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.547341536458,0.449956904675,-0.397584712036,19.1204800089,306125.473626,1.12083942212,0.785398163397,3.19655882353 +31842723,0.0,0.1,0.5,0.2,0.0,25.7356344697,948.440514098,453.834552446,184.689151785,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,238.786140513,252.050443806,258.724583711,257.572166965,894.0,296.15,77777.0,306723.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.537233658854,0.444988133291,-0.397578341615,19.1438168006,306446.377548,1.1258081935,0.785398163397,3.27366176471 +31843044,0.0,0.1,0.5,0.2,0.0,23.3887858852,945.514854526,447.31513402,185.549107143,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,239.072624231,252.006242634,259.047003023,257.82702933,894.0,296.15,77777.0,307044.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.521386197917,0.439525733432,-0.397571969058,19.1671535928,306767.281475,1.13127059336,0.785398163397,3.39782352941 +31843365,0.0,0.1,0.5,0.2,0.0,21.1006902911,942.324023438,439.963073147,186.544270833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,239.421781412,251.907468657,259.452162069,258.136148352,894.0,296.15,77777.0,307365.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.498483832465,0.433456581904,-0.397565593875,19.1904903855,307088.18541,1.13733974489,0.785398163397,3.57982843138 +31843686,0.0,0.1,0.5,0.2,0.0,18.812594697,939.133192349,432.611012273,187.539434524,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,239.770938593,251.80869468,259.857321114,258.445267373,894.0,296.15,77777.0,307686.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.475581467014,0.427387430377,-0.397559218693,19.2138271783,307409.089346,1.14340889642,0.785398163397,3.76183333334 +31844007,0.0,0.1,0.5,0.2,0.0,16.7034398496,934.860952039,424.620170303,188.489419643,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,240.097894937,251.707204855,260.239341081,258.728767431,894.0,296.15,77777.0,308007.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.453547591146,0.420640614774,-0.39755284044,19.2371639716,307729.99329,1.15015571203,0.785398163397,3.94654411765 +31844328,0.0,0.1,0.5,0.2,0.0,14.6928320802,929.993153027,416.277535845,189.41452381,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,240.412624734,251.604219345,260.608617788,258.998158495,894.0,296.15,77777.0,308328.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.431992013889,0.413520592868,-0.397546460496,19.2605007653,308050.897238,1.15727573393,0.785398163397,4.13274509804 +31844649,0.0,0.1,0.5,0.2,0.0,12.6822243108,925.125354015,407.934901388,190.339627976,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,240.727354531,251.501233836,260.977894495,259.26754956,894.0,296.15,77777.0,308649.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.410436436632,0.406400570963,-0.397540080553,19.283837559,308371.801187,1.16439575584,0.785398163397,4.31894607843 +31844970,0.0,0.1,0.5,0.2,0.0,10.962593985,918.34669808,399.006937655,190.940625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,240.88911548,251.474410156,261.160595238,259.404799128,894.0,296.15,77777.0,308970.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.401908203125,0.398442501498,-0.397533696605,19.3071743535,308692.705147,1.1723538253,0.785398163397,4.42397058823 +31845291,0.0,0.1,0.5,0.2,0.0,9.29792606516,911.207102505,389.968411727,191.480401786,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,241.021982313,251.461972601,261.308053855,259.517088636,894.0,296.15,77777.0,309291.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.395840690104,0.390326134162,-0.3975273119,19.3305111482,309013.60911,1.18047019264,0.785398163397,4.5136617647 +31845612,0.0,0.1,0.5,0.2,0.0,7.64528822055,904.021944211,380.888100634,192.003645833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,241.149247761,251.454313021,261.448130719,259.624516559,894.0,296.15,77777.0,309612.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.3903275,0.382174683078,-0.397520927017,19.3538479429,309334.513072,1.18862164372,0.785398163397,4.59468627451 +31845933,0.0,0.1,0.5,0.2,0.0,6.30242481203,895.663545929,370.731821565,192.101171875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,241.132277562,251.569686328,261.398127451,259.60675866,894.0,296.15,77777.0,309933.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.399088125,0.373119825494,-0.397514537552,19.3771847385,309655.417048,1.1976765013,0.785398163397,4.45254411765 +31846254,0.0,0.1,0.5,0.2,0.0,4.95956140351,887.305147647,360.575542497,192.198697917,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,241.115307362,251.685059636,261.348124183,259.589000761,894.0,296.15,77777.0,310254.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.40784875,0.36406496791,-0.397508148087,19.4005215342,309976.321023,1.20673135889,0.785398163397,4.31040196079 +31846575,0.0,0.1,0.5,0.2,0.0,3.68624686717,878.90800898,350.059540341,192.240978423,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,241.093260209,251.815157336,261.288634714,259.564718039,894.0,296.15,77777.0,310575.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.417314236111,0.354804770239,-0.39750175751,19.4238583301,310297.225002,1.21599155656,0.785398163397,4.12691993465 +31846896,0.0,0.1,0.5,0.2,0.0,2.64105263158,870.38380185,338.363646463,192.102053571,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,241.054560648,251.993551042,261.198030501,259.519033897,894.0,296.15,77777.0,310896.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.429091666667,0.34487105708,-0.397495363285,19.4471951267,310618.128991,1.22592526972,0.785398163397,3.80784313726 +31847217,0.0,0.1,0.5,0.2,0.0,1.59585839599,861.859594719,326.667752585,191.96312872,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,241.015861086,252.171944748,261.107426289,259.473349755,894.0,296.15,77777.0,311217.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.440869097222,0.334937343921,-0.39748896906,19.4705319233,310939.03298,1.23585898288,0.785398163397,3.48876633987 +31847538,0.0,0.1,0.5,0.2,0.0,0.846666666667,852.554196182,314.529054917,191.756436012,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,240.966530253,252.352358941,261.004879448,259.416838255,894.0,296.15,77777.0,311538.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.452831805555,0.324651626063,-0.397482572788,19.4938687204,311259.936975,1.24614470073,0.785398163397,3.17299673203 +31847859,0.0,0.1,0.5,0.2,0.0,0.49,842.212869911,301.80316092,191.459877232,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,240.903101429,252.535452474,260.886495642,259.345968739,894.0,296.15,77777.0,311859.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.465040208333,0.313899119364,-0.397476173803,19.517205518,311580.840977,1.25689720743,0.785398163397,2.8616127451 +31848180,0.0,0.1,0.5,0.2,0.0,0.133333333333,831.87154364,289.077266922,191.163318452,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,240.839672605,252.718546007,260.768111837,259.275099223,894.0,296.15,77777.0,312180.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.477248611111,0.303146612665,-0.397469774818,19.5405423156,311901.74498,1.26764971413,0.785398163397,2.55022875817 +31848501,0.0,0.1,0.5,0.2,0.0,0.0,819.12604898,276.23407301,190.817406994,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,240.759054889,252.868063933,260.640361656,259.190784843,894.0,296.15,77777.0,312501.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.488107708333,0.291918579053,-0.397463372852,19.5638791139,312222.648991,1.27887774774,0.785398163397,2.35926960784 +31848822,0.0,0.1,0.5,0.2,0.0,0.0,804.945229908,263.320849298,190.44203125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,240.668175149,252.997536719,260.507019608,259.09844368,894.0,296.15,77777.0,312822.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.49816125,0.280406648775,-0.397456969107,19.5872159125,312543.553007,1.29038967802,0.785398163397,2.24020588235 +31849143,0.0,0.1,0.5,0.2,0.0,0.0,790.764410837,250.407625585,190.066655506,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,240.577295408,253.127009505,260.37367756,259.006102516,894.0,296.15,77777.0,313143.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.508214791667,0.268894718497,-0.397450565362,19.6105527111,312864.457023,1.30190160829,0.785398163397,2.12114215686 +31849464,0.0,0.1,0.5,0.2,0.0,0.0,773.834131283,237.404257131,189.677529762,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,240.475279034,253.21825,260.238705882,258.908337761,894.0,296.15,77777.0,313464.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.51732875,0.256805751531,-0.397444157703,19.6338895105,313185.36105,1.31399057526,1.01162135709,2.25484615384 +31849785,0.0,0.1,0.5,0.2,0.0,0.0,756.310218216,224.381425607,189.285435268,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,240.370858159,253.301235796,260.103382353,258.809402003,894.0,296.15,77777.0,313785.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.52623984375,0.244592197099,-0.397437749199,19.6572263101,313506.26508,1.32620412969,1.28668819487,2.443125 +31850106,0.0,0.1,0.5,0.2,0.0,0.0,738.733095893,211.357998084,188.892938988,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,240.266285302,253.383700127,259.968035947,258.710427854,894.0,296.15,77777.0,314106.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.535154756944,0.232366567082,-0.397431340606,19.6805631097,313827.169109,1.33842975971,1.568236983,2.63469444444 +31850427,0.0,0.1,0.5,0.2,0.0,0.0,718.362487636,198.303280651,188.479348959,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,240.153733412,253.438787563,259.831488562,258.609438219,894.0,296.15,77777.0,314427.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.544270190972,0.219506968903,-0.397424927342,19.7038999102,314148.073153,1.35128935789,2.19008816385,2.99902029914 +31850748,0.0,0.1,0.5,0.2,0.0,0.0,697.991879379,185.248563218,188.065758929,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,240.041181522,253.493875,259.694941176,258.508448585,894.0,296.15,77777.0,314748.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.553385625,0.206647370724,-0.397418514079,19.7272367108,314468.977196,1.36414895607,2.81193934471,3.36334615385 +31851069,0.0,0.1,0.5,0.2,0.0,0.177182017544,673.39154711,172.065263889,187.642927828,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,239.923613004,253.53412279,259.556946895,258.404753349,894.0,296.15,77777.0,315069.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.562096961806,0.193660278542,-0.397412099792,19.7505735115,314789.881242,1.37713604826,3.44276704818,3.72577991453 +31851390,0.0,0.1,0.5,0.2,0.0,1.00146357742,633.343527143,158.412361111,187.186346726,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,239.78772289,253.520173611,259.413668301,258.29117679,894.0,296.15,77777.0,315390.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.569332465278,0.180207556085,-0.39740568177,19.7739103131,315110.785298,1.39058877071,4.10637857337,4.0813034188 +31851711,0.0,0.1,0.5,0.2,0.0,1.8257451373,593.295507177,144.759458333,186.729765625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,239.651832776,253.506224432,259.270389706,258.177600231,894.0,296.15,77777.0,315711.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.57656796875,0.166754833629,-0.397399263748,19.7972471146,315431.689355,1.40404149317,4.76999009856,4.43682692307 +31852032,0.0,0.1,0.5,0.2,0.0,2.86184591914,544.244771326,130.882345679,186.246666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,239.500095222,253.446969697,259.122078432,258.054729737,894.0,296.15,77777.0,316032.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.582173333333,0.153078767578,-0.39739284377,19.8205839166,315752.593417,1.41771755922,5.32534367241,4.71271794871 +31852353,0.0,0.1,0.5,0.2,0.0,4.20123331426,482.303783187,116.684205247,185.725598958,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,239.325667016,253.322845644,258.966561275,257.918552018,894.0,296.15,77777.0,316353.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.585444635417,0.139082914106,-0.39738642099,19.8439207191,316073.497487,1.43171341269,5.72569154319,4.87458974359 +31852674,0.0,0.1,0.5,0.2,0.0,5.54062070938,420.362795049,102.486064815,185.20453125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,239.151238809,253.198721591,258.811044118,257.782374298,894.0,296.15,77777.0,316674.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5887159375,0.125087060635,-0.397379998209,19.8672575217,316394.401558,1.44570926616,6.12603941398,5.03646153846 +31852995,0.0,0.1,0.5,0.2,0.0,6.81865226926,358.741443328,88.5681867284,184.626515997,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,238.950185293,253.019697364,258.64141276,257.62622752,894.0,296.15,77777.0,316995.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.589368055555,0.110789786822,-0.397373572539,19.8905943248,316715.305636,1.46000653997,6.13671363362,5.09820963542 +31853316,0.0,0.1,0.5,0.2,0.0,8.05703852021,297.326625909,74.8314012346,184.011703869,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,238.731927731,252.805199179,258.462661458,257.457177657,894.0,296.15,77777.0,317316.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.588327777778,0.0962977490981,-0.397367145,19.9139311283,317036.20972,1.47449857769,5.89559872482,5.09526241987 +31853637,0.0,0.1,0.5,0.2,0.0,9.29542477117,235.911808489,61.0946157407,183.396891741,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,238.513670169,252.590700995,258.283910156,257.288127794,894.0,296.15,77777.0,317637.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5872875,0.0818057113738,-0.397360717462,19.9372679318,317357.113804,1.48899061542,5.65448381603,5.09231520433 +31853958,0.0,0.1,0.5,0.2,0.0,9.95744374524,192.939015617,48.5376759259,182.712012649,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,238.270899259,252.34944092,258.085823785,257.096851868,894.0,296.15,77777.0,317958.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.58449537037,0.0669501511663,-0.397354286099,19.9606047361,317678.017898,1.50384617563,5.00940712312,5.07308794071 +31854279,0.0,0.1,0.5,0.2,0.0,10.4787218726,154.469507809,36.268837963,182.010024182,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,238.02214253,252.101645965,257.883016059,256.900148647,894.0,296.15,77777.0,318279.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.581275462963,0.0520058238408,-0.397347853802,19.9839415406,317998.921996,1.51879050295,4.26568859921,5.04988531651 +31854600,0.0,0.1,0.5,0.2,0.0,11.0,116.0,24.0,181.308035714,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,237.773385802,251.85385101,257.680208333,256.703445426,894.0,296.15,77777.0,318600.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.578055555556,0.0370614965153,-0.397341421506,20.0072783451,318319.826093,1.53373483028,3.52197007529,5.02668269231 +31854921,0.0,0.1,0.5,0.2,0.0,10.3629913949,98.5532753945,16.362875,180.551114211,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,237.50678833,251.587535958,257.463096788,256.492390503,894.0,296.15,77777.0,318921.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.574290740741,0.0217058042712,-0.397334984452,20.0306151506,318640.730204,1.54909052252,2.74621137191,4.97197165465 +31855242,0.0,0.1,0.5,0.2,0.0,9.72598278986,81.1065507889,8.72575,179.794192708,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,237.240190858,251.321220907,257.245985243,256.281335581,894.0,296.15,77777.0,319242.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.570525925926,0.00635011202719,-0.397328547399,20.0539519561,318961.634314,1.56444621477,1.97045266853,4.91726061699 +31855563,0.0,0.1,0.5,0.2,0.0,8.94983016305,64.5321856508,2.406375,179.03281808,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,236.972578875,251.054171164,257.027980469,256.069958154,894.0,296.15,77777.0,319563.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.566975,-0.00907883743191,-0.397322109411,20.0772887618,319282.538427,1.57987516423,1.28075927712,4.85415715145 +31855884,0.0,0.1,0.5,0.2,0.0,7.60384963768,51.5303402367,1.4835,178.253206845,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,236.700812229,250.784112689,256.806317708,255.857259999,894.0,296.15,77777.0,319884.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5643,-0.0248077926288,-0.3973156676,20.1006255683,319603.442552,1.59560411942,0.943523829949,4.75668469552 +31856205,0.0,0.1,0.5,0.2,0.0,6.25786911232,38.5284948225,0.560625,177.47359561,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,236.429045584,250.514054214,256.584654948,255.644561845,894.0,296.15,77777.0,320205.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.561625,-0.0405367478257,-0.39730922579,20.1239623747,319924.346676,1.61133307462,0.606288382781,4.65921223958 +31856526,0.0,0.1,0.5,0.2,0.0,4.91607336956,27.4425369823,0.0,176.575734375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,236.129031512,250.226078125,256.337207031,255.408640788,894.0,296.15,77777.0,320526.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.55938203125,-0.0563982932523,-0.397302782112,20.1472991816,320245.250806,1.62719462004,0.546033838169,4.5486484375 +31856847,0.0,0.1,0.5,0.2,0.0,3.58075407609,19.3216432446,0.0,175.494867188,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,235.785301187,249.910372396,256.049853515,255.136779528,894.0,296.15,77777.0,320847.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.557807682292,-0.0724650378439,-0.397296335544,20.170635989,320566.154944,1.64326136464,0.914440214181,4.41782421875 +31857168,0.0,0.1,0.5,0.2,0.0,2.24543478261,11.2007495069,0.0,174.414,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,235.441570863,249.594666667,255.7625,254.864918268,894.0,296.15,77777.0,321168.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.556233333333,-0.0885317824355,-0.397289888976,20.1939727965,320887.059082,1.65932810923,1.28284659019,4.287 +31857489,0.0,0.1,0.5,0.2,0.0,1.34010190217,6.21044008876,0.0,173.158242187,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,235.054339597,249.254497396,255.434541015,254.554977612,894.0,296.15,77777.0,321489.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.554799348958,-0.104777939542,-0.397283439608,20.2173096046,321207.963228,1.67557426634,1.87589951814,4.15076171875 +31857810,0.0,0.1,0.5,0.2,0.0,0.735076992754,3.40657051282,0.0,171.780338542,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,234.636726723,248.897242477,255.078222656,254.218441822,894.0,296.15,77777.0,321810.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.553463396991,-0.121149400628,-0.397276988283,20.240646413,321528.86738,1.69194572742,2.6258484506,4.0107421875 +31858131,0.0,0.1,0.5,0.2,0.0,0.130052083333,0.602700936884,0.0,170.402434896,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,234.219113848,248.539987557,254.721904297,253.881906033,894.0,296.15,77777.0,322131.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.552127445023,-0.137520861714,-0.397270536959,20.2639832215,321849.771532,1.70831718851,3.37579738306,3.87072265625 +31858452,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.14965625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,233.829808674,248.215885416,254.387242187,253.565878254,894.0,296.15,77777.0,322452.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.551233854167,-0.154107262762,-0.397264081901,20.2873200307,322170.675694,1.72490358956,4.0984888977,3.732015625 +31858773,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,167.931138021,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,233.448254417,247.900860822,254.058509765,253.255465763,894.0,296.15,77777.0,322773.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.550461385996,-0.170752516419,-0.397257625821,20.3106568401,322491.579859,1.74154884322,4.81371707174,3.59366796875 +31859094,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,166.712619792,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,233.06670016,247.585836227,253.729777343,252.945053273,894.0,296.15,77777.0,323094.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.549688917824,-0.187397770076,-0.39725116974,20.3339936496,322812.484024,1.75819409687,5.52894524577,3.4553203125 +31859415,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,166.098398438,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,232.828318839,247.394466146,253.522861328,252.750244993,894.0,296.15,77777.0,323415.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.549788411459,-0.204283196821,-0.397244708993,20.35733046,323133.388203,1.77507952362,5.80161895536,3.32927734375 +31859736,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,165.4956875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,232.592664621,247.205451389,253.318265625,252.557638697,894.0,296.15,77777.0,323736.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.549904513889,-0.221173198291,-0.397238248157,20.3806672705,323454.292381,1.79196952509,6.0658630561,3.20346875 +31860057,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,164.990406863,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,232.387234418,247.04879773,253.137672266,252.388555496,894.0,296.15,77777.0,324057.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.550578335337,-0.238101785155,-0.397231786476,20.4040040811,323775.196562,1.80889811195,6.23253127182,3.08001041667 +31860378,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,164.936382353,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,232.321789127,247.042027052,253.068247656,252.32842136,894.0,296.15,77777.0,324378.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.553835276442,-0.255209083317,-0.397225320884,20.4273408925,324096.100755,1.82600541012,5.94726907267,2.9674375 +31860699,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,164.882357843,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,232.256343835,247.035256374,252.998823046,252.268287223,894.0,296.15,77777.0,324699.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.557092217548,-0.272316381479,-0.397218855292,20.4506777039,324417.004948,1.84311270828,5.66200687352,2.85486458333 +31861020,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,164.879313726,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,232.224801657,247.075687189,252.953346354,252.232771311,894.0,296.15,77777.0,325020.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.561577524038,-0.289495132794,-0.397212387923,20.4740145157,324737.909145,1.86029145959,5.29940212523,2.74645833333 +31861341,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,164.961661765,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,232.250047195,247.195180504,252.947982422,252.238490925,894.0,296.15,77777.0,325341.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.568120342548,-0.306793568142,-0.397205917576,20.4973513281,325058.813351,1.87758989494,4.80724860712,2.64503125 +31861662,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,165.044009804,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,232.275292732,247.314673818,252.94261849,252.24421054,894.0,296.15,77777.0,325662.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.574663161057,-0.32409200349,-0.397199447229,20.5206881405,325379.717557,1.89488833029,4.31509508902,2.54360416667 +31861983,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,165.169117647,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,232.326061736,247.457952581,252.958572786,252.270584712,894.0,296.15,77777.0,325983.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.581462590144,-0.341485044051,-0.397192974171,20.5440249535,325700.621771,1.91228137085,3.84491934497,2.45234375 +31862304,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,165.326470588,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,232.396077945,247.61916791,252.990603125,252.312534454,894.0,296.15,77777.0,326304.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.588455528846,-0.358949426246,-0.397186499068,20.5673617669,326021.525991,1.92974575304,3.39131700431,2.36875 +31862625,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,165.483823529,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,232.466094153,247.78038324,253.022633463,252.354484195,894.0,296.15,77777.0,326625.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.595448467548,-0.376413808442,-0.397180023966,20.5906985803,326342.430211,1.94721013524,2.93771466365,2.28515625 +31862946,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,165.651627451,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,232.535356412,247.908783271,253.062885156,252.401310602,894.0,296.15,77777.0,326946.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.600613161058,-0.393986534395,-0.39717354522,20.6140353945,326663.334441,1.96478286119,2.70175233473,2.22035416667 +31863267,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,165.822617647,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,232.604388808,248.027178638,253.105643359,252.449623796,894.0,296.15,77777.0,327267.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.60522046274,-0.41159229198,-0.397167065364,20.6373722088,326984.238674,1.98238861877,2.53214366791,2.16128125 +31863588,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,165.993607843,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,232.673421205,248.145574005,253.148401562,252.49793699,894.0,296.15,77777.0,327588.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.609827764423,-0.429198049566,-0.397160585507,20.6607090232,327305.142907,1.99999437636,2.3625350011,2.10220833333 +31863909,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,166.147431373,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,232.738562031,248.215395508,253.2002125,252.55040026,894.0,296.15,77777.0,327909.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.611723269231,-0.446916465343,-0.397154101073,20.6840458386,327626.047154,2.01771279213,2.42073134425,2.08256510417 +31864230,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,166.300588235,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,232.803551729,248.283330648,253.252375,252.603024697,894.0,296.15,77777.0,328230.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.613513461538,-0.464639256196,-0.397147616463,20.707382654,327946.951401,2.03543558299,2.4877744839,2.064453125 +31864551,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,166.454411765,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,232.870268556,248.350363151,253.3066625,252.657330214,894.0,296.15,77777.0,328551.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.615100961538,-0.482376739356,-0.397141131096,20.7307194696,328267.85565,2.05317306615,2.55701600471,2.0538671875 +31864872,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,166.611764706,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,232.946129008,248.412616991,253.3722,252.720535564,894.0,296.15,77777.0,328872.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.615615384615,-0.500192005324,-0.397134641731,20.754056286,328588.759911,2.07098833212,2.63789601396,2.083125 +31865193,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,166.769117647,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,233.021989459,248.474870831,253.4377375,252.783740915,894.0,296.15,77777.0,329193.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.616129807693,-0.518007271291,-0.397128152366,20.7773931024,328909.664171,2.08880359809,2.71877602322,2.1123828125 +31865514,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,166.934666666,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,233.095072169,248.533007001,253.501375,252.84442562,894.0,296.15,77777.0,329514.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.616235,-0.535846394291,-0.397121661312,20.8007299191,329230.568437,2.10664272109,2.79826024694,2.15549479167 +31865835,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,167.115098039,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,233.163111085,248.583666351,253.5615625,252.900533363,894.0,296.15,77777.0,329835.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.615597115385,-0.553728836639,-0.397115167193,20.8240667365,329551.472712,2.12452516343,2.87521001798,2.22376302083 +31866156,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,167.295529412,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,233.231150001,248.634325701,253.62175,252.956641107,894.0,296.15,77777.0,330156.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.614959230769,-0.571611278987,-0.397108673075,20.8474035538,329872.376986,2.14240760578,2.95215978901,2.29203125 +31866477,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,167.499098039,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,233.28456383,248.675331284,253.6686625,252.999118517,894.0,296.15,77777.0,330477.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.613754038461,-0.589516053367,-0.397102176335,20.8707403718,330193.281268,2.16031238016,3.01714560289,2.37720052083 +31866798,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,167.721490196,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,233.326079282,248.708482955,253.704775,253.030506841,894.0,296.15,77777.0,330798.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.612087307692,-0.607438996181,-0.397095677463,20.8940771902,330514.185556,2.17823532298,3.07239802789,2.47611979167 +31867119,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,167.943882353,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,233.367594734,248.741634625,253.7408875,253.061895166,894.0,296.15,77777.0,331119.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.610420576923,-0.625361938995,-0.39708917859,20.9174140085,330835.089844,2.19615826579,3.12765045289,2.5750390625 +31867440,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,168.313333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,233.52603461,248.686172014,253.726153846,253.041585761,894.0,296.15,77777.0,331440.0,0.693942910593,-1.83015225364,0.0156666666667,0.0156666666667,101325.0,0.6067875,-0.643293593866,-0.397082676165,20.9407508277,331155.994142,2.21408992066,3.17199357387,2.69201388889 +31867761,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,168.732416667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,233.723936478,248.600802083,253.694259615,253.003828372,894.0,296.15,77777.0,331761.0,0.693942910593,-1.83015225364,0.0366208333333,0.0366208333333,101325.0,0.60249078125,-0.661228189057,-0.397076172539,20.964087647,331476.898444,2.23202451585,3.21265480475,2.81508246528 +31868082,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.1515,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,233.921838347,248.515432152,253.662365385,252.966070983,894.0,296.15,77777.0,332082.0,0.693942910593,-1.83015225364,0.057575,0.057575,101325.0,0.5981940625,-0.679162784248,-0.397069668914,20.9874244664,331797.802745,2.24995911105,3.25331603563,2.93815104166 +31868403,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,169.766972222,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,234.186955176,248.307476697,253.576733974,252.873471567,894.0,296.15,77777.0,332403.0,0.693942910593,-1.83015225364,0.1029375,0.1029375,101325.0,0.59153015625,-0.697078135475,-0.397063160803,21.0107612867,332118.70706,2.26787446227,3.29450338139,3.0755396412 +31868724,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,170.394111111,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,234.456064973,248.092238933,253.487910257,252.777614209,894.0,296.15,77777.0,332724.0,0.693942910593,-1.83015225364,0.14975,0.14975,101325.0,0.584725625,-0.714992343497,-0.397056652425,21.0340981071,332439.611376,2.28578867029,3.3357219815,3.21377893518 +31869045,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.022916666,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,234.707807452,247.876821803,253.400048077,252.682763509,894.0,296.15,77777.0,333045.0,0.693942910593,-1.83015225364,0.1968125,0.1968125,101325.0,0.57794921875,-0.732898566991,-0.39705014338,21.0574349276,332760.515693,2.30369489379,3.37621916272,3.35245225695 +31869366,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.661944444,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,234.853030386,247.660304553,253.318083334,252.594086981,894.0,296.15,77777.0,333366.0,0.693942910593,-1.83015225364,0.245408333333,0.245408333333,101325.0,0.5713453125,-0.75075581872,-0.39704363025,21.080771749,333081.420022,2.32155214551,3.41229164141,3.49378761574 +31869687,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.300972222,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,234.998253319,247.443787303,253.23611859,252.505410453,894.0,296.15,77777.0,333687.0,0.693942910593,-1.83015225364,0.294004166667,0.294004166667,101325.0,0.56474140625,-0.76861307045,-0.39703711712,21.1041085704,333402.324352,2.33940939724,3.4483641201,3.63512297454 +31870008,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.878,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,235.123582379,247.270102942,253.177923077,252.440888758,894.0,296.15,77777.0,334008.0,0.693942910593,-1.83015225364,0.3351,0.3351,101325.0,0.55911625,-0.786436728235,-0.397030602391,21.1274453921,333723.228685,2.35723305503,3.48078626203,3.7734375 +31870329,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,173.33275,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,235.2096763,247.180894552,253.166605769,252.424005764,894.0,296.15,77777.0,334329.0,0.693942910593,-1.83015225364,0.361404166667,0.361404166667,101325.0,0.55542140625,-0.804194131299,-0.397024084508,21.1507822144,334044.133028,2.37499045809,3.50600912865,3.90579427083 +31870650,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,173.7875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,235.295770222,247.091686163,253.155288461,252.40712277,894.0,296.15,77777.0,334650.0,0.693942910593,-1.83015225364,0.387708333333,0.387708333333,101325.0,0.5517265625,-0.821951534362,-0.397017566626,21.1741190367,334365.037371,2.39274786116,3.53123199528,4.03815104167 +31870971,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,174.138541667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,235.381085775,247.082542882,253.17666233,252.425002989,894.0,296.15,77777.0,334971.0,0.693942910593,-1.83015225364,0.40273125,0.40273125,101325.0,0.550368394886,-0.839628225234,-0.397011046212,21.1974558596,334685.941722,2.41042455203,3.54750724112,4.1630859375 +31871292,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,174.398611111,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,235.46571855,247.143632152,253.22671267,252.473377254,894.0,296.15,77777.0,335292.0,0.693942910593,-1.83015225364,0.407858333333,0.407858333333,101325.0,0.551059943182,-0.857234115938,-0.397004523577,21.220792683,335006.846078,2.42803044273,3.55593369681,4.28151041667 +31871613,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,174.658680556,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,235.550351325,247.204721422,253.276763009,252.52175152,894.0,296.15,77777.0,335613.0,0.693942910593,-1.83015225364,0.412985416667,0.412985416667,101325.0,0.551751491478,-0.874840006641,-0.396998000943,21.2441295064,335327.750435,2.44563633344,3.5643601525,4.39993489583 +31871934,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,174.871805556,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,235.637611641,247.306714622,253.331136878,252.577565425,894.0,296.15,77777.0,335934.0,0.693942910593,-1.83015225364,0.415404166667,0.415404166667,101325.0,0.554404119318,-0.892288921184,-0.396991474845,21.2674663305,335648.654802,2.46308524798,3.56383537199,4.50730034722 +31872255,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,175.067476852,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,235.725848863,247.423915692,253.387118213,252.63614535,894.0,296.15,77777.0,336255.0,0.693942910593,-1.83015225364,0.416815972222,0.416815972222,101325.0,0.557785866477,-0.909679472796,-0.396984947459,21.2908031548,335969.559172,2.48047579959,3.55998256777,4.6105541088 +31872576,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,175.263148148,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,235.814086085,247.541116763,253.443099548,252.694725276,894.0,296.15,77777.0,336576.0,0.693942910593,-1.83015225364,0.418227777777,0.418227777777,101325.0,0.561167613636,-0.927070024408,-0.396978420074,21.3141399792,336290.463543,2.4978663512,3.55612976354,4.71380787037 +31872897,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,175.412986111,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,235.891574965,247.666587723,253.499528846,252.754852818,894.0,296.15,77777.0,336897.0,0.693942910593,-1.83015225364,0.416614583333,0.416614583333,101325.0,0.565139985795,-0.944186631685,-0.396971888292,21.3374768045,336611.367926,2.51498295848,3.55016111121,4.79700954861 +31873218,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,175.55912037,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,235.968195292,247.792726957,253.555994344,252.81510542,894.0,296.15,77777.0,337218.0,0.693942910593,-1.83015225364,0.414756944444,0.414756944444,101325.0,0.569160085227,-0.961281102045,-0.396965356155,21.3608136299,336932.27231,2.53207742884,3.54402148125,4.87859085648 +31873539,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,175.701041667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,236.041555377,247.914220759,253.611856901,252.87450335,894.0,296.15,77777.0,337539.0,0.693942910593,-1.83015225364,0.41255625,0.41255625,101325.0,0.573008451705,-0.978326921145,-0.396958823441,21.3841504554,337253.176696,2.54912324794,3.53881804672,4.95674913195 +31873860,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,175.8125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,236.0913414,248.002124518,253.663359729,252.927721335,894.0,296.15,77777.0,337860.0,0.693942910593,-1.83015225364,0.407875,0.407875,101325.0,0.575615056818,-0.995020954203,-0.396952286553,21.4074872817,337574.081094,2.565817281,3.54038402521,5.01015625 +31874181,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,175.923958333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,236.141127424,248.090028277,253.714862557,252.980939321,894.0,296.15,77777.0,338181.0,0.693942910593,-1.83015225364,0.40319375,0.40319375,101325.0,0.578221661932,-1.01171498726,-0.396945749665,21.4308241081,337894.985492,2.58251131406,3.5419500037,5.06356336806 +31874502,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,176.023020833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,236.181321419,248.155548532,253.764856771,253.030648667,894.0,296.15,77777.0,338502.0,0.693942910593,-1.83015225364,0.397963541667,0.397963541667,101325.0,0.579638697789,-1.02823812336,-0.396939211268,21.4541609348,338215.889894,2.59903445016,3.55086048525,5.06719933712 +31874823,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,176.09546875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,236.200920767,248.173010089,253.811611902,253.072824756,894.0,296.15,77777.0,338823.0,0.693942910593,-1.83015225364,0.3915546875,0.3915546875,101325.0,0.578501658477,-1.04439433363,-0.396932669629,21.4774977621,338536.794306,2.61519066043,3.57554004689,4.96397372159 +31875144,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,176.167916667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,236.220520114,248.190471646,253.858367034,253.115000845,894.0,296.15,77777.0,339144.0,0.693942910593,-1.83015225364,0.385145833333,0.385145833333,101325.0,0.577364619165,-1.06055054389,-0.396926127991,21.5008345895,338857.698717,2.63134687069,3.60021960852,4.86074810606 +31875465,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,176.214265046,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,236.23087389,248.186642324,253.904518357,253.153943686,894.0,296.15,77777.0,339465.0,0.693942910593,-1.83015225364,0.378068576389,0.378068576389,101325.0,0.57475460688,-1.07633602545,-0.396919583911,21.5241714174,339178.603136,2.64713235225,3.63472513145,4.66485755997 +31875786,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,176.2359375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,236.232486397,248.162683443,253.950098805,253.189829637,894.0,296.15,77777.0,339786.0,0.693942910593,-1.83015225364,0.370359375,0.370359375,101325.0,0.570751965602,-1.09177099986,-0.396913037522,21.5475082457,339499.507561,2.66256732666,3.67852065413,4.38135653409 +31876107,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,176.257609954,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,236.234098905,248.138724563,253.995679254,253.225715589,894.0,296.15,77777.0,340107.0,0.693942910593,-1.83015225364,0.362650173611,0.362650173611,101325.0,0.566749324325,-1.10720597427,-0.396906491133,21.5708450741,339820.411987,2.67800230107,3.72231617681,4.09785550821 +31876428,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,176.245856481,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,236.228338294,248.117073143,254.040134293,253.260296177,894.0,296.15,77777.0,340428.0,0.693942910593,-1.83015225364,0.353621527778,0.353621527778,101325.0,0.562671990172,-1.12195354717,-0.396899941371,21.5941819032,340141.316422,2.69274987396,3.76611169949,3.79336332071 +31876749,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,176.22046875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,236.219570228,248.096362924,254.084130285,253.294344314,894.0,296.15,77777.0,340749.0,0.693942910593,-1.83015225364,0.3440546875,0.3440546875,101325.0,0.558564189189,-1.1364207326,-0.396893390232,21.6175187326,340462.220862,2.70721705939,3.80990722217,3.48030894886 +31877070,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,176.195081018,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,236.210802161,248.075652705,254.128126276,253.328392451,894.0,296.15,77777.0,341070.0,0.693942910593,-1.83015225364,0.334487847222,0.334487847222,101325.0,0.554456388206,-1.15088791803,-0.396886839094,21.640855562,340783.125301,2.72168424482,3.85370274485,3.16725457702 +31877391,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,176.130399305,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,236.198467229,248.098381952,254.170314415,253.364985326,894.0,296.15,77777.0,341391.0,0.693942910593,-1.83015225364,0.322731770833,0.322731770833,101325.0,0.55275571253,-1.16417875577,-0.39688028365,21.6641923923,341104.029753,2.73497508256,3.8801688449,2.96404474432 +31877712,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,176.061666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,236.185764579,248.125589495,254.212316176,253.401840546,894.0,296.15,77777.0,341712.0,0.693942910593,-1.83015225364,0.31075,0.31075,101325.0,0.551303194103,-1.17734832055,-0.396873727762,21.6875292226,341424.934205,2.74814464734,3.90484840655,2.77215909091 +31878033,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,175.967916667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,236.168286164,248.173393364,254.251913132,253.439035624,894.0,296.15,77777.0,342033.0,0.693942910593,-1.83015225364,0.2975078125,0.2975078125,101325.0,0.551275675676,-1.19034022296,-0.396867171386,21.7108660531,341745.83866,2.76113654975,3.92313753609,2.59399038462 +31878354,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,175.655833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,236.109128357,248.400946991,254.270522693,253.47919674,894.0,296.15,77777.0,342354.0,0.693942910593,-1.83015225364,0.273265625,0.273265625,101325.0,0.563684520884,-1.20178161735,-0.396860610748,21.7342028845,342066.743127,2.77257794414,3.88565562185,2.53553321678 +31878675,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,175.34375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,236.049970549,248.628500619,254.289132254,253.519357856,894.0,296.15,77777.0,342675.0,0.693942910593,-1.83015225364,0.2490234375,0.2490234375,101325.0,0.576093366093,-1.21322301174,-0.396854050111,21.7575397159,342387.647594,2.78401933854,3.8481737076,2.47707604895 +31878996,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,174.951666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,235.959688912,248.911001425,254.29922991,253.558957181,894.0,296.15,77777.0,342996.0,0.693942910593,-1.83015225364,0.22128125,0.22128125,101325.0,0.592605077805,-1.22398889219,-0.396847488053,21.7808765476,342708.552065,2.79478521899,3.79362074568,2.43120629371 +31879317,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,174.372083333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,235.7964608,249.322284683,254.28937779,253.59723981,894.0,296.15,77777.0,343317.0,0.693942910593,-1.83015225364,0.1853359375,0.1853359375,101325.0,0.618732882883,-1.23317153683,-0.396840922667,21.80421338,343029.456546,2.80396786363,3.69905751576,2.41483828671 +31879638,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,173.7925,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,235.633232687,249.73356794,254.279525669,253.635522439,894.0,296.15,77777.0,343638.0,0.693942910593,-1.83015225364,0.149390625,0.149390625,101325.0,0.644860687961,-1.24235418147,-0.39683435728,21.8275502124,343350.361027,2.81315050827,3.60449428583,2.39847027972 +31879959,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,173.212916667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,235.432269943,250.132384586,254.26750465,253.671088353,894.0,296.15,77777.0,343959.0,0.693942910593,-1.83015225364,0.1151015625,0.1151015625,101325.0,0.67071936937,-1.25012881005,-0.396827789542,21.8508870453,343671.265514,2.82092513684,3.50794540638,2.40063374126 +31880280,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.633333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,235.192860593,250.5184994,254.253273809,253.703886294,894.0,296.15,77777.0,344280.0,0.693942910593,-1.83015225364,0.0825,0.0825,101325.0,0.696303849304,-1.25646885621,-0.396821219408,21.8742238787,343992.170009,2.827265183,3.4093734123,2.42167832168 +31880601,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,172.05375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,234.953451243,250.904614215,254.239042969,253.736684235,894.0,296.15,77777.0,344601.0,0.693942910593,-1.83015225364,0.0498984375,0.0498984375,101325.0,0.721888329238,-1.26280890238,-0.396814649273,21.8975607121,344313.074503,2.83360522917,3.31080141822,2.44272290209 +31880922,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.659166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,234.788177067,251.128851253,254.23843936,253.763960912,894.0,296.15,77777.0,344922.0,0.693942910593,-1.83015225364,0.030015625,0.030015625,101325.0,0.737233415234,-1.26682438539,-0.396808075855,21.9208975461,344633.979007,2.83762071218,3.24616138925,2.48640734265 +31881243,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.347083333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,234.655963172,251.280899554,254.24391276,253.788775403,894.0,296.15,77777.0,345243.0,0.693942910593,-1.83015225364,0.0158046875,0.0158046875,101325.0,0.748012285012,-1.26980323887,-0.396801500971,21.9442343805,344954.883516,2.84059956567,3.19665318254,2.54018793706 +31881564,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,171.035,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,234.523749278,251.432947854,254.249386161,253.813589894,894.0,296.15,77777.0,345564.0,0.693942910593,-1.83015225364,0.00159375,0.00159375,101325.0,0.758791154791,-1.27278209236,-0.396794926088,21.9675712149,345275.788024,2.84357841916,3.14714497584,2.59396853147 diff --git a/testing/references/data/testcase3/tc3_data_retrieved_over_year.csv b/testing/references/data/testcase3/tc3_data_retrieved_over_year.csv new file mode 100644 index 000000000..998ef98a1 --- /dev/null +++ b/testing/references/data/testcase3/tc3_data_retrieved_over_year.csv @@ -0,0 +1,1886 @@ +time,EmissionsBiomassPower,EmissionsDistrictHeatingPower,EmissionsElectricPower,EmissionsGasPower,EmissionsSolarThermalPower,InternalGainsCon[North],InternalGainsCon[South],InternalGainsLat[North],InternalGainsLat[South],InternalGainsRad[North],InternalGainsRad[South],LowerSetp[North],LowerSetp[South],Occupancy[North],Occupancy[South],PriceBiomassPower,PriceDistrictHeatingPower,PriceElectricPowerConstant,PriceElectricPowerDynamic,PriceElectricPowerHighlyDynamic,PriceGasPower,PriceSolarThermalPower,TDryBul,UpperCO2[North],UpperCO2[South],UpperSetp[North],UpperSetp[South] +31276800,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,293.15,994.0,894.0,297.15,296.15 +31277121,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,293.3834235,994.0,894.0,297.15,296.15 +31277442,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,293.616714,994.0,894.0,297.15,296.15 +31277763,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,293.849736,994.0,894.0,297.15,296.15 +31278084,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,294.082384,994.0,894.0,297.15,296.15 +31278405,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,294.314545,994.0,894.0,297.15,296.15 +31278726,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,294.546041,994.0,894.0,297.15,296.15 +31279047,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,294.776797,994.0,894.0,297.15,296.15 +31279368,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,295.006654,994.0,894.0,297.15,296.15 +31279689,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,295.2355305,994.0,894.0,297.15,296.15 +31280010,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,295.463245,994.0,894.0,297.15,296.15 +31280331,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-2.23360720629e-14,0.07,0.0,295.68967,994.0,894.0,297.15,296.15 +31280652,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,295.914756,994.0,894.0,297.15,296.15 +31280973,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.138311,994.0,894.0,297.15,296.15 +31281294,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.360248,994.0,894.0,297.15,296.15 +31281615,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.580445,994.0,894.0,297.15,296.15 +31281936,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.798752,994.0,894.0,297.15,296.15 +31282257,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.015106,994.0,894.0,297.15,296.15 +31282578,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.229326,994.0,894.0,297.15,296.15 +31282899,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.441303,994.0,894.0,297.15,296.15 +31283220,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.65097,994.0,894.0,297.15,296.15 +31283541,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.8581945,994.0,894.0,297.15,296.15 +31283862,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,298.062841,994.0,894.0,297.15,296.15 +31284183,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.264812,994.0,894.0,297.15,296.15 +31284504,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.46398,994.0,894.0,297.15,296.15 +31284825,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.66026,994.0,894.0,297.15,296.15 +31285146,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.853559,994.0,894.0,297.15,296.15 +31285467,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.043718,994.0,894.0,297.15,296.15 +31285788,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.230668,994.0,894.0,297.15,296.15 +31286109,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.414334,994.0,894.0,297.15,296.15 +31286430,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.59456,994.0,894.0,297.15,296.15 +31286751,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.7712905,994.0,894.0,297.15,296.15 +31287072,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.94441,994.0,894.0,297.15,296.15 +31287393,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,300.113815,994.0,894.0,297.15,296.15 +31287714,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.279436,994.0,894.0,297.15,296.15 +31288035,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.4411725,994.0,894.0,297.15,296.15 +31288356,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.598922,994.0,894.0,297.15,296.15 +31288677,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.7526395,994.0,894.0,297.15,296.15 +31288998,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.902179,994.0,894.0,297.15,296.15 +31289319,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.047527,994.0,894.0,297.15,296.15 +31289640,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.18857,994.0,894.0,297.15,296.15 +31289961,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.325192,994.0,894.0,297.15,296.15 +31290282,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.457401,994.0,894.0,297.15,296.15 +31290603,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.5850875,994.0,894.0,297.15,296.15 +31290924,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.70815,994.0,894.0,297.15,296.15 +31291245,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.82656,994.0,894.0,297.15,296.15 +31291566,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.940243,994.0,894.0,297.15,296.15 +31291887,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.049115,994.0,894.0,297.15,296.15 +31292208,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.153172,994.0,894.0,297.15,296.15 +31292529,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.2523,994.0,894.0,297.15,296.15 +31292850,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.34648,994.0,894.0,297.15,296.15 +31293171,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.435661,994.0,894.0,297.15,296.15 +31293492,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.51976,994.0,894.0,297.15,296.15 +31293813,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.598756,994.0,894.0,297.15,296.15 +31294134,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.67261,994.0,894.0,297.15,296.15 +31294455,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.741275,994.0,894.0,297.15,296.15 +31294776,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.804714,994.0,894.0,297.15,296.15 +31295097,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.862907,994.0,894.0,297.15,296.15 +31295418,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.915762,994.0,894.0,297.15,296.15 +31295739,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.963333,994.0,894.0,297.15,296.15 +31296060,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.00555,994.0,894.0,297.15,296.15 +31296381,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.042379,994.0,894.0,297.15,296.15 +31296702,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.073841,994.0,894.0,297.15,296.15 +31297023,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.099885,994.0,894.0,297.15,296.15 +31297344,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.120502,994.0,894.0,297.15,296.15 +31297665,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1357,994.0,894.0,297.15,296.15 +31297986,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.145446,994.0,894.0,297.15,296.15 +31298307,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1497515,994.0,894.0,297.15,296.15 +31298628,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.148604,994.0,894.0,297.15,296.15 +31298949,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.1420255,994.0,894.0,297.15,296.15 +31299270,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.129975,994.0,894.0,297.15,296.15 +31299591,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.112498,994.0,894.0,297.15,296.15 +31299912,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.089608,994.0,894.0,297.15,296.15 +31300233,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.06126,994.0,894.0,297.15,296.15 +31300554,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.02757,994.0,894.0,297.15,296.15 +31300875,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.98845,994.0,894.0,297.15,296.15 +31301196,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.943976,994.0,894.0,297.15,296.15 +31301517,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.894185,994.0,894.0,297.15,296.15 +31301838,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.839068,994.0,894.0,297.15,296.15 +31302159,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.7786825,994.0,894.0,297.15,296.15 +31302480,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.71304,994.0,894.0,297.15,296.15 +31302801,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.642184,994.0,894.0,297.15,296.15 +31303122,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.566165,994.0,894.0,297.15,296.15 +31303443,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.485015,994.0,894.0,297.15,296.15 +31303764,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.39876,994.0,894.0,297.15,296.15 +31304085,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.307475,994.0,894.0,297.15,296.15 +31304406,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.211218,994.0,894.0,297.15,296.15 +31304727,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.1099835,994.0,894.0,297.15,296.15 +31305048,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.003924,994.0,894.0,297.15,296.15 +31305369,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.8930155,994.0,894.0,297.15,296.15 +31305690,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.77733,994.0,894.0,297.15,296.15 +31306011,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.6569605,994.0,894.0,297.15,296.15 +31306332,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.53193,994.0,894.0,297.15,296.15 +31306653,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.4023535,994.0,894.0,297.15,296.15 +31306974,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.268292,994.0,894.0,297.15,296.15 +31307295,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.1297675,994.0,894.0,297.15,296.15 +31307616,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.98691,994.0,894.0,297.15,296.15 +31307937,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.839792,994.0,894.0,297.15,296.15 +31308258,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.688476,994.0,894.0,297.15,296.15 +31308579,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.5330705,994.0,894.0,297.15,296.15 +31308900,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.37363,994.0,894.0,297.15,296.15 +31309221,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.2102515,994.0,894.0,297.15,296.15 +31309542,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.043014,994.0,894.0,297.15,296.15 +31309863,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.872042,994.0,894.0,297.15,296.15 +31310184,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.6974,994.0,894.0,297.15,296.15 +31310505,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.5191775,994.0,894.0,297.15,296.15 +31310826,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.337506,994.0,894.0,297.15,296.15 +31311147,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.1524405,994.0,894.0,297.15,296.15 +31311468,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.964124,994.0,894.0,297.15,296.15 +31311789,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.7726335,994.0,894.0,297.15,296.15 +31312110,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.578075,994.0,894.0,297.15,296.15 +31312431,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.380571,994.0,894.0,297.15,296.15 +31312752,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.180192,994.0,894.0,297.15,296.15 +31313073,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.97709,994.0,894.0,297.15,296.15 +31313394,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.771365,994.0,894.0,297.15,296.15 +31313715,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.56309,994.0,894.0,297.15,296.15 +31314036,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.35244,994.0,894.0,297.15,296.15 +31314357,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.139479,994.0,894.0,297.15,296.15 +31314678,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.924368,994.0,894.0,297.15,296.15 +31314999,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.7071695,994.0,894.0,297.15,296.15 +31315320,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.48807,994.0,894.0,297.15,296.15 +31315641,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.267132,994.0,894.0,297.15,296.15 +31315962,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.044484,994.0,894.0,297.15,296.15 +31316283,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,295.820295,994.0,894.0,297.15,296.15 +31316604,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,295.594604,994.0,894.0,297.15,296.15 +31316925,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,295.367595,994.0,894.0,297.15,296.15 +31317246,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,295.139402,994.0,894.0,297.15,296.15 +31317567,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,294.9101035,994.0,894.0,297.15,296.15 +31317888,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,294.679856,994.0,894.0,297.15,296.15 +31318209,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,294.448771,994.0,894.0,297.15,296.15 +31318530,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,294.21698,994.0,894.0,297.15,296.15 +31318851,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,293.9846175,994.0,894.0,297.15,296.15 +31319172,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,293.751784,994.0,894.0,297.15,296.15 +31319493,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,293.51862,994.0,894.0,297.15,296.15 +31319814,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135309,0.07,0.0,293.285244,994.0,894.0,297.15,296.15 +31320135,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,293.05183,994.0,894.0,297.15,296.15 +31320456,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,292.81844,994.0,894.0,297.15,296.15 +31320777,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,292.585249,994.0,894.0,297.15,296.15 +31321098,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,292.352373,994.0,894.0,297.15,296.15 +31321419,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,292.1199005,994.0,894.0,297.15,296.15 +31321740,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,291.888,994.0,894.0,297.15,296.15 +31322061,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,291.6567975,994.0,894.0,297.15,296.15 +31322382,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,291.4264,994.0,894.0,297.15,296.15 +31322703,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,291.19696,994.0,894.0,297.15,296.15 +31323024,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,290.968568,994.0,894.0,297.15,296.15 +31323345,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,5.96763050943e-14,0.07,0.0,290.74136,994.0,894.0,297.15,296.15 +31323666,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.515475,994.0,894.0,297.15,296.15 +31323987,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.29103,994.0,894.0,297.15,296.15 +31324308,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.068142,994.0,894.0,297.15,296.15 +31324629,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.846923,994.0,894.0,297.15,296.15 +31324950,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.62751,994.0,894.0,297.15,296.15 +31325271,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.410005,994.0,894.0,297.15,296.15 +31325592,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.194564,994.0,894.0,297.15,296.15 +31325913,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.981256,994.0,894.0,297.15,296.15 +31326234,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.770224,994.0,894.0,297.15,296.15 +31326555,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.56157,994.0,894.0,297.15,296.15 +31326876,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.35544,994.0,894.0,297.15,296.15 +31327197,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.151892,994.0,894.0,297.15,296.15 +31327518,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.951102,994.0,894.0,297.15,296.15 +31327839,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.753119,994.0,894.0,297.15,296.15 +31328160,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.55807,994.0,894.0,297.15,296.15 +31328481,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.366087,994.0,894.0,297.15,296.15 +31328802,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.177259,994.0,894.0,297.15,296.15 +31329123,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.9916635,994.0,894.0,297.15,296.15 +31329444,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.809444,994.0,894.0,297.15,296.15 +31329765,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.63068,994.0,894.0,297.15,296.15 +31330086,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.455445,994.0,894.0,297.15,296.15 +31330407,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.2838905,994.0,894.0,297.15,296.15 +31330728,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.116068,994.0,894.0,297.15,296.15 +31331049,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.952064,994.0,894.0,297.15,296.15 +31331370,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.79199,994.0,894.0,297.15,296.15 +31331691,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.6359245,994.0,894.0,297.15,296.15 +31332012,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.483964,994.0,894.0,297.15,296.15 +31332333,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.3361715,994.0,894.0,297.15,296.15 +31332654,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.192619,994.0,894.0,297.15,296.15 +31332975,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.0534475,994.0,894.0,297.15,296.15 +31333296,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.918662,994.0,894.0,297.15,296.15 +31333617,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.7883395,994.0,894.0,297.15,296.15 +31333938,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.662615,994.0,894.0,297.15,296.15 +31334259,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.541497,994.0,894.0,297.15,296.15 +31334580,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.42505,994.0,894.0,297.15,296.15 +31334901,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.3133795,994.0,894.0,297.15,296.15 +31335222,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.206515,994.0,894.0,297.15,296.15 +31335543,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.104513,994.0,894.0,297.15,296.15 +31335864,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.007496,994.0,894.0,297.15,296.15 +31336185,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.915395,994.0,894.0,297.15,296.15 +31336506,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.828357,994.0,894.0,297.15,296.15 +31336827,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.7464065,994.0,894.0,297.15,296.15 +31337148,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.669564,994.0,894.0,297.15,296.15 +31337469,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.597871,994.0,894.0,297.15,296.15 +31337790,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.531415,994.0,894.0,297.15,296.15 +31338111,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.4701915,994.0,894.0,297.15,296.15 +31338432,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.41422,994.0,894.0,297.15,296.15 +31338753,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.3635965,994.0,894.0,297.15,296.15 +31339074,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.318246,994.0,894.0,297.15,296.15 +31339395,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.2782975,994.0,894.0,297.15,296.15 +31339716,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.243718,994.0,894.0,297.15,296.15 +31340037,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.2145515,994.0,894.0,297.15,296.15 +31340358,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.190787,994.0,894.0,297.15,296.15 +31340679,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.1724455,994.0,894.0,297.15,296.15 +31341000,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.15952,994.0,894.0,297.15,296.15 +31341321,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.1520725,994.0,894.0,297.15,296.15 +31341642,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.15007,994.0,894.0,297.15,296.15 +31341963,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.153463,994.0,894.0,297.15,296.15 +31342284,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.162398,994.0,894.0,297.15,296.15 +31342605,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.1767125,994.0,894.0,297.15,296.15 +31342926,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.196468,994.0,894.0,297.15,296.15 +31343247,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.221679,994.0,894.0,297.15,296.15 +31343568,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.252244,994.0,894.0,297.15,296.15 +31343889,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.2882335,994.0,894.0,297.15,296.15 +31344210,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.32962,994.0,894.0,297.15,296.15 +31344531,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.3763245,994.0,894.0,297.15,296.15 +31344852,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.428356,994.0,894.0,297.15,296.15 +31345173,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.48571,994.0,894.0,297.15,296.15 +31345494,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.548288,994.0,894.0,297.15,296.15 +31345815,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.616125,994.0,894.0,297.15,296.15 +31346136,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.689172,994.0,894.0,297.15,296.15 +31346457,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.767349,994.0,894.0,297.15,296.15 +31346778,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.850651,994.0,894.0,297.15,296.15 +31347099,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.9390105,994.0,894.0,297.15,296.15 +31347420,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.03238,994.0,894.0,297.15,296.15 +31347741,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.1307475,994.0,894.0,297.15,296.15 +31348062,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.234011,994.0,894.0,297.15,296.15 +31348383,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.342136,994.0,894.0,297.15,296.15 +31348704,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.455072,994.0,894.0,297.15,296.15 +31349025,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.57274,994.0,894.0,297.15,296.15 +31349346,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.695058,994.0,894.0,297.15,296.15 +31349667,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.8220065,994.0,894.0,297.15,296.15 +31349988,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.953482,994.0,894.0,297.15,296.15 +31350309,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.089422,994.0,894.0,297.15,296.15 +31350630,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.22978,994.0,894.0,297.15,296.15 +31350951,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.3744345,994.0,894.0,297.15,296.15 +31351272,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.523322,994.0,894.0,297.15,296.15 +31351593,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.6763745,994.0,894.0,297.15,296.15 +31351914,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.83349,994.0,894.0,297.15,296.15 +31352235,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.9946025,994.0,894.0,297.15,296.15 +31352556,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.15962,994.0,894.0,297.15,296.15 +31352877,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.328427,994.0,894.0,297.15,296.15 +31353198,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.500966,994.0,894.0,297.15,296.15 +31353519,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.6771195,994.0,894.0,297.15,296.15 +31353840,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.85678,994.0,894.0,297.15,296.15 +31354161,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.0399225,994.0,894.0,297.15,296.15 +31354482,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.226364,994.0,894.0,297.15,296.15 +31354803,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.4160395,994.0,894.0,297.15,296.15 +31355124,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.60882,994.0,894.0,297.15,296.15 +31355445,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.80463,994.0,894.0,297.15,296.15 +31355766,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,288.003375,994.0,894.0,297.15,296.15 +31356087,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.2049085,994.0,894.0,297.15,296.15 +31356408,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.409124,994.0,894.0,297.15,296.15 +31356729,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.615938,994.0,894.0,297.15,296.15 +31357050,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.82521,994.0,894.0,297.15,296.15 +31357371,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.036859,994.0,894.0,297.15,296.15 +31357692,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.250724,994.0,894.0,297.15,296.15 +31358013,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.4667435,994.0,894.0,297.15,296.15 +31358334,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.684748,994.0,894.0,297.15,296.15 +31358655,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.90464,994.0,894.0,297.15,296.15 +31358976,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.126304,994.0,894.0,297.15,296.15 +31359297,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.349607,994.0,894.0,297.15,296.15 +31359618,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.574451,994.0,894.0,297.15,296.15 +31359939,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.800703,994.0,894.0,297.15,296.15 +31360260,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.02823,994.0,894.0,297.15,296.15 +31360581,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.256901,994.0,894.0,297.15,296.15 +31360902,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.4866,994.0,894.0,297.15,296.15 +31361223,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.7172585,994.0,894.0,297.15,296.15 +31361544,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.948636,994.0,894.0,297.15,296.15 +31361865,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.18068,994.0,894.0,297.15,296.15 +31362186,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.413252,994.0,894.0,297.15,296.15 +31362507,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.646261,994.0,894.0,297.15,296.15 +31362828,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.879512,994.0,894.0,297.15,296.15 +31363149,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,293.1128975,994.0,894.0,297.15,296.15 +31363470,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,293.34634,994.0,894.0,297.15,296.15 +31363791,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,293.579643,994.0,894.0,297.15,296.15 +31364112,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,293.812728,994.0,894.0,297.15,296.15 +31364433,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,294.0454475,994.0,894.0,297.15,296.15 +31364754,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,294.277704,994.0,894.0,297.15,296.15 +31365075,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,294.509305,994.0,894.0,297.15,296.15 +31365396,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,294.740196,994.0,894.0,297.15,296.15 +31365717,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,294.9702045,994.0,894.0,297.15,296.15 +31366038,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,295.19924,994.0,894.0,297.15,296.15 +31366359,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,295.427138,994.0,894.0,297.15,296.15 +31366680,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.94076671403e-14,0.07,0.0,295.6538,994.0,894.0,297.15,296.15 +31367001,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,295.8790895,994.0,894.0,297.15,296.15 +31367322,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,296.102913,994.0,894.0,297.15,296.15 +31367643,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,296.325126,994.0,894.0,297.15,296.15 +31367964,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,296.545582,994.0,894.0,297.15,296.15 +31368285,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,296.7642025,994.0,894.0,297.15,296.15 +31368606,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,296.980868,994.0,894.0,297.15,296.15 +31368927,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,297.195424,994.0,894.0,297.15,296.15 +31369248,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,297.407784,994.0,894.0,297.15,296.15 +31369569,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,297.61782,994.0,894.0,297.15,296.15 +31369890,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,297.82544,994.0,894.0,297.15,296.15 +31370211,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135307,0.07,0.0,298.030502,994.0,894.0,297.15,296.15 +31370532,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.232884,994.0,894.0,297.15,296.15 +31370853,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.432523,994.0,894.0,297.15,296.15 +31371174,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.629277,994.0,894.0,297.15,296.15 +31371495,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.82304,994.0,894.0,297.15,296.15 +31371816,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.013716,994.0,894.0,297.15,296.15 +31372137,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.2012005,994.0,894.0,297.15,296.15 +31372458,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.385377,994.0,894.0,297.15,296.15 +31372779,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.566162,994.0,894.0,297.15,296.15 +31373100,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.74347,994.0,894.0,297.15,296.15 +31373421,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.917142,994.0,894.0,297.15,296.15 +31373742,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,300.087156,994.0,894.0,297.15,296.15 +31374063,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.253392,994.0,894.0,297.15,296.15 +31374384,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.415738,994.0,894.0,297.15,296.15 +31374705,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.5741375,994.0,894.0,297.15,296.15 +31375026,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.728491,994.0,894.0,297.15,296.15 +31375347,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.878696,994.0,894.0,297.15,296.15 +31375668,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.02473,994.0,894.0,297.15,296.15 +31375989,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.1664445,994.0,894.0,297.15,296.15 +31376310,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.303785,994.0,894.0,297.15,296.15 +31376631,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.4366995,994.0,894.0,297.15,296.15 +31376952,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.565104,994.0,894.0,297.15,296.15 +31377273,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.6889015,994.0,894.0,297.15,296.15 +31377594,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.808052,994.0,894.0,297.15,296.15 +31377915,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.922495,994.0,894.0,297.15,296.15 +31378236,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.032136,994.0,894.0,297.15,296.15 +31378557,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.136978,994.0,894.0,297.15,296.15 +31378878,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.236895,994.0,894.0,297.15,296.15 +31379199,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.331858,994.0,894.0,297.15,296.15 +31379520,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.42184,994.0,894.0,297.15,296.15 +31379841,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.506723,994.0,894.0,297.15,296.15 +31380162,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.586542,994.0,894.0,297.15,296.15 +31380483,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.66122,994.0,894.0,297.15,296.15 +31380804,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.7307,994.0,894.0,297.15,296.15 +31381125,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.79499,994.0,894.0,297.15,296.15 +31381446,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.854016,994.0,894.0,297.15,296.15 +31381767,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.907702,994.0,894.0,297.15,296.15 +31382088,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.956138,994.0,894.0,297.15,296.15 +31382409,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.9992005,994.0,894.0,297.15,296.15 +31382730,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.03688,994.0,894.0,297.15,296.15 +31383051,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.0692015,994.0,894.0,297.15,296.15 +31383372,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.096094,994.0,894.0,297.15,296.15 +31383693,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1175905,994.0,894.0,297.15,296.15 +31384014,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.133645,994.0,894.0,297.15,296.15 +31384335,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.14427,994.0,894.0,297.15,296.15 +31384656,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.149434,994.0,894.0,297.15,296.15 +31384977,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.1491645,994.0,894.0,297.15,296.15 +31385298,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.143434,994.0,894.0,297.15,296.15 +31385619,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.1322425,994.0,894.0,297.15,296.15 +31385940,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.11566,994.0,894.0,297.15,296.15 +31386261,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.093583,994.0,894.0,297.15,296.15 +31386582,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.066127,994.0,894.0,297.15,296.15 +31386903,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.033265,994.0,894.0,297.15,296.15 +31387224,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.995016,994.0,894.0,297.15,296.15 +31387545,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.9514025,994.0,894.0,297.15,296.15 +31387866,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.90243,994.0,894.0,297.15,296.15 +31388187,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.8481775,994.0,894.0,297.15,296.15 +31388508,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.788632,994.0,894.0,297.15,296.15 +31388829,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.723801,994.0,894.0,297.15,296.15 +31389150,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.653775,994.0,894.0,297.15,296.15 +31389471,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.578589,994.0,894.0,297.15,296.15 +31389792,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.498232,994.0,894.0,297.15,296.15 +31390113,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.412798,994.0,894.0,297.15,296.15 +31390434,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.322332,994.0,894.0,297.15,296.15 +31390755,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.226855,994.0,894.0,297.15,296.15 +31391076,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.126396,994.0,894.0,297.15,296.15 +31391397,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.021103,994.0,894.0,297.15,296.15 +31391718,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.910949,994.0,894.0,297.15,296.15 +31392039,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.796018,994.0,894.0,297.15,296.15 +31392360,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.6764,994.0,894.0,297.15,296.15 +31392681,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.552105,994.0,894.0,297.15,296.15 +31393002,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.423241,994.0,894.0,297.15,296.15 +31393323,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.289899,994.0,894.0,297.15,296.15 +31393644,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.152064,994.0,894.0,297.15,296.15 +31393965,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.0099075,994.0,894.0,297.15,296.15 +31394286,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.863456,994.0,894.0,297.15,296.15 +31394607,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.7127935,994.0,894.0,297.15,296.15 +31394928,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.55805,994.0,894.0,297.15,296.15 +31395249,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.399232,994.0,894.0,297.15,296.15 +31395570,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.236465,994.0,894.0,297.15,296.15 +31395891,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.069842,994.0,894.0,297.15,296.15 +31396212,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.899452,994.0,894.0,297.15,296.15 +31396533,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.7253915,994.0,894.0,297.15,296.15 +31396854,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.547748,994.0,894.0,297.15,296.15 +31397175,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.3665975,994.0,894.0,297.15,296.15 +31397496,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.182066,994.0,894.0,297.15,296.15 +31397817,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.994268,994.0,894.0,297.15,296.15 +31398138,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.803257,994.0,894.0,297.15,296.15 +31398459,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.6091855,994.0,894.0,297.15,296.15 +31398780,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.41214,994.0,894.0,297.15,296.15 +31399101,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.2121995,994.0,894.0,297.15,296.15 +31399422,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,298.009536,994.0,894.0,297.15,296.15 +31399743,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.8042175,994.0,894.0,297.15,296.15 +31400064,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.596334,994.0,894.0,297.15,296.15 +31400385,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.38607,994.0,894.0,297.15,296.15 +31400706,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.173462,994.0,894.0,297.15,296.15 +31401027,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.958687,994.0,894.0,297.15,296.15 +31401348,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.741812,994.0,894.0,297.15,296.15 +31401669,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.523005,994.0,894.0,297.15,296.15 +31401990,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.302355,994.0,894.0,297.15,296.15 +31402311,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.0799835,994.0,894.0,297.15,296.15 +31402632,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,295.856,994.0,894.0,297.15,296.15 +31402953,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.630557,994.0,894.0,297.15,296.15 +31403274,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.403752,994.0,894.0,297.15,296.15 +31403595,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.1757425,994.0,894.0,297.15,296.15 +31403916,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.946604,994.0,894.0,297.15,296.15 +31404237,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.716513,994.0,894.0,297.15,296.15 +31404558,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.485528,994.0,894.0,297.15,296.15 +31404879,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.253856,994.0,894.0,297.15,296.15 +31405200,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.02155,994.0,894.0,297.15,296.15 +31405521,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.788788,994.0,894.0,297.15,296.15 +31405842,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.555674,994.0,894.0,297.15,296.15 +31406163,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.322338,994.0,894.0,297.15,296.15 +31406484,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,293.088906,994.0,894.0,297.15,296.15 +31406805,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,292.85551,994.0,894.0,297.15,296.15 +31407126,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,292.622292,994.0,894.0,297.15,296.15 +31407447,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,292.389334,994.0,894.0,297.15,296.15 +31407768,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,292.15681,994.0,894.0,297.15,296.15 +31408089,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,291.924805,994.0,894.0,297.15,296.15 +31408410,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,291.6935,994.0,894.0,297.15,296.15 +31408731,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,291.46295,994.0,894.0,297.15,296.15 +31409052,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,291.23334,994.0,894.0,297.15,296.15 +31409373,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,291.0047835,994.0,894.0,297.15,296.15 +31409694,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.34356771157e-13,0.07,0.0,290.777372,994.0,894.0,297.15,296.15 +31410015,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.55127,994.0,894.0,297.15,296.15 +31410336,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.326584,994.0,894.0,297.15,296.15 +31410657,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.1034295,994.0,894.0,297.15,296.15 +31410978,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.881954,994.0,894.0,297.15,296.15 +31411299,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.662242,994.0,894.0,297.15,296.15 +31411620,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.44443,994.0,894.0,297.15,296.15 +31411941,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.228645,994.0,894.0,297.15,296.15 +31412262,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.015002,994.0,894.0,297.15,296.15 +31412583,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.803578,994.0,894.0,297.15,296.15 +31412904,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.594564,994.0,894.0,297.15,296.15 +31413225,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.388015,994.0,894.0,297.15,296.15 +31413546,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.184056,994.0,894.0,297.15,296.15 +31413867,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.9828225,994.0,894.0,297.15,296.15 +31414188,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.784368,994.0,894.0,297.15,296.15 +31414509,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.5888655,994.0,894.0,297.15,296.15 +31414830,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.396395,994.0,894.0,297.15,296.15 +31415151,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.207048,994.0,894.0,297.15,296.15 +31415472,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.02094,994.0,894.0,297.15,296.15 +31415793,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.838168,994.0,894.0,297.15,296.15 +31416114,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.658843,994.0,894.0,297.15,296.15 +31416435,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.483055,994.0,894.0,297.15,296.15 +31416756,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.310904,994.0,894.0,297.15,296.15 +31417077,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.14246,994.0,894.0,297.15,296.15 +31417398,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.977859,994.0,894.0,297.15,296.15 +31417719,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.817155,994.0,894.0,297.15,296.15 +31418040,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.66043,994.0,894.0,297.15,296.15 +31418361,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.5078315,994.0,894.0,297.15,296.15 +31418682,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.359381,994.0,894.0,297.15,296.15 +31419003,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.2151355,994.0,894.0,297.15,296.15 +31419324,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.07526,994.0,894.0,297.15,296.15 +31419645,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.939765,994.0,894.0,297.15,296.15 +31419966,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.808731,994.0,894.0,297.15,296.15 +31420287,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.6822845,994.0,894.0,297.15,296.15 +31420608,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.56042,994.0,894.0,297.15,296.15 +31420929,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.4432315,994.0,894.0,297.15,296.15 +31421250,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.330815,994.0,894.0,297.15,296.15 +31421571,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.2231595,994.0,894.0,297.15,296.15 +31421892,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.120408,994.0,894.0,297.15,296.15 +31422213,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.022579,994.0,894.0,297.15,296.15 +31422534,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.929677,994.0,894.0,297.15,296.15 +31422855,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.841855,994.0,894.0,297.15,296.15 +31423176,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.759088,994.0,894.0,297.15,296.15 +31423497,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.681406,994.0,894.0,297.15,296.15 +31423818,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.608914,994.0,894.0,297.15,296.15 +31424139,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.541622,994.0,894.0,297.15,296.15 +31424460,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.47955,994.0,894.0,297.15,296.15 +31424781,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.422765,994.0,894.0,297.15,296.15 +31425102,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.371281,994.0,894.0,297.15,296.15 +31425423,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.325097,994.0,894.0,297.15,296.15 +31425744,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.284296,994.0,894.0,297.15,296.15 +31426065,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.248845,994.0,894.0,297.15,296.15 +31426386,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.218827,994.0,894.0,297.15,296.15 +31426707,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.194204,994.0,894.0,297.15,296.15 +31427028,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.17498,994.0,894.0,297.15,296.15 +31427349,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.1612285,994.0,894.0,297.15,296.15 +31427670,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.152885,994.0,894.0,297.15,296.15 +31427991,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.150015,994.0,894.0,297.15,296.15 +31428312,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.152576,994.0,894.0,297.15,296.15 +31428633,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.1606255,994.0,894.0,297.15,296.15 +31428954,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.174057,994.0,894.0,297.15,296.15 +31429275,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.19298,994.0,894.0,297.15,296.15 +31429596,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.217318,994.0,894.0,297.15,296.15 +31429917,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.2470015,994.0,894.0,297.15,296.15 +31430238,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.282163,994.0,894.0,297.15,296.15 +31430559,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.322679,994.0,894.0,297.15,296.15 +31430880,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.36853,994.0,894.0,297.15,296.15 +31431201,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.419735,994.0,894.0,297.15,296.15 +31431522,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.476247,994.0,894.0,297.15,296.15 +31431843,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.537986,994.0,894.0,297.15,296.15 +31432164,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.605008,994.0,894.0,297.15,296.15 +31432485,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.67722,994.0,894.0,297.15,296.15 +31432806,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.754582,994.0,894.0,297.15,296.15 +31433127,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.837085,994.0,894.0,297.15,296.15 +31433448,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.924624,994.0,894.0,297.15,296.15 +31433769,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.017233,994.0,894.0,297.15,296.15 +31434090,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.114795,994.0,894.0,297.15,296.15 +31434411,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.2172675,994.0,894.0,297.15,296.15 +31434732,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.324644,994.0,894.0,297.15,296.15 +31435053,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.4368145,994.0,894.0,297.15,296.15 +31435374,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.553718,994.0,894.0,297.15,296.15 +31435695,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.6753275,994.0,894.0,297.15,296.15 +31436016,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.801534,994.0,894.0,297.15,296.15 +31436337,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.932291,994.0,894.0,297.15,296.15 +31436658,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.06755,994.0,894.0,297.15,296.15 +31436979,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.2071885,994.0,894.0,297.15,296.15 +31437300,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.35117,994.0,894.0,297.15,296.15 +31437621,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.4993985,994.0,894.0,297.15,296.15 +31437942,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.651781,994.0,894.0,297.15,296.15 +31438263,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.808245,994.0,894.0,297.15,296.15 +31438584,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.968748,994.0,894.0,297.15,296.15 +31438905,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.13314,994.0,894.0,297.15,296.15 +31439226,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.301346,994.0,894.0,297.15,296.15 +31439547,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.473305,994.0,894.0,297.15,296.15 +31439868,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.648896,994.0,894.0,297.15,296.15 +31440189,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.828016,994.0,894.0,297.15,296.15 +31440510,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.010605,994.0,894.0,297.15,296.15 +31440831,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.1965255,994.0,894.0,297.15,296.15 +31441152,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.385682,994.0,894.0,297.15,296.15 +31441473,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.5779965,994.0,894.0,297.15,296.15 +31441794,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.773326,994.0,894.0,297.15,296.15 +31442115,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.9716175,994.0,894.0,297.15,296.15 +31442436,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.172704,994.0,894.0,297.15,296.15 +31442757,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.376505,994.0,894.0,297.15,296.15 +31443078,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.582912,994.0,894.0,297.15,296.15 +31443399,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.791806,994.0,894.0,297.15,296.15 +31443720,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.00308,994.0,894.0,297.15,296.15 +31444041,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.216615,994.0,894.0,297.15,296.15 +31444362,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.43228,994.0,894.0,297.15,296.15 +31444683,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.649966,994.0,894.0,297.15,296.15 +31445004,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.869588,994.0,894.0,297.15,296.15 +31445325,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.0909725,994.0,894.0,297.15,296.15 +31445646,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.314026,994.0,894.0,297.15,296.15 +31445967,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.538634,994.0,894.0,297.15,296.15 +31446288,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.764658,994.0,894.0,297.15,296.15 +31446609,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.9919945,994.0,894.0,297.15,296.15 +31446930,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.2205,994.0,894.0,297.15,296.15 +31447251,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.45005,994.0,894.0,297.15,296.15 +31447572,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.68054,994.0,894.0,297.15,296.15 +31447893,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.911815,994.0,894.0,297.15,296.15 +31448214,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.143787,994.0,894.0,297.15,296.15 +31448535,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.37629,994.0,894.0,297.15,296.15 +31448856,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.609218,994.0,894.0,297.15,296.15 +31449177,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.84242,994.0,894.0,297.15,296.15 +31449498,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,293.075823,994.0,894.0,297.15,296.15 +31449819,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,293.309246,994.0,894.0,297.15,296.15 +31450140,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,293.5426,994.0,894.0,297.15,296.15 +31450461,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,293.775732,994.0,894.0,297.15,296.15 +31450782,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,294.008515,994.0,894.0,297.15,296.15 +31451103,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,294.240848,994.0,894.0,297.15,296.15 +31451424,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,294.472556,994.0,894.0,297.15,296.15 +31451745,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,294.7035775,994.0,894.0,297.15,296.15 +31452066,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,294.933731,994.0,894.0,297.15,296.15 +31452387,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,295.1629175,994.0,894.0,297.15,296.15 +31452708,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,295.390992,994.0,894.0,297.15,296.15 +31453029,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,295.617879,994.0,894.0,297.15,296.15 +31453350,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,295.8434,994.0,894.0,297.15,296.15 +31453671,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.067463,994.0,894.0,297.15,296.15 +31453992,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.289932,994.0,894.0,297.15,296.15 +31454313,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.510675,994.0,894.0,297.15,296.15 +31454634,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.729593,994.0,894.0,297.15,296.15 +31454955,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.946585,994.0,894.0,297.15,296.15 +31455276,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.161468,994.0,894.0,297.15,296.15 +31455597,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.37422,994.0,894.0,297.15,296.15 +31455918,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.584607,994.0,894.0,297.15,296.15 +31456239,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.7926225,994.0,894.0,297.15,296.15 +31456560,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.9981,994.0,894.0,297.15,296.15 +31456881,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.2009105,994.0,894.0,297.15,296.15 +31457202,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.400998,994.0,894.0,297.15,296.15 +31457523,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.5982265,994.0,894.0,297.15,296.15 +31457844,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.792454,994.0,894.0,297.15,296.15 +31458165,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.9836325,994.0,894.0,297.15,296.15 +31458486,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.171629,994.0,894.0,297.15,296.15 +31458807,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.3563345,994.0,894.0,297.15,296.15 +31459128,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.537674,994.0,894.0,297.15,296.15 +31459449,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.7155305,994.0,894.0,297.15,296.15 +31459770,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.88978,994.0,894.0,297.15,296.15 +31460091,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,300.060383,994.0,894.0,297.15,296.15 +31460412,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.227228,994.0,894.0,297.15,296.15 +31460733,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.390196,994.0,894.0,297.15,296.15 +31461054,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.549257,994.0,894.0,297.15,296.15 +31461375,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.7042225,994.0,894.0,297.15,296.15 +31461696,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.855104,994.0,894.0,297.15,296.15 +31462017,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.001815,994.0,894.0,297.15,296.15 +31462338,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.144207,994.0,894.0,297.15,296.15 +31462659,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.282273,994.0,894.0,297.15,296.15 +31462980,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.4159,994.0,894.0,297.15,296.15 +31463301,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.544995,994.0,894.0,297.15,296.15 +31463622,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.669539,994.0,894.0,297.15,296.15 +31463943,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.789454,994.0,894.0,297.15,296.15 +31464264,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.904628,994.0,894.0,297.15,296.15 +31464585,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.015045,994.0,894.0,297.15,296.15 +31464906,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.120624,994.0,894.0,297.15,296.15 +31465227,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.221341,994.0,894.0,297.15,296.15 +31465548,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.3171,994.0,894.0,297.15,296.15 +31465869,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.407866,994.0,894.0,297.15,296.15 +31466190,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.49357,994.0,894.0,297.15,296.15 +31466511,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.5742225,994.0,894.0,297.15,296.15 +31466832,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.64971,994.0,894.0,297.15,296.15 +31467153,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.720003,994.0,894.0,297.15,296.15 +31467474,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.785145,994.0,894.0,297.15,296.15 +31467795,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.8449825,994.0,894.0,297.15,296.15 +31468116,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.89952,994.0,894.0,297.15,296.15 +31468437,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.9488105,994.0,894.0,297.15,296.15 +31468758,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.992718,994.0,894.0,297.15,296.15 +31469079,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.031255,994.0,894.0,297.15,296.15 +31469400,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.06445,994.0,894.0,297.15,296.15 +31469721,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.092197,994.0,894.0,297.15,296.15 +31470042,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.114544,994.0,894.0,297.15,296.15 +31470363,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1314775,994.0,894.0,297.15,296.15 +31470684,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.142948,994.0,894.0,297.15,296.15 +31471005,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1489725,994.0,894.0,297.15,296.15 +31471326,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.149581,994.0,894.0,297.15,296.15 +31471647,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.14469,994.0,894.0,297.15,296.15 +31471968,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.13438,994.0,894.0,297.15,296.15 +31472289,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.1186435,994.0,894.0,297.15,296.15 +31472610,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.097435,994.0,894.0,297.15,296.15 +31472931,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.0708545,994.0,894.0,297.15,296.15 +31473252,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.038848,994.0,894.0,297.15,296.15 +31473573,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.0014415,994.0,894.0,297.15,296.15 +31473894,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.958702,994.0,894.0,297.15,296.15 +31474215,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.91057,994.0,894.0,297.15,296.15 +31474536,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.857154,994.0,894.0,297.15,296.15 +31474857,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.7984495,994.0,894.0,297.15,296.15 +31475178,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.73445,994.0,894.0,297.15,296.15 +31475499,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.66524,994.0,894.0,297.15,296.15 +31475820,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.59088,994.0,894.0,297.15,296.15 +31476141,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.511337,994.0,894.0,297.15,296.15 +31476462,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.426718,994.0,894.0,297.15,296.15 +31476783,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.337054,994.0,894.0,297.15,296.15 +31477104,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.24234,994.0,894.0,297.15,296.15 +31477425,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.1427,994.0,894.0,297.15,296.15 +31477746,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.038154,994.0,894.0,297.15,296.15 +31478067,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.928765,994.0,894.0,297.15,296.15 +31478388,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.814592,994.0,894.0,297.15,296.15 +31478709,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.6957205,994.0,894.0,297.15,296.15 +31479030,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.57216,994.0,894.0,297.15,296.15 +31479351,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.4440195,994.0,894.0,297.15,296.15 +31479672,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.311354,994.0,894.0,297.15,296.15 +31479993,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.1742535,994.0,894.0,297.15,296.15 +31480314,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.032798,994.0,894.0,297.15,296.15 +31480635,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.887,994.0,894.0,297.15,296.15 +31480956,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.737014,994.0,894.0,297.15,296.15 +31481277,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.582906,994.0,894.0,297.15,296.15 +31481598,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.424729,994.0,894.0,297.15,296.15 +31481919,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.262584,994.0,894.0,297.15,296.15 +31482240,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.0966,994.0,894.0,297.15,296.15 +31482561,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.926778,994.0,894.0,297.15,296.15 +31482882,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.753289,994.0,894.0,297.15,296.15 +31483203,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.576206,994.0,894.0,297.15,296.15 +31483524,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.395604,994.0,894.0,297.15,296.15 +31483845,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.211605,994.0,894.0,297.15,296.15 +31484166,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.024324,994.0,894.0,297.15,296.15 +31484487,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.833816,994.0,894.0,297.15,296.15 +31484808,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.640218,994.0,894.0,297.15,296.15 +31485129,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.443641,994.0,894.0,297.15,296.15 +31485450,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.244155,994.0,894.0,297.15,296.15 +31485771,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,298.0419245,994.0,894.0,297.15,296.15 +31486092,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.837014,994.0,894.0,297.15,296.15 +31486413,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.62952,994.0,894.0,297.15,296.15 +31486734,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.419622,994.0,894.0,297.15,296.15 +31487055,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.2074,994.0,894.0,297.15,296.15 +31487376,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.992952,994.0,894.0,297.15,296.15 +31487697,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.776411,994.0,894.0,297.15,296.15 +31488018,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.557891,994.0,894.0,297.15,296.15 +31488339,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.337522,994.0,894.0,297.15,296.15 +31488660,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.11542,994.0,894.0,297.15,296.15 +31488981,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,295.8916805,994.0,894.0,297.15,296.15 +31489302,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,295.66646,994.0,894.0,297.15,296.15 +31489623,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,295.439894,994.0,894.0,297.15,296.15 +31489944,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,295.21205,994.0,894.0,297.15,296.15 +31490265,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,294.98307,994.0,894.0,297.15,296.15 +31490586,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,294.753114,994.0,894.0,297.15,296.15 +31490907,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,294.522271,994.0,894.0,297.15,296.15 +31491228,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,294.290708,994.0,894.0,297.15,296.15 +31491549,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,294.0584825,994.0,894.0,297.15,296.15 +31491870,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,293.82579,994.0,894.0,297.15,296.15 +31492191,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,293.592723,994.0,894.0,297.15,296.15 +31492512,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,293.359432,994.0,894.0,297.15,296.15 +31492833,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,293.1259925,994.0,894.0,297.15,296.15 +31493154,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,292.892601,994.0,894.0,297.15,296.15 +31493475,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,292.659335,994.0,894.0,297.15,296.15 +31493796,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,292.426308,994.0,894.0,297.15,296.15 +31494117,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,292.1937035,994.0,894.0,297.15,296.15 +31494438,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,291.961638,994.0,894.0,297.15,296.15 +31494759,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,291.7302095,994.0,894.0,297.15,296.15 +31495080,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,291.4995,994.0,894.0,297.15,296.15 +31495401,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,291.269759,994.0,894.0,297.15,296.15 +31495722,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,291.041031,994.0,894.0,297.15,296.15 +31496043,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,290.813429,994.0,894.0,297.15,296.15 +31496364,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,290.587102,994.0,894.0,297.15,296.15 +31496685,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,290.36218,994.0,894.0,297.15,296.15 +31497006,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,290.138781,994.0,894.0,297.15,296.15 +31497327,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.917024,994.0,894.0,297.15,296.15 +31497648,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.697032,994.0,894.0,297.15,296.15 +31497969,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.4789145,994.0,894.0,297.15,296.15 +31498290,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.26279,994.0,894.0,297.15,296.15 +31498611,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.048793,994.0,894.0,297.15,296.15 +31498932,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,288.837012,994.0,894.0,297.15,296.15 +31499253,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,288.627614,994.0,894.0,297.15,296.15 +31499574,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,288.42065,994.0,894.0,297.15,296.15 +31499895,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,288.2162875,994.0,894.0,297.15,296.15 +31500216,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,288.01461,994.0,894.0,297.15,296.15 +31500537,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.815688,994.0,894.0,297.15,296.15 +31500858,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.61971,994.0,894.0,297.15,296.15 +31501179,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.4267765,994.0,894.0,297.15,296.15 +31501500,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.2369,994.0,894.0,297.15,296.15 +31501821,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.0502875,994.0,894.0,297.15,296.15 +31502142,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.86698,994.0,894.0,297.15,296.15 +31502463,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.6870885,994.0,894.0,297.15,296.15 +31502784,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.510752,994.0,894.0,297.15,296.15 +31503105,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.338015,994.0,894.0,297.15,296.15 +31503426,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.16898,994.0,894.0,297.15,296.15 +31503747,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,286.0037615,994.0,894.0,297.15,296.15 +31504068,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.842428,994.0,894.0,297.15,296.15 +31504389,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.6850715,994.0,894.0,297.15,296.15 +31504710,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.5318,994.0,894.0,297.15,296.15 +31505031,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.3826695,994.0,894.0,297.15,296.15 +31505352,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.237772,994.0,894.0,297.15,296.15 +31505673,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.097186,994.0,894.0,297.15,296.15 +31505994,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.960981,994.0,894.0,297.15,296.15 +31506315,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.8292575,994.0,894.0,297.15,296.15 +31506636,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.702072,994.0,894.0,297.15,296.15 +31506957,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.579468,994.0,894.0,297.15,296.15 +31507278,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.461546,994.0,894.0,297.15,296.15 +31507599,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.348352,994.0,894.0,297.15,296.15 +31507920,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.23993,994.0,894.0,297.15,296.15 +31508241,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.1364025,994.0,894.0,297.15,296.15 +31508562,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.03778,994.0,894.0,297.15,296.15 +31508883,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.9441015,994.0,894.0,297.15,296.15 +31509204,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.855472,994.0,894.0,297.15,296.15 +31509525,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.77189,994.0,894.0,297.15,296.15 +31509846,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.693408,994.0,894.0,297.15,296.15 +31510167,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.620091,994.0,894.0,297.15,296.15 +31510488,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.55196,994.0,894.0,297.15,296.15 +31510809,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.48907,994.0,894.0,297.15,296.15 +31511130,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.43144,994.0,894.0,297.15,296.15 +31511451,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.3791025,994.0,894.0,297.15,296.15 +31511772,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.332092,994.0,894.0,297.15,296.15 +31512093,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.2904205,994.0,894.0,297.15,296.15 +31512414,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.254115,994.0,894.0,297.15,296.15 +31512735,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.223245,994.0,894.0,297.15,296.15 +31513056,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.197752,994.0,894.0,297.15,296.15 +31513377,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.177666,994.0,894.0,297.15,296.15 +31513698,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.163049,994.0,894.0,297.15,296.15 +31514019,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.153841,994.0,894.0,297.15,296.15 +31514340,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.1501,994.0,894.0,297.15,296.15 +31514661,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.1518175,994.0,894.0,297.15,296.15 +31514982,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.158974,994.0,894.0,297.15,296.15 +31515303,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.1715665,994.0,894.0,297.15,296.15 +31515624,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.189614,994.0,894.0,297.15,296.15 +31515945,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.213085,994.0,894.0,297.15,296.15 +31516266,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.241927,994.0,894.0,297.15,296.15 +31516587,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.2762185,994.0,894.0,297.15,296.15 +31516908,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.315872,994.0,894.0,297.15,296.15 +31517229,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.3609055,994.0,894.0,297.15,296.15 +31517550,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.41125,994.0,894.0,297.15,296.15 +31517871,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.466914,994.0,894.0,297.15,296.15 +31518192,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.527836,994.0,894.0,297.15,296.15 +31518513,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.594013,994.0,894.0,297.15,296.15 +31518834,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.665402,994.0,894.0,297.15,296.15 +31519155,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.7419575,994.0,894.0,297.15,296.15 +31519476,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.823638,994.0,894.0,297.15,296.15 +31519797,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.91037,994.0,894.0,297.15,296.15 +31520118,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.002198,994.0,894.0,297.15,296.15 +31520439,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.098951,994.0,894.0,297.15,296.15 +31520760,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.20065,994.0,894.0,297.15,296.15 +31521081,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.3072505,994.0,894.0,297.15,296.15 +31521402,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.418675,994.0,894.0,297.15,296.15 +31521723,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.534831,994.0,894.0,297.15,296.15 +31522044,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.6557,994.0,894.0,297.15,296.15 +31522365,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.78118,994.0,894.0,297.15,296.15 +31522686,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.911228,994.0,894.0,297.15,296.15 +31523007,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.0457765,994.0,894.0,297.15,296.15 +31523328,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.184704,994.0,894.0,297.15,296.15 +31523649,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.3279905,994.0,894.0,297.15,296.15 +31523970,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.47557,994.0,894.0,297.15,296.15 +31524291,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.627295,994.0,894.0,297.15,296.15 +31524612,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.783128,994.0,894.0,297.15,296.15 +31524933,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.942992,994.0,894.0,297.15,296.15 +31525254,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.106766,994.0,894.0,297.15,296.15 +31525575,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.2743775,994.0,894.0,297.15,296.15 +31525896,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.44574,994.0,894.0,297.15,296.15 +31526217,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.620751,994.0,894.0,297.15,296.15 +31526538,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.799322,994.0,894.0,297.15,296.15 +31526859,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.9813645,994.0,894.0,297.15,296.15 +31527180,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.16675,994.0,894.0,297.15,296.15 +31527501,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.355413,994.0,894.0,297.15,296.15 +31527822,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.547231,994.0,894.0,297.15,296.15 +31528143,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.742097,994.0,894.0,297.15,296.15 +31528464,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.939924,994.0,894.0,297.15,296.15 +31528785,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,288.1405675,994.0,894.0,297.15,296.15 +31529106,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.34395,994.0,894.0,297.15,296.15 +31529427,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.549942,994.0,894.0,297.15,296.15 +31529748,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.75846,994.0,894.0,297.15,296.15 +31530069,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.969352,994.0,894.0,297.15,296.15 +31530390,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.18254,994.0,894.0,297.15,296.15 +31530711,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.39787,994.0,894.0,297.15,296.15 +31531032,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.615264,994.0,894.0,297.15,296.15 +31531353,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.834569,994.0,894.0,297.15,296.15 +31531674,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.055693,994.0,894.0,297.15,296.15 +31531995,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.27849,994.0,894.0,297.15,296.15 +31532316,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.50286,994.0,894.0,297.15,296.15 +31532637,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.7286555,994.0,894.0,297.15,296.15 +31532958,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.955794,994.0,894.0,297.15,296.15 +31533279,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.18412,994.0,894.0,297.15,296.15 +31533600,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.4135,994.0,894.0,297.15,296.15 +31533921,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.6438525,994.0,894.0,297.15,296.15 +31534242,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.875019,994.0,894.0,297.15,296.15 +31534563,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.1068715,994.0,894.0,297.15,296.15 +31534884,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.339326,994.0,894.0,297.15,296.15 +31535205,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.5721825,994.0,894.0,297.15,296.15 +31535526,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.80536,994.0,894.0,297.15,296.15 +31535847,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,293.038738,994.0,894.0,297.15,296.15 +31536168,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,293.272158,994.0,894.0,297.15,296.15 +31536489,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,293.50554,994.0,894.0,297.15,296.15 +31536810,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,293.73871,994.0,894.0,297.15,296.15 +31537131,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,293.971575,994.0,894.0,297.15,296.15 +31537452,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,294.20396,994.0,894.0,297.15,296.15 +31537773,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,294.435793,994.0,894.0,297.15,296.15 +31538094,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,294.666915,994.0,894.0,297.15,296.15 +31538415,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,294.8972125,994.0,894.0,297.15,296.15 +31538736,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,295.126568,994.0,894.0,297.15,296.15 +31539057,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,295.354832,994.0,894.0,297.15,296.15 +31539378,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,295.581902,994.0,894.0,297.15,296.15 +31539699,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,295.807665,994.0,894.0,297.15,296.15 +31540020,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.03195,994.0,894.0,297.15,296.15 +31540341,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.254688,994.0,894.0,297.15,296.15 +31540662,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.475719,994.0,894.0,297.15,296.15 +31540983,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.6949385,994.0,894.0,297.15,296.15 +31541304,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.912236,994.0,894.0,297.15,296.15 +31541625,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.12747,994.0,894.0,297.15,296.15 +31541946,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.34056,994.0,894.0,297.15,296.15 +31542267,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.551342,994.0,894.0,297.15,296.15 +31542588,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.759746,994.0,894.0,297.15,296.15 +31542909,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.96563,994.0,894.0,297.15,296.15 +31543230,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.16887,994.0,894.0,297.15,296.15 +31543551,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.369411,994.0,894.0,297.15,296.15 +31543872,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.56708,994.0,894.0,297.15,296.15 +31544193,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.7618005,994.0,894.0,297.15,296.15 +31544514,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.953472,994.0,894.0,297.15,296.15 +31544835,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.1419675,994.0,894.0,297.15,296.15 +31545156,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.327204,994.0,894.0,297.15,296.15 +31545477,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.509084,994.0,894.0,297.15,296.15 +31545798,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.6875,994.0,894.0,297.15,296.15 +31546119,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.862334,994.0,894.0,297.15,296.15 +31546440,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,300.03354,994.0,894.0,297.15,296.15 +31546761,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,300.2009785,994.0,894.0,297.15,296.15 +31547082,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.364555,994.0,894.0,297.15,296.15 +31547403,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.5242415,994.0,894.0,297.15,296.15 +31547724,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.679872,994.0,894.0,297.15,296.15 +31548045,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.831415,994.0,894.0,297.15,296.15 +31548366,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.97878,994.0,894.0,297.15,296.15 +31548687,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.1218685,994.0,894.0,297.15,296.15 +31549008,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.260634,994.0,894.0,297.15,296.15 +31549329,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.3949645,994.0,894.0,297.15,296.15 +31549650,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.524775,994.0,894.0,297.15,296.15 +31549971,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.6500755,994.0,894.0,297.15,296.15 +31550292,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.770712,994.0,894.0,297.15,296.15 +31550613,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.8866465,994.0,894.0,297.15,296.15 +31550934,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.997838,994.0,894.0,297.15,296.15 +31551255,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.1041725,994.0,894.0,297.15,296.15 +31551576,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.205662,994.0,894.0,297.15,296.15 +31551897,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.302218,994.0,894.0,297.15,296.15 +31552218,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.39378,994.0,894.0,297.15,296.15 +31552539,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.480305,994.0,894.0,297.15,296.15 +31552860,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.56177,994.0,894.0,297.15,296.15 +31553181,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.638056,994.0,894.0,297.15,296.15 +31553502,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.709188,994.0,894.0,297.15,296.15 +31553823,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.7751575,994.0,894.0,297.15,296.15 +31554144,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.835816,994.0,894.0,297.15,296.15 +31554465,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.891225,994.0,894.0,297.15,296.15 +31554786,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.941339,994.0,894.0,297.15,296.15 +31555107,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.986086,994.0,894.0,297.15,296.15 +31555428,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.025512,994.0,894.0,297.15,296.15 +31555749,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.05952,994.0,894.0,297.15,296.15 +31556070,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.08815,994.0,894.0,297.15,296.15 +31556391,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.111358,994.0,894.0,297.15,296.15 +31556712,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.12915,994.0,894.0,297.15,296.15 +31557033,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1414765,994.0,894.0,297.15,296.15 +31557354,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.148383,994.0,894.0,297.15,296.15 +31557675,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.1498325,994.0,894.0,297.15,296.15 +31557996,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.145824,994.0,894.0,297.15,296.15 +31558317,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.13641,994.0,894.0,297.15,296.15 +31558638,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.121501,994.0,894.0,297.15,296.15 +31558959,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.101175,994.0,894.0,297.15,296.15 +31559280,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.07547,994.0,894.0,297.15,296.15 +31559601,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.044281,994.0,894.0,297.15,296.15 +31559922,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.00774,994.0,894.0,297.15,296.15 +31560243,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.965859,994.0,894.0,297.15,296.15 +31560564,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.918564,994.0,894.0,297.15,296.15 +31560885,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.8659975,994.0,894.0,297.15,296.15 +31561206,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.808131,994.0,894.0,297.15,296.15 +31561527,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.744965,994.0,894.0,297.15,296.15 +31561848,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.676592,994.0,894.0,297.15,296.15 +31562169,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.603052,994.0,894.0,297.15,296.15 +31562490,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.52432,994.0,894.0,297.15,296.15 +31562811,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.440509,994.0,894.0,297.15,296.15 +31563132,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.351616,994.0,894.0,297.15,296.15 +31563453,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.2577,994.0,894.0,297.15,296.15 +31563774,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.158866,994.0,894.0,297.15,296.15 +31564095,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.055085,994.0,894.0,297.15,296.15 +31564416,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.946462,994.0,894.0,297.15,296.15 +31564737,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.8330775,994.0,894.0,297.15,296.15 +31565058,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.714915,994.0,894.0,297.15,296.15 +31565379,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.5920925,994.0,894.0,297.15,296.15 +31565700,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.4647,994.0,894.0,297.15,296.15 +31566021,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.332728,994.0,894.0,297.15,296.15 +31566342,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.196334,994.0,894.0,297.15,296.15 +31566663,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.055561,994.0,894.0,297.15,296.15 +31566984,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.910438,994.0,894.0,297.15,296.15 +31567305,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.761125,994.0,894.0,297.15,296.15 +31567626,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.607658,994.0,894.0,297.15,296.15 +31567947,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.4501155,994.0,894.0,297.15,296.15 +31568268,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.288604,994.0,894.0,297.15,296.15 +31568589,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.123205,994.0,894.0,297.15,296.15 +31568910,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.953995,994.0,894.0,297.15,296.15 +31569231,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.78109,994.0,894.0,297.15,296.15 +31569552,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.604568,994.0,894.0,297.15,296.15 +31569873,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.424522,994.0,894.0,297.15,296.15 +31570194,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.24106,994.0,894.0,297.15,296.15 +31570515,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.05429,994.0,894.0,297.15,296.15 +31570836,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.864296,994.0,894.0,297.15,296.15 +31571157,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.6711865,994.0,894.0,297.15,296.15 +31571478,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.475065,994.0,894.0,297.15,296.15 +31571799,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.276044,994.0,894.0,297.15,296.15 +31572120,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,298.07425,994.0,894.0,297.15,296.15 +31572441,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.8697355,994.0,894.0,297.15,296.15 +31572762,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.662649,994.0,894.0,297.15,296.15 +31573083,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.453129,994.0,894.0,297.15,296.15 +31573404,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.241272,994.0,894.0,297.15,296.15 +31573725,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.027165,994.0,894.0,297.15,296.15 +31574046,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.810938,994.0,894.0,297.15,296.15 +31574367,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.592739,994.0,894.0,297.15,296.15 +31574688,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.372638,994.0,894.0,297.15,296.15 +31575009,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.150797,994.0,894.0,297.15,296.15 +31575330,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,295.927335,994.0,894.0,297.15,296.15 +31575651,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.70233,994.0,894.0,297.15,296.15 +31575972,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.47598,994.0,894.0,297.15,296.15 +31576293,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.2483315,994.0,894.0,297.15,296.15 +31576614,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.019514,994.0,894.0,297.15,296.15 +31576935,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.789715,994.0,894.0,297.15,296.15 +31577256,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.559004,994.0,894.0,297.15,296.15 +31577577,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.327545,994.0,894.0,297.15,296.15 +31577898,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.095422,994.0,894.0,297.15,296.15 +31578219,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.862792,994.0,894.0,297.15,296.15 +31578540,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.6298,994.0,894.0,297.15,296.15 +31578861,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.3965065,994.0,894.0,297.15,296.15 +31579182,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.163089,994.0,894.0,297.15,296.15 +31579503,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,292.9296695,994.0,894.0,297.15,296.15 +31579824,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,292.696372,994.0,894.0,297.15,296.15 +31580145,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,292.4633075,994.0,894.0,297.15,296.15 +31580466,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,292.230653,994.0,894.0,297.15,296.15 +31580787,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,291.9984715,994.0,894.0,297.15,296.15 +31581108,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,291.766912,994.0,894.0,297.15,296.15 +31581429,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,291.5361095,994.0,894.0,297.15,296.15 +31581750,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,291.3062,994.0,894.0,297.15,296.15 +31582071,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,291.077305,994.0,894.0,297.15,296.15 +31582392,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,290.84951,994.0,894.0,297.15,296.15 +31582713,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,290.6229735,994.0,894.0,297.15,296.15 +31583034,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.397818,994.0,894.0,297.15,296.15 +31583355,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.1741625,994.0,894.0,297.15,296.15 +31583676,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.952144,994.0,894.0,297.15,296.15 +31583997,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.731852,994.0,894.0,297.15,296.15 +31584318,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.513441,994.0,894.0,297.15,296.15 +31584639,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.2969875,994.0,894.0,297.15,296.15 +31584960,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.08264,994.0,894.0,297.15,296.15 +31585281,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.870503,994.0,894.0,297.15,296.15 +31585602,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.66072,994.0,894.0,297.15,296.15 +31585923,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.453375,994.0,894.0,297.15,296.15 +31586244,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.248588,994.0,894.0,297.15,296.15 +31586565,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,288.046465,994.0,894.0,297.15,296.15 +31586886,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.847104,994.0,894.0,297.15,296.15 +31587207,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.6506475,994.0,894.0,297.15,296.15 +31587528,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.457218,994.0,894.0,297.15,296.15 +31587849,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.266871,994.0,894.0,297.15,296.15 +31588170,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.079715,994.0,894.0,297.15,296.15 +31588491,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.8958935,994.0,894.0,297.15,296.15 +31588812,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.715462,994.0,894.0,297.15,296.15 +31589133,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.5385375,994.0,894.0,297.15,296.15 +31589454,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.36521,994.0,894.0,297.15,296.15 +31589775,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.1955975,994.0,894.0,297.15,296.15 +31590096,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,286.029764,994.0,894.0,297.15,296.15 +31590417,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.8677985,994.0,894.0,297.15,296.15 +31590738,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.709825,994.0,894.0,297.15,296.15 +31591059,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.5558735,994.0,894.0,297.15,296.15 +31591380,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.40607,994.0,894.0,297.15,296.15 +31591701,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.26052,994.0,894.0,297.15,296.15 +31592022,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.119229,994.0,894.0,297.15,296.15 +31592343,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.9823245,994.0,894.0,297.15,296.15 +31592664,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.849892,994.0,894.0,297.15,296.15 +31592985,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.72198,994.0,894.0,297.15,296.15 +31593306,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.598644,994.0,894.0,297.15,296.15 +31593627,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.4799715,994.0,894.0,297.15,296.15 +31593948,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.366,994.0,894.0,297.15,296.15 +31594269,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.256845,994.0,894.0,297.15,296.15 +31594590,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.152525,994.0,894.0,297.15,296.15 +31594911,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.0531085,994.0,894.0,297.15,296.15 +31595232,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.95867,994.0,894.0,297.15,296.15 +31595553,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.8692215,994.0,894.0,297.15,296.15 +31595874,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.784799,994.0,894.0,297.15,296.15 +31596195,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.70553,994.0,894.0,297.15,296.15 +31596516,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.631396,994.0,894.0,297.15,296.15 +31596837,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.562424,994.0,894.0,297.15,296.15 +31597158,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.498723,994.0,894.0,297.15,296.15 +31597479,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.4402445,994.0,894.0,297.15,296.15 +31597800,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.38705,994.0,894.0,297.15,296.15 +31598121,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.3391935,994.0,894.0,297.15,296.15 +31598442,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.296671,994.0,894.0,297.15,296.15 +31598763,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.2595125,994.0,894.0,297.15,296.15 +31599084,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.22779,994.0,894.0,297.15,296.15 +31599405,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.2014325,994.0,894.0,297.15,296.15 +31599726,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.180488,994.0,894.0,297.15,296.15 +31600047,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.165009,994.0,894.0,297.15,296.15 +31600368,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.154948,994.0,894.0,297.15,296.15 +31600689,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.150355,994.0,894.0,297.15,296.15 +31601010,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.151185,994.0,894.0,297.15,296.15 +31601331,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.15746,994.0,894.0,297.15,296.15 +31601652,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.169196,994.0,894.0,297.15,296.15 +31601973,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.1863895,994.0,894.0,297.15,296.15 +31602294,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.208973,994.0,894.0,297.15,296.15 +31602615,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.23701,994.0,894.0,297.15,296.15 +31602936,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.27042,994.0,894.0,297.15,296.15 +31603257,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.309215,994.0,894.0,297.15,296.15 +31603578,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.353386,994.0,894.0,297.15,296.15 +31603899,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.402898,994.0,894.0,297.15,296.15 +31604220,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.4577,994.0,894.0,297.15,296.15 +31604541,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.5178125,994.0,894.0,297.15,296.15 +31604862,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.583142,994.0,894.0,297.15,296.15 +31605183,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.653689,994.0,894.0,297.15,296.15 +31605504,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.729442,994.0,894.0,297.15,296.15 +31605825,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.8103125,994.0,894.0,297.15,296.15 +31606146,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.89626,994.0,894.0,297.15,296.15 +31606467,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.987275,994.0,894.0,297.15,296.15 +31606788,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.083234,994.0,894.0,297.15,296.15 +31607109,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.184177,994.0,894.0,297.15,296.15 +31607430,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.28999,994.0,894.0,297.15,296.15 +31607751,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.400638,994.0,894.0,297.15,296.15 +31608072,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.516072,994.0,894.0,297.15,296.15 +31608393,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.636184,994.0,894.0,297.15,296.15 +31608714,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.760932,994.0,894.0,297.15,296.15 +31609035,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.8902625,994.0,894.0,297.15,296.15 +31609356,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.024102,994.0,894.0,297.15,296.15 +31609677,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.1623305,994.0,894.0,297.15,296.15 +31609998,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.304958,994.0,894.0,297.15,296.15 +31610319,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.4518395,994.0,894.0,297.15,296.15 +31610640,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.6029,994.0,894.0,297.15,296.15 +31610961,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.7581165,994.0,894.0,297.15,296.15 +31611282,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.917333,994.0,894.0,297.15,296.15 +31611603,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.080467,994.0,894.0,297.15,296.15 +31611924,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.247496,994.0,894.0,297.15,296.15 +31612245,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.4182725,994.0,894.0,297.15,296.15 +31612566,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.592718,994.0,894.0,297.15,296.15 +31612887,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.77072,994.0,894.0,297.15,296.15 +31613208,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.952214,994.0,894.0,297.15,296.15 +31613529,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.1370765,994.0,894.0,297.15,296.15 +31613850,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.32523,994.0,894.0,297.15,296.15 +31614171,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.5165385,994.0,894.0,297.15,296.15 +31614492,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.710932,994.0,894.0,297.15,296.15 +31614813,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.9082935,994.0,894.0,297.15,296.15 +31615134,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,288.108505,994.0,894.0,297.15,296.15 +31615455,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.311455,994.0,894.0,297.15,296.15 +31615776,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.517048,994.0,894.0,297.15,296.15 +31616097,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.725146,994.0,894.0,297.15,296.15 +31616418,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.935701,994.0,894.0,297.15,296.15 +31616739,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.1485105,994.0,894.0,297.15,296.15 +31617060,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.36353,994.0,894.0,297.15,296.15 +31617381,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.58058,994.0,894.0,297.15,296.15 +31617702,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.799596,994.0,894.0,297.15,296.15 +31618023,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.0204435,994.0,894.0,297.15,296.15 +31618344,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.242996,994.0,894.0,297.15,296.15 +31618665,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.4671225,994.0,894.0,297.15,296.15 +31618986,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.692709,994.0,894.0,297.15,296.15 +31619307,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.919623,994.0,894.0,297.15,296.15 +31619628,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.14776,994.0,894.0,297.15,296.15 +31619949,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.3770095,994.0,894.0,297.15,296.15 +31620270,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.607205,994.0,894.0,297.15,296.15 +31620591,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.8382425,994.0,894.0,297.15,296.15 +31620912,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.070012,994.0,894.0,297.15,296.15 +31621233,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.3023595,994.0,894.0,297.15,296.15 +31621554,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.535165,994.0,894.0,297.15,296.15 +31621875,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.768315,994.0,894.0,297.15,296.15 +31622196,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,293.001644,994.0,894.0,297.15,296.15 +31622517,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,293.235088,994.0,894.0,297.15,296.15 +31622838,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,293.468466,994.0,894.0,297.15,296.15 +31623159,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,293.7016775,994.0,894.0,297.15,296.15 +31623480,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,293.9346,994.0,894.0,297.15,296.15 +31623801,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,294.167083,994.0,894.0,297.15,296.15 +31624122,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,294.399004,994.0,894.0,297.15,296.15 +31624443,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,294.6302375,994.0,894.0,297.15,296.15 +31624764,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,294.860688,994.0,894.0,297.15,296.15 +31625085,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,295.0901925,994.0,894.0,297.15,296.15 +31625406,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,295.318656,994.0,894.0,297.15,296.15 +31625727,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,1.92974717961e-16,0.07,0.0,295.545913,994.0,894.0,297.15,296.15 +31626048,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,295.77188,994.0,894.0,297.15,296.15 +31626369,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,295.9964115,994.0,894.0,297.15,296.15 +31626690,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.219405,994.0,894.0,297.15,296.15 +31627011,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.4407155,994.0,894.0,297.15,296.15 +31627332,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.660236,994.0,894.0,297.15,296.15 +31627653,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.877835,994.0,894.0,297.15,296.15 +31627974,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.093426,994.0,894.0,297.15,296.15 +31628295,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.306855,994.0,894.0,297.15,296.15 +31628616,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.518012,994.0,894.0,297.15,296.15 +31628937,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.7267885,994.0,894.0,297.15,296.15 +31629258,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.93309,994.0,894.0,297.15,296.15 +31629579,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,298.1367525,994.0,894.0,297.15,296.15 +31629900,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.33774,994.0,894.0,297.15,296.15 +31630221,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.5358625,994.0,894.0,297.15,296.15 +31630542,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.731068,994.0,894.0,297.15,296.15 +31630863,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.923229,994.0,894.0,297.15,296.15 +31631184,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.11224,994.0,894.0,297.15,296.15 +31631505,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.298,994.0,894.0,297.15,296.15 +31631826,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.480422,994.0,894.0,297.15,296.15 +31632147,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.6593785,994.0,894.0,297.15,296.15 +31632468,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.8348,994.0,894.0,297.15,296.15 +31632789,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,300.0065865,994.0,894.0,297.15,296.15 +31633110,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,300.17463,994.0,894.0,297.15,296.15 +31633431,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.338826,994.0,894.0,297.15,296.15 +31633752,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.499138,994.0,894.0,297.15,296.15 +31634073,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.655422,994.0,894.0,297.15,296.15 +31634394,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.807646,994.0,894.0,297.15,296.15 +31634715,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.955655,994.0,894.0,297.15,296.15 +31635036,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.099424,994.0,894.0,297.15,296.15 +31635357,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.238884,994.0,894.0,297.15,296.15 +31635678,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.373903,994.0,894.0,297.15,296.15 +31635999,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.5044535,994.0,894.0,297.15,296.15 +31636320,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.6305,994.0,894.0,297.15,296.15 +31636641,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.7518375,994.0,894.0,297.15,296.15 +31636962,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.868544,994.0,894.0,297.15,296.15 +31637283,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.980481,994.0,894.0,297.15,296.15 +31637604,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.087612,994.0,894.0,297.15,296.15 +31637925,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.1898725,994.0,894.0,297.15,296.15 +31638246,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.287224,994.0,894.0,297.15,296.15 +31638567,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.37956,994.0,894.0,297.15,296.15 +31638888,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.466912,994.0,894.0,297.15,296.15 +31639209,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.5491645,994.0,894.0,297.15,296.15 +31639530,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.62627,994.0,894.0,297.15,296.15 +31639851,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.698244,994.0,894.0,297.15,296.15 +31640172,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.764994,994.0,894.0,297.15,296.15 +31640493,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.8265255,994.0,894.0,297.15,296.15 +31640814,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.88279,994.0,894.0,297.15,296.15 +31641135,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.93374,994.0,894.0,297.15,296.15 +31641456,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.979332,994.0,894.0,297.15,296.15 +31641777,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.0196045,994.0,894.0,297.15,296.15 +31642098,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.054464,994.0,894.0,297.15,296.15 +31642419,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.083963,994.0,894.0,297.15,296.15 +31642740,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.10806,994.0,894.0,297.15,296.15 +31643061,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.126676,994.0,894.0,297.15,296.15 +31643382,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.139879,994.0,894.0,297.15,296.15 +31643703,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1476435,994.0,894.0,297.15,296.15 +31644024,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.14996,994.0,894.0,297.15,296.15 +31644345,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.146835,994.0,894.0,297.15,296.15 +31644666,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.13828,994.0,894.0,297.15,296.15 +31644987,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.124227,994.0,894.0,297.15,296.15 +31645308,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.104788,994.0,894.0,297.15,296.15 +31645629,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.0799155,994.0,894.0,297.15,296.15 +31645950,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.049585,994.0,894.0,297.15,296.15 +31646271,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.0139165,994.0,894.0,297.15,296.15 +31646592,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.972872,994.0,894.0,297.15,296.15 +31646913,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.92644,994.0,894.0,297.15,296.15 +31647234,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.87471,994.0,894.0,297.15,296.15 +31647555,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.81767,994.0,894.0,297.15,296.15 +31647876,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.75534,994.0,894.0,297.15,296.15 +31648197,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.687812,994.0,894.0,297.15,296.15 +31648518,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.61507,994.0,894.0,297.15,296.15 +31648839,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.537177,994.0,894.0,297.15,296.15 +31649160,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.45416,994.0,894.0,297.15,296.15 +31649481,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.366064,994.0,894.0,297.15,296.15 +31649802,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.272958,994.0,894.0,297.15,296.15 +31650123,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.174897,994.0,894.0,297.15,296.15 +31650444,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.071904,994.0,894.0,297.15,296.15 +31650765,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.96404,994.0,894.0,297.15,296.15 +31651086,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.851395,994.0,894.0,297.15,296.15 +31651407,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.7339835,994.0,894.0,297.15,296.15 +31651728,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.611916,994.0,894.0,297.15,296.15 +31652049,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.485236,994.0,894.0,297.15,296.15 +31652370,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.35399,994.0,894.0,297.15,296.15 +31652691,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.218308,994.0,894.0,297.15,296.15 +31653012,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.078204,994.0,894.0,297.15,296.15 +31653333,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.93378,994.0,894.0,297.15,296.15 +31653654,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.785134,994.0,894.0,297.15,296.15 +31653975,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.6323125,994.0,894.0,297.15,296.15 +31654296,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.47541,994.0,894.0,297.15,296.15 +31654617,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.314538,994.0,894.0,297.15,296.15 +31654938,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.14974,994.0,894.0,297.15,296.15 +31655259,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.981121,994.0,894.0,297.15,296.15 +31655580,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.8088,994.0,894.0,297.15,296.15 +31655901,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.6328395,994.0,894.0,297.15,296.15 +31656222,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.453355,994.0,894.0,297.15,296.15 +31656543,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.27047,994.0,894.0,297.15,296.15 +31656864,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.084184,994.0,894.0,297.15,296.15 +31657185,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.89469,994.0,894.0,297.15,296.15 +31657506,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.702067,994.0,894.0,297.15,296.15 +31657827,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.5064175,994.0,894.0,297.15,296.15 +31658148,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.307852,994.0,894.0,297.15,296.15 +31658469,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,298.106465,994.0,894.0,297.15,296.15 +31658790,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.9024,994.0,894.0,297.15,296.15 +31659111,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.6957245,994.0,894.0,297.15,296.15 +31659432,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.48658,994.0,894.0,297.15,296.15 +31659753,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.275083,994.0,894.0,297.15,296.15 +31660074,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.061314,994.0,894.0,297.15,296.15 +31660395,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.84542,994.0,894.0,297.15,296.15 +31660716,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.627536,994.0,894.0,297.15,296.15 +31661037,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.4077315,994.0,894.0,297.15,296.15 +31661358,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.18616,994.0,894.0,297.15,296.15 +31661679,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,295.962944,994.0,894.0,297.15,296.15 +31662000,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.7382,994.0,894.0,297.15,296.15 +31662321,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.5120235,994.0,894.0,297.15,296.15 +31662642,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.28458,994.0,894.0,297.15,296.15 +31662963,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.055928,994.0,894.0,297.15,296.15 +31663284,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.826292,994.0,894.0,297.15,296.15 +31663605,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.5957175,994.0,894.0,297.15,296.15 +31663926,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.36435,994.0,894.0,297.15,296.15 +31664247,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.132352,994.0,894.0,297.15,296.15 +31664568,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.899784,994.0,894.0,297.15,296.15 +31664889,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.6668345,994.0,894.0,297.15,296.15 +31665210,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.433575,994.0,894.0,297.15,296.15 +31665531,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.200176,994.0,894.0,297.15,296.15 +31665852,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,292.966738,994.0,894.0,297.15,296.15 +31666173,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,292.733429,994.0,894.0,297.15,296.15 +31666494,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,292.500325,994.0,894.0,297.15,296.15 +31666815,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,292.26758,994.0,894.0,297.15,296.15 +31667136,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,292.035318,994.0,894.0,297.15,296.15 +31667457,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,291.8036425,994.0,894.0,297.15,296.15 +31667778,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,291.572733,994.0,894.0,297.15,296.15 +31668099,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,291.3426655,994.0,894.0,297.15,296.15 +31668420,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,291.1136,994.0,894.0,297.15,296.15 +31668741,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,290.885612,994.0,894.0,297.15,296.15 +31669062,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,6.43125263743e-16,0.07,0.0,290.658884,994.0,894.0,297.15,296.15 +31669383,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.433501,994.0,894.0,297.15,296.15 +31669704,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.209608,994.0,894.0,297.15,296.15 +31670025,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.9873125,994.0,894.0,297.15,296.15 +31670346,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.766736,994.0,894.0,297.15,296.15 +31670667,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.5479985,994.0,894.0,297.15,296.15 +31670988,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.331226,994.0,894.0,297.15,296.15 +31671309,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.1165465,994.0,894.0,297.15,296.15 +31671630,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.904065,994.0,894.0,297.15,296.15 +31671951,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.693882,994.0,894.0,297.15,296.15 +31672272,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.486156,994.0,894.0,297.15,296.15 +31672593,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.280945,994.0,894.0,297.15,296.15 +31672914,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,288.078385,994.0,894.0,297.15,296.15 +31673235,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.8785875,994.0,894.0,297.15,296.15 +31673556,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.68167,994.0,894.0,297.15,296.15 +31673877,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.4877305,994.0,894.0,297.15,296.15 +31674198,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.296898,994.0,894.0,297.15,296.15 +31674519,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.1092265,994.0,894.0,297.15,296.15 +31674840,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.92487,994.0,894.0,297.15,296.15 +31675161,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.743889,994.0,894.0,297.15,296.15 +31675482,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.566411,994.0,894.0,297.15,296.15 +31675803,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.392495,994.0,894.0,297.15,296.15 +31676124,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.222288,994.0,894.0,297.15,296.15 +31676445,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,286.05585,994.0,894.0,297.15,296.15 +31676766,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.893273,994.0,894.0,297.15,296.15 +31677087,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.734663,994.0,894.0,297.15,296.15 +31677408,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.580052,994.0,894.0,297.15,296.15 +31677729,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.429598,994.0,894.0,297.15,296.15 +31678050,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.28337,994.0,894.0,297.15,296.15 +31678371,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.1413785,994.0,894.0,297.15,296.15 +31678692,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.003796,994.0,894.0,297.15,296.15 +31679013,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.870636,994.0,894.0,297.15,296.15 +31679334,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.741988,994.0,894.0,297.15,296.15 +31679655,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.617925,994.0,894.0,297.15,296.15 +31679976,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.498514,994.0,894.0,297.15,296.15 +31680297,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.383774,994.0,894.0,297.15,296.15 +31680618,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.273865,994.0,894.0,297.15,296.15 +31680939,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.168777,994.0,894.0,297.15,296.15 +31681260,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.06857,994.0,894.0,297.15,296.15 +31681581,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.973345,994.0,894.0,297.15,296.15 +31681902,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.883099,994.0,894.0,297.15,296.15 +31682223,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.7978805,994.0,894.0,297.15,296.15 +31682544,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.717782,994.0,894.0,297.15,296.15 +31682865,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.6428225,994.0,894.0,297.15,296.15 +31683186,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.573032,994.0,894.0,297.15,296.15 +31683507,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.508498,994.0,894.0,297.15,296.15 +31683828,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.44918,994.0,894.0,297.15,296.15 +31684149,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.3951505,994.0,894.0,297.15,296.15 +31684470,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.346435,994.0,894.0,297.15,296.15 +31684791,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.303055,994.0,894.0,297.15,296.15 +31685112,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.265086,994.0,894.0,297.15,296.15 +31685433,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.232479,994.0,894.0,297.15,296.15 +31685754,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.205237,994.0,894.0,297.15,296.15 +31686075,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.183475,994.0,894.0,297.15,296.15 +31686396,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.167104,994.0,894.0,297.15,296.15 +31686717,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.15618,994.0,894.0,297.15,296.15 +31687038,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.150715,994.0,894.0,297.15,296.15 +31687359,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.1506925,994.0,894.0,297.15,296.15 +31687680,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.1561,994.0,894.0,297.15,296.15 +31688001,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.166976,994.0,894.0,297.15,296.15 +31688322,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.183298,994.0,894.0,297.15,296.15 +31688643,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.2050035,994.0,894.0,297.15,296.15 +31688964,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.232198,994.0,894.0,297.15,296.15 +31689285,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.2647575,994.0,894.0,297.15,296.15 +31689606,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.30267,994.0,894.0,297.15,296.15 +31689927,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.3460045,994.0,894.0,297.15,296.15 +31690248,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.394674,994.0,894.0,297.15,296.15 +31690569,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.4486475,994.0,894.0,297.15,296.15 +31690890,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.50792,994.0,894.0,297.15,296.15 +31691211,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.572408,994.0,894.0,297.15,296.15 +31691532,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.642144,994.0,894.0,297.15,296.15 +31691853,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.7170585,994.0,894.0,297.15,296.15 +31692174,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.797111,994.0,894.0,297.15,296.15 +31692495,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.8822775,994.0,894.0,297.15,296.15 +31692816,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.97248,994.0,894.0,297.15,296.15 +31693137,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.0676605,994.0,894.0,297.15,296.15 +31693458,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.167816,994.0,894.0,297.15,296.15 +31693779,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.2728625,994.0,894.0,297.15,296.15 +31694100,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.38272,994.0,894.0,297.15,296.15 +31694421,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.4974185,994.0,894.0,297.15,296.15 +31694742,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.61679,994.0,894.0,297.15,296.15 +31695063,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.740804,994.0,894.0,297.15,296.15 +31695384,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.869412,994.0,894.0,297.15,296.15 +31695705,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.0025325,994.0,894.0,297.15,296.15 +31696026,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.140069,994.0,894.0,297.15,296.15 +31696347,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.282023,994.0,894.0,297.15,296.15 +31696668,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.428214,994.0,894.0,297.15,296.15 +31696989,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.578624,994.0,894.0,297.15,296.15 +31697310,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.7332,994.0,894.0,297.15,296.15 +31697631,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.8917745,994.0,894.0,297.15,296.15 +31697952,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,286.054312,994.0,894.0,297.15,296.15 +31698273,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.2207165,994.0,894.0,297.15,296.15 +31698594,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.39089,994.0,894.0,297.15,296.15 +31698915,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.5647675,994.0,894.0,297.15,296.15 +31699236,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.742216,994.0,894.0,297.15,296.15 +31699557,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.9231655,994.0,894.0,297.15,296.15 +31699878,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.107487,994.0,894.0,297.15,296.15 +31700199,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.295131,994.0,894.0,297.15,296.15 +31700520,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.48593,994.0,894.0,297.15,296.15 +31700841,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.6798425,994.0,894.0,297.15,296.15 +31701162,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.876735,994.0,894.0,297.15,296.15 +31701483,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,288.0765025,994.0,894.0,297.15,296.15 +31701804,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.27904,994.0,894.0,297.15,296.15 +31702125,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.4842275,994.0,894.0,297.15,296.15 +31702446,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.691928,994.0,894.0,297.15,296.15 +31702767,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.9020885,994.0,894.0,297.15,296.15 +31703088,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.114552,994.0,894.0,297.15,296.15 +31703409,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.329207,994.0,894.0,297.15,296.15 +31703730,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.545965,994.0,894.0,297.15,296.15 +31704051,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.764684,994.0,894.0,297.15,296.15 +31704372,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.985242,994.0,894.0,297.15,296.15 +31704693,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.2075215,994.0,894.0,297.15,296.15 +31705014,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.431402,994.0,894.0,297.15,296.15 +31705335,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.65677,994.0,894.0,297.15,296.15 +31705656,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.883488,994.0,894.0,297.15,296.15 +31705977,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.111465,994.0,894.0,297.15,296.15 +31706298,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.340519,994.0,894.0,297.15,296.15 +31706619,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.5705785,994.0,894.0,297.15,296.15 +31706940,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.80148,994.0,894.0,297.15,296.15 +31707261,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.0331495,994.0,894.0,297.15,296.15 +31707582,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.265408,994.0,894.0,297.15,296.15 +31707903,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.4981475,994.0,894.0,297.15,296.15 +31708224,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.731248,994.0,894.0,297.15,296.15 +31708545,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.9645575,994.0,894.0,297.15,296.15 +31708866,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,293.197994,994.0,894.0,297.15,296.15 +31709187,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,293.4313945,994.0,894.0,297.15,296.15 +31709508,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,293.664656,994.0,894.0,297.15,296.15 +31709829,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,293.897608,994.0,894.0,297.15,296.15 +31710150,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,294.13018,994.0,894.0,297.15,296.15 +31710471,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,294.362185,994.0,894.0,297.15,296.15 +31710792,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,294.59356,994.0,894.0,297.15,296.15 +31711113,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,294.824141,994.0,894.0,297.15,296.15 +31711434,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,295.053786,994.0,894.0,297.15,296.15 +31711755,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,295.28245,994.0,894.0,297.15,296.15 +31712076,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,295.509904,994.0,894.0,297.15,296.15 +31712397,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,3.85949435922e-16,0.07,0.0,295.73609,994.0,894.0,297.15,296.15 +31712718,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,295.960852,994.0,894.0,297.15,296.15 +31713039,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.18408,994.0,894.0,297.15,296.15 +31713360,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.40567,994.0,894.0,297.15,296.15 +31713681,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.6254915,994.0,894.0,297.15,296.15 +31714002,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.843392,994.0,894.0,297.15,296.15 +31714323,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.059307,994.0,894.0,297.15,296.15 +31714644,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.273096,994.0,894.0,297.15,296.15 +31714965,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.4846125,994.0,894.0,297.15,296.15 +31715286,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.693783,994.0,894.0,297.15,296.15 +31715607,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.90048,994.0,894.0,297.15,296.15 +31715928,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,298.10457,994.0,894.0,297.15,296.15 +31716249,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.305984,994.0,894.0,297.15,296.15 +31716570,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.504575,994.0,894.0,297.15,296.15 +31716891,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.7002505,994.0,894.0,297.15,296.15 +31717212,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.892906,994.0,894.0,297.15,296.15 +31717533,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.082427,994.0,894.0,297.15,296.15 +31717854,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.26874,994.0,894.0,297.15,296.15 +31718175,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.4516625,994.0,894.0,297.15,296.15 +31718496,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.631178,994.0,894.0,297.15,296.15 +31718817,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.80717,994.0,894.0,297.15,296.15 +31719138,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.979528,994.0,894.0,297.15,296.15 +31719459,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,300.14818,994.0,894.0,297.15,296.15 +31719780,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.31302,994.0,894.0,297.15,296.15 +31720101,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.473925,994.0,894.0,297.15,296.15 +31720422,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.630863,994.0,894.0,297.15,296.15 +31720743,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.783727,994.0,894.0,297.15,296.15 +31721064,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.93241,994.0,894.0,297.15,296.15 +31721385,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.0768725,994.0,894.0,297.15,296.15 +31721706,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.217022,994.0,894.0,297.15,296.15 +31722027,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.352743,994.0,894.0,297.15,296.15 +31722348,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.484028,994.0,894.0,297.15,296.15 +31722669,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.6107545,994.0,894.0,297.15,296.15 +31722990,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.732865,994.0,894.0,297.15,296.15 +31723311,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.8503175,994.0,894.0,297.15,296.15 +31723632,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.963012,994.0,894.0,297.15,296.15 +31723953,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.070917,994.0,894.0,297.15,296.15 +31724274,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.173954,994.0,894.0,297.15,296.15 +31724595,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.272065,994.0,894.0,297.15,296.15 +31724916,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.365216,994.0,894.0,297.15,296.15 +31725237,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.453357,994.0,894.0,297.15,296.15 +31725558,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.536426,994.0,894.0,297.15,296.15 +31725879,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.614365,994.0,894.0,297.15,296.15 +31726200,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.68716,994.0,894.0,297.15,296.15 +31726521,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.754735,994.0,894.0,297.15,296.15 +31726842,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.81711,994.0,894.0,297.15,296.15 +31727163,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.874205,994.0,894.0,297.15,296.15 +31727484,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.92598,994.0,894.0,297.15,296.15 +31727805,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.97246,994.0,894.0,297.15,296.15 +31728126,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.013561,994.0,894.0,297.15,296.15 +31728447,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.0492765,994.0,894.0,297.15,296.15 +31728768,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.079654,994.0,894.0,297.15,296.15 +31729089,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1045835,994.0,894.0,297.15,296.15 +31729410,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.12407,994.0,894.0,297.15,296.15 +31729731,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.13817,994.0,894.0,297.15,296.15 +31730052,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.146784,994.0,894.0,297.15,296.15 +31730373,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.149955,994.0,894.0,297.15,296.15 +31730694,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.147687,994.0,894.0,297.15,296.15 +31731015,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.1399775,994.0,894.0,297.15,296.15 +31731336,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.126824,994.0,894.0,297.15,296.15 +31731657,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.108254,994.0,894.0,297.15,296.15 +31731978,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.084214,994.0,894.0,297.15,296.15 +31732299,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.054763,994.0,894.0,297.15,296.15 +31732620,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.01996,994.0,894.0,297.15,296.15 +31732941,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.979733,994.0,894.0,297.15,296.15 +31733262,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.934188,994.0,894.0,297.15,296.15 +31733583,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.883295,994.0,894.0,297.15,296.15 +31733904,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.827076,994.0,894.0,297.15,296.15 +31734225,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.7655925,994.0,894.0,297.15,296.15 +31734546,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.698896,994.0,894.0,297.15,296.15 +31734867,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.626967,994.0,894.0,297.15,296.15 +31735188,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.549906,994.0,894.0,297.15,296.15 +31735509,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.467709,994.0,894.0,297.15,296.15 +31735830,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.3804,994.0,894.0,297.15,296.15 +31736151,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.288106,994.0,894.0,297.15,296.15 +31736472,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.190808,994.0,894.0,297.15,296.15 +31736793,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.0885885,994.0,894.0,297.15,296.15 +31737114,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.981502,994.0,894.0,297.15,296.15 +31737435,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.869615,994.0,894.0,297.15,296.15 +31737756,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.75295,994.0,894.0,297.15,296.15 +31738077,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.6316515,994.0,894.0,297.15,296.15 +31738398,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.505653,994.0,894.0,297.15,296.15 +31738719,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.3751435,994.0,894.0,297.15,296.15 +31739040,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.24017,994.0,894.0,297.15,296.15 +31739361,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.1007485,994.0,894.0,297.15,296.15 +31739682,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.957016,994.0,894.0,297.15,296.15 +31740003,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.809053,994.0,894.0,297.15,296.15 +31740324,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.656864,994.0,894.0,297.15,296.15 +31740645,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.500615,994.0,894.0,297.15,296.15 +31740966,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.340344,994.0,894.0,297.15,296.15 +31741287,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.176183,994.0,894.0,297.15,296.15 +31741608,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.008172,994.0,894.0,297.15,296.15 +31741929,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.836425,994.0,894.0,297.15,296.15 +31742250,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.661035,994.0,894.0,297.15,296.15 +31742571,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.482108,994.0,894.0,297.15,296.15 +31742892,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.29972,994.0,894.0,297.15,296.15 +31743213,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.11399,994.0,894.0,297.15,296.15 +31743534,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.925008,994.0,894.0,297.15,296.15 +31743855,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.73288,994.0,894.0,297.15,296.15 +31744176,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.5377,994.0,894.0,297.15,296.15 +31744497,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.339603,994.0,894.0,297.15,296.15 +31744818,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,298.138645,994.0,894.0,297.15,296.15 +31745139,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.935005,994.0,894.0,297.15,296.15 +31745460,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.72873,994.0,894.0,297.15,296.15 +31745781,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.5199755,994.0,894.0,297.15,296.15 +31746102,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.308838,994.0,894.0,297.15,296.15 +31746423,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.095433,994.0,894.0,297.15,296.15 +31746744,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.87986,994.0,894.0,297.15,296.15 +31747065,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.6622775,994.0,894.0,297.15,296.15 +31747386,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.442777,994.0,894.0,297.15,296.15 +31747707,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.2214815,994.0,894.0,297.15,296.15 +31748028,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,295.998502,994.0,894.0,297.15,296.15 +31748349,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,295.773985,994.0,894.0,297.15,296.15 +31748670,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.54803,994.0,894.0,297.15,296.15 +31748991,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.320784,994.0,894.0,297.15,296.15 +31749312,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.092334,994.0,894.0,297.15,296.15 +31749633,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.8628365,994.0,894.0,297.15,296.15 +31749954,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.632395,994.0,894.0,297.15,296.15 +31750275,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.40117,994.0,894.0,297.15,296.15 +31750596,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.169252,994.0,894.0,297.15,296.15 +31750917,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.936775,994.0,894.0,297.15,296.15 +31751238,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.703855,994.0,894.0,297.15,296.15 +31751559,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.470647,994.0,894.0,297.15,296.15 +31751880,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.23727,994.0,894.0,297.15,296.15 +31752201,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,293.003826,994.0,894.0,297.15,296.15 +31752522,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,292.770494,994.0,894.0,297.15,296.15 +31752843,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,292.5373425,994.0,894.0,297.15,296.15 +31753164,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,292.304534,994.0,894.0,297.15,296.15 +31753485,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,292.07218,994.0,894.0,297.15,296.15 +31753806,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,291.840405,994.0,894.0,297.15,296.15 +31754127,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,291.6093595,994.0,894.0,297.15,296.15 +31754448,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,291.379156,994.0,894.0,297.15,296.15 +31754769,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,291.149895,994.0,894.0,297.15,296.15 +31755090,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,290.92175,994.0,894.0,297.15,296.15 +31755411,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,1.83697019872e-16,0.07,0.0,290.6948235,994.0,894.0,297.15,296.15 +31755732,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.469224,994.0,894.0,297.15,296.15 +31756053,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.245083,994.0,894.0,297.15,296.15 +31756374,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.022517,994.0,894.0,297.15,296.15 +31756695,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.80165,994.0,894.0,297.15,296.15 +31757016,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.58262,994.0,894.0,297.15,296.15 +31757337,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.36555,994.0,894.0,297.15,296.15 +31757658,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.150509,994.0,894.0,297.15,296.15 +31757979,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.9376795,994.0,894.0,297.15,296.15 +31758300,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.7271,994.0,894.0,297.15,296.15 +31758621,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.5189795,994.0,894.0,297.15,296.15 +31758942,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.313366,994.0,894.0,297.15,296.15 +31759263,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,288.1103875,994.0,894.0,297.15,296.15 +31759584,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.910152,994.0,894.0,297.15,296.15 +31759905,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.712765,994.0,894.0,297.15,296.15 +31760226,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.518339,994.0,894.0,297.15,296.15 +31760547,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.327003,994.0,894.0,297.15,296.15 +31760868,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.138822,994.0,894.0,297.15,296.15 +31761189,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.953923,994.0,894.0,297.15,296.15 +31761510,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.7724,994.0,894.0,297.15,296.15 +31761831,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.594367,994.0,894.0,297.15,296.15 +31762152,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.419884,994.0,894.0,297.15,296.15 +31762473,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.2490755,994.0,894.0,297.15,296.15 +31762794,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.082014,994.0,894.0,297.15,296.15 +31763115,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.9188375,994.0,894.0,297.15,296.15 +31763436,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.759586,994.0,894.0,297.15,296.15 +31763757,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.604335,994.0,894.0,297.15,296.15 +31764078,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.453231,994.0,894.0,297.15,296.15 +31764399,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.306311,994.0,894.0,297.15,296.15 +31764720,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.16364,994.0,894.0,297.15,296.15 +31765041,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.025373,994.0,894.0,297.15,296.15 +31765362,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.891495,994.0,894.0,297.15,296.15 +31765683,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.762116,994.0,894.0,297.15,296.15 +31766004,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.637328,994.0,894.0,297.15,296.15 +31766325,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.517175,994.0,894.0,297.15,296.15 +31766646,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.401692,994.0,894.0,297.15,296.15 +31766967,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.291001,994.0,894.0,297.15,296.15 +31767288,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.185146,994.0,894.0,297.15,296.15 +31767609,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.0841505,994.0,894.0,297.15,296.15 +31767930,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.98815,994.0,894.0,297.15,296.15 +31768251,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.89709,994.0,894.0,297.15,296.15 +31768572,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.81109,994.0,894.0,297.15,296.15 +31768893,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.730176,994.0,894.0,297.15,296.15 +31769214,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.654378,994.0,894.0,297.15,296.15 +31769535,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.583775,994.0,894.0,297.15,296.15 +31769856,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.5184,994.0,894.0,297.15,296.15 +31770177,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.458242,994.0,894.0,297.15,296.15 +31770498,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.403384,994.0,894.0,297.15,296.15 +31770819,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.353827,994.0,894.0,297.15,296.15 +31771140,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.3096,994.0,894.0,297.15,296.15 +31771461,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.270755,994.0,894.0,297.15,296.15 +31771782,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.237298,994.0,894.0,297.15,296.15 +31772103,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.2092065,994.0,894.0,297.15,296.15 +31772424,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.186574,994.0,894.0,297.15,296.15 +31772745,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.169335,994.0,894.0,297.15,296.15 +31773066,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.15754,994.0,894.0,297.15,296.15 +31773387,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.1512185,994.0,894.0,297.15,296.15 +31773708,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.15034,994.0,894.0,297.15,296.15 +31774029,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.154876,994.0,894.0,297.15,296.15 +31774350,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.16489,994.0,894.0,297.15,296.15 +31774671,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.180322,994.0,894.0,297.15,296.15 +31774992,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.20121,994.0,894.0,297.15,296.15 +31775313,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.22752,994.0,894.0,297.15,296.15 +31775634,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.259195,994.0,894.0,297.15,296.15 +31775955,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.2962975,994.0,894.0,297.15,296.15 +31776276,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.338774,994.0,894.0,297.15,296.15 +31776597,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.3865825,994.0,894.0,297.15,296.15 +31776918,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.439721,994.0,894.0,297.15,296.15 +31777239,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.4981535,994.0,894.0,297.15,296.15 +31777560,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.5618,994.0,894.0,297.15,296.15 +31777881,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.6307265,994.0,894.0,297.15,296.15 +31778202,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.704816,994.0,894.0,297.15,296.15 +31778523,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.7840295,994.0,894.0,297.15,296.15 +31778844,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.868408,994.0,894.0,297.15,296.15 +31779165,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.9578125,994.0,894.0,297.15,296.15 +31779486,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.052199,994.0,894.0,297.15,296.15 +31779807,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.1515725,994.0,894.0,297.15,296.15 +31780128,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.25585,994.0,894.0,297.15,296.15 +31780449,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.364955,994.0,894.0,297.15,296.15 +31780770,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.478885,994.0,894.0,297.15,296.15 +31781091,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.597516,994.0,894.0,297.15,296.15 +31781412,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.720804,994.0,894.0,297.15,296.15 +31781733,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.848676,994.0,894.0,297.15,296.15 +31782054,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.981069,994.0,894.0,297.15,296.15 +31782375,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.1179275,994.0,894.0,297.15,296.15 +31782696,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.25918,994.0,894.0,297.15,296.15 +31783017,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.4046935,994.0,894.0,297.15,296.15 +31783338,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.554453,994.0,894.0,297.15,296.15 +31783659,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.7083675,994.0,894.0,297.15,296.15 +31783980,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.8663,994.0,894.0,297.15,296.15 +31784301,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,286.028231,994.0,894.0,297.15,296.15 +31784622,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.194031,994.0,894.0,297.15,296.15 +31784943,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.363605,994.0,894.0,297.15,296.15 +31785264,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.5369,994.0,894.0,297.15,296.15 +31785585,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.7137925,994.0,894.0,297.15,296.15 +31785906,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.894189,994.0,894.0,297.15,296.15 +31786227,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.0779815,994.0,894.0,297.15,296.15 +31786548,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.265108,994.0,894.0,297.15,296.15 +31786869,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.4554235,994.0,894.0,297.15,296.15 +31787190,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.648825,994.0,894.0,297.15,296.15 +31787511,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.845256,994.0,894.0,297.15,296.15 +31787832,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,288.044588,994.0,894.0,297.15,296.15 +31788153,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.2466865,994.0,894.0,297.15,296.15 +31788474,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.45145,994.0,894.0,297.15,296.15 +31788795,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.65877,994.0,894.0,297.15,296.15 +31789116,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.868532,994.0,894.0,297.15,296.15 +31789437,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.080649,994.0,894.0,297.15,296.15 +31789758,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.294975,994.0,894.0,297.15,296.15 +31790079,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.5114095,994.0,894.0,297.15,296.15 +31790400,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.7298,994.0,894.0,297.15,296.15 +31790721,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.950076,994.0,894.0,297.15,296.15 +31791042,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.172081,994.0,894.0,297.15,296.15 +31791363,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.395719,994.0,894.0,297.15,296.15 +31791684,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.620862,994.0,894.0,297.15,296.15 +31792005,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.8473875,994.0,894.0,297.15,296.15 +31792326,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.07517,994.0,894.0,297.15,296.15 +31792647,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.304056,994.0,894.0,297.15,296.15 +31792968,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.533956,994.0,894.0,297.15,296.15 +31793289,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.7647515,994.0,894.0,297.15,296.15 +31793610,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.996305,994.0,894.0,297.15,296.15 +31793931,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.2284795,994.0,894.0,297.15,296.15 +31794252,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.46113,994.0,894.0,297.15,296.15 +31794573,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.6941935,994.0,894.0,297.15,296.15 +31794894,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.927489,994.0,894.0,297.15,296.15 +31795215,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,293.1609075,994.0,894.0,297.15,296.15 +31795536,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,293.394326,994.0,894.0,297.15,296.15 +31795857,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,293.627619,994.0,894.0,297.15,296.15 +31796178,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,293.860616,994.0,894.0,297.15,296.15 +31796499,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,294.093249,994.0,894.0,297.15,296.15 +31796820,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,294.32538,994.0,894.0,297.15,296.15 +31797141,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,294.5568435,994.0,894.0,297.15,296.15 +31797462,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,294.787562,994.0,894.0,297.15,296.15 +31797783,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,295.017372,994.0,894.0,297.15,296.15 +31798104,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,295.246198,994.0,894.0,297.15,296.15 +31798425,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,295.4738575,994.0,894.0,297.15,296.15 +31798746,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-1.28625052749e-15,0.07,0.0,295.70022,994.0,894.0,297.15,296.15 +31799067,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,295.9252385,994.0,894.0,297.15,296.15 +31799388,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.148716,994.0,894.0,297.15,296.15 +31799709,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.3705735,994.0,894.0,297.15,296.15 +31800030,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.59069,994.0,894.0,297.15,296.15 +31800351,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.808907,994.0,894.0,297.15,296.15 +31800672,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.025156,994.0,894.0,297.15,296.15 +31800993,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.239281,994.0,894.0,297.15,296.15 +31801314,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.451158,994.0,894.0,297.15,296.15 +31801635,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.6607025,994.0,894.0,297.15,296.15 +31801956,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.867812,994.0,894.0,297.15,296.15 +31802277,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,298.0723485,994.0,894.0,297.15,296.15 +31802598,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.274172,994.0,894.0,297.15,296.15 +31802919,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.4732175,994.0,894.0,297.15,296.15 +31803240,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.66937,994.0,894.0,297.15,296.15 +31803561,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.8625065,994.0,894.0,297.15,296.15 +31803882,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.052528,994.0,894.0,297.15,296.15 +31804203,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.23933,994.0,894.0,297.15,296.15 +31804524,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.422824,994.0,894.0,297.15,296.15 +31804845,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.6029,994.0,894.0,297.15,296.15 +31805166,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.77946,994.0,894.0,297.15,296.15 +31805487,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.9523975,994.0,894.0,297.15,296.15 +31805808,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,300.12164,994.0,894.0,297.15,296.15 +31806129,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.287078,994.0,894.0,297.15,296.15 +31806450,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.448625,994.0,894.0,297.15,296.15 +31806771,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.606202,994.0,894.0,297.15,296.15 +31807092,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.759712,994.0,894.0,297.15,296.15 +31807413,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.9090615,994.0,894.0,297.15,296.15 +31807734,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.054222,994.0,894.0,297.15,296.15 +31808055,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.19504,994.0,894.0,297.15,296.15 +31808376,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.331472,994.0,894.0,297.15,296.15 +31808697,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.4634835,994.0,894.0,297.15,296.15 +31809018,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.590925,994.0,894.0,297.15,296.15 +31809339,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.7137875,994.0,894.0,297.15,296.15 +31809660,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.832,994.0,894.0,297.15,296.15 +31809981,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.9454255,994.0,894.0,297.15,296.15 +31810302,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.05409,994.0,894.0,297.15,296.15 +31810623,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.157923,994.0,894.0,297.15,296.15 +31810944,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.2568,994.0,894.0,297.15,296.15 +31811265,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.35076,994.0,894.0,297.15,296.15 +31811586,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.439706,994.0,894.0,297.15,296.15 +31811907,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.52356,994.0,894.0,297.15,296.15 +31812228,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.602336,994.0,894.0,297.15,296.15 +31812549,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.6759315,994.0,894.0,297.15,296.15 +31812870,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.74435,994.0,894.0,297.15,296.15 +31813191,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.8075615,994.0,894.0,297.15,296.15 +31813512,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.865484,994.0,894.0,297.15,296.15 +31813833,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.918097,994.0,894.0,297.15,296.15 +31814154,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.965438,994.0,894.0,297.15,296.15 +31814475,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.007375,994.0,894.0,297.15,296.15 +31814796,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.043964,994.0,894.0,297.15,296.15 +31815117,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.0751985,994.0,894.0,297.15,296.15 +31815438,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.10096,994.0,894.0,297.15,296.15 +31815759,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1213345,994.0,894.0,297.15,296.15 +31816080,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1363,994.0,894.0,297.15,296.15 +31816401,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.145761,994.0,894.0,297.15,296.15 +31816722,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.149819,994.0,894.0,297.15,296.15 +31817043,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.1484265,994.0,894.0,297.15,296.15 +31817364,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.141568,994.0,894.0,297.15,296.15 +31817685,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.1292875,994.0,894.0,297.15,296.15 +31818006,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.111552,994.0,894.0,297.15,296.15 +31818327,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.088393,994.0,894.0,297.15,296.15 +31818648,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.05981,994.0,894.0,297.15,296.15 +31818969,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.025859,994.0,894.0,297.15,296.15 +31819290,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.98648,994.0,894.0,297.15,296.15 +31819611,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.9417785,994.0,894.0,297.15,296.15 +31819932,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.89172,994.0,894.0,297.15,296.15 +31820253,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.836358,994.0,894.0,297.15,296.15 +31820574,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.775745,994.0,894.0,297.15,296.15 +31820895,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.70983,994.0,894.0,297.15,296.15 +31821216,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.638744,994.0,894.0,297.15,296.15 +31821537,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.5625025,994.0,894.0,297.15,296.15 +31821858,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.48109,994.0,894.0,297.15,296.15 +31822179,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.39461,994.0,894.0,297.15,296.15 +31822500,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.3031,994.0,894.0,297.15,296.15 +31822821,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.206588,994.0,894.0,297.15,296.15 +31823142,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.105141,994.0,894.0,297.15,296.15 +31823463,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.998859,994.0,894.0,297.15,296.15 +31823784,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.887708,994.0,894.0,297.15,296.15 +31824105,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.771815,994.0,894.0,297.15,296.15 +31824426,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.651227,994.0,894.0,297.15,296.15 +31824747,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.5259675,994.0,894.0,297.15,296.15 +31825068,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.396196,994.0,894.0,297.15,296.15 +31825389,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.261913,994.0,894.0,297.15,296.15 +31825710,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.123185,994.0,894.0,297.15,296.15 +31826031,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.980135,994.0,894.0,297.15,296.15 +31826352,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.832812,994.0,894.0,297.15,296.15 +31826673,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.681306,994.0,894.0,297.15,296.15 +31826994,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.525713,994.0,894.0,297.15,296.15 +31827315,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.3660675,994.0,894.0,297.15,296.15 +31827636,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.202524,994.0,894.0,297.15,296.15 +31827957,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.035119,994.0,894.0,297.15,296.15 +31828278,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.863952,994.0,894.0,297.15,296.15 +31828599,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.68915,994.0,894.0,297.15,296.15 +31828920,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.51077,994.0,894.0,297.15,296.15 +31829241,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.328921,994.0,894.0,297.15,296.15 +31829562,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.143713,994.0,894.0,297.15,296.15 +31829883,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.955251,994.0,894.0,297.15,296.15 +31830204,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.763606,994.0,894.0,297.15,296.15 +31830525,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.5689125,994.0,894.0,297.15,296.15 +31830846,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.371274,994.0,894.0,297.15,296.15 +31831167,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.170757,994.0,894.0,297.15,296.15 +31831488,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.96754,994.0,894.0,297.15,296.15 +31831809,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.7616845,994.0,894.0,297.15,296.15 +31832130,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.5533,994.0,894.0,297.15,296.15 +31832451,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.34254,994.0,894.0,297.15,296.15 +31832772,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.129472,994.0,894.0,297.15,296.15 +31833093,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.914258,994.0,894.0,297.15,296.15 +31833414,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.696977,994.0,894.0,297.15,296.15 +31833735,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.4777775,994.0,894.0,297.15,296.15 +31834056,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.256762,994.0,894.0,297.15,296.15 +31834377,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.034039,994.0,894.0,297.15,296.15 +31834698,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,295.80977,994.0,894.0,297.15,296.15 +31835019,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.584019,994.0,894.0,297.15,296.15 +31835340,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.35696,994.0,894.0,297.15,296.15 +31835661,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.128707,994.0,894.0,297.15,296.15 +31835982,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.899361,994.0,894.0,297.15,296.15 +31836303,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.6690725,994.0,894.0,297.15,296.15 +31836624,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.437956,994.0,894.0,297.15,296.15 +31836945,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.20613,994.0,894.0,297.15,296.15 +31837266,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.97375,994.0,894.0,297.15,296.15 +31837587,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.740889,994.0,894.0,297.15,296.15 +31837908,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.50772,994.0,894.0,297.15,296.15 +31838229,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.2743385,994.0,894.0,297.15,296.15 +31838550,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,293.04092,994.0,894.0,297.15,296.15 +31838871,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,292.80754,994.0,894.0,297.15,296.15 +31839192,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,292.57436,994.0,894.0,297.15,296.15 +31839513,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,292.3415005,994.0,894.0,297.15,296.15 +31839834,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,292.109043,994.0,894.0,297.15,296.15 +31840155,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,291.8771825,994.0,894.0,297.15,296.15 +31840476,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,291.64601,994.0,894.0,297.15,296.15 +31840797,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,291.41565,994.0,894.0,297.15,296.15 +31841118,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,291.18626,994.0,894.0,297.15,296.15 +31841439,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,290.957923,994.0,894.0,297.15,296.15 +31841760,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,2.57175827821e-16,0.07,0.0,290.73077,994.0,894.0,297.15,296.15 +31842081,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.5049625,994.0,894.0,297.15,296.15 +31842402,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.28058,994.0,894.0,297.15,296.15 +31842723,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.0577665,994.0,894.0,297.15,296.15 +31843044,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.836628,994.0,894.0,297.15,296.15 +31843365,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.617305,994.0,894.0,297.15,296.15 +31843686,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.39989,994.0,894.0,297.15,296.15 +31844007,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.184544,994.0,894.0,297.15,296.15 +31844328,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.971336,994.0,894.0,297.15,296.15 +31844649,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.76042,994.0,894.0,297.15,296.15 +31844970,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.55188,994.0,894.0,297.15,296.15 +31845291,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.345865,994.0,894.0,297.15,296.15 +31845612,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,288.142454,994.0,894.0,297.15,296.15 +31845933,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.941787,994.0,894.0,297.15,296.15 +31846254,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.743934,994.0,894.0,297.15,296.15 +31846575,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.5490375,994.0,894.0,297.15,296.15 +31846896,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.357192,994.0,894.0,297.15,296.15 +31847217,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.1685015,994.0,894.0,297.15,296.15 +31847538,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.983081,994.0,894.0,297.15,296.15 +31847859,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.801009,994.0,894.0,297.15,296.15 +31848180,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.6224,994.0,894.0,297.15,296.15 +31848501,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.4473575,994.0,894.0,297.15,296.15 +31848822,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.275963,994.0,894.0,297.15,296.15 +31849143,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.108313,994.0,894.0,297.15,296.15 +31849464,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.944504,994.0,894.0,297.15,296.15 +31849785,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.784605,994.0,894.0,297.15,296.15 +31850106,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.62873,994.0,894.0,297.15,296.15 +31850427,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.476969,994.0,894.0,297.15,296.15 +31850748,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.329354,994.0,894.0,297.15,296.15 +31851069,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.1860205,994.0,894.0,297.15,296.15 +31851390,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.047055,994.0,894.0,297.15,296.15 +31851711,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.912467,994.0,894.0,297.15,296.15 +31852032,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.782372,994.0,894.0,297.15,296.15 +31852353,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.6568525,994.0,894.0,297.15,296.15 +31852674,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.535942,994.0,894.0,297.15,296.15 +31852995,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.4197375,994.0,894.0,297.15,296.15 +31853316,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.308272,994.0,894.0,297.15,296.15 +31853637,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.2016275,994.0,894.0,297.15,296.15 +31853958,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.099878,994.0,894.0,297.15,296.15 +31854279,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.003081,994.0,894.0,297.15,296.15 +31854600,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.9112,994.0,894.0,297.15,296.15 +31854921,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.8244245,994.0,894.0,297.15,296.15 +31855242,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.742699,994.0,894.0,297.15,296.15 +31855563,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.666091,994.0,894.0,297.15,296.15 +31855884,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.594656,994.0,894.0,297.15,296.15 +31856205,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.5284325,994.0,894.0,297.15,296.15 +31856526,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.467456,994.0,894.0,297.15,296.15 +31856847,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.411745,994.0,894.0,297.15,296.15 +31857168,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.361354,994.0,894.0,297.15,296.15 +31857489,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.316264,994.0,894.0,297.15,296.15 +31857810,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.276565,994.0,894.0,297.15,296.15 +31858131,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.2422255,994.0,894.0,297.15,296.15 +31858452,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.213328,994.0,894.0,297.15,296.15 +31858773,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.1898095,994.0,894.0,297.15,296.15 +31859094,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.171713,994.0,894.0,297.15,296.15 +31859415,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.159065,994.0,894.0,297.15,296.15 +31859736,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.15186,994.0,894.0,297.15,296.15 +31860057,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.150095,994.0,894.0,297.15,296.15 +31860378,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.153778,994.0,894.0,297.15,296.15 +31860699,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.1629405,994.0,894.0,297.15,296.15 +31861020,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.1775,994.0,894.0,297.15,296.15 +31861341,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.197538,994.0,894.0,297.15,296.15 +31861662,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.222984,994.0,894.0,297.15,296.15 +31861983,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.2537975,994.0,894.0,297.15,296.15 +31862304,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.290056,994.0,894.0,297.15,296.15 +31862625,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.33168,994.0,894.0,297.15,296.15 +31862946,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.378635,994.0,894.0,297.15,296.15 +31863267,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.430926,994.0,894.0,297.15,296.15 +31863588,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.48851,994.0,894.0,297.15,296.15 +31863909,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.551345,994.0,894.0,297.15,296.15 +31864230,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.61943,994.0,894.0,297.15,296.15 +31864551,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.692702,994.0,894.0,297.15,296.15 +31864872,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.771132,994.0,894.0,297.15,296.15 +31865193,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.8546685,994.0,894.0,297.15,296.15 +31865514,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.943253,994.0,894.0,297.15,296.15 +31865835,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.03688,994.0,894.0,297.15,296.15 +31866156,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.13546,994.0,894.0,297.15,296.15 +31866477,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.2389435,994.0,894.0,297.15,296.15 +31866798,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.347316,994.0,894.0,297.15,296.15 +31867119,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.460467,994.0,894.0,297.15,296.15 +31867440,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.57834,994.0,894.0,297.15,296.15 +31867761,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.700903,994.0,894.0,297.15,296.15 +31868082,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.828049,994.0,894.0,297.15,296.15 +31868403,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.9597255,994.0,894.0,297.15,296.15 +31868724,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.095892,994.0,894.0,297.15,296.15 +31869045,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.23644,994.0,894.0,297.15,296.15 +31869366,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.381293,994.0,894.0,297.15,296.15 +31869687,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.530387,994.0,894.0,297.15,296.15 +31870008,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.683622,994.0,894.0,297.15,296.15 +31870329,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.840936,994.0,894.0,297.15,296.15 +31870650,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,286.002235,994.0,894.0,297.15,296.15 +31870971,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.16742,994.0,894.0,297.15,296.15 +31871292,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.336416,994.0,894.0,297.15,296.15 +31871613,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.509121,994.0,894.0,297.15,296.15 +31871934,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.685427,994.0,894.0,297.15,296.15 +31872255,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.86528,994.0,894.0,297.15,296.15 +31872576,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.04856,994.0,894.0,297.15,296.15 +31872897,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.235144,994.0,894.0,297.15,296.15 +31873218,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.424987,994.0,894.0,297.15,296.15 +31873539,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.617895,994.0,894.0,297.15,296.15 +31873860,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.81384,994.0,894.0,297.15,296.15 +31874181,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,288.0127375,994.0,894.0,297.15,296.15 +31874502,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.214391,994.0,894.0,297.15,296.15 +31874823,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.418725,994.0,894.0,297.15,296.15 +31875144,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.625668,994.0,894.0,297.15,296.15 +31875465,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.835045,994.0,894.0,297.15,296.15 +31875786,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.046802,994.0,894.0,297.15,296.15 +31876107,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.260779,994.0,894.0,297.15,296.15 +31876428,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.476886,994.0,894.0,297.15,296.15 +31876749,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.694984,994.0,894.0,297.15,296.15 +31877070,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.91496,994.0,894.0,297.15,296.15 +31877391,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.1367015,994.0,894.0,297.15,296.15 +31877712,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.360084,994.0,894.0,297.15,296.15 +31878033,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.5849935,994.0,894.0,297.15,296.15 +31878354,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.811308,994.0,894.0,297.15,296.15 +31878675,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.0388975,994.0,894.0,297.15,296.15 +31878996,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.267616,994.0,894.0,297.15,296.15 +31879317,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.49735,994.0,894.0,297.15,296.15 +31879638,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.728051,994.0,894.0,297.15,296.15 +31879959,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.959471,994.0,894.0,297.15,296.15 +31880280,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.19153,994.0,894.0,297.15,296.15 +31880601,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.424132,994.0,894.0,297.15,296.15 +31880922,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.657156,994.0,894.0,297.15,296.15 +31881243,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.8904205,994.0,894.0,297.15,296.15 +31881564,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,293.12381,994.0,894.0,297.15,296.15 diff --git a/testing/references/forecast/testcase2/tc2_forecast_over_year.csv b/testing/references/forecast/testcase2/tc2_forecast_over_year.csv new file mode 100644 index 000000000..c8789005c --- /dev/null +++ b/testing/references/forecast/testcase2/tc2_forecast_over_year.csv @@ -0,0 +1,1406 @@ +time,EmissionsBiomassPower,EmissionsDistrictHeatingPower,EmissionsElectricPower,EmissionsGasPower,EmissionsSolarThermalPower,HDifHor,HDirNor,HGloHor,HHorIR,InternalGainsCon[1],InternalGainsLat[1],InternalGainsRad[1],LowerSetp[1],Occupancy[1],PriceBiomassPower,PriceDistrictHeatingPower,PriceElectricPowerConstant,PriceElectricPowerDynamic,PriceElectricPowerHighlyDynamic,PriceGasPower,PriceSolarThermalPower,TBlaSky,TDewPoi,TDryBul,TWetBul,UpperCO2[1],UpperSetp[1],ceiHei,cloTim,lat,lon,nOpa,nTot,pAtm,relHum,solAlt,solDec,solHouAng,solTim,solZen,winDir,winSpe +31449600,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.828815246,260.85,266.15,264.686566521,894.0,296.15,77777.0,31449600.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.63,-1.2810149938,-0.40438022506,2283.92456467,31449417.1876,2.85181132059,3.66519142919,3.6 +31449723,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.931666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.812670639,260.822666667,266.13975,264.673232638,894.0,296.15,77777.0,31449723.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.6290134375,-1.28058625548,-0.404378634534,2283.93350669,31449540.1493,2.85138258227,3.65922822091,3.61708333333 +31449846,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.863333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.796526032,260.795333333,266.1295,264.659898755,894.0,296.15,77777.0,31449846.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.628026875,-1.28015751716,-0.404377044008,2283.94244872,31449663.1109,2.85095384396,3.65326501263,3.63416666667 +31449969,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.795,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.780381426,260.768,266.11925,264.646564871,894.0,296.15,77777.0,31449969.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.6270403125,-1.27972877884,-0.404375453482,2283.95139074,31449786.0726,2.85052510564,3.64730180436,3.65125 +31450092,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.726666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.764236819,260.740666667,266.109,264.633230988,894.0,296.15,77777.0,31450092.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.62605375,-1.27930004052,-0.404373862957,2283.96033276,31449909.0342,2.85009636732,3.64133859608,3.66833333333 +31450215,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.658333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.748092212,260.713333333,266.09875,264.619897105,894.0,296.15,77777.0,31450215.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.6250671875,-1.27887130221,-0.404372272431,2283.96927479,31450031.9959,2.849667629,3.6353753878,3.68541666667 +31450338,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.59,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.731947605,260.686,266.0885,264.606563222,894.0,296.15,77777.0,31450338.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.624080625,-1.27844256389,-0.404370681905,2283.97821681,31450154.9575,2.84923889069,3.62941217952,3.7025 +31450461,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.521666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.715802999,260.658666667,266.07825,264.593229339,894.0,296.15,77777.0,31450461.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.6230940625,-1.27801382557,-0.404369091379,2283.98715883,31450277.9192,2.84881015237,3.62344897125,3.71958333333 +31450584,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.453333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.699654834,260.631333333,266.068,264.579675943,894.0,296.15,77777.0,31450584.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.622047222222,-1.27663760798,-0.404367499576,2283.99610086,31450400.8808,2.84743393478,3.61748576297,3.73666666667 +31450707,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.385,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.683505017,260.604,266.05775,264.56602063,894.0,296.15,77777.0,31450707.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.620972395833,-1.27482148931,-0.40436590718,2284.00504288,31450523.8425,2.84561781611,3.61152255469,3.75375 +31450830,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.316666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.6673552,260.576666667,266.0475,264.552365317,894.0,296.15,77777.0,31450830.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.619897569445,-1.27300537064,-0.404364314784,2284.0139849,31450646.8041,2.84380169744,3.60555934641,3.77083333333 +31450953,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.248333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.651205383,260.549333333,266.03725,264.538710004,894.0,296.15,77777.0,31450953.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.618822743056,-1.27118925197,-0.404362722388,2284.02292693,31450769.7658,2.84198557877,3.59959613814,3.78791666667 +31451076,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.18,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.635055566,260.522,266.027,264.525054691,894.0,296.15,77777.0,31451076.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.617747916667,-1.2693731333,-0.404361129992,2284.03186895,31450892.7274,2.8401694601,3.59363292986,3.805 +31451199,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.111666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.618905749,260.494666667,266.01675,264.511399378,894.0,296.15,77777.0,31451199.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.616673090278,-1.26755701463,-0.404359537596,2284.04081098,31451015.6891,2.83835334142,3.58766972158,3.82208333333 +31451322,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.043333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.602755932,260.467333333,266.0065,264.497744066,894.0,296.15,77777.0,31451322.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.615598263889,-1.26574089596,-0.4043579452,2284.049753,31451138.6507,2.83653722275,3.5817065133,3.83916666667 +31451445,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.975,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.586604204,260.44,265.99625,264.484109107,894.0,296.15,77777.0,31451445.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.614525520834,-1.26347941591,-0.40435635212,2284.05869502,31451261.6124,2.8342757427,3.57574330503,3.85625 +31451568,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.906666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.570449163,260.412666667,265.986,264.470509427,894.0,296.15,77777.0,31451568.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.613456388889,-1.26044597614,-0.404354757854,2284.06763705,31451384.574,2.83124230293,3.56978009675,3.87333333333 +31451691,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.838333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.554294121,260.385333333,265.97575,264.456909748,894.0,296.15,77777.0,31451691.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.612387256945,-1.25741253636,-0.404353163588,2284.07657907,31451507.5357,2.82820886315,3.56381688847,3.89041666667 +31451814,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.77,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.53813908,260.358,265.9655,264.443310068,894.0,296.15,77777.0,31451814.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.611318125,-1.25437909659,-0.404351569322,2284.08552109,31451630.4974,2.82517542338,3.55785368019,3.9075 +31451937,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.701666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.521984038,260.330666667,265.95525,264.429710389,894.0,296.15,77777.0,31451937.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.610248993056,-1.25134565681,-0.404349975056,2284.09446312,31451753.459,2.82214198361,3.55189047191,3.92458333333 +31452060,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.633333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.505828997,260.303333333,265.945,264.41611071,894.0,296.15,77777.0,31452060.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.609179861111,-1.24831221704,-0.40434838079,2284.10340514,31451876.4207,2.81910854383,3.54592726364,3.94166666667 +31452183,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.565,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.489673956,260.276,265.93475,264.40251103,894.0,296.15,77777.0,31452183.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.608110729167,-1.24527877726,-0.404346786524,2284.11234716,31451999.3824,2.81607510406,3.53996405536,3.95875 +31452306,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.496666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.473518659,260.248666667,265.9245,264.388932179,894.0,296.15,77777.0,31452306.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.607046458333,-1.24219713713,-0.404345192167,2284.12128919,31452122.344,2.81299346393,3.53400084708,3.97583333333 +31452429,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.428333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.457358378,260.221333333,265.91425,264.375759474,894.0,296.15,77777.0,31452429.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.606076979167,-1.23817558991,-0.404343596031,2284.13023121,31452245.3057,2.80897191671,3.5280376388,3.99291666667 +31452552,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.36,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.441198098,260.194,265.904,264.362586768,894.0,296.15,77777.0,31452552.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.6051075,-1.23415404269,-0.404341999895,2284.13917324,31452368.2673,2.80495036949,3.52207443053,4.01 +31452675,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.291666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.425037817,260.166666667,265.89375,264.349414062,894.0,296.15,77777.0,31452675.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.604138020833,-1.23013249548,-0.404340403759,2284.14811526,31452491.229,2.80092882228,3.51611122225,4.02708333333 +31452798,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.223333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.408877537,260.139333333,265.8835,264.336241357,894.0,296.15,77777.0,31452798.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.603168541667,-1.22611094826,-0.404338807624,2284.15705729,31452614.1906,2.79690727506,3.51014801397,4.04416666667 +31452921,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.155,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.392717257,260.112,265.87325,264.323068652,894.0,296.15,77777.0,31452921.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.6021990625,-1.22208940104,-0.404337211488,2284.16599931,31452737.1523,2.79288572784,3.50418480569,4.06125 +31453044,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.086666667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.376556976,260.084666667,265.863,264.309895946,894.0,296.15,77777.0,31453044.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.601229583333,-1.21806785383,-0.404335615352,2284.17494134,31452860.1139,2.78886418063,3.49822159742,4.07833333333 +31453167,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.018333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,247.360396696,260.057333333,265.85275,264.296723241,894.0,296.15,77777.0,31453167.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.600260104167,-1.21404630661,-0.404334019217,2284.18388336,31452983.0756,2.78484263341,3.49225838914,4.09541666667 +31453290,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.9453125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.339872014,260.03,265.8378125,264.280082382,894.0,296.15,77777.0,31453290.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5994859375,-1.20946699306,-0.404332421713,2284.19282539,31453106.0372,2.78026331986,3.48629518086,4.1125 +31453413,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.870572917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.317747053,260.002666667,265.82115625,264.262169867,894.0,296.15,77777.0,31453413.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.598783385417,-1.20468316518,-0.404330823707,2284.20176741,31453228.9989,2.77547949198,3.48033197258,4.12958333333 +31453536,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.795833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.295622091,259.975333333,265.8045,264.244257352,894.0,296.15,77777.0,31453536.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.598080833333,-1.1998993373,-0.404329225701,2284.21070943,31453351.9606,2.7706956641,3.4743687643,4.14666666667 +31453659,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.72109375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.273497129,259.948,265.78784375,264.226344837,894.0,296.15,77777.0,31453659.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.59737828125,-1.19511550942,-0.404327627695,2284.21965146,31453474.9222,2.76591183622,3.46840555603,4.16375 +31453782,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.646354167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.251372167,259.920666667,265.7711875,264.208432322,894.0,296.15,77777.0,31453782.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.596675729167,-1.19033168155,-0.404326029689,2284.22859348,31453597.8839,2.76112800835,3.46244234775,4.18083333333 +31453905,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.571614583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.229247205,259.893333333,265.75453125,264.190519807,894.0,296.15,77777.0,31453905.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.595973177083,-1.18554785367,-0.404324431684,2284.23753551,31453720.8456,2.75634418047,3.45647913947,4.19791666667 +31454028,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.496875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.207122243,259.866,265.737875,264.172607293,894.0,296.15,77777.0,31454028.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.595270625,-1.18076402579,-0.404322833678,2284.24647753,31453843.8072,2.75156035259,3.45051593119,4.215 +31454151,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.420364583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.182470671,259.838666667,265.718503472,264.152552783,894.0,296.15,77777.0,31454151.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.594647760417,-1.1757429427,-0.404321234897,2284.25541956,31453966.7689,2.7465392695,3.44455272292,4.23208333333 +31454274,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.341354167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.154252119,259.811333333,265.695298611,264.129474282,894.0,296.15,77777.0,31454274.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.594137395833,-1.17038691108,-0.404319635022,2284.26436158,31454089.7306,2.74118323788,3.43858951464,4.24916666667 +31454397,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.26234375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.126033567,259.784,265.67209375,264.10639578,894.0,296.15,77777.0,31454397.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.59362703125,-1.16503087946,-0.404318035146,2284.27330361,31454212.6923,2.73582720626,3.43262630636,4.26625 +31454520,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.183333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.097815016,259.756666667,265.648888889,264.083317279,894.0,296.15,77777.0,31454520.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.593116666667,-1.15967484785,-0.404316435271,2284.28224563,31454335.6539,2.73047117465,3.42666309808,4.28333333333 +31454643,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.104322917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.069596464,259.729333333,265.625684028,264.060238777,894.0,296.15,77777.0,31454643.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.592606302083,-1.15431881623,-0.404314835395,2284.29118766,31454458.6156,2.72511514303,3.42069988981,4.30041666667 +31454766,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.0253125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.041377912,259.702,265.602479166,264.037160276,894.0,296.15,77777.0,31454766.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5920959375,-1.14896278461,-0.40431323552,2284.30012968,31454581.5773,2.71975911141,3.41473668153,4.3175 +31454889,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.946302083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,247.01315936,259.674666667,265.579274305,264.014081774,894.0,296.15,77777.0,31454889.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.591585572917,-1.14360675299,-0.404311635644,2284.30907171,31454704.539,2.71440307979,3.40877347325,4.33458333333 +31455012,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.868125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.985199058,259.647333333,265.556347222,263.991229228,894.0,296.15,77777.0,31455012.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.591067708333,-1.13820928362,-0.404310035586,2284.31801373,31454827.5007,2.70900561042,3.40281026497,4.35166666667 +31455135,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.79765625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.959627559,259.62,265.535989583,263.970466768,894.0,296.15,77777.0,31455135.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.59048046875,-1.13242851503,-0.404308433841,2284.32695576,31454950.4623,2.70322484183,3.39684705669,4.36875 +31455258,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.7271875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.934056061,259.592666667,265.515631944,263.949704308,894.0,296.15,77777.0,31455258.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.589893229167,-1.12664774644,-0.404306832096,2284.33589778,31455073.424,2.69744407324,3.39088384842,4.38583333333 +31455381,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.65671875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.908484563,259.565333333,265.495274305,263.928941849,894.0,296.15,77777.0,31455381.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.589305989583,-1.12086697785,-0.404305230351,2284.34483981,31455196.3857,2.69166330465,3.38492064014,4.40291666667 +31455504,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.58625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.882913065,259.538,265.474916667,263.908179389,894.0,296.15,77777.0,31455504.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.58871875,-1.11508620927,-0.404303628606,2284.35378183,31455319.3473,2.68588253607,3.37895743186,4.42 +31455627,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.51578125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.857341566,259.510666667,265.454559028,263.887416929,894.0,296.15,77777.0,31455627.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.588131510417,-1.10930544068,-0.404302026861,2284.36272386,31455442.309,2.68010176748,3.37299422358,4.43708333333 +31455750,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.4453125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.831770068,259.483333333,265.434201389,263.866654469,894.0,296.15,77777.0,31455750.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.587544270833,-1.10352467209,-0.404300425116,2284.37166588,31455565.2706,2.67432099889,3.36703101531,4.45416666667 +31455873,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.37484375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.80619857,259.456,265.41384375,263.845892009,894.0,296.15,77777.0,31455873.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.58695703125,-1.0977439035,-0.404298823371,2284.38060791,31455688.2323,2.6685402303,3.36106780703,4.47125 +31455996,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.321041667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.789509662,259.428666667,265.403041667,263.832784154,894.0,296.15,77777.0,31455996.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.586099791667,-1.09171762872,-0.404297220166,2284.38954993,31455811.194,2.66251395552,3.35510459875,4.48833333333 +31456119,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.271927083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.775318984,259.401333333,265.394927083,263.821829157,894.0,296.15,77777.0,31456119.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.585166614583,-1.08562230532,-0.404295616552,2284.39849196,31455934.1557,2.65641863212,3.34914139047,4.50541666667 +31456242,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.2228125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.761128305,259.374,265.3868125,263.810874159,894.0,296.15,77777.0,31456242.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5842334375,-1.07952698193,-0.404294012937,2284.40743398,31456057.1173,2.65032330872,3.3431781822,4.5225 +31456365,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.173697917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.746937627,259.346666667,265.378697917,263.799919162,894.0,296.15,77777.0,31456365.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.583300260417,-1.07343165853,-0.404292409322,2284.41637601,31456180.079,2.64422798532,3.33721497392,4.53958333333 +31456488,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.124583333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.732746948,259.319333333,265.370583333,263.788964164,894.0,296.15,77777.0,31456488.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.582367083333,-1.06733633513,-0.404290805708,2284.42531804,31456303.0407,2.63813266192,3.33125176564,4.55666666667 +31456611,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.07546875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.71855627,259.292,265.36246875,263.778009167,894.0,296.15,77777.0,31456611.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.58143390625,-1.06124101173,-0.404289202093,2284.43426006,31456426.0024,2.63203733853,3.32528855736,4.57375 +31456734,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.026354167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,246.704365591,259.264666667,265.354354167,263.767054169,894.0,296.15,77777.0,31456734.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.580500729167,-1.05514568834,-0.404287598478,2284.44320209,31456548.9641,2.62594201513,3.31932534909,4.59083333333 +31456857,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.99109375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.696602539,259.2393125,265.352638889,263.760915803,894.0,296.15,77777.0,31456857.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.579312239583,-1.04894229819,-0.404285993997,2284.45214412,31456671.9257,2.61973862498,3.31425378134,4.60791666667 +31456980,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.971875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.696282001,259.21625,265.358333333,263.760354588,894.0,296.15,77777.0,31456980.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.577828125,-1.04261377812,-0.404284388513,2284.46108614,31456794.8874,2.61341010491,3.31021463949,4.625 +31457103,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.95265625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.695961463,259.1931875,265.364027778,263.759793374,894.0,296.15,77777.0,31457103.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.576344010417,-1.03628525805,-0.404282783029,2284.47002817,31456917.8491,2.60708158484,3.30617549763,4.64208333333 +31457226,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.9334375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.695640925,259.170125,265.369722222,263.759232159,894.0,296.15,77777.0,31457226.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.574859895833,-1.02995673798,-0.404281177545,2284.47897019,31457040.8108,2.60075306477,3.30213635578,4.65916666667 +31457349,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.91421875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.695320388,259.1470625,265.375416667,263.758670945,894.0,296.15,77777.0,31457349.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.57337578125,-1.02362821792,-0.404279572061,2284.48791222,31457163.7725,2.59442454471,3.29809721392,4.67625 +31457472,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.895,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.69499985,259.124,265.381111111,263.75810973,894.0,296.15,77777.0,31457472.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.571891666667,-1.01729969785,-0.404277966576,2284.49685425,31457286.7341,2.58809602464,3.29405807206,4.69333333333 +31457595,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.87578125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.694679312,259.1009375,265.386805556,263.757548516,894.0,296.15,77777.0,31457595.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.570407552083,-1.01097117778,-0.404276361092,2284.50579627,31457409.6958,2.58176750457,3.29001893021,4.71041666667 +31457718,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.8596875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.69536664,259.078625,265.393388889,263.757577025,894.0,296.15,77777.0,31457718.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5688703125,-1.0046173522,-0.404274755335,2284.5147383,31457532.6575,2.57541367899,3.28637112389,4.7275 +31457841,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.861822917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.701933184,259.0606875,265.405157408,263.761045592,894.0,296.15,77777.0,31457841.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.567023177083,-0.998115911136,-0.404273147981,2284.52368033,31457655.6192,2.56891223793,3.28500610825,4.74458333333 +31457964,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.863958333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.708499729,259.04275,265.416925926,263.764514159,894.0,296.15,77777.0,31457964.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.565176041667,-0.991614470071,-0.404271540627,2284.53262235,31457778.5809,2.56241079686,3.2836410926,4.76166666667 +31458087,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.86609375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.715066273,259.0248125,265.428694445,263.767982726,894.0,296.15,77777.0,31458087.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.56332890625,-0.985113029006,-0.404269933274,2284.54156438,31457901.5426,2.5559093558,3.28227607696,4.77875 +31458210,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.868229167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.721632817,259.006875,265.440462963,263.771451293,894.0,296.15,77777.0,31458210.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.561481770833,-0.978611587941,-0.40426832592,2284.5505064,31458024.5043,2.54940791473,3.28091106131,4.79583333333 +31458333,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.870364583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.728199362,258.9889375,265.452231482,263.77491986,894.0,296.15,77777.0,31458333.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.559634635417,-0.972110146877,-0.404266718566,2284.55944843,31458147.466,2.54290647367,3.27954604566,4.81291666667 +31458456,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.8725,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.734765906,258.971,265.464,263.778388428,894.0,296.15,77777.0,31458456.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5577875,-0.965608705812,-0.404265111213,2284.56839046,31458270.4276,2.53640503261,3.27818103002,4.83 +31458579,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.874635417,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.741332451,258.9530625,265.475768519,263.781856995,894.0,296.15,77777.0,31458579.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.555940364583,-0.959107264747,-0.404263503859,2284.57733248,31458393.3893,2.52990359154,3.27681601437,4.84708333333 +31458702,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.883854167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.74906363,258.935125,265.488796296,263.78624543,894.0,296.15,77777.0,31458702.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5540578125,-0.952499914978,-0.404261894955,2284.58627451,31458516.351,2.52329624177,3.27620821709,4.86416666667 +31458825,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.89453125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.757034586,258.9171875,265.502083334,263.790823249,894.0,296.15,77777.0,31458825.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.55216796875,-0.945870760476,-0.404260285732,2284.59521653,31458639.3127,2.51666708727,3.27575631772,4.88125 +31458948,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.905208333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.765005543,258.89925,265.515370371,263.795401069,894.0,296.15,77777.0,31458948.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.550278125,-0.939241605973,-0.404258676509,2284.60415856,31458762.2744,2.51003793277,3.27530441834,4.89833333333 +31459071,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.915885417,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.7729765,258.8813125,265.528657408,263.799978888,894.0,296.15,77777.0,31459071.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.54838828125,-0.932612451471,-0.404257067286,2284.61310059,31458885.2361,2.50340877827,3.27485251896,4.91541666667 +31459194,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.9265625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.780947456,258.863375,265.541944445,263.804556708,894.0,296.15,77777.0,31459194.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5464984375,-0.925983296968,-0.404255458063,2284.62204261,31459008.1978,2.49677962377,3.27440061959,4.9325 +31459317,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.937239583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.788918413,258.8454375,265.555231482,263.809134528,894.0,296.15,77777.0,31459317.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.54460859375,-0.919354142466,-0.40425384884,2284.63098464,31459131.1595,2.49015046927,3.27394872021,4.94958333333 +31459440,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.947916667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.796889369,258.8275,265.568518519,263.813712347,894.0,296.15,77777.0,31459440.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.54271875,-0.912724987964,-0.404252239617,2284.63992667,31459254.1212,2.48352131476,3.27349682083,4.96666666667 +31459563,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.95640625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.802769405,258.8069375,265.58025,263.8174087,894.0,296.15,77777.0,31459563.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.54097109375,-0.90604809577,-0.404250629436,2284.64886869,31459377.0829,2.47684442257,3.27261063445,4.98375 +31459686,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.9628125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.806658087,258.783875,265.5905,263.820265561,894.0,296.15,77777.0,31459686.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.539358854167,-0.89932573911,-0.404249018344,2284.65781072,31459500.0446,2.47012206591,3.27131084139,5.00083333333 +31459809,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.96921875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.810546768,258.7608125,265.60075,263.823122422,894.0,296.15,77777.0,31459809.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.537746614583,-0.892603382449,-0.404247407252,2284.66675274,31459623.0063,2.46339970925,3.27001104834,5.01791666667 +31459932,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.975625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.81443545,258.73775,265.611,263.825979283,894.0,296.15,77777.0,31459932.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.536134375,-0.885881025789,-0.40424579616,2284.67569477,31459745.968,2.45667735259,3.26871125529,5.035 +31460055,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.98203125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.818324132,258.7146875,265.62125,263.828836144,894.0,296.15,77777.0,31460055.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.534522135417,-0.879158669128,-0.404244185067,2284.6846368,31459868.9296,2.44995499593,3.26741146223,5.05208333333 +31460178,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.9884375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.822212814,258.691625,265.6315,263.831693005,894.0,296.15,77777.0,31460178.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.532909895833,-0.872436312468,-0.404242573975,2284.69357882,31459991.8913,2.44323263926,3.26611166918,5.06916666667 +31460301,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.99484375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,246.826101495,258.6685625,265.64175,263.834549866,894.0,296.15,77777.0,31460301.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.53129765625,-0.865713955807,-0.404240962883,2284.70252085,31460114.853,2.4365102826,3.26481187613,5.08625 +31460424,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.829215185,258.644666667,265.6513875,263.837037369,894.0,296.15,77777.0,31460424.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.529733333333,-0.858978664054,-0.404239351426,2284.71146288,31460237.8147,2.42977499085,3.26330300717,5.10366666667 +31460547,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.829132033,258.617333333,265.658498437,263.838001268,894.0,296.15,77777.0,31460547.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.528366666667,-0.852190015046,-0.404237738464,2284.7204049,31460360.7764,2.42298634184,3.26093170013,5.12245833333 +31460670,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.829048882,258.59,265.665609375,263.838965167,894.0,296.15,77777.0,31460670.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.527,-0.845401366038,-0.404236125503,2284.72934693,31460483.7381,2.41619769283,3.25856039309,5.14125 +31460793,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.82896573,258.562666667,265.672720312,263.839929067,894.0,296.15,77777.0,31460793.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.525633333333,-0.83861271703,-0.404234512541,2284.73828896,31460606.6998,2.40940904383,3.25618908605,5.16004166667 +31460916,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.828882578,258.535333333,265.67983125,263.840892966,894.0,296.15,77777.0,31460916.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.524266666667,-0.831824068022,-0.40423289958,2284.74723099,31460729.6615,2.40262039482,3.25381777901,5.17883333333 +31461039,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.828799426,258.508,265.686942187,263.841856865,894.0,296.15,77777.0,31461039.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5229,-0.825035419014,-0.404231286619,2284.75617301,31460852.6232,2.39583174581,3.25144647197,5.197625 +31461162,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.828716274,258.480666667,265.694053125,263.842820764,894.0,296.15,77777.0,31461162.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.521533333333,-0.818246770006,-0.404229673657,2284.76511504,31460975.5849,2.3890430968,3.24907516493,5.21641666667 +31461285,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.828633122,258.453333333,265.701164063,263.843784663,894.0,296.15,77777.0,31461285.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.520166666667,-0.811458120998,-0.404228060696,2284.77405707,31461098.5466,2.3822544478,3.24670385789,5.23520833333 +31461408,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.828380952,258.426,265.708104167,263.844562007,894.0,296.15,77777.0,31461408.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5188,-0.804630128444,-0.404226446093,2284.7829991,31461221.5083,2.37542645524,3.24427528223,5.256 +31461531,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.828105307,258.398666667,265.715020544,263.845313439,894.0,296.15,77777.0,31461531.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.517433333333,-0.797796671507,-0.404224831263,2284.79194112,31461344.47,2.3685929983,3.24183875259,5.27706944445 +31461654,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.827829662,258.371333333,265.721936921,263.846064872,894.0,296.15,77777.0,31461654.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.516066666667,-0.790963214571,-0.404223216432,2284.80088315,31461467.4317,2.36175954137,3.23940222296,5.29813888889 +31461777,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.827554017,258.344,265.728853299,263.846816305,894.0,296.15,77777.0,31461777.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5147,-0.784129757635,-0.404221601602,2284.80982517,31461590.3934,2.35492608443,3.23696569333,5.31920833334 +31461900,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.827278372,258.316666667,265.735769676,263.847567737,894.0,296.15,77777.0,31461900.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.513333333333,-0.777296300698,-0.404219986771,2284.8187672,31461713.3551,2.3480926275,3.23452916369,5.34027777778 +31462023,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.827002727,258.289333333,265.742686053,263.84831917,894.0,296.15,77777.0,31462023.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.511966666667,-0.770462843762,-0.40421837194,2284.82770923,31461836.3168,2.34125917056,3.23209263406,5.36134722222 +31462146,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.826727082,258.262,265.749602431,263.849070603,894.0,296.15,77777.0,31462146.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5106,-0.763629386826,-0.40421675711,2284.83665125,31461959.2785,2.33442571362,3.22965610443,5.38241666667 +31462269,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.826350913,258.234666667,265.756417651,263.849710656,894.0,296.15,77777.0,31462269.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.509233333333,-0.756780664208,-0.404215141231,2284.84559328,31462082.2402,2.32757699101,3.22723002859,5.40380555556 +31462392,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.825896074,258.207333333,265.763153704,263.850263544,894.0,296.15,77777.0,31462392.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.507866666667,-0.749919994534,-0.404213524531,2284.85453531,31462205.2019,2.32071632133,3.22481213398,5.42544444445 +31462515,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.825441235,258.18,265.769889757,263.850816431,894.0,296.15,77777.0,31462515.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5065,-0.743059324861,-0.404211907832,2284.86347733,31462328.1636,2.31385565166,3.22239423938,5.44708333334 +31462638,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.824986397,258.152666667,265.77662581,263.851369319,894.0,296.15,77777.0,31462638.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.505133333333,-0.736198655188,-0.404210291132,2284.87241936,31462451.1253,2.30699498199,3.21997634477,5.46872222222 +31462761,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.824531558,258.125333333,265.783361863,263.851922206,894.0,296.15,77777.0,31462761.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.503766666667,-0.729337985514,-0.404208674432,2284.88136139,31462574.087,2.30013431231,3.21755845017,5.49036111111 +31462884,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.824076719,258.098,265.790097916,263.852475094,894.0,296.15,77777.0,31462884.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.5024,-0.722477315841,-0.404207057732,2284.89030342,31462697.0487,2.29327364264,3.21514055556,5.512 +31463007,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.82362188,258.070666667,265.79683397,263.853027981,894.0,296.15,77777.0,31463007.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.501033333333,-0.715616646168,-0.404205441033,2284.89924544,31462820.0105,2.28641297297,3.21272266095,5.53363888889 +31463130,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.823126576,258.043333333,265.803529514,263.853535805,894.0,296.15,77777.0,31463130.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.499666666667,-0.708752949382,-0.404203823877,2284.90818747,31462942.9722,2.27954927618,3.21032976455,5.555 +31463253,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.822505832,258.016,265.810099479,263.853903932,894.0,296.15,77777.0,31463253.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4983,-0.701879868548,-0.404202205309,2284.9171295,31463065.9339,2.27267619535,3.20801436259,5.5755 +31463376,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.821885088,257.988666667,265.816669444,263.854272059,894.0,296.15,77777.0,31463376.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.496933333333,-0.695006787714,-0.40420058674,2284.92607153,31463188.8956,2.26580311451,3.20569896063,5.596 +31463499,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.821264344,257.961333333,265.82323941,263.854640186,894.0,296.15,77777.0,31463499.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.495566666667,-0.688133706879,-0.404198968172,2284.93501356,31463311.8573,2.25893003367,3.20338355866,5.6165 +31463622,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.8206436,257.934,265.829809375,263.855008314,894.0,296.15,77777.0,31463622.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4942,-0.681260626045,-0.404197349603,2284.94395558,31463434.819,2.25205695284,3.2010681567,5.637 +31463745,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.820022856,257.906666667,265.83637934,263.855376441,894.0,296.15,77777.0,31463745.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.492833333333,-0.674387545211,-0.404195731035,2284.95289761,31463557.7807,2.245183872,3.19875275473,5.6575 +31463868,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.819402111,257.879333333,265.842949306,263.855744568,894.0,296.15,77777.0,31463868.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.491466666667,-0.667514464377,-0.404194112466,2284.96183964,31463680.7424,2.23831079117,3.19643735277,5.678 +31463991,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,246.818781367,257.852,265.849519271,263.856112695,894.0,296.15,77777.0,31463991.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4901,-0.660641383543,-0.404192493898,2284.97078167,31463803.7041,2.23143771033,3.19412195081,5.6985 +31464114,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.99109375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.811745369,257.823776042,265.849426042,263.850577036,894.0,296.15,77777.0,31464114.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.488733333333,-0.653768663722,-0.404190873597,2284.97972369,31463926.6658,2.22456499051,3.19175041651,5.71761458333 +31464237,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.981484375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.804202904,257.795481771,265.848806771,263.84457529,894.0,296.15,77777.0,31464237.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.487366666667,-0.646895972403,-0.40418925316,2284.98866572,31464049.6275,2.21769229919,3.18937445071,5.73661979167 +31464360,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.971875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.796660439,257.7671875,265.8481875,263.838573543,894.0,296.15,77777.0,31464360.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.486,-0.640023281084,-0.404187632722,2284.99760775,31464172.5892,2.21081960788,3.18699848491,5.755625 +31464483,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.962265625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.789117973,257.738893229,265.847568229,263.832571796,894.0,296.15,77777.0,31464483.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.484633333333,-0.633150589765,-0.404186012285,2285.00654978,31464295.5509,2.20394691656,3.18462251911,5.77463020833 +31464606,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.95265625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.781575508,257.710598958,265.846948958,263.82657005,894.0,296.15,77777.0,31464606.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.483266666667,-0.626277898445,-0.404184391848,2285.01549181,31464418.5126,2.19707422524,3.18224655331,5.79363541667 +31464729,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.943046875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.774033042,257.682304688,265.846329688,263.820568303,894.0,296.15,77777.0,31464729.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4819,-0.619405207126,-0.40418277141,2285.02443384,31464541.4743,2.19020153392,3.17987058751,5.812640625 +31464852,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.9334375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.766490577,257.654010417,265.845710417,263.814566556,894.0,296.15,77777.0,31464852.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.480533333333,-0.612532515807,-0.404181150973,2285.03337587,31464664.436,2.1833288426,3.17749462172,5.83164583333 +31464975,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.919921875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.755583216,257.625325521,265.841575521,263.805474997,894.0,296.15,77777.0,31464975.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.479166666667,-0.605667003118,-0.404179529396,2285.0423179,31464787.3978,2.17646332991,3.17515274438,5.85004340278 +31465098,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.90390625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.742522322,257.596390625,265.835190625,263.794405958,894.0,296.15,77777.0,31465098.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4778,-0.598806084754,-0.40417790709,2285.05125992,31464910.3595,2.16960241155,3.17283268366,5.86805208333 +31465221,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.887890625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.729461428,257.567455729,265.828805729,263.783336919,894.0,296.15,77777.0,31465221.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.476433333333,-0.59194516639,-0.404176284783,2285.06020195,31465033.3212,2.16274149318,3.17051262294,5.88606076389 +31465344,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.871875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.716400534,257.538520833,265.822420833,263.772267881,894.0,296.15,77777.0,31465344.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.475066666667,-0.585084248025,-0.404174662477,2285.06914398,31465156.2829,2.15588057482,3.16819256222,5.90406944444 +31465467,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.855859375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.70333964,257.509585937,265.816035937,263.761198842,894.0,296.15,77777.0,31465467.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4737,-0.578223329661,-0.404173040171,2285.07808601,31465279.2446,2.14901965646,3.1658725015,5.922078125 +31465590,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.83984375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.690278746,257.480651042,265.809651042,263.750129803,894.0,296.15,77777.0,31465590.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.472333333333,-0.571362411296,-0.404171417864,2285.08702803,31465402.2064,2.14215873809,3.16355244078,5.94008680555 +31465713,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.823828125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.677217852,257.451716146,265.803266146,263.739060764,894.0,296.15,77777.0,31465713.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.470966666667,-0.564501492932,-0.404169795558,2285.09597006,31465525.1681,2.13529781973,3.16123238006,5.95809548611 +31465836,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.8115625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.666126162,257.42315625,265.79890625,263.729773831,894.0,296.15,77777.0,31465836.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4696,-0.557647065596,-0.404168172705,2285.10491209,31465648.1298,2.12844339239,3.15907594396,5.9756875 +31465959,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.808359375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.659793381,257.395502604,265.799440104,263.724793651,894.0,296.15,77777.0,31465959.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.468233333333,-0.550808324913,-0.40416654853,2285.11385412,31465771.0915,2.12160465171,3.15731493401,5.99227256944 +31466082,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.80515625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.653460599,257.367848958,265.799973958,263.719813472,894.0,296.15,77777.0,31466082.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.466866666667,-0.543969584231,-0.404164924355,2285.12279615,31465894.0532,2.11476591103,3.15555392407,6.00885763889 +31466205,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.801953125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.647127818,257.340195312,265.800507812,263.714833292,894.0,296.15,77777.0,31466205.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4655,-0.537130843548,-0.40416330018,2285.13173818,31466017.015,2.10792717034,3.15379291412,6.02544270833 +31466328,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.79875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.640795036,257.312541667,265.801041667,263.709853113,894.0,296.15,77777.0,31466328.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.464133333333,-0.530292102865,-0.404161676005,2285.1406802,31466139.9767,2.10108842966,3.15203190418,6.04202777778 +31466451,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.795546875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.634462255,257.284888021,265.801575521,263.704872934,894.0,296.15,77777.0,31466451.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.462766666667,-0.523453362183,-0.40416005183,2285.14962223,31466262.9384,2.09424968898,3.15027089423,6.05861284722 +31466574,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.79234375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.628129473,257.257234375,265.802109375,263.699892754,894.0,296.15,77777.0,31466574.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4614,-0.5166146215,-0.404158427655,2285.15856426,31466385.9001,2.0874109483,3.14850988429,6.07519791667 +31466697,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.789140625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.621796692,257.229580729,265.802643229,263.694912575,894.0,296.15,77777.0,31466697.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.460033333333,-0.509775880817,-0.40415680348,2285.16750629,31466508.8618,2.08057220761,3.14674887434,6.09178298611 +31466820,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.8171875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.633969311,257.205052083,265.822302083,263.706631802,894.0,296.15,77777.0,31466820.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.458666666667,-0.502968301905,-0.404155177482,2285.17644832,31466631.8236,2.0737646287,3.14602415364,6.1065625 +31466943,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.846015625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.646604565,257.180601563,265.842439062,263.718768515,894.0,296.15,77777.0,31466943.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4573,-0.496161502037,-0.404153551439,2285.18539035,31466754.7853,2.06695782883,3.14532534017,6.121296875 +31467066,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.87484375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.659239819,257.156151042,265.862576042,263.730905228,894.0,296.15,77777.0,31467066.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.455933333333,-0.48935470217,-0.404151925395,2285.19433238,31466877.747,2.06015102897,3.1446265267,6.13603125 +31467189,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.903671875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.671875073,257.131700521,265.882713021,263.74304194,894.0,296.15,77777.0,31467189.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.454566666667,-0.482547902302,-0.404150299352,2285.20327441,31467000.7087,2.0533442291,3.14392771323,6.150765625 +31467312,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.9325,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.684510327,257.10725,265.90285,263.755178653,894.0,296.15,77777.0,31467312.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4532,-0.475741102434,-0.404148673308,2285.21221644,31467123.6704,2.04653742923,3.14322889976,6.1655 +31467435,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.961328125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.697145581,257.082799479,265.922986979,263.767315366,894.0,296.15,77777.0,31467435.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.451833333333,-0.468934302566,-0.404147047265,2285.22115847,31467246.6322,2.03973062936,3.14253008629,6.180234375 +31467558,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,209.99015625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,246.709780835,257.058348958,265.943123958,263.779452079,894.0,296.15,77777.0,31467558.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.450466666667,-0.462127502699,-0.404145421221,2285.23010049,31467369.5939,2.0329238295,3.14183127282,6.19496875 +31467681,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.048515625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.731708529,257.036851563,265.9725,263.798627538,894.0,296.15,77777.0,31467681.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.448875,-0.455347918993,-0.404143793947,2285.23904252,31467492.5556,2.02614424579,3.14159265359,6.207734375 +31467804,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.1221875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.758454524,257.016885417,266.006666667,263.821452718,894.0,296.15,77777.0,31467804.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.447166666667,-0.448582447372,-0.404142166035,2285.24798455,31467615.5173,2.01937877417,3.14159265359,6.21947916667 +31467927,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.195859375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.78520052,256.996919271,266.040833333,263.844277898,894.0,296.15,77777.0,31467927.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.445458333333,-0.441816975751,-0.404140538123,2285.25692658,31467738.4791,2.01261330255,3.14159265359,6.23122395833 +31468050,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.26953125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.811946516,256.976953125,266.075,263.867103079,894.0,296.15,77777.0,31468050.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.44375,-0.43505150413,-0.404138910211,2285.26586861,31467861.4408,2.00584783093,3.14159265359,6.24296875 +31468173,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.343203125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.838692511,256.956986979,266.109166667,263.889928259,894.0,296.15,77777.0,31468173.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.442041666667,-0.42828603251,-0.404137282299,2285.27481064,31467984.4025,1.9990823593,3.14159265359,6.25471354167 +31468296,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.416875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.865438507,256.937020833,266.143333333,263.912753439,894.0,296.15,77777.0,31468296.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.440333333333,-0.421520560889,-0.404135654387,2285.28375267,31468107.3643,1.99231688768,3.14159265359,6.26645833333 +31468419,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.490546875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.892184502,256.917054687,266.1775,263.935578619,894.0,296.15,77777.0,31468419.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.438625,-0.414755089268,-0.404134026475,2285.2926947,31468230.326,1.98555141606,3.14159265359,6.278203125 +31468542,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.57515625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.919197391,256.898182292,266.211666667,263.957668281,894.0,296.15,77777.0,31468542.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.436761111111,-0.40800688056,-0.404132397925,2285.30163673,31468353.2877,1.97880320735,3.14159265359,6.28912152778 +31468665,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.680859375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.946725,256.881419271,266.245833333,263.978339445,894.0,296.15,77777.0,31468665.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.434597222222,-0.401291964612,-0.404130768144,2285.31057876,31468476.2495,1.9720882914,3.14159265359,6.29844618056 +31468788,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.7865625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,246.97425261,256.86465625,266.28,263.999010608,894.0,296.15,77777.0,31468788.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.432433333333,-0.394577048664,-0.404129138363,2285.31952079,31468599.2112,1.96537337546,3.14159265359,6.30777083333 +31468911,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.892265625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.00178022,256.847893229,266.314166667,264.019681772,894.0,296.15,77777.0,31468911.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.430269444445,-0.387862132716,-0.404127508583,2285.32846282,31468722.1729,1.95865845951,3.14159265359,6.31709548611 +31469034,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,210.99796875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.029307829,256.831130208,266.348333333,264.040352935,894.0,296.15,77777.0,31469034.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.428105555556,-0.381147216768,-0.404125878802,2285.33740485,31468845.1347,1.95194354356,3.14159265359,6.32642013889 +31469157,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.103671875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.056835439,256.814367188,266.3825,264.061024099,894.0,296.15,77777.0,31469157.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.425941666667,-0.374432300821,-0.404124249021,2285.34634688,31468968.0964,1.94522862762,3.14159265359,6.33574479167 +31469280,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.209375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.084363048,256.797604167,266.416666667,264.081695262,894.0,296.15,77777.0,31469280.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.423777777778,-0.367717384873,-0.404122619241,2285.35528891,31469091.0581,1.93851371167,3.14159265359,6.34506944445 +31469403,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.315390625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.111898159,256.780872396,266.450833333,264.102346755,894.0,296.15,77777.0,31469403.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.421611111111,-0.361003927544,-0.404120989415,2285.36423094,31469214.0199,1.93180025434,3.14159265359,6.35438715278 +31469526,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.43390625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.13973332,256.765390625,266.485,264.122211409,894.0,296.15,77777.0,31469526.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.419333333334,-0.354348814972,-0.404119357766,2285.37317297,31469336.9816,1.92514514177,3.14159265359,6.36342708334 +31469649,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.552421875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.167568481,256.749908854,266.519166667,264.142076064,894.0,296.15,77777.0,31469649.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.417055555556,-0.3476937024,-0.404117726117,2285.382115,31469459.9433,1.9184900292,3.14159265359,6.37246701389 +31469772,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.6709375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.195403642,256.734427083,266.553333333,264.161940719,894.0,296.15,77777.0,31469772.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.414777777778,-0.341038589828,-0.404116094468,2285.39105703,31469582.9051,1.91183491662,3.14159265359,6.38150694445 +31469895,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.789453125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.223238803,256.718945313,266.5875,264.181805374,894.0,296.15,77777.0,31469895.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4125,-0.334383477256,-0.404114462819,2285.39999905,31469705.8668,1.90517980405,3.14159265359,6.390546875 +31470018,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,211.90796875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.251073964,256.703463542,266.621666667,264.201670028,894.0,296.15,77777.0,31470018.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.410222222222,-0.327728364684,-0.40411283117,2285.40894108,31469828.8285,1.89852469148,3.14159265359,6.39958680556 +31470141,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.026484375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.278909125,256.687981771,266.655833333,264.221534683,894.0,296.15,77777.0,31470141.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.407944444445,-0.321073252112,-0.404111199521,2285.41788311,31469951.7903,1.89186957891,3.14159265359,6.40862673611 +31470264,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.145,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.306744286,256.6725,266.69,264.241399338,894.0,296.15,77777.0,31470264.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.405666666667,-0.31441813954,-0.404109567872,2285.42682514,31470074.752,1.88521446634,3.14159265359,6.41766666667 +31470387,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.258984375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.334459229,256.656565104,266.724166667,264.261711884,894.0,296.15,77777.0,31470387.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.40355,-0.307811992187,-0.404107934901,2285.43576717,31470197.7137,1.87860831898,3.14159265359,6.428015625 +31470510,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.37109375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.362124427,256.640442708,266.758333333,264.282209764,894.0,296.15,77777.0,31470510.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.4015,-0.301226106303,-0.404106301384,2285.4447092,31470320.6755,1.8720224331,3.14159265359,6.43890625 +31470633,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.483203125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.389789625,256.624320313,266.7925,264.302707644,894.0,296.15,77777.0,31470633.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.39945,-0.29464022042,-0.404104667867,2285.45365123,31470443.6372,1.86543654722,3.14159265359,6.449796875 +31470756,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.5953125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.417454823,256.608197917,266.826666667,264.323205524,894.0,296.15,77777.0,31470756.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.3974,-0.288054334536,-0.404103034349,2285.46259326,31470566.599,1.85885066133,3.14159265359,6.4606875 +31470879,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.707421875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.445120021,256.592075521,266.860833333,264.343703404,894.0,296.15,77777.0,31470879.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.39535,-0.281468448653,-0.404101400832,2285.47153529,31470689.5607,1.85226477545,3.14159265359,6.471578125 +31471002,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.81953125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.472785219,256.575953125,266.895,264.364201284,894.0,296.15,77777.0,31471002.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.3933,-0.27488256277,-0.404099767315,2285.48047732,31470812.5225,1.84567888957,3.14159265359,6.48246875 +31471125,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,212.931640625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,247.500450417,256.559830729,266.929166667,264.384699164,894.0,296.15,77777.0,31471125.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.39125,-0.268296676886,-0.404098133797,2285.48941935,31470935.4842,1.83909300368,3.14159265359,6.493359375 +31471248,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.04,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.528017733,256.543333333,266.963333333,264.405527407,894.0,296.15,77777.0,31471248.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.389304166667,-0.261741605992,-0.404096499551,2285.49836138,31471058.446,1.83253793279,3.14159265359,6.50520833333 +31471371,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.1425,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.55543211,256.52625,266.9975,264.426871843,894.0,296.15,77777.0,31471371.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.38752109375,-0.255234683518,-0.404094864165,2285.50730341,31471181.4077,1.82603101032,3.14159265359,6.5185546875 +31471494,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.245,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.582846487,256.509166667,267.031666667,264.448216279,894.0,296.15,77777.0,31471494.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.385738020833,-0.248727761044,-0.40409322878,2285.51624544,31471304.3695,1.81952408784,3.14159265359,6.53190104167 +31471617,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.3475,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.610260863,256.492083333,267.065833333,264.469560715,894.0,296.15,77777.0,31471617.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.383954947917,-0.242220838571,-0.404091593394,2285.52518747,31471427.3312,1.81301716537,3.14159265359,6.54524739583 +31471740,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.45,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.63767524,256.475,267.1,264.490905151,894.0,296.15,77777.0,31471740.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.382171875,-0.235713916097,-0.404089958009,2285.5341295,31471550.293,1.80651024289,3.14159265359,6.55859375 +31471863,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.5525,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.665089617,256.457916667,267.134166667,264.512249587,894.0,296.15,77777.0,31471863.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.380388802083,-0.229206993623,-0.404088322624,2285.54307153,31471673.2547,1.80000332042,3.14159265359,6.57194010417 +31471986,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.655,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.692503993,256.440833333,267.168333333,264.533594023,894.0,296.15,77777.0,31471986.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.378605729167,-0.222700071149,-0.404086687238,2285.55201356,31471796.2165,1.79349639795,3.14159265359,6.58528645833 +31472109,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.7575,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.719917516,256.42375,267.2025,264.554938261,894.0,296.15,77777.0,31472109.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.37682734375,-0.216199671039,-0.404085051716,2285.56095559,31471919.1782,1.78699599784,3.14159265359,6.59870052083 +31472232,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.86,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.747320214,256.406666667,267.236666667,264.576279992,894.0,296.15,77777.0,31472232.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.375108333333,-0.209781887541,-0.404083414462,2285.56989763,31472042.1399,1.78057821434,3.14159265359,6.61297222222 +31472355,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,213.9625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.774722913,256.389583333,267.270833333,264.597621722,894.0,296.15,77777.0,31472355.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.373389322917,-0.203364104042,-0.404081777209,2285.57883966,31472165.1017,1.77416043084,3.14159265359,6.62724392361 +31472478,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.065,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.802125611,256.3725,267.305,264.618963453,894.0,296.15,77777.0,31472478.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.3716703125,-0.196946320544,-0.404080139955,2285.58778169,31472288.0634,1.76774264734,3.14159265359,6.641515625 +31472601,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.1675,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.82952831,256.355416667,267.339166667,264.640305183,894.0,296.15,77777.0,31472601.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.369951302083,-0.190528537045,-0.404078502701,2285.59672372,31472411.0252,1.76132486384,3.14159265359,6.65578732639 +31472724,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.27,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.856931009,256.338333333,267.373333333,264.661646914,894.0,296.15,77777.0,31472724.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.368232291667,-0.184110753547,-0.404076865448,2285.60566575,31472533.9869,1.75490708034,3.14159265359,6.67005902778 +31472847,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.3725,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.884333707,256.32125,267.4075,264.682988644,894.0,296.15,77777.0,31472847.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.36651328125,-0.177692970048,-0.404075228194,2285.61460779,31472656.9487,1.74848929685,3.14159265359,6.68433072916 +31472970,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,214.475,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.911736406,256.304166667,267.441666667,264.704330375,894.0,296.15,77777.0,31472970.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.364794270833,-0.171275186549,-0.40407359094,2285.62354982,31472779.9104,1.74207151335,3.14159265359,6.69860243055 +31473093,0.0,0.1,0.5,0.2,0.0,0.146167279411,0.19375,0.0,214.5775,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.939130263,256.287083333,267.475833333,264.7256042,894.0,296.15,77777.0,31473093.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.363107552083,-0.164932914462,-0.404071952274,2285.63249185,31472902.8722,1.73572924126,3.14159265359,6.71276649305 +31473216,0.0,0.1,0.5,0.2,0.0,0.339485294117,0.45,0.0,214.68,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.966521267,256.27,267.51,264.746856119,894.0,296.15,77777.0,31473216.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.36143125,-0.158615000893,-0.404070313152,2285.64143388,31473025.8339,1.72941132769,3.14159265359,6.72689583333 +31473339,0.0,0.1,0.5,0.2,0.0,0.532803308822,0.70625,0.0,214.7825,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,247.993912272,256.252916667,267.544166667,264.768108039,894.0,296.15,77777.0,31473339.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.359754947917,-0.152297087325,-0.40406867403,2285.65037591,31473148.7957,1.72309341412,3.14159265359,6.74102517361 +31473462,0.0,0.1,0.5,0.2,0.0,0.726121323528,0.9625,0.0,214.885,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,248.021303276,256.235833333,267.578333333,264.789359959,894.0,296.15,77777.0,31473462.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.358078645833,-0.145979173757,-0.404067034909,2285.65931794,31473271.7574,1.71677550055,3.14159265359,6.75515451389 +31473585,0.0,0.1,0.5,0.2,0.0,0.919439338233,1.21875,0.0,214.9875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,248.048694281,256.21875,267.6125,264.810611879,894.0,296.15,77777.0,31473585.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.35640234375,-0.139661260189,-0.404065395787,2285.66825997,31473394.7192,1.71045758698,3.14159265359,6.76928385417 +31473708,0.0,0.1,0.5,0.2,0.0,1.11275735294,1.475,0.0,215.09,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,248.076085285,256.201666667,267.646666667,264.831863799,894.0,296.15,77777.0,31473708.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.354726041667,-0.133343346621,-0.404063756665,2285.677202,31473517.6809,1.70413967342,3.14159265359,6.78341319444 +31473831,0.0,0.1,0.5,0.2,0.0,1.30607536764,1.73125,0.0,215.1925,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,248.10347629,256.184583333,267.680833333,264.853115718,894.0,296.15,77777.0,31473831.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.353049739583,-0.127025433052,-0.404062117543,2285.68614403,31473640.6427,1.69782175985,3.14159265359,6.79754253472 +31473954,0.0,0.1,0.5,0.2,0.0,1.6459742647,2.2425,0.0,215.295,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,248.130862153,256.1675,267.715,264.874287379,894.0,296.15,77777.0,31473954.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.3513828125,-0.120756367971,-0.404060477602,2285.69508606,31473763.6044,1.69155269476,3.14159265359,6.811140625 +31474077,0.0,0.1,0.5,0.2,0.0,2.17317095588,3.07958333333,0.0,215.3975,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,248.158241447,256.150416667,267.749166667,264.895356485,894.0,296.15,77777.0,31474077.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.349727864583,-0.1145497204,-0.404058836612,2285.70402809,31473886.5662,1.68534604719,3.14159265359,6.82405989583 +31474200,0.0,0.1,0.5,0.2,0.0,2.70036764706,3.91666666667,0.0,215.5,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,248.185620741,256.133333333,267.783333333,264.916425591,894.0,296.15,77777.0,31474200.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.348072916667,-0.108343072829,-0.404057195622,2285.71297012,31474009.5279,1.67913939962,3.14159265359,6.83697916667 +31474323,0.0,0.1,0.5,0.2,0.0,3.22756433823,4.75375,0.0,215.6025,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,248.213000035,256.11625,267.8175,264.937494698,894.0,296.15,77777.0,31474323.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.34641796875,-0.102136425258,-0.404055554633,2285.72191216,31474132.4897,1.67293275205,3.14159265359,6.8498984375 +31474446,0.0,0.1,0.5,0.2,0.0,3.75476102941,5.59083333333,0.0,215.705,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,248.240379329,256.099166667,267.851666667,264.958563804,894.0,296.15,77777.0,31474446.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.344763020833,-0.0959297776865,-0.404053913643,2285.73085419,31474255.4515,1.66672610448,3.14159265359,6.86281770833 +31474569,0.0,0.1,0.5,0.2,0.0,4.28195772059,6.42791666667,0.0,215.8075,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,248.267758623,256.082083333,267.885833333,264.97963291,894.0,296.15,77777.0,31474569.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.343108072917,-0.0897231301155,-0.404052272654,2285.73979622,31474378.4132,1.66051945691,3.14159265359,6.87573697917 +31474692,0.0,0.1,0.5,0.2,0.0,4.80915441176,7.265,0.0,215.91,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,248.295137917,256.065,267.92,265.000702017,894.0,296.15,77777.0,31474692.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.341453125,-0.0835164825445,-0.404050631664,2285.74873825,31474501.375,1.65431280934,3.14159265359,6.88865625 +31474815,0.0,0.1,0.5,0.2,0.0,5.36741727941,8.18541666667,0.0,216.01328125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.323809654,256.047083333,267.951979167,265.020037907,894.0,296.15,77777.0,31474815.0,0.693942910593,-1.83015225364,0.000260416666667,0.000520833333333,101325.0,0.339823567708,-0.0773248875236,-0.404048990446,2285.75768028,31474624.3367,1.64812121432,3.14152447667,6.90140625 +31474938,0.0,0.1,0.5,0.2,0.0,6.14935661765,9.70583333333,0.0,216.1221875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.361786978,256.023166667,267.968208333,265.026894643,894.0,296.15,77777.0,31474938.0,0.693942910593,-1.83015225364,0.00239583333333,0.00479166666667,101325.0,0.338376822917,-0.071241670864,-0.404047347589,2285.76662231,31474747.2985,1.64203799766,3.14096542589,6.9129375 +31475061,0.0,0.1,0.5,0.2,0.0,6.93129595589,11.22625,0.0,216.23109375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.399764301,255.99925,267.9844375,265.033751379,894.0,296.15,77777.0,31475061.0,0.693942910593,-1.83015225364,0.00453125,0.0090625,101325.0,0.336930078125,-0.0651584542044,-0.404045704731,2285.77556435,31474870.2603,1.635954781,3.14040637512,6.92446875 +31475184,0.0,0.1,0.5,0.2,0.0,7.71323529413,12.7466666667,0.0,216.34,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.437741625,255.975333333,268.000666667,265.040608115,894.0,296.15,77777.0,31475184.0,0.693942910593,-1.83015225364,0.00666666666667,0.0133333333333,101325.0,0.335483333333,-0.0590752375448,-0.404044061873,2285.78450638,31474993.222,1.62987156434,3.13984732434,6.936 +31475307,0.0,0.1,0.5,0.2,0.0,8.49517463237,14.2670833333,0.0,216.44890625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.475718949,255.951416667,268.016895833,265.047464851,894.0,296.15,77777.0,31475307.0,0.693942910593,-1.83015225364,0.00880208333333,0.0176041666667,101325.0,0.334036588542,-0.0529920208852,-0.404042419016,2285.79344841,31475116.1838,1.62378834768,3.13928827356,6.94753125 +31475430,0.0,0.1,0.5,0.2,0.0,9.27711397061,15.7875,0.0,216.5578125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.513696272,255.9275,268.033125,265.054321587,894.0,296.15,77777.0,31475430.0,0.693942910593,-1.83015225364,0.0109375,0.021875,101325.0,0.33258984375,-0.0469088042256,-0.404040776158,2285.80239044,31475239.1455,1.61770513102,3.13872922279,6.9590625 +31475553,0.0,0.1,0.5,0.2,0.0,10.0590533088,17.3079166667,0.0,216.66671875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.551673596,255.903583333,268.049354167,265.061178322,894.0,296.15,77777.0,31475553.0,0.693942910593,-1.83015225364,0.0130729166667,0.0261458333333,101325.0,0.331143098958,-0.040825587566,-0.4040391333,2285.81133247,31475362.1073,1.61162191436,3.13817017201,6.97059375 +31475676,0.0,0.1,0.5,0.2,0.0,10.8409926471,18.8283333333,0.0,216.775625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.58965092,255.879666667,268.065583333,265.068035058,894.0,296.15,77777.0,31475676.0,0.693942910593,-1.83015225364,0.0152083333333,0.0304166666667,101325.0,0.329696354167,-0.0347423709064,-0.404037490443,2285.8202745,31475485.0691,1.6055386977,3.13761112124,6.982125 +31475799,0.0,0.1,0.5,0.2,0.0,11.7642738971,20.98125,1.98,216.91546875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.639495157,255.85025,268.070354167,265.066178966,894.0,296.15,77777.0,31475799.0,0.693942910593,-1.83015225364,0.01940625,0.0388125,101325.0,0.328435807292,-0.0287689895719,-0.404035846082,2285.82921653,31475608.0308,1.59956531637,3.136752092,6.99296875 +31475922,0.0,0.1,0.5,0.2,0.0,12.721819853,23.2875,4.44,217.0628125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.692216222,255.8195,268.072347222,265.062210673,894.0,296.15,77777.0,31475922.0,0.693942910593,-1.83015225364,0.0241041666667,0.0482083333333,101325.0,0.327220399305,-0.0228222349828,-0.404034201356,2285.83815857,31475730.9926,1.59361856178,3.1358203407,7.00364583333 +31476045,0.0,0.1,0.5,0.2,0.0,13.6793658088,25.59375,6.9,217.21015625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.744937286,255.78875,268.074340278,265.05824238,894.0,296.15,77777.0,31476045.0,0.693942910593,-1.83015225364,0.0288020833333,0.0576041666667,101325.0,0.326004991319,-0.0168754803938,-0.404032556631,2285.8471006,31475853.9543,1.58767180719,3.13488858941,7.01432291667 +31476168,0.0,0.1,0.5,0.2,0.0,14.6369117647,27.9,9.36,217.3575,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.797658351,255.758,268.076333333,265.054274087,894.0,296.15,77777.0,31476168.0,0.693942910593,-1.83015225364,0.0335,0.067,101325.0,0.324789583333,-0.0109287258047,-0.404030911905,2285.85604263,31475976.9161,1.5817250526,3.13395683811,7.025 +31476291,0.0,0.1,0.5,0.2,0.0,15.5944577206,30.20625,11.82,217.50484375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.850379416,255.72725,268.078326389,265.050305794,894.0,296.15,77777.0,31476291.0,0.693942910593,-1.83015225364,0.0381979166667,0.0763958333333,101325.0,0.323574175347,-0.00498197121566,-0.40402926718,2285.86498466,31476099.8779,1.57577829801,3.13302508682,7.03567708333 +31476414,0.0,0.1,0.5,0.2,0.0,16.5520036765,32.5125,14.28,217.6521875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.903100481,255.6965,268.080319444,265.0463375,894.0,296.15,77777.0,31476414.0,0.693942910593,-1.83015225364,0.0428958333333,0.0857916666667,101325.0,0.322358767361,0.00096478337339,-0.404027622455,2285.87392669,31476222.8396,1.56983154342,3.13209333552,7.04635416667 +31476537,0.0,0.1,0.5,0.2,0.0,17.5095496324,34.81875,16.74,217.79953125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,248.955821546,255.66575,268.0823125,265.042369207,894.0,296.15,77777.0,31476537.0,0.693942910593,-1.83015225364,0.04759375,0.0951875,101325.0,0.321143359375,0.00691153796245,-0.404025977729,2285.88286872,31476345.8014,1.56388478883,3.13116158423,7.05703125 +31476660,0.0,0.1,0.5,0.2,0.0,19.1087622549,42.3358706467,20.114617284,217.984375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.014093649,255.636666667,268.093194444,265.045651295,894.0,296.15,77777.0,31476660.0,0.693942910593,-1.83015225364,0.0522916666667,0.104583333333,101325.0,0.319910590277,0.0127849028168,-0.404024332093,2285.89181076,31476468.7631,1.55801142398,3.1305934432,7.06729166667 +31476783,0.0,0.1,0.5,0.2,0.0,21.3817248774,55.3244054725,24.4495827161,218.20859375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.078194343,255.609333333,268.113409722,265.056546282,894.0,296.15,77777.0,31476783.0,0.693942910593,-1.83015225364,0.0569895833333,0.113979166667,101325.0,0.318659592014,0.0185812084498,-0.4040226855,2285.90075279,31476591.7249,1.55221511834,3.13040709294,7.07711458333 +31476906,0.0,0.1,0.5,0.2,0.0,23.6546875,68.3129402983,28.7845481482,218.4328125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.142295036,255.582,268.133625,265.06744127,894.0,296.15,77777.0,31476906.0,0.693942910593,-1.83015225364,0.0616875,0.123375,101325.0,0.31740859375,0.0243775140827,-0.404021038906,2285.90969482,31476714.6867,1.54641881271,3.13022074268,7.0869375 +31477029,0.0,0.1,0.5,0.2,0.0,25.9276501225,81.3014751241,33.1195135803,218.65703125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.20639573,255.554666667,268.153840278,265.078336257,894.0,296.15,77777.0,31477029.0,0.693942910593,-1.83015225364,0.0663854166667,0.132770833333,101325.0,0.316157595486,0.0301738197157,-0.404019392313,2285.91863685,31476837.6484,1.54062250708,3.13003439242,7.09676041667 +31477152,0.0,0.1,0.5,0.2,0.0,28.2006127451,94.2900099499,37.4544790124,218.88125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.270496424,255.527333333,268.174055555,265.089231245,894.0,296.15,77777.0,31477152.0,0.693942910593,-1.83015225364,0.0710833333333,0.142166666667,101325.0,0.314906597222,0.0359701253486,-0.40401774572,2285.92757888,31476960.6102,1.53482620144,3.12984804217,7.10658333333 +31477275,0.0,0.1,0.5,0.2,0.0,30.4735753676,107.278544776,41.7894444445,219.10546875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.334597118,255.5,268.194270833,265.100126232,894.0,296.15,77777.0,31477275.0,0.693942910593,-1.83015225364,0.07578125,0.1515625,101325.0,0.313655598958,0.0417664309815,-0.404016099127,2285.93652092,31477083.5719,1.52902989581,3.12966169191,7.11640625 +31477398,0.0,0.1,0.5,0.2,0.0,32.7465379902,120.267079602,46.1244098766,219.3296875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.398697811,255.472666667,268.214486111,265.111021219,894.0,296.15,77777.0,31477398.0,0.693942910593,-1.83015225364,0.0804791666667,0.160958333333,101325.0,0.312404600694,0.0475627366145,-0.404014452534,2285.94546295,31477206.5337,1.52323359018,3.12947534165,7.12622916667 +31477521,0.0,0.1,0.5,0.2,0.0,35.2695189951,135.449539801,50.5940748972,219.57359375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.466248341,255.447666667,268.243354167,265.128745883,894.0,296.15,77777.0,31477521.0,0.693942910593,-1.83015225364,0.0847395833333,0.169479166667,101325.0,0.311101953125,0.053330791232,-0.404012805621,2285.95440498,31477329.4955,1.51746553556,3.12960715037,7.13590625 +31477644,0.0,0.1,0.5,0.2,0.0,39.006875,161.288208955,55.7179950618,219.913125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.550555219,255.434,268.31425,265.179643257,894.0,296.15,77777.0,31477644.0,0.693942910593,-1.83015225364,0.086875,0.17375,101325.0,0.3095484375,0.0589616266315,-0.404011157161,2285.96334701,31477452.4572,1.51183470016,3.1312843027,7.144875 +31477767,0.0,0.1,0.5,0.2,0.0,42.7442310049,187.126878109,60.8419152264,220.25265625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.634862097,255.420333333,268.385145833,265.230540631,894.0,296.15,77777.0,31477767.0,0.693942910593,-1.83015225364,0.0890104166667,0.178020833333,101325.0,0.307994921875,0.064592462031,-0.4040095087,2285.97228904,31477575.419,1.50620386476,3.13296145503,7.15384375 +31477890,0.0,0.1,0.5,0.2,0.0,46.4815870098,212.965547263,65.965835391,220.5921875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.719168974,255.406666667,268.456041667,265.281438005,894.0,296.15,77777.0,31477890.0,0.693942910593,-1.83015225364,0.0911458333333,0.182291666667,101325.0,0.30644140625,0.0702232974305,-0.404007860239,2285.98123108,31477698.3808,1.50057302936,3.13463860735,7.1628125 +31478013,0.0,0.1,0.5,0.2,0.0,50.2189430147,238.804216418,71.0897555556,220.93171875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.803475852,255.393,268.5269375,265.332335379,894.0,296.15,77777.0,31478013.0,0.693942910593,-1.83015225364,0.09328125,0.1865625,101325.0,0.304887890625,0.07585413283,-0.404006211778,2285.99017311,31477821.3426,1.49494219396,3.13631575968,7.17178125 +31478136,0.0,0.1,0.5,0.2,0.0,53.9562990196,264.642885572,76.2136757202,221.27125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.88778273,255.379333333,268.597833333,265.383232753,894.0,296.15,77777.0,31478136.0,0.693942910593,-1.83015225364,0.0954166666667,0.190833333333,101325.0,0.303334375,0.0814849682295,-0.404004563317,2285.99911514,31477944.3043,1.48931135856,3.13799291201,7.18075 +31478259,0.0,0.1,0.5,0.2,0.0,57.6936550245,290.481554726,81.3375958848,221.61078125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,249.972089607,255.365666667,268.668729167,265.434130128,894.0,296.15,77777.0,31478259.0,0.693942910593,-1.83015225364,0.0975520833333,0.195104166667,101325.0,0.301780859375,0.087115803629,-0.404002914856,2286.00805718,31478067.2661,1.48368052316,3.13967006434,7.18971875 +31478382,0.0,0.1,0.5,0.2,0.0,61.4310110294,316.32022388,86.4615160494,221.9503125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,250.056396485,255.352,268.739625,265.485027502,894.0,296.15,77777.0,31478382.0,0.693942910593,-1.83015225364,0.0996875,0.199375,101325.0,0.30022734375,0.0927466390285,-0.404001266395,2286.01699921,31478190.2279,1.47804968776,3.14134721666,7.1986875 +31478505,0.0,0.1,0.5,0.2,0.0,65.082153799,343.319639303,91.8064403293,222.370052083,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.167387222,255.347083333,268.856822917,265.568813305,894.0,296.15,77777.0,31478505.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.297873046875,0.0982224590912,-0.40399961634,2286.02594124,31478313.1897,1.4725738677,3.14525148184,7.20692708333 +31478628,0.0,0.1,0.5,0.2,0.0,68.7185171569,370.518039801,97.1892510289,222.803541667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.282952335,255.343666667,268.981958333,265.658237125,894.0,296.15,77777.0,31478628.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.295381473214,0.103671705096,-0.403997966012,2286.03488327,31478436.1514,1.4671246217,3.14953753779,7.21504166667 +31478751,0.0,0.1,0.5,0.2,0.0,72.3548805147,397.716440298,102.572061728,223.23703125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.398517447,255.34025,269.10709375,265.747660944,894.0,296.15,77777.0,31478751.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.292889899553,0.109120951101,-0.403996315684,2286.04382531,31478559.1132,1.46167537569,3.15382359374,7.22315625 +31478874,0.0,0.1,0.5,0.2,0.0,75.9912438726,424.914840796,107.954872428,223.670520833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.51408256,255.336833333,269.232229167,265.837084764,894.0,296.15,77777.0,31478874.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.290398325893,0.114570197106,-0.403994665355,2286.05276734,31478682.075,1.45622612969,3.15810964969,7.23127083333 +31478997,0.0,0.1,0.5,0.2,0.0,79.6276072304,452.113241293,113.337683128,224.104010417,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.629647672,255.333416667,269.357364583,265.926508584,894.0,296.15,77777.0,31478997.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.287906752232,0.120019443111,-0.403993015027,2286.06170937,31478805.0368,1.45077688368,3.16239570564,7.23938541667 +31479120,0.0,0.1,0.5,0.2,0.0,83.2639705883,479.311641791,118.720493827,224.5375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.745212785,255.33,269.4825,266.015932404,894.0,296.15,77777.0,31479120.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.285415178571,0.125468689116,-0.403991364699,2286.0706514,31478927.9985,1.44532763768,3.16668176159,7.2475 +31479243,0.0,0.1,0.5,0.2,0.0,86.9003339461,506.510042288,124.103304527,224.970989583,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.860777898,255.326583333,269.607635417,266.105356223,894.0,296.15,77777.0,31479243.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.28292360491,0.130917935121,-0.40398971437,2286.07959343,31479050.9603,1.43987839167,3.17096781754,7.25561458333 +31479366,0.0,0.1,0.5,0.2,0.0,89.6425428922,528.272472636,129.340607408,225.425104167,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,250.988991164,255.323166667,269.746368056,266.201876054,894.0,296.15,77777.0,31479366.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.279953236607,0.136260481766,-0.40398806304,2286.08853546,31479173.9221,1.43453584503,3.17625380171,7.26327083333 +31479489,0.0,0.1,0.5,0.2,0.0,91.6125275735,545.340201492,134.452244445,225.89703125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,251.128127837,255.31975,269.89684375,266.304524258,894.0,296.15,77777.0,31479489.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.276569363839,0.141510878964,-0.403986410844,2286.0974775,31479296.8839,1.42928544783,3.18240336024,7.27053125 +31479612,0.0,0.1,0.5,0.2,0.0,93.5825122549,562.407930348,139.563881482,226.368958333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,251.267264509,255.316333333,270.047319445,266.407172462,894.0,296.15,77777.0,31479612.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.273185491071,0.146761276162,-0.403984758648,2286.10641953,31479419.8457,1.42403505063,3.18855291878,7.27779166667 +31479735,0.0,0.1,0.5,0.2,0.0,95.5524969363,579.475659204,144.675518519,226.840885417,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,251.406401181,255.312916667,270.197795139,266.509820666,894.0,296.15,77777.0,31479735.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.269801618303,0.15201167336,-0.403983106452,2286.11536156,31479542.8075,1.41878465344,3.19470247731,7.28505208333 +31479858,0.0,0.1,0.5,0.2,0.0,97.5224816177,596.54338806,149.787155556,227.3128125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,251.545537853,255.3095,270.348270834,266.61246887,894.0,296.15,77777.0,31479858.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.266417745535,0.157262070558,-0.403981454256,2286.1243036,31479665.7692,1.41353425624,3.20085203585,7.2923125 +31479981,0.0,0.1,0.5,0.2,0.0,99.492466299,613.611116915,154.898792593,227.784739583,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,251.684674526,255.306083333,270.498746528,266.715117074,894.0,296.15,77777.0,31479981.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.263033872767,0.162512467756,-0.40397980206,2286.13324563,31479788.731,1.40828385904,3.20700159438,7.29957291667 +31480104,0.0,0.1,0.5,0.2,0.0,101.46245098,630.678845771,160.01042963,228.256666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,251.823811198,255.302666667,270.649222223,266.817765278,894.0,296.15,77777.0,31480104.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.25965,0.167762864954,-0.403978149864,2286.14218766,31479911.6928,1.40303346184,3.21315115292,7.30683333333 +31480227,0.0,0.1,0.5,0.2,0.0,103.101046196,645.709835496,165.054370586,228.73421875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,251.964807108,255.29925,270.801697917,266.92103829,894.0,296.15,77777.0,31480227.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.256235993303,0.172965570476,-0.403976497258,2286.1511297,31480034.6546,1.39783075632,3.21946433607,7.31390625 +31480350,0.0,0.1,0.5,0.2,0.0,103.561367754,653.499086091,169.857614367,229.231770833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,252.112413642,255.295833333,270.961284722,267.026532846,894.0,296.15,77777.0,31480350.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.25271484375,0.177998705592,-0.403974843195,2286.16007173,31480157.6164,1.3927976212,3.22635929564,7.3203125 +31480473,0.0,0.1,0.5,0.2,0.0,104.021689312,661.288336686,174.660858149,229.729322917,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,252.260020175,255.292416667,271.120871528,267.132027402,894.0,296.15,77777.0,31480473.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.249193694196,0.183031840708,-0.403973189131,2286.16901376,31480280.5782,1.38776448609,3.23325425522,7.32671875 +31480596,0.0,0.1,0.5,0.2,0.0,104.48201087,669.077587281,179.46410193,230.226875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,252.407626708,255.289,271.280458334,267.237521958,894.0,296.15,77777.0,31480596.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.245672544643,0.188064975824,-0.403971535068,2286.17795579,31480403.5399,1.38273135097,3.24014921479,7.333125 +31480719,0.0,0.1,0.5,0.2,0.0,104.942332428,676.866837876,184.267345712,230.724427083,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,252.555233242,255.285583333,271.440045139,267.343016513,894.0,296.15,77777.0,31480719.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.242151395089,0.19309811094,-0.403969881005,2286.18689783,31480526.5017,1.37769821585,3.24704417436,7.33953125 +31480842,0.0,0.1,0.5,0.2,0.0,105.402653986,684.656088471,189.070589493,231.221979167,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,252.702839775,255.282166667,271.599631945,267.448511069,894.0,296.15,77777.0,31480842.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.238630245536,0.198131246056,-0.403968226942,2286.19583986,31480649.4635,1.37266508074,3.25393913393,7.3459375 +31480965,0.0,0.1,0.5,0.2,0.0,105.862975544,692.445339066,193.873833274,231.71953125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,252.850446308,255.27875,271.75921875,267.554005625,894.0,296.15,77777.0,31480965.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.235109095982,0.203164381172,-0.403966572878,2286.20478189,31480772.4253,1.36763194562,3.2608340935,7.35234375 +31481088,0.0,0.1,0.5,0.2,0.0,106.323297102,700.234589661,198.677077056,232.217083333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,252.998052842,255.275333333,271.918805556,267.65950018,894.0,296.15,77777.0,31481088.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.231587946429,0.208197516288,-0.403964918815,2286.21372393,31480895.387,1.3625988105,3.26772905308,7.35875 +31481211,0.0,0.1,0.5,0.2,0.0,106.515837863,707.143979775,203.467556682,232.726197917,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.139675932,255.271916667,272.07196875,267.759960261,894.0,296.15,77777.0,31481211.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.228624274554,0.213016949523,-0.403963263067,2286.22266596,31481018.3488,1.35777937727,3.27428767316,7.36438541667 +31481334,0.0,0.1,0.5,0.2,0.0,106.679429348,713.958249838,208.2566564,233.2365625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.280652164,255.2685,272.2244375,267.859876075,894.0,296.15,77777.0,31481334.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.225720870536,0.217813279852,-0.403961607136,2286.231608,31481141.3106,1.35298304694,3.28080993221,7.3699375 +31481457,0.0,0.1,0.5,0.2,0.0,106.843020833,720.772519901,213.045756118,233.746927083,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.421628396,255.265083333,272.37690625,267.959791889,894.0,296.15,77777.0,31481457.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.222817466518,0.222609610181,-0.403959951205,2286.24055003,31481264.2724,1.34818671661,3.28733219126,7.37548958333 +31481580,0.0,0.1,0.5,0.2,0.0,107.006612319,727.586789963,217.834855836,234.257291667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.562604627,255.261666667,272.529375,268.059707702,894.0,296.15,77777.0,31481580.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.2199140625,0.22740594051,-0.403958295274,2286.24949206,31481387.2342,1.34339038628,3.29385445032,7.38104166667 +31481703,0.0,0.1,0.5,0.2,0.0,107.170203804,734.401060026,222.623955554,234.76765625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.703580859,255.25825,272.68184375,268.159623516,894.0,296.15,77777.0,31481703.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.217010658482,0.232202270839,-0.403956639344,2286.2584341,31481510.196,1.33859405596,3.30037670937,7.38659375 +31481826,0.0,0.1,0.5,0.2,0.0,107.33379529,741.215330089,227.413055272,235.278020833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.844557091,255.254833333,272.8343125,268.259539329,894.0,296.15,77777.0,31481826.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.214107254464,0.236998601168,-0.403954983413,2286.26737613,31481633.1578,1.33379772563,3.30689896842,7.39214583333 +31481949,0.0,0.1,0.5,0.2,0.0,107.497386775,748.029600152,232.20215499,235.788385417,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,253.985533322,255.251416667,272.98678125,268.359455143,894.0,296.15,77777.0,31481949.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.211203850446,0.241794931497,-0.403953327482,2286.27631817,31481756.1195,1.3290013953,3.31342122748,7.39769791667 +31482072,0.0,0.1,0.5,0.2,0.0,107.498369565,754.089669046,236.963739537,236.3,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,254.121620796,255.248,273.134,268.455793935,894.0,296.15,77777.0,31482072.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.208658571429,0.246440586474,-0.403951670459,2286.2852602,31481879.0813,1.32435574032,3.31961623729,7.40254375 +31482195,0.0,0.1,0.5,0.2,0.0,107.384171195,759.615512113,241.705834172,236.8125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,254.254245399,255.244583333,273.2775,268.549599003,894.0,296.15,77777.0,31482195.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.206366964286,0.250979513076,-0.403950012661,2286.29420223,31482002.0431,1.31981681372,3.32557944557,7.40688932292 +31482318,0.0,0.1,0.5,0.2,0.0,107.269972826,765.141355181,246.447928807,237.325,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,254.386870003,255.241166667,273.421,268.643404071,894.0,296.15,77777.0,31482318.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.204075357143,0.255518439678,-0.403948354863,2286.30314427,31482125.0049,1.31527788712,3.33154265385,7.41123489583 +31482441,0.0,0.1,0.5,0.2,0.0,107.155774456,770.667198248,251.190023442,237.8375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,254.519494606,255.23775,273.5645,268.737209139,894.0,296.15,77777.0,31482441.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.20178375,0.260057366279,-0.403946697065,2286.3120863,31482247.9667,1.31073896052,3.33750586213,7.41558046875 +31482564,0.0,0.1,0.5,0.2,0.0,107.041576087,776.193041315,255.932118077,238.35,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,254.652119209,255.234333333,273.708,268.831014206,894.0,296.15,77777.0,31482564.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.199492142857,0.264596292881,-0.403945039267,2286.32102833,31482370.9285,1.30620003391,3.3434690704,7.41992604167 +31482687,0.0,0.1,0.5,0.2,0.0,106.927377717,781.718884382,260.674212712,238.8625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,254.784743812,255.230916667,273.8515,268.924819274,894.0,296.15,77777.0,31482687.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.197200535714,0.269135219483,-0.403943381469,2286.32997037,31482493.8903,1.30166110731,3.34943227868,7.42427161458 +31482810,0.0,0.1,0.5,0.2,0.0,106.813179348,787.24472745,265.416307347,239.375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,254.917368415,255.2275,273.995,269.018624342,894.0,296.15,77777.0,31482810.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.194908928571,0.273674146085,-0.403941723671,2286.3389124,31482616.8522,1.29712218071,3.35539548696,7.4286171875 +31482933,0.0,0.1,0.5,0.2,0.0,106.629533514,792.340799589,270.136974491,239.8875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,255.049991154,255.224083333,274.1385,269.111919067,894.0,296.15,77777.0,31482933.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.192652678571,0.278138239061,-0.403940065372,2286.34785443,31482739.8139,1.29265808773,3.36135869524,7.43267057292 +31483056,0.0,0.1,0.5,0.2,0.0,106.256485507,796.264769197,274.799203024,240.4,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,255.182608807,255.220666667,274.282,269.203821945,894.0,296.15,77777.0,31483056.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.190492857143,0.282398240329,-0.403938405707,2286.35679647,31482862.7757,1.28839808646,3.36732190352,7.43592708333 +31483179,0.0,0.1,0.5,0.2,0.0,105.8834375,800.188738806,279.461431556,240.9125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,255.31522646,255.21725,274.4255,269.295724824,894.0,296.15,77777.0,31483179.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.188333035714,0.286658241598,-0.403936746042,2286.3657385,31482985.7375,1.28413808519,3.37328511179,7.43918359375 +31483302,0.0,0.1,0.5,0.2,0.0,105.510389493,804.112708414,284.123660088,241.425,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,255.447844113,255.213833333,274.569,269.387627703,894.0,296.15,77777.0,31483302.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.186173214286,0.290918242867,-0.403935086377,2286.37468054,31483108.6993,1.27987808392,3.37924832007,7.44244010417 +31483425,0.0,0.1,0.5,0.2,0.0,105.137341485,808.036678023,288.785888621,241.9375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,255.580461767,255.210416667,274.7125,269.479530581,894.0,296.15,77777.0,31483425.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.184013392857,0.295178244135,-0.403933426712,2286.38362257,31483231.6611,1.27561808266,3.38521152835,7.44569661458 +31483548,0.0,0.1,0.5,0.2,0.0,104.764293478,811.960647631,293.448117153,242.45,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,255.71307942,255.207,274.856,269.57143346,894.0,296.15,77777.0,31483548.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.181853571429,0.299438245404,-0.403931767046,2286.3925646,31483354.6229,1.27135808139,3.39117473663,7.448953125 +31483671,0.0,0.1,0.5,0.2,0.0,104.391245471,815.88461724,298.110345686,242.9625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,255.845697073,255.203583333,274.9995,269.663336338,894.0,296.15,77777.0,31483671.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.17969375,0.303698246672,-0.403930107381,2286.40150664,31483477.5847,1.26709808012,3.3971379449,7.45220963542 +31483794,0.0,0.1,0.5,0.2,0.0,104.018197464,819.808586848,302.772574218,243.475,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,255.978314726,255.200166667,275.143,269.755239217,894.0,296.15,77777.0,31483794.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.177533928572,0.307958247941,-0.403928447716,2286.41044867,31483600.5465,1.26283807885,3.40310115318,7.45546614583 +31483917,0.0,0.1,0.5,0.2,0.0,103.553066123,822.969788635,307.084154004,243.9875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,256.110925767,255.19675,275.2865,269.84570429,894.0,296.15,77777.0,31483917.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.17554125,0.311931776039,-0.403926786275,2286.41939071,31483723.5083,1.25886455075,3.40906436146,7.45835703125 +31484040,0.0,0.1,0.5,0.2,0.0,103.08321256,826.091874123,311.377751802,244.5,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,256.243536468,255.193333333,275.43,269.936095629,894.0,296.15,77777.0,31484040.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.173557142858,0.315890613206,-0.403925124743,2286.42833274,31483846.4701,1.25490571359,3.41502756974,7.46122916667 +31484163,0.0,0.1,0.5,0.2,0.0,102.613358997,829.213959612,315.671349601,245.0125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,256.376147169,255.189916667,275.5735,270.026486968,894.0,296.15,77777.0,31484163.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.171573035715,0.319849450372,-0.403923463211,2286.43727478,31483969.4319,1.25094687642,3.42099077801,7.46410130208 +31484286,0.0,0.1,0.5,0.2,0.0,102.143505435,832.3360451,319.964947399,245.525,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,256.508757871,255.1865,275.717,270.116878307,894.0,296.15,77777.0,31484286.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.169588928572,0.323808287539,-0.403921801679,2286.44621681,31484092.3937,1.24698803926,3.42695398629,7.4669734375 +31484409,0.0,0.1,0.5,0.2,0.0,101.673651872,835.458130588,324.258545198,246.0375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,256.641368572,255.183083333,275.8605,270.207269646,894.0,296.15,77777.0,31484409.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.167604821429,0.327767124705,-0.403920140147,2286.45515885,31484215.3555,1.24302920209,3.43291719457,7.46984557292 +31484532,0.0,0.1,0.5,0.2,0.0,101.203798309,838.580216077,328.552142997,246.55,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,256.773979273,255.179666667,276.004,270.297660986,894.0,296.15,77777.0,31484532.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.165620714286,0.331725961872,-0.403918478615,2286.46410088,31484338.3173,1.23907036493,3.43888040285,7.47271770833 +31484655,0.0,0.1,0.5,0.2,0.0,100.733944746,841.702301565,332.845740795,247.0625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,256.906589975,255.17625,276.1475,270.388052325,894.0,296.15,77777.0,31484655.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.163636607143,0.335684799038,-0.403916817083,2286.47304291,31484461.2791,1.23511152776,3.44484361113,7.47558984375 +31484778,0.0,0.1,0.5,0.2,0.0,100.26453603,844.793423548,336.788585947,247.575,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,257.039196266,255.172833333,276.291,270.47779029,894.0,296.15,77777.0,31484778.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.161791785715,0.339438278974,-0.403915154366,2286.48198495,31484584.2409,1.23135804782,3.4508068194,7.47866510417 +31484901,0.0,0.1,0.5,0.2,0.0,99.795383957,847.86668197,340.529073804,248.0875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,257.171800014,255.169416667,276.4345,270.567151309,894.0,296.15,77777.0,31484901.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.160027321429,0.343073283585,-0.403913490967,2286.49092698,31484707.2027,1.22772304321,3.45677002768,7.48185755208 +31485024,0.0,0.1,0.5,0.2,0.0,99.3262318838,850.939940393,344.26956166,248.6,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,257.304403762,255.166,276.578,270.656512328,894.0,296.15,77777.0,31485024.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.158262857143,0.346708288196,-0.403911827568,2286.49986902,31484830.1645,1.2240880386,3.46273323596,7.48505 +31485147,0.0,0.1,0.5,0.2,0.0,98.8570798105,854.013198815,348.010049516,249.1125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,257.437007509,255.162583333,276.7215,270.745873347,894.0,296.15,77777.0,31485147.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.156498392857,0.350343292806,-0.403910164169,2286.50881105,31484953.1263,1.22045303399,3.46869644424,7.48824244792 +31485270,0.0,0.1,0.5,0.2,0.0,98.3879277373,857.086457237,351.750537373,249.625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,257.569611257,255.159166667,276.865,270.835234367,894.0,296.15,77777.0,31485270.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.154733928572,0.353978297417,-0.403908500769,2286.51775309,31485076.0881,1.21681802938,3.47465965251,7.49143489583 +31485393,0.0,0.1,0.5,0.2,0.0,97.9187756641,860.15971566,355.491025229,250.1375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,257.702215004,255.15575,277.0085,270.924595386,894.0,296.15,77777.0,31485393.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.152969464286,0.357613302028,-0.40390683737,2286.52669512,31485199.0499,1.21318302477,3.48062286079,7.49462734375 +31485516,0.0,0.1,0.5,0.2,0.0,97.4496235909,863.232974082,359.231513085,250.65,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,257.834818752,255.152333333,277.152,271.013956405,894.0,296.15,77777.0,31485516.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.151205,0.361248306639,-0.403905173971,2286.53563715,31485322.0117,1.20954802015,3.48658606907,7.49781979167 +31485639,0.0,0.1,0.5,0.2,0.0,96.9560049315,866.169043836,362.835804435,251.1746875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,257.970445584,255.150609375,277.298272059,271.104717704,894.0,296.15,77777.0,31485639.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.149477291667,0.364773428057,-0.40390350998,2286.54457919,31485444.9735,1.20602289873,3.49254927735,7.50544713542 +31485762,0.0,0.1,0.5,0.2,0.0,96.4096890096,868.809630303,366.146749464,251.725625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,258.112583673,255.15253125,277.450514706,271.198494991,894.0,296.15,77777.0,31485762.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.14782875,0.368061877985,-0.403901844714,2286.55352123,31485567.9353,1.20273444881,3.49851248562,7.5226265625 +31485885,0.0,0.1,0.5,0.2,0.0,95.8633730877,871.45021677,369.457694493,252.2765625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,258.254721763,255.154453125,277.602757353,271.292272278,894.0,296.15,77777.0,31485885.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.146180208333,0.371350327913,-0.403900179448,2286.56246326,31485690.8971,1.19944599888,3.5044756939,7.53980598958 +31486008,0.0,0.1,0.5,0.2,0.0,95.3170571659,874.090803237,372.768639522,252.8275,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,258.396859852,255.156375,277.755,271.386049565,894.0,296.15,77777.0,31486008.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.144531666667,0.37463877784,-0.403898514182,2286.5714053,31485813.8589,1.19615754895,3.51043890218,7.55698541667 +31486131,0.0,0.1,0.5,0.2,0.0,94.770741244,876.731389704,376.079584551,253.3784375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,258.538997942,255.158296875,277.907242647,271.479826852,894.0,296.15,77777.0,31486131.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.142883125,0.377927227768,-0.403896848916,2286.58034733,31485936.8208,1.19286909902,3.51640211046,7.57416484375 +31486254,0.0,0.1,0.5,0.2,0.0,94.2244253221,879.371976172,379.39052958,253.929375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,258.681136031,255.16021875,278.059485294,271.573604139,894.0,296.15,77777.0,31486254.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.141234583333,0.381215677696,-0.40389518365,2286.58928937,31486059.7826,1.1895806491,3.52236531873,7.59134427083 +31486377,0.0,0.1,0.5,0.2,0.0,93.6781094002,882.012562639,382.701474609,254.4803125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,258.823274121,255.162140625,278.211727941,271.667381426,894.0,296.15,77777.0,31486377.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.139586041667,0.384504127623,-0.403893518384,2286.5982314,31486182.7444,1.18629219917,3.52832852701,7.60852369792 +31486500,0.0,0.1,0.5,0.2,0.0,93.1317934783,884.653149106,386.012419638,255.03125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,258.96541221,255.1640625,278.363970588,271.761158713,894.0,296.15,77777.0,31486500.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.1379375,0.387792577551,-0.403891853118,2286.60717344,31486305.7062,1.18300374924,3.53429173529,7.625703125 +31486623,0.0,0.1,0.5,0.2,0.0,92.4304483696,886.477218728,389.017388954,255.6078125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,259.113315934,255.167265625,278.522041666,271.856830477,894.0,296.15,77777.0,31486623.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.136374375,0.390712162203,-0.403890185985,2286.61611548,31486428.668,1.18008416459,3.54025494357,7.65302578125 +31486746,0.0,0.1,0.5,0.2,0.0,91.7291032609,888.30128835,392.02235827,256.184375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,259.261219659,255.17046875,278.680112745,271.952502242,894.0,296.15,77777.0,31486746.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.13481125,0.393631746854,-0.403888518852,2286.62505751,31486551.6298,1.17716457994,3.54621815185,7.6803484375 +31486869,0.0,0.1,0.5,0.2,0.0,91.0277581522,890.125357973,395.027327586,256.7609375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,259.409123383,255.173671875,278.838183823,272.048174006,894.0,296.15,77777.0,31486869.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.133248125,0.396551331506,-0.403886851719,2286.63399955,31486674.5916,1.17424499529,3.55218136012,7.70767109375 +31486992,0.0,0.1,0.5,0.2,0.0,90.3264130435,891.949427595,398.032296903,257.3375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,259.557027107,255.176875,278.996254902,272.14384577,894.0,296.15,77777.0,31486992.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.131685,0.399470916157,-0.403885184586,2286.64294158,31486797.5535,1.17132541064,3.5581445684,7.73499375 +31487115,0.0,0.1,0.5,0.2,0.0,89.6250679348,893.773497217,401.037266219,257.9140625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,259.704930832,255.180078125,279.15432598,272.239517535,894.0,296.15,77777.0,31487115.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.130121875,0.402390500809,-0.403883517453,2286.65188362,31486920.5153,1.16840582598,3.56410777668,7.76231640625 +31487238,0.0,0.1,0.5,0.2,0.0,88.9237228261,895.597566839,404.042235535,258.490625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,259.852834556,255.18328125,279.312397059,272.335189299,894.0,296.15,77777.0,31487238.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.12855875,0.405310085461,-0.40388185032,2286.66082565,31487043.4771,1.16548624133,3.57007098496,7.7896390625 +31487361,0.0,0.1,0.5,0.2,0.0,88.2223777174,897.421636461,407.047204851,259.0671875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.00073828,255.186484375,279.470468137,272.430861063,894.0,296.15,77777.0,31487361.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.126995625,0.408229670112,-0.403880183187,2286.66976769,31487166.4389,1.16256665668,3.57603419323,7.81696171875 +31487484,0.0,0.1,0.5,0.2,0.0,87.4423333333,898.834102823,409.762056165,259.60875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.138914056,255.1809375,279.620578431,272.520683883,894.0,296.15,77777.0,31487484.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.125595833333,0.410882764667,-0.403878514779,2286.67870973,31487289.4007,1.15991356213,3.58199740151,7.83375520833 +31487607,0.0,0.1,0.5,0.2,0.0,86.62575,900.05546767,412.342209835,260.1340625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.272573285,255.171328125,279.766992647,272.607791122,894.0,296.15,77777.0,31487607.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.124271875,0.413412131676,-0.40387684578,2286.68765176,31487412.3625,1.15738419512,3.58796060979,7.84566015625 +31487730,0.0,0.1,0.5,0.2,0.0,85.8091666667,901.276832517,414.922363506,260.659375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.406232513,255.16171875,279.913406863,272.694898361,894.0,296.15,77777.0,31487730.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.122947916667,0.415941498685,-0.40387517678,2286.69659379,31487535.3244,1.15485482811,3.59392381807,7.85756510417 +31487853,0.0,0.1,0.5,0.2,0.0,84.9925833333,902.498197365,417.502517176,261.1846875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.539891742,255.152109375,280.059821078,272.782005599,894.0,296.15,77777.0,31487853.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.121623958333,0.418470865694,-0.40387350778,2286.70553583,31487658.2862,1.1523254611,3.59988702634,7.86947005208 +31487976,0.0,0.1,0.5,0.2,0.0,84.176,903.719562212,420.082670846,261.71,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.67355097,255.1425,280.206235294,272.869112838,894.0,296.15,77777.0,31487976.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.1203,0.421000232703,-0.40387183878,2286.71447786,31487781.248,1.14979609409,3.60585023462,7.881375 +31488099,0.0,0.1,0.5,0.2,0.0,83.3594166667,904.940927059,422.662824516,262.2353125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.807210199,255.132890625,280.35264951,272.956220077,894.0,296.15,77777.0,31488099.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.118976041667,0.423529599713,-0.403870169781,2286.7234199,31487904.2098,1.14726672708,3.6118134429,7.89327994792 +31488222,0.0,0.1,0.5,0.2,0.0,82.5428333333,906.162291906,425.242978187,262.760625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,260.940869427,255.12328125,280.499063726,273.043327315,894.0,296.15,77777.0,31488222.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.117652083333,0.426058966722,-0.403868500781,2286.73236193,31488027.1716,1.14473736007,3.61777665118,7.90518489583 +31488345,0.0,0.1,0.5,0.2,0.0,81.7215277778,907.322881264,427.614793952,263.2390625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,261.061974451,255.103828125,280.634816177,273.123897392,894.0,296.15,77777.0,31488345.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.116471875,0.428438333064,-0.403866831098,2286.74130397,31488150.1334,1.14235799373,3.62373985946,7.90209765625 +31488468,0.0,0.1,0.5,0.2,0.0,80.892037037,908.37812644,429.625490682,263.63625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,261.161318854,255.0673125,280.752088236,273.193136386,894.0,296.15,77777.0,31488468.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.115540833333,0.430557698249,-0.403865160232,2286.750246,31488273.0952,1.14023862855,3.62970306773,7.87302395833 +31488591,0.0,0.1,0.5,0.2,0.0,80.0625462963,909.433371616,431.636187413,264.0334375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,261.260663256,255.030796875,280.869360294,273.262375381,894.0,296.15,77777.0,31488591.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.114609791667,0.432677063435,-0.403863489366,2286.75918804,31488396.0571,1.13811926336,3.63566627601,7.84395026042 +31488714,0.0,0.1,0.5,0.2,0.0,79.2330555556,910.488616791,433.646884143,264.430625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,261.360007659,254.99428125,280.986632353,273.331614375,894.0,296.15,77777.0,31488714.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.11367875,0.43479642862,-0.403861818499,2286.76813008,31488519.0189,1.13599989818,3.64162948429,7.8148765625 +31488837,0.0,0.1,0.5,0.2,0.0,78.4035648148,911.543861967,435.657580873,264.8278125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,261.459352062,254.957765625,281.103904412,273.40085337,894.0,296.15,77777.0,31488837.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.112747708333,0.436915793805,-0.403860147633,2286.77707212,31488641.9807,1.13388053299,3.64759269257,7.78580286458 +31488960,0.0,0.1,0.5,0.2,0.0,77.5740740741,912.599107143,437.668277604,265.225,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,261.558696464,254.92125,281.221176471,273.470092365,894.0,296.15,77777.0,31488960.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.111816666667,0.439035158991,-0.403858476766,2286.78601415,31488764.9425,1.1317611678,3.65355590084,7.75672916667 +31489083,0.0,0.1,0.5,0.2,0.0,76.7445833334,913.654352319,439.678974334,265.6221875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,261.658040867,254.884734375,281.338448529,273.539331359,894.0,296.15,77777.0,31489083.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.110885625,0.441154524176,-0.4038568059,2286.79495619,31488887.9043,1.12964180262,3.65951910912,7.72765546875 +31489206,0.0,0.1,0.5,0.2,0.0,75.9152407408,914.699070421,441.666032437,266.010625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,261.755177778,254.847333333,281.453606005,273.607235673,894.0,296.15,77777.0,31489206.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.109966666667,0.443253032078,-0.403855134942,2286.80389823,31489010.8661,1.12754329472,3.66595850331,7.69716666667 +31489329,0.0,0.1,0.5,0.2,0.0,75.0887870371,915.538510585,443.1921373,266.2284375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,261.809268609,254.792666667,281.527529105,273.649113706,894.0,296.15,77777.0,31489329.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.109283333333,0.444944822941,-0.403853462209,2286.81284026,31489133.828,1.12585150385,3.68168352277,7.63908333333 +31489452,0.0,0.1,0.5,0.2,0.0,74.2623333334,916.377950749,444.718242163,266.44625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,261.863359441,254.738,281.601452206,273.690991739,894.0,296.15,77777.0,31489452.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.1086,0.446636613804,-0.403851789476,2286.8217823,31489256.7898,1.12415971299,3.69740854223,7.581 +31489575,0.0,0.1,0.5,0.2,0.0,73.4358796296,917.217390913,446.244347027,266.6640625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,261.917450272,254.683333333,281.675375306,273.732869772,894.0,296.15,77777.0,31489575.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.107916666667,0.448328404667,-0.403850116744,2286.83072433,31489379.7516,1.12246792213,3.71313356169,7.52291666667 +31489698,0.0,0.1,0.5,0.2,0.0,72.6094259259,918.056831078,447.77045189,266.881875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,261.971541103,254.628666667,281.749298407,273.774747806,894.0,296.15,77777.0,31489698.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.107233333333,0.45002019553,-0.403848444011,2286.83966637,31489502.7135,1.12077613127,3.72885858115,7.46483333333 +31489821,0.0,0.1,0.5,0.2,0.0,71.7829722222,918.896271242,449.296556753,267.0996875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.025631934,254.574,281.823221507,273.816625839,894.0,296.15,77777.0,31489821.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.10655,0.451711986393,-0.403846771278,2286.84860841,31489625.6753,1.1190843404,3.74458360061,7.40675 +31489944,0.0,0.1,0.5,0.2,0.0,70.9565185185,919.735711406,450.822661616,267.3175,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.079722766,254.519333333,281.897144608,273.858503872,894.0,296.15,77777.0,31489944.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.105866666667,0.453403777256,-0.403845098545,2286.85755044,31489748.6371,1.11739254954,3.76030862007,7.34866666667 +31490067,0.0,0.1,0.5,0.2,0.0,70.1300648148,920.57515157,452.34876648,267.5353125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.133813597,254.464666667,281.971067708,273.900381905,894.0,296.15,77777.0,31490067.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.105183333333,0.455095568119,-0.403843425812,2286.86649248,31489871.5989,1.11570075868,3.77603363953,7.29058333333 +31490190,0.0,0.1,0.5,0.2,0.0,69.3175,921.220330502,453.582388323,267.659375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.165541323,254.41,282.021001838,273.926161618,894.0,296.15,77777.0,31490190.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.1045,0.456463725904,-0.403841751713,2286.87543451,31489994.5608,1.1143326009,3.80190194996,7.2325 +31490313,0.0,0.1,0.5,0.2,0.0,68.5100277778,921.794280314,454.708766393,267.7490625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.189069244,254.355333333,282.062140012,273.946038614,894.0,296.15,77777.0,31490313.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.103816666667,0.457713218226,-0.403840077114,2286.88437655,31490117.5226,1.11308310857,3.83148946709,7.17441666667 +31490436,0.0,0.1,0.5,0.2,0.0,67.7025555555,922.368230127,455.835144462,267.83875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.212597164,254.300666667,282.103278186,273.96591561,894.0,296.15,77777.0,31490436.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.103133333333,0.458962710549,-0.403838402514,2286.89331858,31490240.4844,1.11183361625,3.86107698421,7.11633333333 +31490559,0.0,0.1,0.5,0.2,0.0,66.8950833333,922.94217994,456.961522532,267.9284375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.236125085,254.246,282.14441636,273.985792605,894.0,296.15,77777.0,31490559.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.10245,0.460212202871,-0.403836727915,2286.90226062,31490363.4463,1.11058412393,3.89066450133,7.05825 +31490682,0.0,0.1,0.5,0.2,0.0,66.0876111111,923.516129752,458.087900601,268.018125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.259653006,254.191333333,282.185554534,274.005669601,894.0,296.15,77777.0,31490682.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.101766666667,0.461461695193,-0.403835053315,2286.91120266,31490486.4081,1.10933463161,3.92025201846,7.00016666667 +31490805,0.0,0.1,0.5,0.2,0.0,65.2801388889,924.090079565,459.21427867,268.1078125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.283180927,254.136666667,282.226692709,274.025546597,894.0,296.15,77777.0,31490805.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.101083333333,0.462711187516,-0.403833378716,2286.92014469,31490609.3699,1.10808513928,3.94983953558,6.94208333333 +31490928,0.0,0.1,0.5,0.2,0.0,64.4726666667,924.664029378,460.34065674,268.1975,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.306708848,254.082,282.267830883,274.045423592,894.0,296.15,77777.0,31490928.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.1004,0.463960679838,-0.403831704116,2286.92908673,31490732.3317,1.10683564696,3.9794270527,6.884 +31491051,0.0,0.1,0.5,0.2,0.0,63.6719088542,925.15052498,461.30686882,268.2659375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.325155852,254.027333333,282.303531557,274.061653225,894.0,296.15,77777.0,31491051.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0997166666667,0.465022097088,-0.403830028743,2286.93802876,31490855.2936,1.10577422971,4.0112414913,6.82591666667 +31491174,0.0,0.1,0.5,0.2,0.0,62.8806302083,925.513555816,462.04696421,268.304375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.336429797,253.972666667,282.33155576,274.072733637,894.0,296.15,77777.0,31491174.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0990333333333,0.465817996587,-0.403828352277,2286.9469708,31490978.2554,1.10497833021,4.04619981904,6.76783333333 +31491297,0.0,0.1,0.5,0.2,0.0,62.0893515625,925.876586651,462.787059601,268.3428125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.347703743,253.918,282.359579964,274.08381405,894.0,296.15,77777.0,31491297.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.09835,0.466613896086,-0.403826675811,2286.95591284,31491101.2172,1.10418243071,4.08115814677,6.70975 +31491420,0.0,0.1,0.5,0.2,0.0,61.2980729167,926.239617486,463.527154991,268.38125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.358977689,253.863333333,282.387604167,274.094894463,894.0,296.15,77777.0,31491420.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0976666666667,0.467409795586,-0.403824999346,2286.96485488,31491224.1791,1.10338653121,4.11611647451,6.65166666667 +31491543,0.0,0.1,0.5,0.2,0.0,60.5067942708,926.602648322,464.267250381,268.4196875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.370251634,253.808666667,282.41562837,274.105974876,894.0,296.15,77777.0,31491543.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0969833333333,0.468205695085,-0.40382332288,2286.97379691,31491347.1409,1.10259063171,4.15107480225,6.59358333333 +31491666,0.0,0.1,0.5,0.2,0.0,59.715515625,926.965679157,465.007345771,268.458125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.38152558,253.754,282.443652574,274.117055289,894.0,296.15,77777.0,31491666.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0963,0.469001594585,-0.403821646414,2286.98273895,31491470.1027,1.10179473221,4.18603312999,6.5355 +31491789,0.0,0.1,0.5,0.2,0.0,58.9242369792,927.328709992,465.747441161,268.4965625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.392799526,253.699333333,282.471676777,274.128135702,894.0,296.15,77777.0,31491789.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0956166666667,0.469797494084,-0.403819969948,2286.99168099,31491593.0645,1.10099883271,4.22099145772,6.47741666667 +31491912,0.0,0.1,0.5,0.2,0.0,58.1332708333,927.675035129,466.442521322,268.5375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.404661275,253.644666667,282.500340687,274.139608157,894.0,296.15,77777.0,31491912.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0949333333333,0.470548419864,-0.4038182933,2287.00062302,31491716.0264,1.10024790693,4.25564530971,6.41933333333 +31492035,0.0,0.1,0.5,0.2,0.0,57.3451953125,927.866832553,466.721210608,268.6015625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.421960208,253.59,282.534921875,274.154707004,894.0,296.15,77777.0,31492035.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.09425,0.470883338737,-0.403816614968,2287.00956506,31491838.9882,1.09991298805,4.28748276101,6.36125 +31492158,0.0,0.1,0.5,0.2,0.0,56.5571197917,928.058629977,466.999899895,268.665625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.43925914,253.535333333,282.569503064,274.16980585,894.0,296.15,77777.0,31492158.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0935666666667,0.471218257609,-0.403814936636,2287.0185071,31491961.95,1.09957806918,4.31932021231,6.30316666667 +31492281,0.0,0.1,0.5,0.2,0.0,55.7690442708,928.250427401,467.278589181,268.7296875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.456558073,253.480666667,282.604084253,274.184904696,894.0,296.15,77777.0,31492281.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0928833333333,0.471553176482,-0.403813258303,2287.02744914,31492084.9119,1.09924315031,4.35115766361,6.24508333333 +31492404,0.0,0.1,0.5,0.2,0.0,54.98096875,928.442224825,467.557278468,268.79375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.473857006,253.426,282.638665441,274.200003543,894.0,296.15,77777.0,31492404.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0922,0.471888095355,-0.403811579971,2287.03639117,31492207.8737,1.09890823144,4.38299511491,6.187 +31492527,0.0,0.1,0.5,0.2,0.0,54.1928932292,928.634022249,467.835967754,268.8578125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.491155939,253.371333333,282.67324663,274.215102389,894.0,296.15,77777.0,31492527.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0915166666667,0.472223014228,-0.403809901639,2287.04533321,31492330.8355,1.09857331256,4.41483256621,6.12891666667 +31492650,0.0,0.1,0.5,0.2,0.0,53.4048177083,928.825819672,468.114657041,268.921875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.508454872,253.316666667,282.707827819,274.230201236,894.0,296.15,77777.0,31492650.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0908333333333,0.4725579331,-0.403808223307,2287.05427525,31492453.7973,1.09823839369,4.44667001751,6.07083333333 +31492773,0.0,0.1,0.5,0.2,0.0,52.6167421875,929.017617096,468.393346327,268.9859375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,262.525753804,253.262,282.742409007,274.245300082,894.0,296.15,77777.0,31492773.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.09015,0.472892851973,-0.403806544974,2287.06321728,31492576.7592,1.09790347482,4.47850746881,6.01275 +31492896,0.0,0.1,0.5,0.2,0.0,51.8316666667,929.019562842,468.274461106,269.08,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.550123871,253.207333333,282.784666667,274.265096722,894.0,296.15,77777.0,31492896.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0894666666667,0.472865518538,-0.403804865185,2287.07215932,31492699.721,1.09793080825,4.50691221433,5.95466666667 +31493019,0.0,0.1,0.5,0.2,0.0,51.0474348958,928.968112803,468.043758054,269.1825,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.576482695,253.152666667,282.829083333,274.286214616,894.0,296.15,77777.0,31493019.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0887833333333,0.47273630164,-0.403803184987,2287.08110136,31492822.6829,1.09806002515,4.53435151135,5.89658333333 +31493142,0.0,0.1,0.5,0.2,0.0,50.263203125,928.916662764,467.813055002,269.285,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.602841519,253.098,282.8735,274.30733251,894.0,296.15,77777.0,31493142.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0881,0.472607084743,-0.403801504788,2287.0900434,31492945.6447,1.09818924205,4.56179080838,5.8385 +31493265,0.0,0.1,0.5,0.2,0.0,49.4789713542,928.865212724,467.582351951,269.3875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.629200343,253.043333333,282.917916667,274.328450404,894.0,296.15,77777.0,31493265.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0874166666667,0.472477867846,-0.40379982459,2287.09898543,31493068.6065,1.09831845895,4.5892301054,5.78041666667 +31493388,0.0,0.1,0.5,0.2,0.0,48.6947395833,928.813762685,467.351648899,269.49,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.655559166,252.988666667,282.962333333,274.349568299,894.0,296.15,77777.0,31493388.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0867333333333,0.472348650949,-0.403798144391,2287.10792747,31493191.5684,1.09844767585,4.61666940242,5.72233333333 +31493511,0.0,0.1,0.5,0.2,0.0,47.9105078125,928.762312646,467.120945847,269.5925,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.68191799,252.934,283.00675,274.370686193,894.0,296.15,77777.0,31493511.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.08605,0.472219434051,-0.403796464193,2287.11686951,31493314.5302,1.09857689274,4.64410869945,5.66425 +31493634,0.0,0.1,0.5,0.2,0.0,47.1262760417,928.710862607,466.890242795,269.695,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.708276814,252.879333333,283.051166667,274.391804087,894.0,296.15,77777.0,31493634.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0853666666667,0.472090217154,-0.403794783994,2287.12581154,31493437.4921,1.09870610964,4.67154799647,5.60616666667 +31493757,0.0,0.1,0.5,0.2,0.0,46.3441223958,928.513315769,466.401242356,269.7975,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.734600256,252.824666667,283.095583333,274.41275726,894.0,296.15,77777.0,31493757.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0846833333333,0.471746478475,-0.403793102931,2287.13475358,31493560.4539,1.09904984832,4.69898265934,5.54808333333 +31493880,0.0,0.1,0.5,0.2,0.0,45.564375,928.146604215,465.613160731,269.9,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.760882729,252.77,283.14,274.433519702,894.0,296.15,77777.0,31493880.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.084,0.471154346155,-0.403791420866,2287.14369562,31493683.4158,1.09964198064,4.72641195634,5.49 +31494003,0.0,0.1,0.5,0.2,0.0,44.7846276042,927.779892662,464.825079106,270.0025,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.787165202,252.715333333,283.184416667,274.454282144,894.0,296.15,77777.0,31494003.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0833166666667,0.470562213835,-0.403789738801,2287.15263766,31493806.3776,1.10023411296,4.75384125334,5.43191666667 +31494126,0.0,0.1,0.5,0.2,0.0,44.0048802083,927.413181108,464.036997481,270.105,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.813447676,252.660666667,283.228833333,274.475044587,894.0,296.15,77777.0,31494126.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0826333333333,0.469970081514,-0.403788056737,2287.1615797,31493929.3394,1.10082624528,4.78127055034,5.37383333333 +31494249,0.0,0.1,0.5,0.2,0.0,43.2251328125,927.046469555,463.248915856,270.2075,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.839730149,252.606,283.27325,274.495807029,894.0,296.15,77777.0,31494249.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.08195,0.469377949194,-0.403786374672,2287.17052174,31494052.3013,1.1014183776,4.80869984735,5.31575 +31494372,0.0,0.1,0.5,0.2,0.0,42.4453854167,926.679758001,462.460834232,270.31,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.866012622,252.551333333,283.317666667,274.516569471,894.0,296.15,77777.0,31494372.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0812666666667,0.468785816873,-0.403784692607,2287.17946377,31494175.2631,1.10201050992,4.83612914435,5.25766666667 +31494495,0.0,0.1,0.5,0.2,0.0,41.6656380208,926.313046448,461.672752607,270.4125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.892295095,252.496666667,283.362083333,274.537331914,894.0,296.15,77777.0,31494495.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0805833333333,0.468193684553,-0.403783010543,2287.18840581,31494298.225,1.10260264224,4.86355844135,5.19958333333 +31494618,0.0,0.1,0.5,0.2,0.0,40.8890685096,925.879129472,460.809720652,270.515,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.918566342,252.442,283.4065,274.558041637,894.0,296.15,77777.0,31494618.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0799,0.467534619298,-0.403781328205,2287.19734785,31494421.1868,1.1032617075,4.89098722046,5.1415 +31494741,0.0,0.1,0.5,0.2,0.0,40.1310366587,925.053180866,459.509478439,270.6175,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.944772102,252.387333333,283.450916667,274.578443834,894.0,296.15,77777.0,31494741.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0792166666667,0.466485111921,-0.403779644274,2287.20628989,31494544.1487,1.10431121487,4.91841297853,5.08341666667 +31494864,0.0,0.1,0.5,0.2,0.0,39.3730048077,924.22723226,458.209236227,270.72,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.970977862,252.332666667,283.495333333,274.59884603,894.0,296.15,77777.0,31494864.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0785333333333,0.465435604544,-0.403777960343,2287.21523193,31494667.1105,1.10536072225,4.94583873659,5.02533333333 +31494987,0.0,0.1,0.5,0.2,0.0,38.6149729567,923.401283654,456.908994014,270.8225,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,262.997183622,252.278,283.53975,274.619248226,894.0,296.15,77777.0,31494987.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.07785,0.464386097168,-0.403776276413,2287.22417396,31494790.0724,1.10641022963,4.97326449466,4.96725 +31495110,0.0,0.1,0.5,0.2,0.0,37.8569411058,922.575335049,455.608751802,270.925,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,263.023389382,252.223333333,283.584166667,274.639650422,894.0,296.15,77777.0,31495110.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0771666666667,0.463336589791,-0.403774592482,2287.233116,31494913.0342,1.107459737,5.00069025272,4.90916666667 +31495233,0.0,0.1,0.5,0.2,0.0,37.0989092548,921.749386443,454.308509589,271.0275,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,263.049595142,252.168666667,283.628583333,274.660052619,894.0,296.15,77777.0,31495233.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0764833333333,0.462287082415,-0.403772908551,2287.24205804,31495035.9961,1.10850924438,5.02811601079,4.85108333333 +31495356,0.0,0.1,0.5,0.2,0.0,36.3408774039,920.923437837,453.008267376,271.13,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,263.075800902,252.114,283.673,274.680454815,894.0,296.15,77777.0,31495356.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0758,0.461237575038,-0.40377122462,2287.25100007,31495158.958,1.10955875176,5.05554176886,4.793 +31495479,0.0,0.1,0.5,0.2,0.0,35.5828455529,920.097489231,451.708025164,271.2325,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,263.102006662,252.059333333,283.717416667,274.700857011,894.0,296.15,77777.0,31495479.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0751166666667,0.460188067661,-0.403769540689,2287.25994211,31495281.9198,1.11060825913,5.08296752692,4.73491666667 +31495602,0.0,0.1,0.5,0.2,0.0,34.8519891827,918.901312074,450.03907586,271.335,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,263.128148503,252.004666667,283.761833333,274.720956388,894.0,296.15,77777.0,31495602.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0744333333333,0.458767244959,-0.403767855211,2287.26888415,31495404.8817,1.11202908184,5.11039570823,4.67683333333 +31495725,0.0,0.1,0.5,0.2,0.0,34.1267277645,917.628911392,448.294216273,271.4375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,263.154277183,251.95,283.80625,274.74099342,894.0,296.15,77777.0,31495725.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.07375,0.457269974984,-0.403766169414,2287.27782619,31495527.8435,1.11352635181,5.13782438845,4.61875 +31495848,0.0,0.1,0.5,0.2,0.0,33.4014663462,916.35651071,446.549356687,271.54,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,263.180405864,251.895333333,283.850666667,274.761030451,894.0,296.15,77777.0,31495848.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0730666666667,0.455772705009,-0.403764483618,2287.28676823,31495650.8053,1.11502362178,5.16525306867,4.56066666667 +31495971,0.0,0.1,0.5,0.2,0.0,32.6762049279,915.084110028,444.8044971,271.6425,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,263.206534545,251.840666667,283.895083333,274.781067483,894.0,296.15,77777.0,31495971.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0723833333333,0.454275435034,-0.403762797821,2287.29571026,31495773.7672,1.11652089176,5.19268174888,4.50258333333 +31496094,0.0,0.1,0.5,0.2,0.0,31.9509435096,913.811709346,443.059637513,271.745,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,263.232663226,251.786,283.9395,274.801104515,894.0,296.15,77777.0,31496094.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0717,0.452778165059,-0.403761112024,2287.3046523,31495896.729,1.11801816173,5.2201104291,4.4445 +31496217,0.0,0.1,0.5,0.2,0.0,31.2256820914,912.539308664,441.314777926,271.8475,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,263.258791907,251.731333333,283.983916667,274.821141547,894.0,296.15,77777.0,31496217.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0710166666667,0.451280895084,-0.403759426228,2287.31359434,31496019.6909,1.11951543171,5.24753910932,4.38641666667 +31496340,0.0,0.1,0.5,0.2,0.0,30.5004206731,911.266907982,439.569918339,271.95,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,263.284920588,251.676666667,284.028333333,274.841178578,894.0,296.15,77777.0,31496340.0,0.693942910593,-1.83015225364,0.1,0.2,101325.0,0.0703333333333,0.44978362511,-0.403757740431,2287.32253638,31496142.6527,1.12101270168,5.27496778953,4.32833333333 +31496463,0.0,0.1,0.5,0.2,0.0,29.7875270433,909.849389434,437.589901896,272.12578125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,263.328893384,251.60340625,284.085546875,274.868914779,894.0,296.15,77777.0,31496463.0,0.693942910593,-1.83015225364,0.10109375,0.20328125,101325.0,0.06965,0.44806381,-0.403756053678,2287.33147842,31496265.6146,1.12273251679,5.30259299681,4.264671875 +31496586,0.0,0.1,0.5,0.2,0.0,29.0864122596,908.293663396,435.385926542,272.371354167,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,263.389860576,251.5124375,284.154947917,274.903983523,894.0,296.15,77777.0,31496586.0,0.693942910593,-1.83015225364,0.103229166667,0.2096875,101325.0,0.0689666666667,0.446132047143,-0.403754366016,2287.34042046,31496388.5764,1.12466427965,5.33040537273,4.19569791667 +31496709,0.0,0.1,0.5,0.2,0.0,28.385297476,906.737937358,433.181951188,272.616927083,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,263.450827768,251.42146875,284.224348958,274.939052267,894.0,296.15,77777.0,31496709.0,0.693942910593,-1.83015225364,0.105364583333,0.21609375,101325.0,0.0682833333333,0.444200284286,-0.403752678353,2287.3493625,31496511.5383,1.12659604251,5.35821774864,4.12672395833 +31496832,0.0,0.1,0.5,0.2,0.0,27.6841826923,905.18221132,430.977975834,272.8625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,263.511794959,251.3305,284.29375,274.974121011,894.0,296.15,77777.0,31496832.0,0.693942910593,-1.83015225364,0.1075,0.2225,101325.0,0.0676,0.442268521429,-0.40375099069,2287.35830453,31496634.5001,1.12852780537,5.38603012456,4.05775 +31496955,0.0,0.1,0.5,0.2,0.0,26.9830679087,903.626485282,428.77400048,273.108072917,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,263.572762151,251.23953125,284.363151042,275.009189754,894.0,296.15,77777.0,31496955.0,0.693942910593,-1.83015225364,0.109635416667,0.22890625,101325.0,0.0669166666667,0.440336758573,-0.403749303027,2287.36724657,31496757.462,1.13045956822,5.41384250047,3.98877604167 +31497078,0.0,0.1,0.5,0.2,0.0,26.281953125,902.070759244,426.570025126,273.353645833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,263.633729343,251.1485625,284.432552083,275.044258498,894.0,296.15,77777.0,31497078.0,0.693942910593,-1.83015225364,0.111770833333,0.2353125,101325.0,0.0662333333333,0.438404995716,-0.403747615364,2287.37618861,31496880.4238,1.13239133108,5.44165487639,3.91980208333 +31497201,0.0,0.1,0.5,0.2,0.0,25.5808383413,900.515033206,424.366049772,273.59921875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,263.694696535,251.05759375,284.501953125,275.079327242,894.0,296.15,77777.0,31497201.0,0.693942910593,-1.83015225364,0.11390625,0.24171875,101325.0,0.06555,0.436473232859,-0.403745927702,2287.38513065,31497003.3857,1.13432309394,5.4694672523,3.850828125 +31497324,0.0,0.1,0.5,0.2,0.0,24.8827524038,898.935853776,422.0696619,273.872291667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,263.761558428,250.961458333,284.574604167,275.116241963,894.0,296.15,77777.0,31497324.0,0.693942910593,-1.83015225364,0.116541666667,0.249625,101325.0,0.0648666666667,0.434459888151,-0.403744239675,2287.39407269,31497126.3476,1.13633643865,5.49736775477,3.7804375 +31497447,0.0,0.1,0.5,0.2,0.0,24.1971604567,897.259929102,419.392072386,274.258802083,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,263.852735967,250.844010417,284.660661458,275.160771341,894.0,296.15,77777.0,31497447.0,0.693942910593,-1.83015225364,0.121239583333,0.26371875,101325.0,0.0641833333333,0.432110018309,-0.403742550146,2287.40301473,31497249.3094,1.13868630849,5.52563177928,3.704203125 +31497570,0.0,0.1,0.5,0.2,0.0,23.5115685096,895.584004428,416.714482873,274.6453125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,263.943913506,250.7265625,284.74671875,275.20530072,894.0,296.15,77777.0,31497570.0,0.693942910593,-1.83015225364,0.1259375,0.2778125,101325.0,0.0635,0.429760148467,-0.403740860618,2287.41195677,31497372.2713,1.14103617833,5.55389580379,3.62796875 +31497693,0.0,0.1,0.5,0.2,0.0,22.8259765625,893.908079754,414.03689336,275.031822917,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.035091045,250.609114583,284.832776042,275.249830098,894.0,296.15,77777.0,31497693.0,0.693942910593,-1.83015225364,0.130635416667,0.29190625,101325.0,0.0628166666667,0.427410278625,-0.403739171089,2287.4208988,31497495.2332,1.14338604817,5.58215982829,3.551734375 +31497816,0.0,0.1,0.5,0.2,0.0,22.1403846154,892.23215508,411.359303846,275.418333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.126268584,250.491666667,284.918833333,275.294359476,894.0,296.15,77777.0,31497816.0,0.693942910593,-1.83015225364,0.135333333333,0.306,101325.0,0.0621333333333,0.425060408783,-0.403737481561,2287.42984084,31497618.195,1.14573591801,5.6104238528,3.4755 +31497939,0.0,0.1,0.5,0.2,0.0,21.4547926683,890.556230406,408.681714333,275.80484375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.217446122,250.37421875,285.004890625,275.338888854,894.0,296.15,77777.0,31497939.0,0.693942910593,-1.83015225364,0.14003125,0.32009375,101325.0,0.06145,0.422710538941,-0.403735792032,2287.43878288,31497741.1569,1.14808578785,5.63868787731,3.399265625 +31498062,0.0,0.1,0.5,0.2,0.0,20.7692007212,888.880305732,406.00412482,276.191354167,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.308623661,250.256770833,285.090947917,275.383418233,894.0,296.15,77777.0,31498062.0,0.693942910593,-1.83015225364,0.144729166667,0.3341875,101325.0,0.0607666666667,0.420360669099,-0.403734102504,2287.44772492,31497864.1188,1.1504356577,5.66695190182,3.32303125 +31498185,0.0,0.1,0.5,0.2,0.0,20.083608774,887.204381058,403.326535306,276.577864583,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.3998012,250.139322917,285.177005208,275.427947611,894.0,296.15,77777.0,31498185.0,0.693942910593,-1.83015225364,0.149427083333,0.34828125,101325.0,0.0600833333333,0.418010799257,-0.403732412975,2287.45666696,31497987.0806,1.15278552754,5.69521592632,3.246796875 +31498308,0.0,0.1,0.5,0.2,0.0,19.4594230769,885.240806698,400.389288425,276.896875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.470025233,250.059375,285.2338125,275.454071973,894.0,296.15,77777.0,31498308.0,0.693942910593,-1.83015225364,0.154125,0.362375,101325.0,0.0594,0.415310391872,-0.403730721808,2287.465609,31498110.0425,1.15548593492,5.72347018578,3.1833125 +31498431,0.0,0.1,0.5,0.2,0.0,18.8437660256,883.237280992,397.41597802,277.206510417,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.537339057,249.984635417,285.286557292,275.477640082,894.0,296.15,77777.0,31498431.0,0.693942910593,-1.83015225364,0.158822916667,0.37646875,101325.0,0.0587166666667,0.412561298717,-0.403729030414,2287.47455104,31498233.0044,1.15823502808,5.75172308898,3.12159895833 +31498554,0.0,0.1,0.5,0.2,0.0,18.2281089744,881.233755287,394.442667616,277.516145833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.604652881,249.909895833,285.339302083,275.501208192,894.0,296.15,77777.0,31498554.0,0.693942910593,-1.83015225364,0.163520833333,0.3905625,101325.0,0.0580333333333,0.409812205563,-0.40372733902,2287.48349308,31498355.9662,1.16098412123,5.77997599218,3.05988541667 +31498677,0.0,0.1,0.5,0.2,0.0,17.6124519231,879.230229581,391.469357211,277.82578125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.671966705,249.83515625,285.392046875,275.524776301,894.0,296.15,77777.0,31498677.0,0.693942910593,-1.83015225364,0.16821875,0.40465625,101325.0,0.05735,0.407063112408,-0.403725647625,2287.49243512,31498478.9281,1.16373321439,5.80822889539,2.998171875 +31498800,0.0,0.1,0.5,0.2,0.0,16.9967948718,877.226703876,388.496046806,278.135416667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.739280529,249.760416667,285.444791667,275.54834441,894.0,296.15,77777.0,31498800.0,0.693942910593,-1.83015225364,0.172916666667,0.41875,101325.0,0.0566666666667,0.404314019253,-0.403723956231,2287.50137716,31498601.8899,1.16648230754,5.83648179859,2.93645833333 +31498923,0.0,0.1,0.5,0.2,0.0,16.3811378205,875.223178171,385.522736401,278.445052083,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.806594353,249.685677083,285.497536458,275.57191252,894.0,296.15,77777.0,31498923.0,0.693942910593,-1.83015225364,0.177614583333,0.43284375,101325.0,0.0559833333333,0.401564926099,-0.403722264837,2287.5103192,31498724.8518,1.1692314007,5.86473470179,2.87474479167 +31499046,0.0,0.1,0.5,0.2,0.0,15.7654807692,873.219652465,382.549425996,278.7546875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.873908176,249.6109375,285.55028125,275.595480629,894.0,296.15,77777.0,31499046.0,0.693942910593,-1.83015225364,0.1823125,0.4469375,101325.0,0.0553,0.398815832944,-0.403720573442,2287.51926124,31498847.8136,1.17198049385,5.89298760499,2.81303125 +31499169,0.0,0.1,0.5,0.2,0.0,15.2119925214,870.937426693,379.450095668,278.899010417,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.902705578,249.59896875,285.556307292,275.590808738,894.0,296.15,77777.0,31499169.0,0.693942910593,-1.83015225364,0.185572916667,0.45671875,101325.0,0.0546166666667,0.395854417355,-0.403718881001,2287.52820328,31498970.7755,1.17494190944,5.92097466678,2.77168229167 +31499292,0.0,0.1,0.5,0.2,0.0,14.7071581197,868.437087824,376.25214105,278.913958333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.901359692,249.636125,285.525770833,275.564035976,894.0,296.15,77777.0,31499292.0,0.693942910593,-1.83015225364,0.187708333333,0.463125,101325.0,0.0539333333333,0.392726836381,-0.403717187742,2287.53714531,31499093.7374,1.17806949042,5.94875367878,2.74627083333 +31499415,0.0,0.1,0.5,0.2,0.0,14.202323718,865.936748956,373.054186433,278.92890625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.900013807,249.67328125,285.495234375,275.537263215,894.0,296.15,77777.0,31499415.0,0.693942910593,-1.83015225364,0.18984375,0.46953125,101325.0,0.05325,0.389599255408,-0.403715494482,2287.54608735,31499216.6993,1.18119707139,5.97653269078,2.720859375 +31499538,0.0,0.1,0.5,0.2,0.0,13.6974893163,863.436410087,369.856231815,278.943854167,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.898667921,249.7104375,285.464697917,275.510490454,894.0,296.15,77777.0,31499538.0,0.693942910593,-1.83015225364,0.191979166667,0.4759375,101325.0,0.0525666666667,0.386471674435,-0.403713801222,2287.55502939,31499339.6611,1.18432465236,6.00431170277,2.69544791667 +31499661,0.0,0.1,0.5,0.2,0.0,13.1926549145,860.936071219,366.658277198,278.958802083,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.897322035,249.74759375,285.434161458,275.483717692,894.0,296.15,77777.0,31499661.0,0.693942910593,-1.83015225364,0.194114583333,0.48234375,101325.0,0.0518833333333,0.383344093462,-0.403712107962,2287.56397143,31499462.623,1.18745223334,6.03209071477,2.67003645833 +31499784,0.0,0.1,0.5,0.2,0.0,12.6878205128,858.43573235,363.460322581,278.97375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.89597615,249.78475,285.403625,275.456944931,894.0,296.15,77777.0,31499784.0,0.693942910593,-1.83015225364,0.19625,0.48875,101325.0,0.0512,0.380216512489,-0.403710414702,2287.57291347,31499585.5849,1.19057981431,6.05986972677,2.644625 +31499907,0.0,0.1,0.5,0.2,0.0,12.1829861111,855.935393482,360.262367963,278.988697917,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,264.894630264,249.82190625,285.373088542,275.43017217,894.0,296.15,77777.0,31499907.0,0.693942910593,-1.83015225364,0.198385416667,0.49515625,101325.0,0.0505166666667,0.377088931516,-0.403708721442,2287.58185551,31499708.5467,1.19370739528,6.08764873876,2.61921354167 +31500030,0.0,0.1,0.5,0.2,0.0,11.6981303419,853.367639724,356.967006641,278.95,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.881437958,249.878333333,285.328333333,275.397360308,894.0,296.15,77777.0,31500030.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0500427083333,0.373874392088,-0.403707027727,2287.59079755,31499831.5086,1.19692193471,6.08095756832,2.6 +31500153,0.0,0.1,0.5,0.2,0.0,11.2752083333,850.59089981,353.369684535,278.745,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.831521749,249.9945,285.2395,275.345827237,894.0,296.15,77777.0,31500153.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0502178125,0.370390281453,-0.403705332601,2287.59973959,31499954.4705,1.20040604535,5.96740883231,2.6 +31500276,0.0,0.1,0.5,0.2,0.0,10.8522863248,847.814159895,349.772362429,278.54,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.781605541,250.110666667,285.150666667,275.294294165,894.0,296.15,77777.0,31500276.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0503929166667,0.366906170817,-0.403703637476,2287.60868163,31500077.4323,1.20389015598,5.85386009629,2.6 +31500399,0.0,0.1,0.5,0.2,0.0,10.4293643162,845.03741998,346.175040323,278.335,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.731689332,250.226833333,285.061833333,275.242761094,894.0,296.15,77777.0,31500399.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0505680208333,0.363422060182,-0.40370194235,2287.61762366,31500200.3942,1.20737426662,5.74031136028,2.6 +31500522,0.0,0.1,0.5,0.2,0.0,10.0064423077,842.260680065,342.577718216,278.13,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.681773123,250.343,284.973,275.191228023,894.0,296.15,77777.0,31500522.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.050743125,0.359937949546,-0.403700247224,2287.6265657,31500323.3561,1.21085837725,5.62676262427,2.6 +31500645,0.0,0.1,0.5,0.2,0.0,9.58352029915,839.483940151,338.98039611,277.925,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.631856915,250.459166667,284.884166667,275.139694951,894.0,296.15,77777.0,31500645.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0509182291667,0.356453838911,-0.403698552099,2287.63550774,31500446.3179,1.21434248789,5.51321388825,2.6 +31500768,0.0,0.1,0.5,0.2,0.0,9.1605982906,836.707200236,335.383074004,277.72,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.581940706,250.575333333,284.795333333,275.08816188,894.0,296.15,77777.0,31500768.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0510933333333,0.352969728275,-0.403696856973,2287.64444978,31500569.2798,1.21782659852,5.39966515224,2.6 +31500891,0.0,0.1,0.5,0.2,0.0,8.73767628205,833.930460321,331.785751898,277.515,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.532024498,250.6915,284.7065,275.036628809,894.0,296.15,77777.0,31500891.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0512684375,0.34948561764,-0.403695161848,2287.65339182,31500692.2417,1.22131070916,5.28611641623,2.6 +31501014,0.0,0.1,0.5,0.2,0.0,8.36387820513,831.101828228,327.656345667,277.31,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.481787998,250.807666667,284.617666667,274.997883364,894.0,296.15,77777.0,31501014.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0526072916667,0.345692014151,-0.403693464993,2287.66233386,31500815.2036,1.22510431264,5.01438573432,2.6 +31501137,0.0,0.1,0.5,0.2,0.0,7.99395833333,828.269099383,323.484932796,277.105,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.431526212,250.923833333,284.528833333,274.960147468,894.0,296.15,77777.0,31501137.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0540380208333,0.341873977017,-0.403691768002,2287.6712759,31500938.1655,1.22892234978,4.73016700406,2.6 +31501260,0.0,0.1,0.5,0.2,0.0,7.62403846154,825.436370538,319.313519924,276.9,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.381264427,251.04,284.44,274.922411572,894.0,296.15,77777.0,31501260.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.05546875,0.338055939882,-0.403690071011,2287.68021794,31501061.1273,1.23274038691,4.4459482738,2.6 +31501383,0.0,0.1,0.5,0.2,0.0,7.25411858974,822.603641693,315.142107053,276.695,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.331002641,251.156166667,284.351166667,274.884675677,894.0,296.15,77777.0,31501383.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0568994791667,0.334237902748,-0.40368837402,2287.68915998,31501184.0892,1.23655842405,4.16172954353,2.6 +31501506,0.0,0.1,0.5,0.2,0.0,6.88419871795,819.770912848,310.970694181,276.49,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.280740856,251.272333333,284.262333333,274.846939781,894.0,296.15,77777.0,31501506.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0583302083333,0.330419865613,-0.403686677029,2287.69810202,31501307.0511,1.24037646118,3.87751081327,2.6 +31501629,0.0,0.1,0.5,0.2,0.0,6.51427884615,816.938184004,306.799281309,276.285,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.23047907,251.3885,284.1735,274.809203886,894.0,296.15,77777.0,31501629.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0597609375,0.326601828479,-0.403684980038,2287.70704406,31501430.013,1.24419449831,3.59329208301,2.6 +31501752,0.0,0.1,0.5,0.2,0.0,6.14435897436,814.105455159,302.627868438,276.08,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.180217284,251.504666667,284.084666667,274.77146799,894.0,296.15,77777.0,31501752.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0611916666667,0.322783791344,-0.403683283046,2287.7159861,31501552.9749,1.24801253545,3.30907335274,2.6 +31501875,0.0,0.1,0.5,0.2,0.0,5.83485243056,810.73659764,298.208148354,275.875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.129746921,251.620833333,283.995833333,274.736578443,894.0,296.15,77777.0,31501875.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0629661458333,0.31877600958,-0.403681584918,2287.72492814,31501675.9368,1.25202031721,3.02249770278,2.6 +31501998,0.0,0.1,0.5,0.2,0.0,5.56401041667,807.024617769,293.629511654,275.67,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.079143067,251.737,283.907,274.703510558,894.0,296.15,77777.0,31501998.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.064960625,0.314646791254,-0.403679886061,2287.73387019,31501798.8986,1.25614953554,2.73441362422,2.6 +31502121,0.0,0.1,0.5,0.2,0.0,5.29316840278,803.312637898,289.050874954,275.465,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.028539213,251.853166667,283.818166667,274.670442674,894.0,296.15,77777.0,31502121.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0669551041667,0.310517572927,-0.403678187205,2287.74281223,31501921.8605,1.26027875386,2.44632954565,2.6 +31502244,0.0,0.1,0.5,0.2,0.0,5.02232638889,799.600658027,284.472238254,275.26,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,263.977935359,251.969333333,283.729333333,274.63737479,894.0,296.15,77777.0,31502244.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0689495833333,0.306388354601,-0.403676488349,2287.75175427,31502044.8224,1.26440797219,2.15824546709,2.6 +31502367,0.0,0.1,0.5,0.2,0.0,4.751484375,795.888678157,279.893601554,275.055,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,263.927331505,252.0855,283.6405,274.604306905,894.0,296.15,77777.0,31502367.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0709440625,0.302259136274,-0.403674789492,2287.76069631,31502167.7843,1.26853719052,1.87016138852,2.6 +31502490,0.0,0.1,0.5,0.2,0.0,4.48064236111,792.176698286,275.314964854,274.85,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,263.876727652,252.201666667,283.551666667,274.571239021,894.0,296.15,77777.0,31502490.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0729385416667,0.298129917948,-0.403673090636,2287.76963835,31502290.7462,1.27266640884,1.58207730995,2.6 +31502613,0.0,0.1,0.5,0.2,0.0,4.20980034723,788.464718415,270.736328154,274.645,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,263.826123798,252.317833333,283.462833333,274.538171136,894.0,296.15,77777.0,31502613.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0749330208333,0.294000699621,-0.403671391779,2287.77858039,31502413.7081,1.27679562717,1.29399323139,2.6 +31502736,0.0,0.1,0.5,0.2,0.0,3.97944444445,784.274231039,266.129593045,274.44,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,263.775420837,252.434,283.374,274.504134969,894.0,296.15,77777.0,31502736.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.07689,0.28978698091,-0.403669692377,2287.78752243,31502536.6699,1.28100934588,1.05359870335,2.6 +31502859,0.0,0.1,0.5,0.2,0.0,3.84692997685,778.927350525,261.454953447,274.235,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,263.72447837,252.550166667,283.285166667,274.467758786,894.0,296.15,77777.0,31502859.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0787563541667,0.285369052935,-0.403667991655,2287.79646447,31502659.6318,1.28542727386,0.928453922436,2.6 +31502982,0.0,0.1,0.5,0.2,0.0,3.71441550926,773.580470011,256.780313849,274.03,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,263.673535902,252.666333333,283.196333333,274.431382603,894.0,296.15,77777.0,31502982.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0806227083333,0.28095112496,-0.403666290933,2287.80540651,31502782.5937,1.28984520183,0.803309141518,2.6 +31503105,0.0,0.1,0.5,0.2,0.0,3.58190104167,768.233589498,252.105674251,273.825,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,263.622593435,252.7825,283.1075,274.39500642,894.0,296.15,77777.0,31503105.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0824890625,0.276533196986,-0.403664590211,2287.81434855,31502905.5556,1.29426312981,0.6781643606,2.6 +31503228,0.0,0.1,0.5,0.2,0.0,3.44938657407,762.886708984,247.431034653,273.62,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,263.571650967,252.898666667,283.018666667,274.358630237,894.0,296.15,77777.0,31503228.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0843554166667,0.272115269011,-0.403662889489,2287.82329059,31503028.5175,1.29868105778,0.553019579682,2.6 +31503351,0.0,0.1,0.5,0.2,0.0,3.31687210648,757.53982847,242.756395055,273.415,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,263.520708499,253.014833333,282.929833333,274.322254053,894.0,296.15,77777.0,31503351.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0862217708333,0.267697341036,-0.403661188767,2287.83223263,31503151.4794,1.30309898576,0.427874798764,2.6 +31503474,0.0,0.1,0.5,0.2,0.0,3.18435763889,752.192947957,238.081755457,273.21,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,263.469766032,253.131,282.841,274.28587787,894.0,296.15,77777.0,31503474.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.088088125,0.263279413062,-0.403659488045,2287.84117467,31503274.4412,1.30751691373,0.302730017847,2.6 +31503597,0.0,0.1,0.5,0.2,0.0,3.0518431713,746.846067443,233.407115859,273.005,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,263.418823564,253.247166667,282.752166667,274.249501687,894.0,296.15,77777.0,31503597.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0899544791667,0.258861485087,-0.403657787323,2287.85011671,31503397.4031,1.31193484171,0.177585236929,2.6 +31503720,0.0,0.1,0.5,0.2,0.0,3.01608796296,740.218143214,228.67960291,272.8,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,263.36755406,253.363333333,282.663333333,274.208715611,894.0,296.15,77777.0,31503720.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0915604166667,0.25418322729,-0.403656084781,2287.85905875,31503520.365,1.31661309951,0.186168453546,2.6 +31503843,0.0,0.1,0.5,0.2,0.0,2.98275173611,733.558192893,223.950768128,272.595,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,263.316276381,253.4795,282.5745,274.167819287,894.0,296.15,77777.0,31503843.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.09315984375,0.249498461248,-0.403654382194,2287.86800079,31503643.3269,1.32129786555,0.198094870101,2.6 +31503966,0.0,0.1,0.5,0.2,0.0,2.94941550926,726.898242571,219.221933346,272.39,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,263.264998701,253.595666667,282.485666667,274.126922964,894.0,296.15,77777.0,31503966.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0947592708333,0.244813695205,-0.403652679607,2287.87694284,31503766.2888,1.32598263159,0.210021286656,2.6 +31504089,0.0,0.1,0.5,0.2,0.0,2.91607928241,720.23829225,214.493098563,272.185,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,263.213721021,253.711833333,282.396833333,274.086026641,894.0,296.15,77777.0,31504089.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0963586979167,0.240128929163,-0.40365097702,2287.88588488,31503889.2507,1.33066739763,0.221947703212,2.6 +31504212,0.0,0.1,0.5,0.2,0.0,2.88274305556,713.578341928,209.764263781,271.98,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,263.162443341,253.828,282.308,274.045130317,894.0,296.15,77777.0,31504212.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.097958125,0.23544416312,-0.403649274433,2287.89482692,31504012.2125,1.33535216368,0.233874119767,2.6 +31504335,0.0,0.1,0.5,0.2,0.0,2.8494068287,706.918391607,205.035428998,271.775,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,263.111165661,253.944166667,282.219166667,274.004233994,894.0,296.15,77777.0,31504335.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.0995575520833,0.230759397078,-0.403647571846,2287.90376896,31504135.1744,1.34003692972,0.245800536322,2.6 +31504458,0.0,0.1,0.5,0.2,0.0,2.81607060185,700.258441285,200.306594216,271.57,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,263.059887982,254.060333333,282.130333333,273.96333767,894.0,296.15,77777.0,31504458.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.101156979167,0.226074631036,-0.403645869259,2287.912711,31504258.1363,1.34472169576,0.257726952878,2.6 +31504581,0.0,0.1,0.5,0.2,0.0,2.822265625,692.945723835,195.569601831,271.365,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,263.008391758,254.1765,282.0415,273.921848522,894.0,296.15,77777.0,31504581.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.10279859375,0.221227991962,-0.403644165444,2287.92165304,31504381.0982,1.34956833483,0.269653369433,2.6 +31504704,0.0,0.1,0.5,0.2,0.0,2.84895833333,685.294534541,190.828379578,271.16,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.956782216,254.292666667,281.952666667,273.880051983,894.0,296.15,77777.0,31504704.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.104462083333,0.216297418724,-0.403642460992,2287.93059508,31504504.0601,1.35449890807,0.281579785988,2.6 +31504827,0.0,0.1,0.5,0.2,0.0,2.87565104167,677.643345247,186.087157325,270.955,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.905172674,254.408833333,281.863833333,273.838255443,894.0,296.15,77777.0,31504827.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.106125572917,0.211366845487,-0.403640756539,2287.93953712,31504627.022,1.35942948131,0.293506202544,2.6 +31504950,0.0,0.1,0.5,0.2,0.0,2.90234375,669.992155954,181.345935072,270.75,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.853563132,254.525,281.775,273.796458904,894.0,296.15,77777.0,31504950.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.1077890625,0.206436272249,-0.403639052087,2287.94847917,31504749.9839,1.36436005455,0.305432619099,2.6 +31505073,0.0,0.1,0.5,0.2,0.0,2.92903645833,662.34096666,176.604712819,270.545,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.80195359,254.641166667,281.686166667,273.754662365,894.0,296.15,77777.0,31505073.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.109452552083,0.201505699011,-0.403637347635,2287.95742121,31504872.9458,1.36929062778,0.317359035654,2.6 +31505196,0.0,0.1,0.5,0.2,0.0,2.95572916667,654.689777366,171.863490566,270.34,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.750344048,254.757333333,281.597333333,273.712865825,894.0,296.15,77777.0,31505196.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.111116041667,0.196575125774,-0.403635643182,2287.96636325,31504995.9077,1.37422120102,0.32928545221,2.6 +31505319,0.0,0.1,0.5,0.2,0.0,2.982421875,647.038588072,167.122268313,270.135,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.698734506,254.8735,281.5085,273.671069286,894.0,296.15,77777.0,31505319.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.11277953125,0.191644552536,-0.40363393873,2287.97530529,31505118.8696,1.37915177426,0.341211868765,2.6 +31505442,0.0,0.1,0.5,0.2,0.0,3.091875,636.466053848,162.285501398,269.93,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.647012771,254.989666667,281.419666667,273.628998845,894.0,296.15,77777.0,31505442.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.114469270833,0.186636883316,-0.403632233641,2287.98424733,31505241.8315,1.38415944348,0.35313828532,2.6 +31505565,0.0,0.1,0.5,0.2,0.0,3.3609375,620.25949726,157.264469776,269.725,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.595074666,255.105833333,281.330833333,273.586400163,894.0,296.15,77777.0,31505565.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.116209635417,0.181480528988,-0.403630527324,2287.99318937,31505364.7934,1.38931579781,0.365064701876,2.6 +31505688,0.0,0.1,0.5,0.2,0.0,3.63,604.052940671,152.243438155,269.52,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.543136561,255.222,281.242,273.543801482,894.0,296.15,77777.0,31505688.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.11795,0.17632417466,-0.403628821006,2288.00213141,31505487.7553,1.39447215213,0.376991118431,2.6 +31505811,0.0,0.1,0.5,0.2,0.0,3.8990625,587.846384083,147.222406534,269.315,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.491198455,255.338166667,281.153166667,273.5012028,894.0,296.15,77777.0,31505811.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.119690364583,0.171167820332,-0.403627114689,2288.01107345,31505610.7172,1.39962850646,0.388917534986,2.6 +31505934,0.0,0.1,0.5,0.2,0.0,4.168125,571.639827495,142.201374913,269.11,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.43926035,255.454333333,281.064333333,273.458604119,894.0,296.15,77777.0,31505934.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.121430729167,0.166011466004,-0.403625408372,2288.02001549,31505733.6791,1.40478486079,0.400843951542,2.6 +31506057,0.0,0.1,0.5,0.2,0.0,4.4371875,555.433270907,137.180343292,268.905,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.387322245,255.5705,280.9755,273.416005438,894.0,296.15,77777.0,31506057.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.12317109375,0.160855111676,-0.403623702054,2288.02895754,31505856.641,1.40994121512,0.412770368097,2.6 +31506180,0.0,0.1,0.5,0.2,0.0,4.70625,539.226714318,132.15931167,268.7,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.335384139,255.686666667,280.886666667,273.373406756,894.0,296.15,77777.0,31506180.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.124911458333,0.155698757347,-0.403621995737,2288.03789958,31505979.6029,1.41509756945,0.424696784652,2.6 +31506303,0.0,0.1,0.5,0.2,0.0,4.98167824074,522.790500405,127.132087992,268.495,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.283438099,255.802833333,280.797833333,273.330790536,894.0,296.15,77777.0,31506303.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.126654010417,0.150537357697,-0.403620289374,2288.04684162,31506102.5648,1.4202589691,0.436623201208,2.6 +31506426,0.0,0.1,0.5,0.2,0.0,5.51173611111,497.167993482,121.857182041,268.29,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.23117468,255.919,280.709,273.287472778,894.0,296.15,77777.0,31506426.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.1284840625,0.145174145148,-0.403618581192,2288.05578366,31506225.5267,1.42562218165,0.448549617763,2.6 +31506549,0.0,0.1,0.5,0.2,0.0,6.04179398148,471.545486559,116.582276089,268.085,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.17891126,256.035166667,280.620166667,273.244155019,894.0,296.15,77777.0,31506549.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.130314114583,0.139810932599,-0.403616873009,2288.0647257,31506348.4886,1.4309853942,0.460476034318,2.6 +31506672,0.0,0.1,0.5,0.2,0.0,6.57185185185,445.922979635,111.307370138,267.88,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.126647841,256.151333333,280.531333333,273.200837261,894.0,296.15,77777.0,31506672.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.132144166667,0.13444772005,-0.403615164827,2288.07366775,31506471.4505,1.43634860675,0.472402450873,2.6 +31506795,0.0,0.1,0.5,0.2,0.0,7.10190972222,420.300472712,106.032464186,267.675,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.074384421,256.2675,280.4425,273.157519503,894.0,296.15,77777.0,31506795.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.13397421875,0.129084507501,-0.403613456644,2288.08260979,31506594.4124,1.4417118193,0.484328867428,2.6 +31506918,0.0,0.1,0.5,0.2,0.0,7.63196759259,394.677965789,100.757558234,267.47,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,262.022121002,256.383666667,280.353666667,273.114201744,894.0,296.15,77777.0,31506918.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.135804270833,0.123721294953,-0.403611748462,2288.09155183,31506717.3743,1.44707503185,0.496255283984,2.6 +31507041,0.0,0.1,0.5,0.2,0.0,8.16202546296,369.055458866,95.4826522828,267.265,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,261.969857582,256.499833333,280.264833333,273.070883986,894.0,296.15,77777.0,31507041.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.137634322917,0.118358082404,-0.403610040279,2288.10049387,31506840.3362,1.4524382444,0.508181700539,2.6 +31507164,0.0,0.1,0.5,0.2,0.0,8.69208333333,343.432951943,90.2077463313,267.06,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,261.917594163,256.616,280.176,273.027566227,894.0,296.15,77777.0,31507164.0,0.693942910593,-1.83015225364,0.2,0.5,101325.0,0.139464375,0.112994869855,-0.403608332097,2288.10943592,31506963.2981,1.45780145694,0.520108117094,2.6 +31507287,0.0,0.1,0.5,0.2,0.0,9.20535879629,318.490317075,85.0940865945,266.783708333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.85473932,256.736622396,280.087166667,272.989547254,894.0,296.15,77777.0,31507287.0,0.693942910593,-1.83015225364,0.198489583333,0.506041666667,101325.0,0.14201640625,0.107497915533,-0.403606622595,2288.11837796,31507086.26,1.46329841127,0.530848255173,2.6 +31507410,0.0,0.1,0.5,0.2,0.0,9.71168981481,293.829008574,80.0471494293,266.477916667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.787501819,256.859088542,279.998333333,272.953720882,894.0,296.15,77777.0,31507410.0,0.693942910593,-1.83015225364,0.196354166667,0.514583333333,101325.0,0.1448671875,0.101945619788,-0.403604912548,2288.12732,31507209.2219,1.46885070701,0.541097519401,2.6 +31507533,0.0,0.1,0.5,0.2,0.0,10.2180208333,269.167700073,75.0002122642,266.172125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.720264318,256.981554687,279.9095,272.917894509,894.0,296.15,77777.0,31507533.0,0.693942910593,-1.83015225364,0.19421875,0.523125,101325.0,0.14771796875,0.0963933240431,-0.403603202501,2288.13626204,31507332.1838,1.47440300276,0.551346783628,2.6 +31507656,0.0,0.1,0.5,0.2,0.0,10.7243518518,244.506391572,69.953275099,265.866333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.653026817,257.104020833,279.820666667,272.882068137,894.0,296.15,77777.0,31507656.0,0.693942910593,-1.83015225364,0.192083333333,0.531666666667,101325.0,0.15056875,0.0908410282981,-0.403601492454,2288.14520408,31507455.1457,1.4799552985,0.561596047855,2.6 +31507779,0.0,0.1,0.5,0.2,0.0,11.2306828703,219.845083072,64.9063379339,265.560541667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.585789316,257.226486979,279.731833333,272.846241765,894.0,296.15,77777.0,31507779.0,0.693942910593,-1.83015225364,0.189947916667,0.540208333333,101325.0,0.15341953125,0.085288732553,-0.403599782406,2288.15414612,31507578.1076,1.48550759424,0.571845312082,2.6 +31507902,0.0,0.1,0.5,0.2,0.0,11.7370138889,195.183774571,59.8594007687,265.25475,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.518551815,257.348953125,279.643,272.810415392,894.0,296.15,77777.0,31507902.0,0.693942910593,-1.83015225364,0.1878125,0.54875,101325.0,0.1562703125,0.079736436808,-0.403598072359,2288.16308816,31507701.0695,1.49105988999,0.58209457631,2.6 +31508025,0.0,0.1,0.5,0.2,0.0,12.2433449074,170.52246607,54.8124636036,264.948958333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.451314314,257.471419271,279.554166667,272.77458902,894.0,296.15,77777.0,31508025.0,0.693942910593,-1.83015225364,0.185677083333,0.557291666667,101325.0,0.15912109375,0.0741841410629,-0.403596362312,2288.17203021,31507824.0314,1.49661218573,0.592343840537,2.6 +31508148,0.0,0.1,0.5,0.2,0.0,12.6293055555,150.28587842,50.0425262055,264.599166667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.375335599,257.594635417,279.465333333,272.741394449,894.0,296.15,77777.0,31508148.0,0.693942910593,-1.83015225364,0.182541666667,0.569833333333,101325.0,0.162380208333,0.0685645446464,-0.403594651537,2288.18097225,31507946.9933,1.50223178215,0.602156772451,2.6 +31508271,0.0,0.1,0.5,0.2,0.0,12.8271875,136.962917099,45.7054009434,264.180625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.285698737,257.719023438,279.3765,272.712312067,894.0,296.15,77777.0,31508271.0,0.693942910593,-1.83015225364,0.17784375,0.588625,101325.0,0.16627734375,0.0628397909307,-0.403592939624,2288.18991429,31508069.9552,1.50795653587,0.611287935126,2.6 +31508394,0.0,0.1,0.5,0.2,0.0,13.0250694444,123.639955778,41.3682756814,263.762083333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.196061875,257.843411458,279.287666667,272.683229685,894.0,296.15,77777.0,31508394.0,0.693942910593,-1.83015225364,0.173145833333,0.607416666667,101325.0,0.170174479167,0.0571150372151,-0.403591227712,2288.19885633,31508192.9172,1.51368128958,0.620419097801,2.6 +31508517,0.0,0.1,0.5,0.2,0.0,13.2229513889,110.316994456,37.0311504193,263.343541667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.106425013,257.967799479,279.198833333,272.654147304,894.0,296.15,77777.0,31508517.0,0.693942910593,-1.83015225364,0.168447916667,0.626208333333,101325.0,0.174071614583,0.0513902834994,-0.4035895158,2288.20779838,31508315.8791,1.5194060433,0.629550260477,2.6 +31508640,0.0,0.1,0.5,0.2,0.0,13.4208333333,96.9940331352,32.6940251572,262.925,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.016788151,258.0921875,279.11,272.625064922,894.0,296.15,77777.0,31508640.0,0.693942910593,-1.83015225364,0.16375,0.645,101325.0,0.17796875,0.0456655297838,-0.403587803888,2288.21674042,31508438.841,1.52513079701,0.638681423152,2.6 +31508763,0.0,0.1,0.5,0.2,0.0,13.6187152778,83.671071814,28.3568998952,262.506458333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,260.927151289,258.216575521,279.021166667,272.59598254,894.0,296.15,77777.0,31508763.0,0.693942910593,-1.83015225364,0.159052083333,0.663791666667,101325.0,0.181865885417,0.0399407760681,-0.403586091976,2288.22568246,31508561.8029,1.53085555073,0.647812585827,2.6 +31508886,0.0,0.1,0.5,0.2,0.0,13.8165972222,70.3481104928,24.0197746331,262.087916667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,260.837514427,258.340963542,278.932333333,272.566900159,894.0,296.15,77777.0,31508886.0,0.693942910593,-1.83015225364,0.154354166667,0.682583333333,101325.0,0.185763020833,0.0342160223524,-0.403584380063,2288.2346245,31508684.7648,1.53658030444,0.656943748502,2.6 +31509009,0.0,0.1,0.5,0.2,0.0,13.976015625,57.7367257166,19.8114583333,261.670875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,260.74724957,258.464320313,278.8435,272.537436048,894.0,296.15,77777.0,31509009.0,0.693942910593,-1.83015225364,0.14965625,0.701375,101325.0,0.18963828125,0.0284797843586,-0.403582668015,2288.24356655,31508807.7267,1.54231654244,0.666238535795,2.6 +31509132,0.0,0.1,0.5,0.2,0.0,13.6482291667,54.1386438429,17.2347222222,261.272833333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,260.649030108,258.574614583,278.754666667,272.503136707,894.0,296.15,77777.0,31509132.0,0.693942910593,-1.83015225364,0.144958333333,0.720166666667,101325.0,0.193236458333,0.0225980788406,-0.403580954238,2288.25250859,31508930.6886,1.54819824795,0.677605901574,2.6 +31509255,0.0,0.1,0.5,0.2,0.0,13.3204427083,50.5405619692,14.6579861111,260.874791667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,260.550810646,258.684908854,278.665833333,272.468837365,894.0,296.15,77777.0,31509255.0,0.693942910593,-1.83015225364,0.140260416667,0.738958333333,101325.0,0.196834635417,0.0167163733226,-0.403579240461,2288.26145063,31509053.6505,1.55407995347,0.688973267353,2.6 +31509378,0.0,0.1,0.5,0.2,0.0,12.99265625,46.9424800956,12.08125,260.47675,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,260.452591185,258.795203125,278.577,272.434538024,894.0,296.15,77777.0,31509378.0,0.693942910593,-1.83015225364,0.1355625,0.75775,101325.0,0.2004328125,0.0108346678047,-0.403577526684,2288.27039267,31509176.6124,1.55996165899,0.700340633132,2.6 +31509501,0.0,0.1,0.5,0.2,0.0,12.6648697917,43.3443982219,9.50451388889,260.078708333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,260.354371723,258.905497396,278.488166667,272.400238682,894.0,296.15,77777.0,31509501.0,0.693942910593,-1.83015225364,0.130864583333,0.776541666667,101325.0,0.204030989583,0.00495296228673,-0.403575812907,2288.27933472,31509299.5744,1.56584336451,0.711707998912,2.6 +31509624,0.0,0.1,0.5,0.2,0.0,12.3370833333,39.7463163482,6.92777777778,259.680666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,260.256152261,259.015791667,278.399333333,272.365939341,894.0,296.15,77777.0,31509624.0,0.693942910593,-1.83015225364,0.126166666667,0.795333333333,101325.0,0.207629166667,-0.000928743231229,-0.40357409913,2288.28827676,31509422.5363,1.57172507002,0.723075364691,2.6 +31509747,0.0,0.1,0.5,0.2,0.0,12.009296875,36.1482344746,4.35104166666,259.282625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,260.157932799,259.126085937,278.3105,272.331639999,894.0,296.15,77777.0,31509747.0,0.693942910593,-1.83015225364,0.12146875,0.814125,101325.0,0.21122734375,-0.00681044874919,-0.403572385353,2288.2972188,31509545.4982,1.57760677554,0.73444273047,2.6 +31509870,0.0,0.1,0.5,0.2,0.0,11.6815104167,32.5501526009,1.77430555555,258.884583333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,260.059713337,259.236380208,278.221666667,272.297340658,894.0,296.15,77777.0,31509870.0,0.693942910593,-1.83015225364,0.116770833333,0.832916666667,101325.0,0.214825520833,-0.0126921542671,-0.403570671576,2288.30616084,31509668.4601,1.58348848106,0.745810096249,2.6 +31509993,0.0,0.1,0.5,0.2,0.0,11.1066927083,29.8105902778,1.02743055555,258.602791667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,259.972203326,259.323908854,278.132833333,272.251369319,894.0,296.15,77777.0,31509993.0,0.693942910593,-1.83015225364,0.114010416667,0.843958333333,101325.0,0.21718046875,-0.0186816109704,-0.40356895639,2288.31510289,31509791.422,1.58947793776,0.761404431311,2.6 +31510116,0.0,0.1,0.5,0.2,0.0,10.4521875,27.3479697453,0.870833333331,258.3585,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,259.888147977,259.40409375,278.044,272.201632819,894.0,296.15,77777.0,31510116.0,0.693942910593,-1.83015225364,0.111875,0.8525,101325.0,0.219134375,-0.0247058261206,-0.403567240748,2288.32404493,31509914.3839,1.59550215291,0.77836230485,2.6 +31510239,0.0,0.1,0.5,0.2,0.0,9.79768229167,24.8853492127,0.714236111109,258.114208333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,259.804092628,259.484278646,277.955166667,272.151896319,894.0,296.15,77777.0,31510239.0,0.693942910593,-1.83015225364,0.109739583333,0.861041666667,101325.0,0.22108828125,-0.0307300412708,-0.403565525107,2288.33298698,31510037.3458,1.60152636806,0.79532017839,2.6 +31510362,0.0,0.1,0.5,0.2,0.0,9.14317708333,22.4227286801,0.557638888887,257.869916667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,259.720037278,259.564463542,277.866333333,272.102159819,894.0,296.15,77777.0,31510362.0,0.693942910593,-1.83015225364,0.107604166667,0.869583333333,101325.0,0.2230421875,-0.036754256421,-0.403563809465,2288.34192902,31510160.3077,1.60755058321,0.812278051929,2.6 +31510485,0.0,0.1,0.5,0.2,0.0,8.488671875,19.9601081476,0.401041666666,257.625625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,259.635981929,259.644648437,277.7775,272.052423319,894.0,296.15,77777.0,31510485.0,0.693942910593,-1.83015225364,0.10546875,0.878125,101325.0,0.22499609375,-0.0427784715712,-0.403562093824,2288.35087106,31510283.2696,1.61357479836,0.829235925469,2.6 +31510608,0.0,0.1,0.5,0.2,0.0,7.83416666667,17.497487615,0.244444444444,257.381333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,259.551926579,259.724833333,277.688666667,272.002686818,894.0,296.15,77777.0,31510608.0,0.693942910593,-1.83015225364,0.103333333333,0.886666666667,101325.0,0.22695,-0.0488026867213,-0.403560378182,2288.35981311,31510406.2316,1.61959901351,0.846193799008,2.6 +31510731,0.0,0.1,0.5,0.2,0.0,7.17966145833,15.0348670825,0.087847222222,257.137041667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,259.46787123,259.805018229,277.599833333,271.952950318,894.0,296.15,77777.0,31510731.0,0.693942910593,-1.83015225364,0.101197916667,0.895208333333,101325.0,0.22890390625,-0.0548269018715,-0.403558662541,2288.36875515,31510529.1935,1.62562322866,0.863151672548,2.6 +31510854,0.0,0.1,0.5,0.2,0.0,6.53078125,13.0326446391,0.0,256.954892857,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.399506217,259.866305099,277.522875,271.907209493,894.0,296.15,77777.0,31510854.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.2303,-0.0609077769693,-0.403556946081,2288.37769719,31510652.1554,1.63170410376,0.883545663053,2.60282516892 +31510977,0.0,0.1,0.5,0.2,0.0,5.88908854167,11.618708643,0.0,256.85214881,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.351189968,259.90344449,277.461090278,271.86657425,894.0,296.15,77777.0,31510977.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.230983333333,-0.0670610508891,-0.403555228575,2288.38663924,31510775.1173,1.63785737768,0.908330247457,2.6092602759 +31511100,0.0,0.1,0.5,0.2,0.0,5.24739583333,10.2047726468,0.0,256.749404762,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.302873719,259.940583882,277.399305556,271.825939008,894.0,296.15,77777.0,31511100.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.231666666667,-0.0732143248088,-0.403553511069,2288.39558128,31510898.0792,1.6440106516,0.933114831861,2.61569538288 +31511223,0.0,0.1,0.5,0.2,0.0,4.605703125,8.79083665074,0.0,256.646660714,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.25455747,259.977723273,277.337520833,271.785303766,894.0,296.15,77777.0,31511223.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.23235,-0.0793675987285,-0.403551793563,2288.40452332,31511021.0412,1.65016392552,0.957899416266,2.62213048987 +31511346,0.0,0.1,0.5,0.2,0.0,3.96401041667,7.37690065464,0.0,256.543916667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.206241221,260.014862665,277.275736111,271.744668524,894.0,296.15,77777.0,31511346.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.233033333333,-0.0855208726483,-0.403550076056,2288.41346537,31511144.0031,1.65631719944,0.98268400067,2.62856559685 +31511469,0.0,0.1,0.5,0.2,0.0,3.32231770833,5.96296465853,0.0,256.441172619,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.157924972,260.052002056,277.213951389,271.704033282,894.0,296.15,77777.0,31511469.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.233716666667,-0.091674146568,-0.40354835855,2288.42240741,31511266.965,1.66247047336,1.00746858507,2.63500070383 +31511592,0.0,0.1,0.5,0.2,0.0,2.680625,4.54902866242,0.0,256.338428572,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.109608723,260.089141448,277.152166667,271.66339804,894.0,296.15,77777.0,31511592.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.2344,-0.0978274204878,-0.403546641044,2288.43134945,31511389.9269,1.66862374728,1.03225316948,2.64143581081 +31511715,0.0,0.1,0.5,0.2,0.0,2.08190104167,3.25239848726,0.0,256.239553572,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.064834235,260.122425302,277.095219908,271.626341141,894.0,296.15,77777.0,31511715.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.235083333333,-0.103994903424,-0.403544923311,2288.44029149,31511512.8889,1.67479123021,1.05771952312,2.64908854167 +31511838,0.0,0.1,0.5,0.2,0.0,1.79255208333,2.80037022293,0.0,256.168535715,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.045560419,260.127949288,277.073106482,271.615048315,894.0,296.15,77777.0,31511838.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.235766666667,-0.110264691278,-0.40354320394,2288.44923354,31511635.8508,1.68106101807,1.08809461529,2.66550816442 +31511961,0.0,0.1,0.5,0.2,0.0,1.503203125,2.3483419586,0.0,256.097517857,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.026286604,260.133473273,277.050993056,271.603755488,894.0,296.15,77777.0,31511961.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.23645,-0.116534479133,-0.403541484569,2288.45817558,31511758.8127,1.68733080593,1.11846970745,2.68192778716 +31512084,0.0,0.1,0.5,0.2,0.0,1.21385416667,1.89631369427,0.0,256.0265,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.007012789,260.138997259,277.02887963,271.592462662,894.0,296.15,77777.0,31512084.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.237133333333,-0.122804266987,-0.403539765199,2288.46711763,31511881.7746,1.69360059378,1.14884479961,2.69834740991 +31512207,0.0,0.1,0.5,0.2,0.0,0.924505208333,1.44428542994,0.0,255.955482143,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.987738973,260.144521245,277.006766204,271.581169835,894.0,296.15,77777.0,31512207.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.237816666667,-0.129074054842,-0.403538045828,2288.47605967,31512004.7366,1.69987038164,1.17921989178,2.71476703266 +31512330,0.0,0.1,0.5,0.2,0.0,0.63515625,0.992257165605,0.0,255.884464286,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.968465158,260.150045231,276.984652778,271.569877009,894.0,296.15,77777.0,31512330.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.2385,-0.135343842696,-0.403536326457,2288.48500171,31512127.6985,1.70614016949,1.20959498394,2.73118665541 +31512453,0.0,0.1,0.5,0.2,0.0,0.345807291667,0.540228901274,0.0,255.813446429,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.949191343,260.155569216,276.962539352,271.558584183,894.0,296.15,77777.0,31512453.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.239183333333,-0.141613630551,-0.403534607087,2288.49394376,31512250.6604,1.71240995735,1.2399700761,2.74760627815 +31512576,0.0,0.1,0.5,0.2,0.0,0.0564583333333,0.0882006369427,0.0,255.742428572,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.929917527,260.161093202,276.940425926,271.547291356,894.0,296.15,77777.0,31512576.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.239866666667,-0.147883418405,-0.403532887716,2288.5028858,31512373.6223,1.7186797452,1.27034516827,2.7640259009 +31512699,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.686339286,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.921951529,260.15769778,276.932826389,271.546818772,894.0,296.15,77777.0,31512699.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.24055,-0.154237542011,-0.403531166845,2288.51182784,31512496.5843,1.72503386881,1.30252013122,2.78499788851 +31512822,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.633869048,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.91672682,260.152140077,276.92874537,271.548969277,894.0,296.15,77777.0,31512822.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.241233333333,-0.160612110648,-0.40352944561,2288.52076989,31512619.5462,1.73140843744,1.33513142649,2.80707347973 +31512945,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.58139881,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.911502111,260.146582374,276.924664352,271.551119782,894.0,296.15,77777.0,31512945.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.241916666667,-0.166986679285,-0.403527724375,2288.52971193,31512742.5081,1.73778300608,1.36774272176,2.82914907095 +31513068,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.528928572,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.906277402,260.141024671,276.920583333,271.553270287,894.0,296.15,77777.0,31513068.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.2426,-0.173361247921,-0.403526003139,2288.53865398,31512865.4701,1.74415757472,1.40035401703,2.85122466216 +31513191,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.476458333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.901052693,260.135466968,276.916502315,271.555420791,894.0,296.15,77777.0,31513191.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.243283333333,-0.179735816558,-0.403524281904,2288.54759602,31512988.432,1.75053214336,1.4329653123,2.87330025338 +31513314,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.423988095,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.895827984,260.129909265,276.912421296,271.557571296,894.0,296.15,77777.0,31513314.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.243966666667,-0.186110385195,-0.403522560669,2288.55653806,31513111.394,1.75690671199,1.46557660756,2.8953758446 +31513437,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.371517857,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.890603275,260.124351562,276.908340278,271.559721801,894.0,296.15,77777.0,31513437.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.24465,-0.192484953832,-0.403520839434,2288.56548011,31513234.3559,1.76328128063,1.49818790283,2.91745143581 +31513560,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.321666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.884902779,260.123404605,276.9025,271.56053582,894.0,296.15,77777.0,31513560.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.245333333333,-0.198905258098,-0.40351911729,2288.57442215,31513357.3178,1.7697015849,1.53025378271,2.94017454955 +31513683,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.274565476,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.878702706,260.127298931,276.8948125,271.559946529,894.0,296.15,77777.0,31513683.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.246016666667,-0.205373584776,-0.40351739419,2288.5833642,31513480.2798,1.77616991157,1.56174697643,2.96357756194 +31513806,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.227464286,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.872502634,260.131193256,276.887125,271.559357238,894.0,296.15,77777.0,31513806.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.2467,-0.211841911454,-0.403515671091,2288.59230624,31513603.2417,1.78263823825,1.59324017014,2.98698057433 +31513929,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.180363095,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.866302562,260.135087582,276.8794375,271.558767948,894.0,296.15,77777.0,31513929.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.247383333333,-0.218310238131,-0.403513947992,2288.60124828,31513726.2036,1.78910656493,1.62473336386,3.01038358671 +31514052,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.133261905,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.86010249,260.138981908,276.87175,271.558178657,894.0,296.15,77777.0,31514052.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.248066666667,-0.224778564809,-0.403512224892,2288.61019033,31513849.1656,1.79557489161,1.65622655757,3.0337865991 +31514175,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.086160714,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.853902417,260.142876233,276.8640625,271.557589366,894.0,296.15,77777.0,31514175.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.24875,-0.231246891487,-0.403510501793,2288.61913237,31513972.1275,1.80204321828,1.68771975129,3.05718961149 +31514298,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.039059524,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,258.847702345,260.146770559,276.856375,271.557000075,894.0,296.15,77777.0,31514298.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.249433333333,-0.237715218164,-0.403508778694,2288.62807442,31514095.0895,1.80851154496,1.71921294501,3.08059262387 +31514421,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.992163826,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.841546001,260.153745614,276.8479,271.555850223,894.0,296.15,77777.0,31514421.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.250122135417,-0.244197773348,-0.403507055276,2288.63701646,31514218.0514,1.81499410014,1.75041979564,3.10913626126 +31514544,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.946266234,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.83560205,260.175684211,276.8356,271.551977643,894.0,296.15,77777.0,31514544.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.2508375,-0.250749438415,-0.403505330312,2288.6459585,31514341.0133,1.82154576521,1.78023583703,3.16264864865 +31514667,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.900368642,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.829658099,260.197622807,276.8233,271.548105063,894.0,296.15,77777.0,31514667.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.251552864583,-0.257301103483,-0.403503605349,2288.65490055,31514463.9753,1.82809743028,1.81005187842,3.21616103603 +31514790,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.85447105,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.823714147,260.219561404,276.811,271.544232484,894.0,296.15,77777.0,31514790.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.252268229167,-0.263852768551,-0.403501880385,2288.66384259,31514586.9372,1.83464909535,1.83986791981,3.26967342342 +31514913,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.808573458,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.817770196,260.2415,276.7987,271.540359904,894.0,296.15,77777.0,31514913.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.25298359375,-0.270404433618,-0.403500155422,2288.67278464,31514709.8992,1.84120076041,1.8696839612,3.32318581081 +31515036,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.762675866,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.811826245,260.263438597,276.7864,271.536487324,894.0,296.15,77777.0,31515036.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.253698958333,-0.276956098686,-0.403498430458,2288.68172668,31514832.8611,1.84775242548,1.89950000258,3.3766981982 +31515159,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.716778274,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.805882294,260.285377193,276.7741,271.532614745,894.0,296.15,77777.0,31515159.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.254414322917,-0.283507763754,-0.403496705494,2288.69066872,31514955.823,1.85430409055,1.92931604397,3.43021058558 +31515282,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.670880682,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.799938343,260.30731579,276.7618,271.528742165,894.0,296.15,77777.0,31515282.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.2551296875,-0.290059428821,-0.403494980531,2288.69961077,31515078.785,1.86085575562,1.95913208536,3.48372297297 +31515405,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.630806953,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.798185887,260.333399123,276.75287037,271.527510867,894.0,296.15,77777.0,31515405.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.25586328125,-0.296673759368,-0.403493253976,2288.70855281,31515201.7469,1.86747008616,1.98894812675,3.56490427928 +31515528,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.591731602,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.797151974,260.360192983,276.744518519,271.526732361,894.0,296.15,77777.0,31515528.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.2566,-0.303298832569,-0.403491527148,2288.71749486,31515324.7088,1.87409515936,2.01876416814,3.65082882883 +31515651,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.55265625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.796118061,260.386986842,276.736166667,271.525953855,894.0,296.15,77777.0,31515651.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.25733671875,-0.30992390577,-0.40348980032,2288.7264369,31515447.6708,1.88072023256,2.04858020953,3.73675337838 +31515774,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.513580898,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.795084148,260.413780702,276.727814815,271.525175348,894.0,296.15,77777.0,31515774.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.2580734375,-0.316548978971,-0.403488073492,2288.73537895,31515570.6327,1.88734530576,2.07839625091,3.82267792793 +31515897,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.474505546,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.794050235,260.440574561,276.719462963,271.524396842,894.0,296.15,77777.0,31515897.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.25881015625,-0.323174052172,-0.403486346665,2288.74432099,31515693.5947,1.89397037897,2.1082122923,3.90860247748 +31516020,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.435430195,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.793016322,260.467368421,276.711111111,271.523618336,894.0,296.15,77777.0,31516020.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.259546875,-0.329799125373,-0.403484619837,2288.75326304,31515816.5566,1.90059545217,2.13802833369,3.99452702703 +31516143,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.396354843,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.791982408,260.49416228,276.702759259,271.522839829,894.0,296.15,77777.0,31516143.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.26028359375,-0.336424198573,-0.403482893009,2288.76220509,31515939.5185,1.90722052537,2.16784437508,4.08045157658 +31516266,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.361743777,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.788278989,260.517048245,276.692614815,271.520502187,894.0,296.15,77777.0,31516266.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.260997395833,-0.343083530428,-0.403481165181,2288.77114713,31516062.4805,1.91387985722,2.19766041647,4.16013288288 +31516389,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.33098823,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.782270086,260.53655921,276.680922222,271.516818017,894.0,296.15,77777.0,31516389.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.26169140625,-0.349772449303,-0.403479436489,2288.78008918,31516185.4424,1.9205687761,2.22747645786,4.2344222973 +31516512,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.300232684,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.776261184,260.556070175,276.66922963,271.513133848,894.0,296.15,77777.0,31516512.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.262385416667,-0.356461368177,-0.403477707797,2288.78903122,31516308.4044,1.92725769497,2.25729249924,4.30871171171 +31516635,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.269477137,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.770252281,260.57558114,276.657537037,271.509449678,894.0,296.15,77777.0,31516635.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.263079427083,-0.363150287051,-0.403475979106,2288.79797327,31516431.3663,1.93394661385,2.28710854063,4.38300112613 +31516758,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.238721591,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.764243379,260.595092105,276.645844444,271.505765509,894.0,296.15,77777.0,31516758.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.2637734375,-0.369839205925,-0.403474250414,2288.80691531,31516554.3283,1.94063553272,2.31692458202,4.45729054054 +31516881,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.207966044,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.758234477,260.61460307,276.634151852,271.50208134,894.0,296.15,77777.0,31516881.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.264467447917,-0.3765281248,-0.403472521722,2288.81585736,31516677.2902,1.9473244516,2.34674062341,4.53157995495 +31517004,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.177210498,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.752225574,260.634114035,276.622459259,271.49839717,894.0,296.15,77777.0,31517004.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.265161458333,-0.383217043674,-0.40347079303,2288.8247994,31516800.2522,1.95401337047,2.3765566648,4.60586936937 +31517127,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.148609984,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.742957157,260.649361842,276.608433333,271.49274493,894.0,296.15,77777.0,31517127.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.26583203125,-0.38991793006,-0.403469063929,2288.83374145,31516923.2141,1.96071425686,2.40637270619,4.66793581081 +31517250,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.127671808,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.722099355,260.649451754,276.586111111,271.480095102,894.0,296.15,77777.0,31517250.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.266419270833,-0.396661367597,-0.403467333373,2288.84268349,31517046.1761,1.96745769439,2.43618874757,4.68654279279 +31517373,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.106733631,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.701241552,260.649541666,276.563788889,271.467445275,894.0,296.15,77777.0,31517373.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.267006510417,-0.403404805134,-0.403465602817,2288.85162554,31517169.138,1.97420113193,2.46600478896,4.70514977477 +31517496,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.085795455,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.68038375,260.649631579,276.541466666,271.454795447,894.0,296.15,77777.0,31517496.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.26759375,-0.410148242672,-0.403463872261,2288.86056758,31517292.1,1.98094456947,2.49582083035,4.72375675676 +31517619,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.064857278,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.659525948,260.649721491,276.519144444,271.44214562,894.0,296.15,77777.0,31517619.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.268180989583,-0.416891680209,-0.403462141705,2288.86950963,31517415.0619,1.987688007,2.52563687174,4.74236373874 +31517742,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.043919102,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.638668145,260.649811403,276.496822222,271.429495792,894.0,296.15,77777.0,31517742.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.268768229167,-0.423635117747,-0.403460411149,2288.87845167,31517538.0238,1.99443144454,2.55545291313,4.76097072072 +31517865,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.022980925,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.617810343,260.649901316,276.4745,271.416845965,894.0,296.15,77777.0,31517865.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.26935546875,-0.430378555284,-0.403458680594,2288.88739372,31517660.9858,2.00117488208,2.58526895452,4.7795777027 +31517988,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.002042749,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.596952541,260.649991228,276.452177778,271.404196138,894.0,296.15,77777.0,31517988.0,0.693942910593,-1.83015225364,0.1,0.9,101325.0,0.269942708333,-0.437121992822,-0.403456950038,2288.89633577,31517783.9477,2.00791831961,2.6150849959,4.79818468468 +31518111,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.102923769,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,258.633020556,260.637666667,276.417625,271.381099113,894.0,296.15,77777.0,31518111.0,0.693942910593,-1.83015225364,0.107708333333,0.901927083333,101325.0,0.270395052083,-0.443906292443,-0.4034552178,2288.90527781,31517906.9097,2.01470261924,2.64893711119,4.76567763158 +31518234,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.216974432,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,258.675242714,260.624,276.38175,271.356872662,894.0,296.15,77777.0,31518234.0,0.693942910593,-1.83015225364,0.11625,0.9040625,101325.0,0.2708328125,-0.450695009586,-0.40345348538,2288.91421986,31518029.8716,2.02149133638,2.68322555878,4.72764473684 +31518357,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.331025095,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,258.717464871,260.610333333,276.345875,271.332646211,894.0,296.15,77777.0,31518357.0,0.693942910593,-1.83015225364,0.124791666667,0.906197916667,101325.0,0.271270572917,-0.457483726729,-0.40345175296,2288.9231619,31518152.8336,2.02828005353,2.71751400638,4.68961184211 +31518480,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.445075757,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,258.759687029,260.596666667,276.31,271.308419761,894.0,296.15,77777.0,31518480.0,0.693942910593,-1.83015225364,0.133333333333,0.908333333333,101325.0,0.271708333333,-0.464272443873,-0.403450020541,2288.93210395,31518275.7956,2.03506877067,2.75180245398,4.65157894737 +31518603,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.55912642,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,258.801909187,260.583,276.274125,271.28419331,894.0,296.15,77777.0,31518603.0,0.693942910593,-1.83015225364,0.141875,0.91046875,101325.0,0.27214609375,-0.471061161016,-0.403448288121,2288.94104599,31518398.7575,2.04185748781,2.78609090158,4.61354605263 +31518726,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.673177083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,258.844131345,260.569333333,276.23825,271.259966859,894.0,296.15,77777.0,31518726.0,0.693942910593,-1.83015225364,0.150416666667,0.912604166667,101325.0,0.272583854167,-0.477849878159,-0.403446555701,2288.94998804,31518521.7195,2.04864620496,2.82037934917,4.5755131579 +31518849,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.787227746,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,258.886353503,260.555666667,276.202375,271.235740408,894.0,296.15,77777.0,31518849.0,0.693942910593,-1.83015225364,0.158958333333,0.914739583333,101325.0,0.273021614583,-0.484638595303,-0.403444823281,2288.95893008,31518644.6815,2.0554349221,2.85466779677,4.53748026316 +31518972,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.988210227,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,258.952561301,260.542,276.1621,271.207598366,894.0,296.15,77777.0,31518972.0,0.693942910593,-1.83015225364,0.1735,0.918375,101325.0,0.273396875,-0.491448361893,-0.403443089771,2288.96787213,31518767.6434,2.06224468869,2.89070157362,4.48860526316 +31519095,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.250769412,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.035758928,260.528333333,276.118708333,271.176682782,894.0,296.15,77777.0,31519095.0,0.693942910593,-1.83015225364,0.192291666667,0.923072916667,101325.0,0.273727864583,-0.498273038507,-0.403441355487,2288.97681418,31518890.6054,2.06906936531,2.92797162535,4.4320504386 +31519218,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.513328598,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.118956555,260.514666667,276.075316667,271.145767197,894.0,296.15,77777.0,31519218.0,0.693942910593,-1.83015225364,0.211083333333,0.927770833333,101325.0,0.274058854167,-0.505097715122,-0.403439621204,2288.98575622,31519013.5673,2.07589404192,2.96524167709,4.37549561404 +31519341,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.775887784,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.202154182,260.501,276.031925,271.114851613,894.0,296.15,77777.0,31519341.0,0.693942910593,-1.83015225364,0.229875,0.93246875,101325.0,0.27438984375,-0.511922391737,-0.40343788692,2288.99469827,31519136.5293,2.08271871853,3.00251172882,4.31894078947 +31519464,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.038446969,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.285351809,260.487333333,275.988533333,271.083936028,894.0,296.15,77777.0,31519464.0,0.693942910593,-1.83015225364,0.248666666667,0.937166666667,101325.0,0.274720833333,-0.518747068352,-0.403436152637,2289.00364032,31519259.4912,2.08954339515,3.03978178056,4.26238596491 +31519587,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.301006155,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.368549436,260.473666667,275.945141667,271.053020444,894.0,296.15,77777.0,31519587.0,0.693942910593,-1.83015225364,0.267458333333,0.941864583333,101325.0,0.275051822917,-0.525571744967,-0.403434418353,2289.01258236,31519382.4532,2.09636807176,3.07705183229,4.20583114035 +31519710,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.563565341,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.451747063,260.46,275.90175,271.022104859,894.0,296.15,77777.0,31519710.0,0.693942910593,-1.83015225364,0.28625,0.9465625,101325.0,0.2753828125,-0.532396421581,-0.40343268407,2289.02152441,31519505.4151,2.10319274838,3.11432188403,4.14927631579 +31519833,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.821437026,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.525790737,260.446333333,275.857991667,270.990783552,894.0,296.15,77777.0,31519833.0,0.693942910593,-1.83015225364,0.305041666667,0.951260416667,101325.0,0.27570234375,-0.53922817003,-0.403430949286,2289.03046646,31519628.3771,2.11002449682,3.14999205062,4.09166008772 +31519956,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.066524621,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.574869081,260.432666667,275.813233333,270.958355727,894.0,296.15,77777.0,31519956.0,0.693942910593,-1.83015225364,0.323833333333,0.955958333333,101325.0,0.275990625,-0.546079205297,-0.403429213139,2289.0394085,31519751.3391,2.11687553209,3.18129889407,4.03114912281 +31520079,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.311612216,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.623947426,260.419,275.768475,270.925927903,894.0,296.15,77777.0,31520079.0,0.693942910593,-1.83015225364,0.342625,0.96065625,101325.0,0.27627890625,-0.552930240565,-0.403427476992,2289.04835055,31519874.301,2.12372656736,3.21260573753,3.97063815789 +31520202,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.556699811,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.67302577,260.405333333,275.723716667,270.893500078,894.0,296.15,77777.0,31520202.0,0.693942910593,-1.83015225364,0.361416666667,0.965354166667,101325.0,0.2765671875,-0.559781275832,-0.403425740844,2289.0572926,31519997.263,2.13057760263,3.24391258099,3.91012719298 +31520325,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.801787405,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.722104115,260.391666667,275.678958333,270.861072253,894.0,296.15,77777.0,31520325.0,0.693942910593,-1.83015225364,0.380208333333,0.970052083333,101325.0,0.27685546875,-0.5666323111,-0.403424004697,2289.06623464,31520120.225,2.13742863789,3.27521942444,3.84961622807 +31520448,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.046875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.771182459,260.378,275.6342,270.828644428,894.0,296.15,77777.0,31520448.0,0.693942910593,-1.83015225364,0.399,0.97475,101325.0,0.27714375,-0.573483346368,-0.40342226855,2289.07517669,31520243.1869,2.14427967316,3.3065262679,3.78910526316 +31520571,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.291962595,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.820260804,260.364333333,275.589441667,270.796216604,894.0,296.15,77777.0,31520571.0,0.693942910593,-1.83015225364,0.417791666667,0.979447916667,101325.0,0.27743203125,-0.580334381635,-0.403420532402,2289.08411874,31520366.1489,2.15113070843,3.33783311136,3.72859429825 +31520694,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.53705019,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.869339148,260.350666667,275.544683333,270.763788779,894.0,296.15,77777.0,31520694.0,0.693942910593,-1.83015225364,0.436583333333,0.984145833333,101325.0,0.2777203125,-0.587185416903,-0.403418796255,2289.09306078,31520489.1109,2.1579817437,3.36913995481,3.66808333334 +31520817,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.607634943,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.872859131,260.337,275.504475,270.734879463,894.0,296.15,77777.0,31520817.0,0.693942910593,-1.83015225364,0.445625,0.98640625,101325.0,0.27802890625,-0.594051894467,-0.403417058335,2289.10200283,31520612.0728,2.16484822126,3.3862659981,3.61766447369 +31520940,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.669270833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.874042787,260.323333333,275.4645,270.706150583,894.0,296.15,77777.0,31520940.0,0.693942910593,-1.83015225364,0.454166666667,0.988541666667,101325.0,0.278338541667,-0.600919163944,-0.403415320324,2289.11094487,31520735.0348,2.17171549074,3.40266482086,3.5677631579 +31521063,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.730906724,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.875226442,260.309666667,275.424525,270.677421702,894.0,296.15,77777.0,31521063.0,0.693942910593,-1.83015225364,0.462708333333,0.990677083333,101325.0,0.278648177083,-0.607786433421,-0.403413582313,2289.11988692,31520857.9968,2.17858276022,3.41906364363,3.51786184211 +31521186,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.792542614,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.876410098,260.296,275.38455,270.648692822,894.0,296.15,77777.0,31521186.0,0.693942910593,-1.83015225364,0.47125,0.9928125,101325.0,0.2789578125,-0.614653702898,-0.403411844302,2289.12882896,31520980.9587,2.1854500297,3.43546246639,3.46796052632 +31521309,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.854178504,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.877593754,260.282333333,275.344575,270.619963942,894.0,296.15,77777.0,31521309.0,0.693942910593,-1.83015225364,0.479791666667,0.994947916667,101325.0,0.279267447917,-0.621520972375,-0.403410106291,2289.13777101,31521103.9207,2.19231729917,3.45186128916,3.41805921053 +31521432,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.915814394,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.87877741,260.268666667,275.3046,270.591235062,894.0,296.15,77777.0,31521432.0,0.693942910593,-1.83015225364,0.488333333333,0.997083333333,101325.0,0.279577083333,-0.628388241852,-0.403408368281,2289.14671305,31521226.8826,2.19918456865,3.46826011192,3.36815789474 +31521555,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.977450284,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,259.879961066,260.255,275.264625,270.562506182,894.0,296.15,77777.0,31521555.0,0.693942910593,-1.83015225364,0.496875,0.99921875,101325.0,0.27988671875,-0.635255511329,-0.40340663027,2289.1556551,31521349.8446,2.20605183813,3.48465893469,3.31825657895 +31521678,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.914749053,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.856890915,260.241333333,275.227439583,270.535998429,894.0,296.15,77777.0,31521678.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.280216666667,-0.642126130239,-0.403404891077,2289.16459715,31521472.8066,2.21292245704,3.48782234396,3.27417817982 +31521801,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.780314867,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.819828182,260.227666667,275.191863542,270.510772095,894.0,296.15,77777.0,31521801.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.280558333333,-0.648998681515,-0.403403151202,2289.1735392,31521595.7686,2.21979500831,3.48334993775,3.2334591557 +31521924,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.645880682,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.782765449,260.214,275.1562875,270.485545761,894.0,296.15,77777.0,31521924.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.2809,-0.65587123279,-0.403401411328,2289.18248124,31521718.7305,2.22666755959,3.47887753154,3.19274013158 +31522047,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.511446496,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.745702716,260.200333333,275.120711458,270.460319427,894.0,296.15,77777.0,31522047.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.281241666667,-0.662743784066,-0.403399671453,2289.19142329,31521841.6925,2.23354011086,3.47440512533,3.15202110745 +31522170,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.37701231,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.708639983,260.186666667,275.085135417,270.435093094,894.0,296.15,77777.0,31522170.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.281583333333,-0.669616335341,-0.403397931579,2289.20036534,31521964.6545,2.24041266214,3.46993271912,3.11130208333 +31522293,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.242578125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.67157725,260.173,275.049559375,270.40986676,894.0,296.15,77777.0,31522293.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.281925,-0.676488886617,-0.403396191704,2289.20930739,31522087.6165,2.24728521341,3.46546031291,3.07058305921 +31522416,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.108143939,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.634514518,260.159333333,275.013983333,270.384640426,894.0,296.15,77777.0,31522416.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.282266666667,-0.683361437892,-0.40339445183,2289.21824944,31522210.5785,2.25415776469,3.4609879067,3.02986403509 +31522539,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.954320549,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.597580953,260.145666667,274.978542708,270.359482384,894.0,296.15,77777.0,31522539.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.282608333333,-0.69023180449,-0.403392711365,2289.22719148,31522333.5404,2.26102813129,3.4517885671,2.98916639254 +31522662,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.758735795,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.560925599,260.132,274.94339375,270.334471433,894.0,296.15,77777.0,31522662.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.28295,-0.697097465626,-0.403390969627,2289.23613353,31522456.5024,2.26789379242,3.4324081402,2.94851480263 +31522785,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.563151042,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.524270244,260.118333333,274.908244792,270.309460482,894.0,296.15,77777.0,31522785.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.283291666667,-0.703963126762,-0.403389227889,2289.24507558,31522579.4644,2.27475945356,3.4130277133,2.90786321272 +31522908,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.367566288,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.487614889,260.104666667,274.873095833,270.28444953,894.0,296.15,77777.0,31522908.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.283633333333,-0.710828787898,-0.403387486151,2289.25401762,31522702.4263,2.28162511469,3.3936472864,2.86721162281 +31523031,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.171981534,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.450959534,260.091,274.837946875,270.259438579,894.0,296.15,77777.0,31523031.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.283975,-0.717694449034,-0.403385744413,2289.26295967,31522825.3883,2.28849077583,3.3742668595,2.82656003289 +31523154,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.97639678,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.41430418,260.077333333,274.802797917,270.234427628,894.0,296.15,77777.0,31523154.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.284316666667,-0.724560110171,-0.403384002675,2289.27190172,31522948.3503,2.29535643697,3.35488643259,2.78590844298 +31523277,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.780812027,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.377648825,260.063666667,274.767648958,270.209416676,894.0,296.15,77777.0,31523277.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.284658333333,-0.731425771307,-0.403382260937,2289.28084376,31523071.3122,2.3022220981,3.33550600569,2.74525685307 +31523400,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.585227273,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.34099347,260.05,274.7325,270.184405725,894.0,296.15,77777.0,31523400.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.285,-0.738291432443,-0.403380519199,2289.28978581,31523194.2742,2.30908775924,3.31612557879,2.70460526316 +31523523,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.383818656,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.30547099,260.036333333,274.698546875,270.160214268,894.0,296.15,77777.0,31523523.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.285341666667,-0.745136295975,-0.403378775598,2289.29872786,31523317.2362,2.31593262277,3.29078194361,2.66705564693 +31523646,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.182410038,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.269948509,260.022666667,274.66459375,270.136022812,894.0,296.15,77777.0,31523646.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.285683333333,-0.751981159507,-0.403377031996,2289.30766991,31523440.1982,2.3227774863,3.26543830843,2.6295060307 +31523769,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.981001421,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.234426029,260.009,274.630640625,270.111831355,894.0,296.15,77777.0,31523769.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.286025,-0.758826023038,-0.403375288395,2289.31661195,31523563.1602,2.32962234983,3.24009467325,2.59195641447 +31523892,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.779592803,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.198903549,259.995333333,274.5966875,270.087639899,894.0,296.15,77777.0,31523892.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.286366666667,-0.76567088657,-0.403373544794,2289.325554,31523686.1222,2.33646721336,3.21475103807,2.55440679824 +31524015,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.578184186,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.163381068,259.981666667,274.562734375,270.063448442,894.0,296.15,77777.0,31524015.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.286708333333,-0.772515750102,-0.403371801193,2289.33449605,31523809.0842,2.3433120769,3.18940740289,2.51685718202 +31524138,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.376775568,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.127858588,259.968,274.52878125,270.039256985,894.0,296.15,77777.0,31524138.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.28705,-0.779360613634,-0.403370057591,2289.3434381,31523932.0462,2.35015694043,3.16406376771,2.47930756579 +31524261,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.175366951,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.092336107,259.954333333,274.494828125,270.015065529,894.0,296.15,77777.0,31524261.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.287391666667,-0.786205477166,-0.40336831399,2289.35238015,31524055.0082,2.35700180396,3.13872013252,2.44175794956 +31524384,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.007765152,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.058082563,259.940666667,274.462216667,269.991850977,894.0,296.15,77777.0,31524384.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.287733333333,-0.793024980072,-0.403366569116,2289.36132219,31524177.9701,2.36382130686,3.11541271481,2.4083991228 +31524507,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.855859375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,259.024418168,259.927,274.430228125,269.969089987,894.0,296.15,77777.0,31524507.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.288075,-0.799832708403,-0.403364823652,2289.37026424,31524300.9321,2.3706290352,3.09305068376,2.37698601973 +31524630,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.703953599,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,258.990753773,259.913333333,274.398239583,269.946328998,894.0,296.15,77777.0,31524630.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.288416666667,-0.806640436734,-0.403363078187,2289.37920629,31524423.8941,2.37743676353,3.07068865272,2.34557291666 +31524753,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.552047822,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,258.957089377,259.899666667,274.366251042,269.923568008,894.0,296.15,77777.0,31524753.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.288758333333,-0.813448165064,-0.403361332722,2289.38814834,31524546.8561,2.38424449186,3.04832662168,2.31415981359 +31524876,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.400142046,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,258.923424982,259.886,274.3342625,269.900807019,894.0,296.15,77777.0,31524876.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.2891,-0.820255893395,-0.403359587257,2289.39709039,31524669.8181,2.39105222019,3.02596459064,2.28274671052 +31524999,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.248236269,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,258.889760586,259.872333333,274.302273958,269.87804603,894.0,296.15,77777.0,31524999.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.289441666667,-0.827063621726,-0.403357841793,2289.40603243,31524792.78,2.39785994852,3.0036025596,2.25133360746 +31525122,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.096330492,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,258.856096191,259.858666667,274.270285417,269.85528504,894.0,296.15,77777.0,31525122.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.289783333333,-0.833871350056,-0.403356096328,2289.41497448,31524915.742,2.40466767685,2.98124052856,2.21992050439 +31525245,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.962393466,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.82360805,259.84678125,274.2390625,269.833495077,894.0,296.15,77777.0,31525245.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.2901875,-0.840658277611,-0.403354350182,2289.42391653,31525038.704,2.41145460441,2.96051474369,2.191171875 +31525368,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.859602273,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.793158751,259.837983333,274.209166667,269.813388225,894.0,296.15,77777.0,31525368.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.2907,-0.847409150485,-0.403352602854,2289.43285858,31525161.666,2.41820547728,2.94262511886,2.16704166667 +31525491,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.756811079,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.762709451,259.829185417,274.179270833,269.793281373,894.0,296.15,77777.0,31525491.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.2912125,-0.85416002336,-0.403350855526,2289.44180063,31525284.628,2.42495635016,2.92473549403,2.14291145833 +31525614,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.654019886,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.732260151,259.8203875,274.149375,269.773174521,894.0,296.15,77777.0,31525614.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.291725,-0.860910896235,-0.403349108198,2289.45074268,31525407.59,2.43170722303,2.9068458692,2.11878125 +31525737,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.551228693,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.701810851,259.811589583,274.119479167,269.753067669,894.0,296.15,77777.0,31525737.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.2922375,-0.86766176911,-0.403347360871,2289.45968472,31525530.552,2.43845809591,2.88895624436,2.09465104167 +31525860,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.4484375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.671361552,259.802791667,274.089583333,269.732960817,894.0,296.15,77777.0,31525860.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.29275,-0.874412641984,-0.403345613543,2289.46862677,31525653.514,2.44520896878,2.87106661953,2.07052083333 +31525983,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.345646307,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.640912252,259.79399375,274.0596875,269.712853965,894.0,296.15,77777.0,31525983.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.2932625,-0.881163514859,-0.403343866215,2289.47756882,31525776.476,2.45195984166,2.8531769947,2.046390625 +31526106,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.243148674,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.610624217,259.785520833,274.029875,269.692878433,894.0,296.15,77777.0,31526106.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.293786111111,-0.887910422605,-0.403342118797,2289.48651087,31525899.4379,2.4587067494,2.83528736986,2.02253125 +31526229,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.146375473,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.583480841,259.783385417,274.0016875,269.675463634,894.0,296.15,77777.0,31526229.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.294526388889,-0.894580010329,-0.403340369606,2289.49545292,31526022.3999,2.46537633713,2.81739774503,2.003953125 +31526352,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.049602273,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.556337465,259.78125,273.9735,269.658048836,894.0,296.15,77777.0,31526352.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.295266666667,-0.901249598053,-0.403338620415,2289.50439496,31526145.3619,2.47204592485,2.7995081202,1.985375 +31526475,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.952829072,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.529194089,259.779114583,273.9453125,269.640634038,894.0,296.15,77777.0,31526475.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.296006944445,-0.907919185777,-0.403336871224,2289.51333701,31526268.3239,2.47871551257,2.78161849537,1.966796875 +31526598,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.856055871,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.502050713,259.776979167,273.917125,269.62321924,894.0,296.15,77777.0,31526598.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.296747222222,-0.914588773501,-0.403335122033,2289.52227906,31526391.2859,2.4853851003,2.76372887053,1.94821875 +31526721,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.75928267,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.474907337,259.77484375,273.8889375,269.605804441,894.0,296.15,77777.0,31526721.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.2974875,-0.921258361225,-0.403333372842,2289.53122111,31526514.2479,2.49205468802,2.7458392457,1.929640625 +31526844,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.662509469,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.447763961,259.772708333,273.86075,269.588389643,894.0,296.15,77777.0,31526844.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.298227777778,-0.927927948949,-0.403331623651,2289.54016316,31526637.2099,2.49872427574,2.72794962087,1.9110625 +31526967,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.565736269,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.420620585,259.770572917,273.8325625,269.570974845,894.0,296.15,77777.0,31526967.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.298968055556,-0.934597536673,-0.40332987446,2289.5491052,31526760.1719,2.50539386347,2.71005999603,1.892484375 +31527090,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.466974432,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.395037846,259.7699375,273.805625,269.554710651,894.0,296.15,77777.0,31527090.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.29975,-0.941184957526,-0.403328123906,2289.55804725,31526883.1339,2.51198128432,2.6921703712,1.87703125 +31527213,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.367483428,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.370027339,259.769852083,273.779145833,269.538868346,894.0,296.15,77777.0,31527213.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.300547222222,-0.947742250526,-0.403326372852,2289.5669893,31527006.0959,2.51853857732,2.67428074637,1.86272395833 +31527336,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.267992424,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.345016833,259.769766667,273.752666667,269.523026041,894.0,296.15,77777.0,31527336.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.301344444445,-0.954299543527,-0.403324621798,2289.57593135,31527129.0579,2.52509587032,2.65639112153,1.84841666667 +31527459,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.16850142,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.320006327,259.76968125,273.7261875,269.507183736,894.0,296.15,77777.0,31527459.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.302141666667,-0.960856836527,-0.403322870744,2289.5848734,31527252.0199,2.53165316332,2.6385014967,1.834109375 +31527582,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.069010417,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.294995821,259.769595833,273.699708333,269.491341431,894.0,296.15,77777.0,31527582.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.302938888889,-0.967414129528,-0.403321119689,2289.59381544,31527374.9819,2.53821045632,2.62061187187,1.81980208333 +31527705,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.969519413,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.269985315,259.769510417,273.673229167,269.475499126,894.0,296.15,77777.0,31527705.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.303736111111,-0.973971422528,-0.403319368635,2289.60275749,31527497.9439,2.54476774932,2.60272224703,1.80549479167 +31527828,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.870028409,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.244974808,259.769425,273.64675,269.45965682,894.0,296.15,77777.0,31527828.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.304533333333,-0.980528715529,-0.403317617581,2289.61169954,31527620.9058,2.55132504232,2.5848326222,1.7911875 +31527951,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.765788353,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.220363467,259.768277083,273.620979167,269.444023789,894.0,296.15,77777.0,31527951.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.305283333333,-0.987022760635,-0.403315865755,2289.62064159,31527743.8678,2.55781908743,2.56694299737,1.77811979167 +31528074,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.65484375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.196315652,259.765629167,273.596208333,269.428686204,894.0,296.15,77777.0,31528074.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.305966666667,-0.993427514595,-0.403314112838,2289.62958364,31527866.8298,2.56422384139,2.54905337254,1.76680208333 +31528197,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.543899148,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.172267837,259.76298125,273.5714375,269.413348619,894.0,296.15,77777.0,31528197.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.30665,-0.999832268555,-0.403312359921,2289.63852569,31527989.7918,2.57062859535,2.5311637477,1.755484375 +31528320,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.432954546,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.148220022,259.760333333,273.546666667,269.398011034,894.0,296.15,77777.0,31528320.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.307333333333,-1.00623702251,-0.403310607004,2289.64746774,31528112.7538,2.57703334931,2.51327412287,1.74416666667 +31528443,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.322009943,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.124172207,259.757685417,273.521895833,269.382673449,894.0,296.15,77777.0,31528443.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.308016666667,-1.01264177647,-0.403308854087,2289.65640979,31528235.7158,2.58343810327,2.49538449804,1.73284895833 +31528566,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.211065341,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.100124392,259.7550375,273.497125,269.367335864,894.0,296.15,77777.0,31528566.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.3087,-1.01904653043,-0.40330710117,2289.66535184,31528358.6778,2.58984285723,2.4774948732,1.72153125 +31528689,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.100120739,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.076076578,259.752389583,273.472354167,269.351998278,894.0,296.15,77777.0,31528689.0,0.693942910593,-1.83015225364,0.5,1.0,101325.0,0.309383333333,-1.02545128439,-0.403305348254,2289.67429389,31528481.6398,2.59624761119,2.45960524837,1.71021354167 +31528812,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.9871875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.051216201,259.74945,273.44775,269.336679047,894.0,296.15,77704.0823958,31528812.0,0.693942910593,-1.83015225364,0.499822916667,0.999645833333,101325.0,0.31005,-1.03183596226,-0.403303595155,2289.68323594,31528604.6018,2.60263228906,2.44171562354,1.69914166667 +31528935,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.855859375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.018839629,259.7438125,273.4246875,269.321529583,894.0,296.15,76956.6769531,31528935.0,0.693942910593,-1.83015225364,0.4980078125,0.996015625,101325.0,0.3105625,-1.03803493629,-0.403301840375,2289.69217798,31528727.5638,2.60883126309,2.42382599871,1.69034375 +31529058,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.72453125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.986463056,259.738175,273.401625,269.306380119,894.0,296.15,76209.2715104,31529058.0,0.693942910593,-1.83015225364,0.496192708333,0.992385416667,101325.0,0.311075,-1.04423391032,-0.403300085595,2289.70112003,31528850.5258,2.61503023712,2.40593637387,1.68154583333 +31529181,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.593203125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.954086484,259.7325375,273.3785625,269.291230656,894.0,296.15,75461.8660677,31529181.0,0.693942910593,-1.83015225364,0.494377604167,0.988755208333,101325.0,0.3115875,-1.05043288434,-0.403298330815,2289.71006208,31528973.4878,2.62122921114,2.38804674904,1.67274791667 +31529304,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.461875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.921709911,259.7269,273.3555,269.276081192,894.0,296.15,74714.460625,31529304.0,0.693942910593,-1.83015225364,0.4925625,0.985125,101325.0,0.3121,-1.05663185837,-0.403296576035,2289.71900413,31529096.4498,2.62742818517,2.37015712421,1.66395 +31529427,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.330546875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.889333339,259.7212625,273.3324375,269.260931728,894.0,296.15,73967.0551823,31529427.0,0.693942910593,-1.83015225364,0.490747395833,0.981494791667,101325.0,0.3126125,-1.06283083239,-0.403294821255,2289.72794618,31529219.4118,2.63362715919,2.35226749937,1.65515208333 +31529550,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.19921875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.856956766,259.715625,273.309375,269.245782265,894.0,296.15,73219.6497396,31529550.0,0.693942910593,-1.83015225364,0.488932291667,0.977864583333,101325.0,0.313125,-1.06902980642,-0.403293066476,2289.73688823,31529342.3738,2.63982613322,2.33437787454,1.64635416667 +31529673,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.067890625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.824580193,259.7099875,273.2863125,269.230632801,894.0,296.15,72472.2442969,31529673.0,0.693942910593,-1.83015225364,0.4871171875,0.974234375,101325.0,0.3136375,-1.07522878044,-0.403291311696,2289.74583028,31529465.3358,2.64602510724,2.31648824971,1.63755625 +31529796,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.926006944,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.784535599,259.703905556,273.264583333,269.215937485,894.0,296.15,70969.9271875,31529796.0,0.693942910593,-1.83015225364,0.48346875,0.9669375,101325.0,0.314061111111,-1.08121135756,-0.403289555462,2289.75477233,31529588.2979,2.65200768436,2.29859862487,1.63129166667 +31529919,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.781154514,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.742334373,259.697698611,273.243229167,269.201369897,894.0,296.15,69255.2911719,31529919.0,0.693942910593,-1.83015225364,0.4793046875,0.958609375,101325.0,0.314459722222,-1.08713307304,-0.403287798819,2289.76371438,31529711.2599,2.65792939984,2.28070900004,1.62573958333 +31530042,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.636302083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.700133147,259.691491667,273.221875,269.18680231,894.0,296.15,67540.6551562,31530042.0,0.693942910593,-1.83015225364,0.475140625,0.95028125,101325.0,0.314858333333,-1.09305478852,-0.403286042177,2289.77265643,31529834.2219,2.66385111532,2.26281937521,1.6201875 +31530165,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.491449653,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.657931922,259.685284722,273.200520833,269.172234722,894.0,296.15,65826.0191406,31530165.0,0.693942910593,-1.83015225364,0.4709765625,0.941953125,101325.0,0.315256944445,-1.098976504,-0.403284285534,2289.78159848,31529957.1839,2.6697728308,2.24492975038,1.61463541667 +31530288,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.346597222,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.615730696,259.679077778,273.179166667,269.157667135,894.0,296.15,64111.383125,31530288.0,0.693942910593,-1.83015225364,0.4668125,0.933625,101325.0,0.315655555556,-1.10489821949,-0.403282528892,2289.79054053,31530080.1459,2.67569454628,2.22704012554,1.60908333333 +31530411,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.201744792,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.57352947,259.672870833,273.1578125,269.143099548,894.0,296.15,62396.7471094,31530411.0,0.693942910593,-1.83015225364,0.4626484375,0.925296875,101325.0,0.316054166667,-1.11081993497,-0.403280772249,2289.79948258,31530203.108,2.68161626176,2.20915050071,1.60353125 +31530534,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.056892361,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.531328244,259.666663889,273.136458333,269.12853196,894.0,296.15,60682.1110937,31530534.0,0.693942910593,-1.83015225364,0.458484375,0.91696875,101325.0,0.316452777778,-1.11674165045,-0.403279015607,2289.80842463,31530326.07,2.68753797724,2.19126087588,1.59797916667 +31530657,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.912699653,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.48905561,259.660034722,273.115895833,269.114247244,894.0,296.15,58885.9789323,31530657.0,0.693942910593,-1.83015225364,0.454122395833,0.908244791667,101325.0,0.316798611111,-1.12249007337,-0.403277258101,2289.81736668,31530449.032,2.69328640016,2.17337125104,1.59416875 +31530780,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.769270834,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.446700291,259.652916666,273.09625,269.100290063,894.0,296.15,56995.4828125,31530780.0,0.693942910593,-1.83015225364,0.44953125,0.8990625,101325.0,0.317083333334,-1.12803784175,-0.403275499596,2289.82630873,31530571.994,2.69883416854,2.15548162621,1.592375 +31530903,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.625842014,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.404344973,259.645798611,273.076604167,269.086332882,894.0,296.15,55104.9866927,31530903.0,0.693942910593,-1.83015225364,0.444940104167,0.889880208333,101325.0,0.317368055556,-1.13358561013,-0.40327374109,2289.83525078,31530694.956,2.70438193692,2.13759200138,1.59058125 +31531026,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.482413195,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.361989654,259.638680555,273.056958333,269.072375701,894.0,296.15,53214.4905729,31531026.0,0.693942910593,-1.83015225364,0.440348958333,0.880697916667,101325.0,0.317652777778,-1.1391333785,-0.403271982585,2289.84419283,31530817.918,2.7099297053,2.11970237654,1.5887875 +31531149,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.338984375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.319634336,259.6315625,273.0373125,269.05841852,894.0,296.15,51323.9944531,31531149.0,0.693942910593,-1.83015225364,0.4357578125,0.871515625,101325.0,0.3179375,-1.14468114688,-0.40327022408,2289.85313488,31530940.88,2.71547747368,2.10181275171,1.58699375 +31531272,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.195555556,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.277279018,259.624444444,273.017666667,269.04446134,894.0,296.15,49433.4983333,31531272.0,0.693942910593,-1.83015225364,0.431166666667,0.862333333333,101325.0,0.318222222222,-1.15022891526,-0.403268465574,2289.86207693,31531063.842,2.72102524206,2.08392312688,1.5852 +31531395,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.052126736,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.234923699,259.617326389,272.998020833,269.030504159,894.0,296.15,47543.0022135,31531395.0,0.693942910593,-1.83015225364,0.426575520833,0.853151041667,101325.0,0.318506944444,-1.15577668364,-0.403266707069,2289.87101898,31531186.804,2.72657301043,2.06603350205,1.58340625 +31531518,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.91109375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.193819672,259.610025,272.978625,269.016639927,894.0,296.15,45742.5807812,31531518.0,0.693942910593,-1.83015225364,0.422203125,0.84440625,101325.0,0.318775,-1.16125067464,-0.403264948291,2289.87996103,31531309.766,2.73204700144,2.04814387721,1.5822375 +31531641,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.784036458,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.160014847,259.601654167,272.9606875,269.003317901,894.0,296.15,44467.595026,31531641.0,0.693942910593,-1.83015225364,0.419106770833,0.838213541667,101325.0,0.318945833333,-1.16629429767,-0.403263187923,2289.88890308,31531432.7281,2.73709062447,2.03025425238,1.58471458333 +31531764,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.656979167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.126210021,259.593283333,272.94275,268.989995875,894.0,296.15,43192.6092708,31531764.0,0.693942910593,-1.83015225364,0.416010416667,0.832020833333,101325.0,0.319116666667,-1.17133792069,-0.403261427555,2289.89784513,31531555.6901,2.74213424749,2.01236462755,1.58719166667 +31531887,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.529921875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.092405196,259.5849125,272.9248125,268.976673849,894.0,296.15,41917.6235156,31531887.0,0.693942910593,-1.83015225364,0.4129140625,0.825828125,101325.0,0.3192875,-1.17638154372,-0.403259667187,2289.90678718,31531678.6521,2.74717787052,1.99447500271,1.58966875 +31532010,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.402864583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.05860037,259.576541667,272.906875,268.963351823,894.0,296.15,40642.6377604,31532010.0,0.693942910593,-1.83015225364,0.409817708333,0.819635416667,101325.0,0.319458333333,-1.18142516674,-0.403257906819,2289.91572923,31531801.6141,2.75222149354,1.97658537788,1.59214583333 +31532133,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.275807292,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,257.024795545,259.568170833,272.8889375,268.950029797,894.0,296.15,39367.6520052,31532133.0,0.693942910593,-1.83015225364,0.406721354167,0.813442708333,101325.0,0.319629166667,-1.18646878977,-0.403256146451,2289.92467128,31531924.5761,2.75726511656,1.95869575305,1.59462291667 +31532256,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.14875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,256.990990719,259.5598,272.871,268.93670777,894.0,296.15,38092.66625,31532256.0,0.693942910593,-1.83015225364,0.403625,0.80725,101325.0,0.3198,-1.19151241279,-0.403254386084,2289.93361333,31532047.5382,2.76230873959,1.94080612821,1.5971 +31532379,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.021692708,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,256.957185894,259.551429167,272.8530625,268.923385744,894.0,296.15,36817.6804948,31532379.0,0.693942910593,-1.83015225364,0.400528645833,0.801057291667,101325.0,0.319970833333,-1.19655603582,-0.403252625716,2289.94255538,31532170.5002,2.76735236261,1.92291650338,1.59957708333 +31532502,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,246.916770833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.931449353,259.541322917,272.836541667,268.910216393,894.0,296.15,36162.494375,31532502.0,0.693942910593,-1.83015225364,0.3989375,0.797875,101325.0,0.319982291667,-1.20103979581,-0.403250863803,2289.95149743,31532293.4622,2.7718361226,1.91012651246,1.60683541667 +31532625,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,246.81640625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.90737393,259.530859375,272.8203125,268.897078475,894.0,296.15,35634.9140625,31532625.0,0.693942910593,-1.83015225364,0.39765625,0.7953125,101325.0,0.3199609375,-1.20540828989,-0.403249101573,2289.96043948,31532416.4242,2.77620461668,1.89838644616,1.615078125 +31532748,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,246.716041667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.883298507,259.520395833,272.804083333,268.883940557,894.0,296.15,35107.33375,31532748.0,0.693942910593,-1.83015225364,0.396375,0.79275,101325.0,0.319939583333,-1.20977678396,-0.403247339342,2289.96938153,31532539.3862,2.78057311075,1.88664637986,1.62332083333 +31532871,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,246.615677083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.859223083,259.509932292,272.787854167,268.870802639,894.0,296.15,34579.7534375,31532871.0,0.693942910593,-1.83015225364,0.39509375,0.7901875,101325.0,0.319918229167,-1.21414527804,-0.403245577112,2289.97832358,31532662.3483,2.78494160483,1.87490631357,1.63156354167 +31532994,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,246.5153125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.83514766,259.49946875,272.771625,268.857664721,894.0,296.15,34052.173125,31532994.0,0.693942910593,-1.83015225364,0.3938125,0.787625,101325.0,0.319896875,-1.21851377211,-0.403243814881,2289.98726563,31532785.3103,2.7893100989,1.86316624727,1.63980625 +31533117,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,246.414947917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.811072237,259.489005208,272.755395833,268.844526803,894.0,296.15,33524.5928125,31533117.0,0.693942910593,-1.83015225364,0.39253125,0.7850625,101325.0,0.319875520833,-1.22288226619,-0.403242052651,2289.99620768,31532908.2723,2.79367859298,1.85142618097,1.64804895833 +31533240,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,246.314583333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.786996814,259.478541667,272.739166667,268.831388885,894.0,296.15,32997.0125,31533240.0,0.693942910593,-1.83015225364,0.39125,0.7825,101325.0,0.319854166667,-1.22725076026,-0.403240290421,2290.00514973,31533031.2343,2.79804708705,1.83968611468,1.65629166667 +31533363,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,246.226614583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.76552965,259.466838542,272.7238125,268.818205284,894.0,296.15,32649.5815625,31533363.0,0.693942910593,-1.83015225364,0.39040625,0.7808125,101325.0,0.319708854167,-1.23116512938,-0.403238527236,2290.01409178,31533154.1964,2.80196145617,1.83310022383,1.667815625 +31533486,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,246.150451389,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.746546542,259.453954861,272.709291667,268.804978173,894.0,296.15,32473.7214583,31533486.0,0.693942910593,-1.83015225364,0.389979166667,0.779958333333,101325.0,0.319445486111,-1.23464699853,-0.403236763143,2290.02303384,31533277.1584,2.80544332532,1.8314230715,1.68246458333 +31533609,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,246.074288194,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.727563434,259.441071181,272.694770833,268.791751063,894.0,296.15,32297.8613542,31533609.0,0.693942910593,-1.83015225364,0.389552083333,0.779104166667,101325.0,0.319182118056,-1.23812886769,-0.403234999051,2290.03197589,31533400.1204,2.80892519448,1.82974591917,1.69711354167 +31533732,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.998125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.708580326,259.4281875,272.68025,268.778523952,894.0,296.15,32122.00125,31533732.0,0.693942910593,-1.83015225364,0.389125,0.77825,101325.0,0.31891875,-1.24161073684,-0.403233234958,2290.04091794,31533523.0825,2.81240706364,1.82806876685,1.7117625 +31533855,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.921961805,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.689597218,259.41530382,272.665729167,268.765296842,894.0,296.15,31946.1411458,31533855.0,0.693942910593,-1.83015225364,0.388697916667,0.777395833333,101325.0,0.318655381945,-1.245092606,-0.403231470865,2290.04985999,31533646.0445,2.81588893279,1.82639161452,1.72641145833 +31533978,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.845798611,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.67061411,259.402420139,272.651208333,268.752069731,894.0,296.15,31770.2810417,31533978.0,0.693942910593,-1.83015225364,0.388270833333,0.776541666667,101325.0,0.318392013889,-1.24857447515,-0.403229706772,2290.05880204,31533769.0065,2.81937080195,1.82471446219,1.74106041667 +31534101,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.769635416,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.651631002,259.389536459,272.6366875,268.738842621,894.0,296.15,31594.4209375,31534101.0,0.693942910593,-1.83015225364,0.38784375,0.7756875,101325.0,0.318128645834,-1.25205634431,-0.40322794268,2290.06774409,31533891.9686,2.82285267111,1.82303730986,1.755709375 +31534224,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.697361111,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.633665487,259.376263889,272.6225,268.725652485,894.0,296.15,31487.1891667,31534224.0,0.693942910593,-1.83015225364,0.387583333333,0.775166666667,101325.0,0.317826388889,-1.25531989983,-0.403226178223,2290.07668614,31534014.9306,2.82611622663,1.82266915447,1.77145833333 +31534347,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.641128472,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.619897543,259.361387153,272.6096875,268.712614871,894.0,296.15,31663.0492708,31534347.0,0.693942910593,-1.83015225364,0.388010416667,0.776020833333,101325.0,0.317363715278,-1.25768291164,-0.403224412268,2290.08562819,31534137.8926,2.82847923844,1.82770061146,1.79174479167 +31534470,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.584895833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.606129599,259.346510417,272.596875,268.699577257,894.0,296.15,31838.909375,31534470.0,0.693942910593,-1.83015225364,0.3884375,0.776875,101325.0,0.316901041667,-1.26004592345,-0.403222646313,2290.09457024,31534260.8546,2.83084225025,1.83273206844,1.81203125 +31534593,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.528663194,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.592361655,259.331633681,272.5840625,268.686539643,894.0,296.15,32014.7694792,31534593.0,0.693942910593,-1.83015225364,0.388864583333,0.777729166667,101325.0,0.316438368056,-1.26240893526,-0.403220880358,2290.1035123,31534383.8167,2.83320526206,1.83776352543,1.83231770833 +31534716,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.472430555,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.578593711,259.316756945,272.57125,268.673502029,894.0,296.15,32190.6295833,31534716.0,0.693942910593,-1.83015225364,0.389291666667,0.778583333333,101325.0,0.315975694445,-1.26477194707,-0.403219114402,2290.11245435,31534506.7787,2.83556827387,1.84279498241,1.85260416667 +31534839,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.416197917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.564825767,259.301880208,272.5584375,268.660464415,894.0,296.15,32366.4896875,31534839.0,0.693942910593,-1.83015225364,0.38971875,0.7794375,101325.0,0.315513020833,-1.26713495887,-0.403217348447,2290.1213964,31534629.7407,2.83793128567,1.8478264394,1.872890625 +31534962,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.359965278,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.551057823,259.287003472,272.545625,268.647426801,894.0,296.15,32542.3497917,31534962.0,0.693942910593,-1.83015225364,0.390145833333,0.780291666667,101325.0,0.315050347222,-1.26949797068,-0.403215582492,2290.13033845,31534752.7027,2.84029429748,1.85285789638,1.89317708333 +31535085,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.303732639,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.537289879,259.272126736,272.5328125,268.634389187,894.0,296.15,32718.2098958,31535085.0,0.693942910593,-1.83015225364,0.390572916667,0.781145833333,101325.0,0.314587673611,-1.27186098249,-0.403213816536,2290.13928051,31534875.6647,2.84265730929,1.85788935336,1.91346354167 +31535208,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.26125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.528171167,259.255875,272.5215,268.621752803,894.0,296.15,33202.8975,31535208.0,0.693942910593,-1.83015225364,0.39175,0.7835,101325.0,0.3139875,-1.27306337253,-0.403212048946,2290.14822256,31534998.6268,2.84385969933,1.86586605346,1.938025 +31535331,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.220677083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.519698181,259.239432292,272.510395833,268.609172146,894.0,296.15,33730.4778125,31535331.0,0.693942910593,-1.83015225364,0.39303125,0.7860625,101325.0,0.313368229167,-1.27410456511,-0.403210281129,2290.15716461,31535121.5888,2.84490089191,1.8742518151,1.96318020833 +31535454,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.180104167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.511225196,259.222989583,272.499291667,268.596591488,894.0,296.15,34258.058125,31535454.0,0.693942910593,-1.83015225364,0.3943125,0.788625,101325.0,0.312748958333,-1.27514575769,-0.403208513311,2290.16610666,31535244.5508,2.84594208449,1.88263757674,1.98833541667 +31535577,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.13953125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.50275221,259.206546875,272.4881875,268.584010831,894.0,296.15,34785.6384375,31535577.0,0.693942910593,-1.83015225364,0.39559375,0.7911875,101325.0,0.3121296875,-1.27618695027,-0.403206745493,2290.17504871,31535367.5129,2.84698327706,1.89102333838,2.013490625 +31535700,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.098958333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.494279225,259.190104167,272.477083333,268.571430173,894.0,296.15,35313.21875,31535700.0,0.693942910593,-1.83015225364,0.396875,0.79375,101325.0,0.311510416667,-1.27722814285,-0.403204977676,2290.18399076,31535490.4749,2.84802446964,1.89940910002,2.03864583333 +31535823,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.058385417,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.48580624,259.173661458,272.465979167,268.558849516,894.0,296.15,35840.7990625,31535823.0,0.693942910593,-1.83015225364,0.39815625,0.7963125,101325.0,0.310891145833,-1.27826933542,-0.403203209859,2290.19293281,31535613.4369,2.84906566222,1.90779486166,2.06380104167 +31535946,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.0178125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.477333254,259.15721875,272.454875,268.546268858,894.0,296.15,36368.379375,31535946.0,0.693942910593,-1.83015225364,0.3994375,0.798875,101325.0,0.310271875,-1.279310528,-0.403201442041,2290.20187486,31535736.399,2.85010685479,1.9161806233,2.08895625 +31536069,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.0575,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.195966002,265.520125,273.15,270.323753022,894.0,296.15,77777.0,69.0,0.693942910593,-1.83015225364,0.152875,0.356708333333,101325.0,0.51115,-1.27928224685,-0.402885115917,-3.14987088929,-113.833912251,2.85007857365,3.34615251413,2.26054166667 +31536192,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.16,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.246255043,265.556,273.15,270.33603203,894.0,296.15,77777.0,192.0,0.693942910593,-1.83015225364,0.158,0.368666666667,101325.0,0.5132,-1.27885512184,-0.402883301572,-3.14092886575,9.12773793097,2.84965144864,3.35301020365,2.27933333333 +31536315,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.2625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.296544084,265.591875,273.15,270.348311038,894.0,296.15,77777.0,315.0,0.693942910593,-1.83015225364,0.163125,0.380625,101325.0,0.51525,-1.27842799682,-0.402881487227,-3.13198684221,132.089388113,2.84922432362,3.35986789317,2.298125 +31536438,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.365,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.346833126,265.62775,273.15,270.360590046,894.0,296.15,77777.0,438.0,0.693942910593,-1.83015225364,0.16825,0.392583333333,101325.0,0.5173,-1.27800087181,-0.402879672881,-3.12304481868,255.051038296,2.84879719861,3.36672558269,2.31691666667 +31536561,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.4675,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.397122167,265.663625,273.15,270.372869053,894.0,296.15,77777.0,561.0,0.693942910593,-1.83015225364,0.173375,0.404541666667,101325.0,0.51935,-1.27757374679,-0.402877858536,-3.11410279514,378.012688478,2.84837007359,3.3735832722,2.33570833333 +31536684,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.57,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.447411208,265.6995,273.15,270.385148061,894.0,296.15,77777.0,684.0,0.693942910593,-1.83015225364,0.1785,0.4165,101325.0,0.5214,-1.27714662178,-0.402876044191,-3.1051607716,500.97433866,2.84794294858,3.38044096172,2.3545 +31536807,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.6725,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.49770025,265.735375,273.15,270.397427069,894.0,296.15,77777.0,807.0,0.693942910593,-1.83015225364,0.183625,0.428458333333,101325.0,0.52345,-1.27671949676,-0.402874229845,-3.09621874806,623.935988843,2.84751582356,3.38729865124,2.37329166667 +31536930,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.775,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.546831817,265.77125,273.15,270.409699375,894.0,296.15,77777.0,930.0,0.693942910593,-1.83015225364,0.18875,0.440416666667,101325.0,0.5255,-1.27595533308,-0.402872415046,-3.08727672445,746.897639969,2.84675165988,3.39415634076,2.39208333333 +31537053,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.8775,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.592375215,265.807125,273.15,270.421950905,894.0,296.15,77777.0,1053.0,0.693942910593,-1.83015225364,0.193875,0.452375,101325.0,0.52755,-1.27414634951,-0.402870598841,-3.07833470063,869.859294022,2.84494267631,3.40101403028,2.410875 +31537176,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.98,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.637918612,265.843,273.15,270.434202435,894.0,296.15,77777.0,1176.0,0.693942910593,-1.83015225364,0.199,0.464333333333,101325.0,0.5296,-1.27233736594,-0.402868782636,-3.06939267681,992.820948075,2.84313369274,3.4078717198,2.42966666667 +31537299,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.0825,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.68346201,265.878875,273.15,270.446453965,894.0,296.15,77777.0,1299.0,0.693942910593,-1.83015225364,0.204125,0.476291666667,101325.0,0.53165,-1.27052838238,-0.40286696643,-3.06045065299,1115.78260213,2.84132470917,3.41472940932,2.44845833333 +31537422,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.185,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.729005408,265.91475,273.15,270.458705495,894.0,296.15,77777.0,1422.0,0.693942910593,-1.83015225364,0.20925,0.48825,101325.0,0.5337,-1.26871939881,-0.402865150225,-3.05150862917,1238.74425618,2.8395157256,3.42158709884,2.46725 +31537545,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.2875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.774548806,265.950625,273.15,270.470957025,894.0,296.15,77777.0,1545.0,0.693942910593,-1.83015225364,0.214375,0.500208333333,101325.0,0.53575,-1.26691041524,-0.40286333402,-3.04256660535,1361.70591023,2.83770674204,3.42844478836,2.48604166667 +31537668,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.39,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.820092203,265.9865,273.15,270.483208555,894.0,296.15,77777.0,1668.0,0.693942910593,-1.83015225364,0.2195,0.512166666667,101325.0,0.5378,-1.26510143168,-0.402861517814,-3.03362458153,1484.66756429,2.83589775847,3.43530247788,2.50483333333 +31537791,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.4925,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.865635601,266.022375,273.15,270.495460085,894.0,296.15,77777.0,1791.0,0.693942910593,-1.83015225364,0.224625,0.524125,101325.0,0.53985,-1.26329244811,-0.402859701609,-3.02468255771,1607.62921834,2.8340887749,3.4421601674,2.523625 +31537914,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.595,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.90751508,266.05825,273.15,270.507686196,894.0,296.15,77777.0,1914.0,0.693942910593,-1.83015225364,0.22975,0.536083333333,101325.0,0.5419,-1.26035846202,-0.40285788368,-3.01574053362,1730.59087598,2.83115478881,3.44901785692,2.54241666667 +31538037,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.6975,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.949105302,266.094125,273.15,270.519910302,894.0,296.15,77777.0,2037.0,0.693942910593,-1.83015225364,0.234875,0.548041666667,101325.0,0.54395,-1.25733565994,-0.402856065615,-3.00679850952,1853.55253391,2.82813198674,3.45587554644,2.56120833333 +31538160,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.8,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.990695525,266.13,273.15,270.532134407,894.0,296.15,77777.0,2160.0,0.693942910593,-1.83015225364,0.24,0.56,101325.0,0.546,-1.25431285786,-0.40285424755,-2.99785648542,1976.51419184,2.82510918466,3.46273323596,2.58 +31538283,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.9025,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,258.032285747,266.165875,273.15,270.544358512,894.0,296.15,77777.0,2283.0,0.693942910593,-1.83015225364,0.245125,0.571958333333,101325.0,0.54805,-1.25129005579,-0.402852429485,-2.98891446132,2099.47584976,2.82208638258,3.46959092547,2.59879166667 +31538406,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.005,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,258.073875969,266.20175,273.15,270.556582617,894.0,296.15,77777.0,2406.0,0.693942910593,-1.83015225364,0.25025,0.583916666667,101325.0,0.5501,-1.24826725371,-0.40285061142,-2.97997243722,2222.43750769,2.8190635805,3.47644861499,2.61758333333 +31538529,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.1075,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,258.115466191,266.237625,273.15,270.568806722,894.0,296.15,77777.0,2529.0,0.693942910593,-1.83015225364,0.255375,0.595875,101325.0,0.55215,-1.24524445163,-0.402848793355,-2.97103041311,2345.39916561,2.81604077843,3.48330630451,2.636375 +31538652,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.21,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,258.157056413,266.2735,273.15,270.581030827,894.0,296.15,77777.0,2652.0,0.693942910593,-1.83015225364,0.2605,0.607833333333,101325.0,0.5542,-1.24222164955,-0.40284697529,-2.96208838901,2468.36082354,2.81301797635,3.49016399403,2.65516666667 +31538775,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.3125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,258.196711749,266.309375,273.15,270.593238243,894.0,296.15,77777.0,2775.0,0.693942910593,-1.83015225364,0.265625,0.619791666667,101325.0,0.55625,-1.23859711108,-0.402845156091,-2.95314636474,2591.32248383,2.80939343788,3.49702168355,2.67395833333 +31538898,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.415,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,258.235128757,266.34525,273.15,270.605434977,894.0,296.15,77777.0,2898.0,0.693942910593,-1.83015225364,0.27075,0.63175,101325.0,0.5583,-1.23458746131,-0.402843336166,-2.94420434035,2714.28414563,2.80538378811,3.50387937307,2.69275 +31539021,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.5175,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,258.273545765,266.381125,273.15,270.617631711,894.0,296.15,77777.0,3021.0,0.693942910593,-1.83015225364,0.275875,0.643708333333,101325.0,0.56035,-1.23057781154,-0.402841516241,-2.93526231597,2837.24580744,2.80137413834,3.51073706259,2.71154166667 +31539144,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.62,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,258.311962773,266.417,273.15,270.629828445,894.0,296.15,77777.0,3144.0,0.693942910593,-1.83015225364,0.281,0.655666666667,101325.0,0.5624,-1.22656816178,-0.402839696316,-2.92632029159,2960.20746924,2.79736448858,3.51759475211,2.73033333333 +31539267,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.7225,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,258.350379781,266.452875,273.15,270.642025179,894.0,296.15,77777.0,3267.0,0.693942910593,-1.83015225364,0.286125,0.667625,101325.0,0.56445,-1.22255851201,-0.402837876391,-2.9173782672,3083.16913104,2.79335483881,3.52445244163,2.749125 +31539390,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.825,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,258.388796788,266.48875,273.15,270.654221913,894.0,296.15,77777.0,3390.0,0.693942910593,-1.83015225364,0.29125,0.679583333333,101325.0,0.5665,-1.21854886224,-0.402836056466,-2.90843624282,3206.13079285,2.78934518904,3.53131013115,2.76791666667 +31539513,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.9275,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,258.427213796,266.524625,273.15,270.666418647,894.0,296.15,77777.0,3513.0,0.693942910593,-1.83015225364,0.296375,0.691541666667,101325.0,0.56855,-1.21453921248,-0.402834236541,-2.89949421844,3329.09245465,2.78533553928,3.53816782067,2.78670833333 +31539636,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.029375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.464508051,266.559428309,273.15,270.678273808,894.0,296.15,77777.0,3636.0,0.693942910593,-1.83015225364,0.30146875,0.70318125,101325.0,0.57054375,-1.21030635237,-0.402832416072,-2.89055219397,3452.05411759,2.78110267917,3.54452372803,2.80546875 +31539759,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.129739583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.499088985,266.591641697,273.15,270.689303501,894.0,296.15,77777.0,3759.0,0.693942910593,-1.83015225364,0.306486979167,0.714050520833,101325.0,0.5724015625,-1.20553406729,-0.402830594287,-2.8816101693,3575.01578328,2.77633039409,3.54966699517,2.82415364583 +31539882,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.230104167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.533669919,266.623855086,273.15,270.700333194,894.0,296.15,77777.0,3882.0,0.693942910593,-1.83015225364,0.311505208333,0.724919791667,101325.0,0.574259375,-1.20076178221,-0.402828772503,-2.87266814464,3697.97744896,2.77155810901,3.55481026231,2.84283854167 +31540005,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.33046875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.568250853,266.656068474,273.15,270.711362887,894.0,296.15,77777.0,4005.0,0.693942910593,-1.83015225364,0.3165234375,0.7357890625,101325.0,0.5761171875,-1.19598949713,-0.402826950718,-2.86372611997,3820.93911465,2.76678582393,3.55995352945,2.8615234375 +31540128,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.430833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.602831787,266.688281863,273.15,270.722392579,894.0,296.15,77777.0,4128.0,0.693942910593,-1.83015225364,0.321541666667,0.746658333333,101325.0,0.577975,-1.19121721205,-0.402825128933,-2.8547840953,3943.90078034,2.76201353885,3.56509679658,2.88020833333 +31540251,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.531197917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.637412721,266.720495252,273.15,270.733422272,894.0,296.15,77777.0,4251.0,0.693942910593,-1.83015225364,0.326559895833,0.757527604167,101325.0,0.5798328125,-1.18644492697,-0.402823307149,-2.84584207064,4066.86244602,2.75724125377,3.57024006372,2.89889322917 +31540374,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.6315625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.671993655,266.75270864,273.15,270.744451965,894.0,296.15,77777.0,4374.0,0.693942910593,-1.83015225364,0.331578125,0.768396875,101325.0,0.581690625,-1.18167264189,-0.402821485364,-2.83690004597,4189.82411171,2.75246896869,3.57538333086,2.917578125 +31540497,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.731927083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.706574589,266.784922029,273.15,270.755481658,894.0,296.15,77777.0,4497.0,0.693942910593,-1.83015225364,0.336596354167,0.779266145833,101325.0,0.5835484375,-1.17690035681,-0.40281966358,-2.8279580213,4312.78577739,2.74769668361,3.580526598,2.93626302083 +31540620,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.819791667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.734480983,266.80864277,273.15,270.763775998,894.0,296.15,77777.0,4620.0,0.693942910593,-1.83015225364,0.340989583333,0.787760416667,101325.0,0.584947916667,-1.17156864748,-0.402817839981,-2.81901599636,4435.74744687,2.74236497427,3.58232465074,2.95432291667 +31540743,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.90734375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.762220514,266.832151195,273.15,270.772001955,894.0,296.15,77777.0,4743.0,0.693942910593,-1.83015225364,0.3453671875,0.7961953125,101325.0,0.5863359375,-1.16622295254,-0.402816016336,-2.81007397141,4558.70911644,2.73701927933,3.58403907312,2.9723671875 +31540866,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.994895833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.789960044,266.85565962,273.15,270.780227912,894.0,296.15,77777.0,4866.0,0.693942910593,-1.83015225364,0.349744791667,0.804630208333,101325.0,0.587723958333,-1.1608772576,-0.402814192692,-2.80113194646,4681.67078601,2.7316735844,3.5857534955,2.99041145833 +31540989,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.082447917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.817699575,266.879168045,273.15,270.788453868,894.0,296.15,77777.0,4989.0,0.693942910593,-1.83015225364,0.354122395833,0.813065104167,101325.0,0.589111979167,-1.15553156266,-0.402812369048,-2.79218992151,4804.63245558,2.72632788946,3.58746791788,3.00845572917 +31541112,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.17,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.845439106,266.902676471,273.15,270.796679825,894.0,296.15,77777.0,5112.0,0.693942910593,-1.83015225364,0.3585,0.8215,101325.0,0.5905,-1.15018586772,-0.402810545403,-2.78324789656,4927.59412515,2.72098219452,3.58918234026,3.0265 +31541235,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.257552083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.873178636,266.926184896,273.15,270.804905781,894.0,296.15,77777.0,5235.0,0.693942910593,-1.83015225364,0.362877604167,0.829934895833,101325.0,0.591888020833,-1.14484017279,-0.402808721759,-2.77430587161,5050.55579472,2.71563649958,3.59089676264,3.04454427083 +31541358,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.345104167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.900918167,266.949693321,273.15,270.813131738,894.0,296.15,77777.0,5358.0,0.693942910593,-1.83015225364,0.367255208333,0.838369791667,101325.0,0.593276041667,-1.13949447785,-0.402806898115,-2.76536384666,5173.51746429,2.71029080464,3.59261118502,3.06258854167 +31541481,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.41578125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.922382685,266.96610432,273.15,270.819020505,894.0,296.15,77777.0,5481.0,0.693942910593,-1.83015225364,0.3707890625,0.8449484375,101325.0,0.5942703125,-1.1338680814,-0.402805073246,-2.75642182153,5296.47913642,2.70466440819,3.59206758768,3.0797890625 +31541604,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.477708333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.940593492,266.978835171,273.15,270.823697395,894.0,296.15,77777.0,5604.0,0.693942910593,-1.83015225364,0.373885416667,0.850564583333,101325.0,0.595060416667,-1.12809613602,-0.402803247742,-2.7474797963,5419.44080988,2.69889246281,3.5903531653,3.09655208333 +31541727,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.539635417,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.958804299,266.991566023,273.15,270.828374286,894.0,296.15,77777.0,5727.0,0.693942910593,-1.83015225364,0.376981770833,0.856180729167,101325.0,0.595850520833,-1.12232419064,-0.402801422239,-2.73853777107,5542.40248334,2.69312051743,3.58863874292,3.11331510417 +31541850,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.6015625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.977015106,267.004296875,273.15,270.833051177,894.0,296.15,77777.0,5850.0,0.693942910593,-1.83015225364,0.380078125,0.861796875,101325.0,0.596640625,-1.11655224526,-0.402799596735,-2.72959574583,5665.3641568,2.68734857205,3.58692432054,3.130078125 +31541973,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.663489583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.995225913,267.017027727,273.15,270.837728068,894.0,296.15,77777.0,5973.0,0.693942910593,-1.83015225364,0.383174479167,0.867413020833,101325.0,0.597430729167,-1.11078029989,-0.402797771231,-2.7206537206,5788.32583027,2.68157662668,3.58520989816,3.14684114583 +31542096,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.725416667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,259.01343672,267.029758579,273.15,270.842404959,894.0,296.15,77777.0,6096.0,0.693942910593,-1.83015225364,0.386270833333,0.873029166667,101325.0,0.598220833333,-1.10500835451,-0.402795945728,-2.71171169537,5911.28750373,2.6758046813,3.58349547578,3.16360416667 +31542219,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.78734375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,259.031647527,267.04248943,273.15,270.847081849,894.0,296.15,77777.0,6219.0,0.693942910593,-1.83015225364,0.3893671875,0.8786453125,101325.0,0.5990109375,-1.09923640913,-0.402794120224,-2.70276967014,6034.24917719,2.67003273592,3.5817810534,3.1803671875 +31542342,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.836145833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,259.045570888,267.050832414,273.15,270.850291178,894.0,296.15,77777.0,6342.0,0.693942910593,-1.83015225364,0.391807291667,0.883167708333,101325.0,0.599553125,-1.0933565349,-0.402792294085,-2.69382764481,6157.21085198,2.6641528617,3.57889580598,3.19647395833 +31542465,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.859635417,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,259.051225602,267.050713082,273.15,270.850670208,894.0,296.15,77777.0,6465.0,0.693942910593,-1.83015225364,0.392981770833,0.885580729167,101325.0,0.5996171875,-1.08726851219,-0.402790466722,-2.6848856193,6280.17252933,2.65806483898,3.57375253884,3.21131510417 +31542588,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.883125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,259.056880317,267.05059375,273.15,270.851049238,894.0,296.15,77777.0,6588.0,0.693942910593,-1.83015225364,0.39415625,0.88799375,101325.0,0.59968125,-1.08118048947,-0.402788639359,-2.67594359378,6403.13420668,2.65197681627,3.5686092717,3.22615625 +31542711,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.906614583,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,259.062535031,267.050474418,273.15,270.851428268,894.0,296.15,77777.0,6711.0,0.693942910593,-1.83015225364,0.395330729167,0.890406770833,101325.0,0.5997453125,-1.07509246676,-0.402786811996,-2.66700156827,6526.09588404,2.64588879355,3.56346600456,3.24099739583 +31542834,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.930104167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,259.068189745,267.050355086,273.15,270.851807298,894.0,296.15,77777.0,6834.0,0.693942910593,-1.83015225364,0.396505208333,0.892819791667,101325.0,0.599809375,-1.06900444404,-0.402784984633,-2.65805954275,6649.05756139,2.63980077084,3.55832273743,3.25583854167 +31542957,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.95359375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,259.073844459,267.050235754,273.15,270.852186328,894.0,296.15,77777.0,6957.0,0.693942910593,-1.83015225364,0.3976796875,0.8952328125,101325.0,0.5998734375,-1.06291642132,-0.402783157269,-2.64911751724,6772.01923874,2.63371274812,3.55317947029,3.2706796875 +31543080,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.977083333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,259.079499174,267.050116422,273.15,270.852565359,894.0,296.15,77777.0,7080.0,0.693942910593,-1.83015225364,0.398854166667,0.897645833333,101325.0,0.5999375,-1.05682839861,-0.402781329906,-2.64017549172,6894.9809161,2.62762472541,3.54803620315,3.28552083333 +31543203,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.084918685,267.049596048,273.15,270.852814913,894.0,296.15,77777.0,7203.0,0.693942910593,-1.83015225364,0.4,0.899941666667,101325.0,0.5999796875,-1.05073465405,-0.402779502498,-2.6312334662,7017.94259355,2.62153098085,3.54274658288,3.30033333333 +31543326,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.080930071,267.033034007,273.15,270.847885448,894.0,296.15,77777.0,7326.0,0.693942910593,-1.83015225364,0.4,0.89755,101325.0,0.599146875,-1.04441203575,-0.402777673275,-2.6222914404,7140.9042748,2.61520836255,3.53160283741,3.314 +31543449,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.076941456,267.016471967,273.15,270.842955983,894.0,296.15,77777.0,7449.0,0.693942910593,-1.83015225364,0.4,0.895158333333,101325.0,0.5983140625,-1.03808941745,-0.402775844053,-2.6133494146,7263.86595605,2.60888574425,3.52045909194,3.32766666667 +31543572,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.072952842,266.999909926,273.15,270.838026517,894.0,296.15,77777.0,7572.0,0.693942910593,-1.83015225364,0.4,0.892766666667,101325.0,0.59748125,-1.03176679916,-0.402774014831,-2.60440738881,7386.8276373,2.60256312596,3.50931534647,3.34133333333 +31543695,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.068964228,266.983347886,273.15,270.833097052,894.0,296.15,77777.0,7695.0,0.693942910593,-1.83015225364,0.4,0.890375,101325.0,0.5966484375,-1.02544418086,-0.402772185608,-2.59546536301,7509.78931855,2.59624050766,3.49817160101,3.355 +31543818,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.064975614,266.966785845,273.15,270.828167587,894.0,296.15,77777.0,7818.0,0.693942910593,-1.83015225364,0.4,0.887983333333,101325.0,0.595815625,-1.01912156256,-0.402770356386,-2.58652333721,7632.75099979,2.58991788936,3.48702785554,3.36866666667 +31543941,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.060986999,266.950223805,273.15,270.823238122,894.0,296.15,77777.0,7941.0,0.693942910593,-1.83015225364,0.4,0.885591666667,101325.0,0.5949828125,-1.01279894427,-0.402768527164,-2.57758131141,7755.71268104,2.58359527107,3.47588411007,3.38233333333 +31544064,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.056998385,266.933661764,273.15,270.818308656,894.0,296.15,77777.0,8064.0,0.693942910593,-1.83015225364,0.4,0.8832,101325.0,0.59415,-1.00647632597,-0.402766697941,-2.56863928561,7878.67436229,2.57727265277,3.4647403646,3.396 +31544187,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.051192579,266.909574295,273.15,270.811047662,894.0,296.15,77777.0,8187.0,0.693942910593,-1.83015225364,0.4,0.878391666667,101325.0,0.592924479167,-1.00003052588,-0.402764867404,-2.55969725961,8001.6360463,2.57082685268,3.44995869847,3.40966666667 +31544310,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.044634832,266.882372855,273.15,270.802821898,894.0,296.15,77777.0,8310.0,0.693942910593,-1.83015225364,0.4,0.872583333333,101325.0,0.591536458333,-0.993533754011,-0.402763036322,-2.55075523353,8124.59773146,2.56433008081,3.43367168586,3.42333333333 +31544433,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.038077085,266.855171415,273.15,270.794596134,894.0,296.15,77777.0,8433.0,0.693942910593,-1.83015225364,0.4,0.866775,101325.0,0.5901484375,-0.987036982143,-0.40276120524,-2.54181320745,8247.55941661,2.55783330894,3.41738467325,3.437 +31544556,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.031519337,266.827969975,273.15,270.786370369,894.0,296.15,77777.0,8556.0,0.693942910593,-1.83015225364,0.4,0.860966666667,101325.0,0.588760416667,-0.980540210276,-0.402759374158,-2.53287118137,8370.52110176,2.55133653707,3.40109766065,3.45066666667 +31544679,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.02496159,266.800768536,273.15,270.778144605,894.0,296.15,77777.0,8679.0,0.693942910593,-1.83015225364,0.4,0.855158333333,101325.0,0.587372395833,-0.974043438409,-0.402757543077,-2.52392915528,8493.48278691,2.54483976521,3.38481064804,3.46433333333 +31544802,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.018403843,266.773567096,273.15,270.76991884,894.0,296.15,77777.0,8802.0,0.693942910593,-1.83015225364,0.4,0.84935,101325.0,0.585984375,-0.967546666542,-0.402755711995,-2.5149871292,8616.44447206,2.53834299334,3.36852363543,3.478 +31544925,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.011846095,266.746365656,273.15,270.761693076,894.0,296.15,77777.0,8925.0,0.693942910593,-1.83015225364,0.4,0.843541666667,101325.0,0.584596354167,-0.961049894674,-0.402753880913,-2.50604510312,8739.40615721,2.53184622147,3.35223662282,3.49166666667 +31545048,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,259.005415258,266.719703432,273.15,270.753660416,894.0,296.15,77777.0,9048.0,0.693942910593,-1.83015225364,0.4,0.838,101325.0,0.583241666667,-0.954502867461,-0.402752049106,-2.49710307693,8862.36784389,2.52529919426,3.33594961021,3.50533333333 +31545171,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.999182716,266.693883732,273.15,270.745929483,894.0,296.15,77777.0,9171.0,0.693942910593,-1.83015225364,0.4,0.832875,101325.0,0.5819390625,-0.947877316269,-0.402750216165,-2.48816105056,8985.32953294,2.51867364306,3.3196625976,3.519 +31545294,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.992950174,266.668064032,273.15,270.738198549,894.0,296.15,77777.0,9294.0,0.693942910593,-1.83015225364,0.4,0.82775,101325.0,0.580636458333,-0.941251765077,-0.402748383224,-2.47921902419,9108.291222,2.51204809187,3.30337558499,3.53266666667 +31545417,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.986717633,266.642244332,273.15,270.730467616,894.0,296.15,77777.0,9417.0,0.693942910593,-1.83015225364,0.4,0.822625,101325.0,0.579333854167,-0.934626213885,-0.402746550283,-2.47027699783,9231.25291106,2.50542254068,3.28708857238,3.54633333333 +31545540,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.980485091,266.616424632,273.15,270.722736682,894.0,296.15,77777.0,9540.0,0.693942910593,-1.83015225364,0.4,0.8175,101325.0,0.57803125,-0.928000662693,-0.402744717342,-2.46133497146,9354.21460011,2.49879698949,3.27080155978,3.56 +31545663,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.97425255,266.590604932,273.15,270.715005749,894.0,296.15,77777.0,9663.0,0.693942910593,-1.83015225364,0.4,0.812375,101325.0,0.576728645833,-0.921375111501,-0.402742884401,-2.4523929451,9477.17628917,2.4921714383,3.25451454717,3.57366666667 +31545786,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.968020008,266.564785233,273.15,270.707274815,894.0,296.15,77777.0,9786.0,0.693942910593,-1.83015225364,0.4,0.80725,101325.0,0.575426041667,-0.914749560309,-0.40274105146,-2.44345091873,9600.13797822,2.4855458871,3.23822753456,3.58733333333 +31545909,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.962023993,266.539946231,273.15,270.69985892,894.0,296.15,77777.0,9909.0,0.693942910593,-1.83015225364,0.4,0.802475,101325.0,0.5741765625,-0.908117122427,-0.402739218383,-2.43450889235,9723.09966757,2.47891344922,3.22231685857,3.601 +31546032,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.959023987,266.527529411,273.15,270.696433513,894.0,296.15,77777.0,10032.0,0.693942910593,-1.83015225364,0.4,0.802133333333,101325.0,0.5736,-0.901397453132,-0.402737383583,-2.4255668657,9846.06136053,2.47219377993,3.2111731131,3.61466666667 +31546155,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.95602398,266.515112592,273.15,270.693008106,894.0,296.15,77777.0,10155.0,0.693942910593,-1.83015225364,0.4,0.801791666667,101325.0,0.5730234375,-0.894677783838,-0.402735548784,-2.41662483904,9969.02305348,2.46547411063,3.20002936763,3.62833333333 +31546278,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.953023973,266.502695772,273.15,270.689582699,894.0,296.15,77777.0,10278.0,0.693942910593,-1.83015225364,0.4,0.80145,101325.0,0.572446875,-0.887958114543,-0.402733713984,-2.40768281239,10091.9847464,2.45875444134,3.18888562216,3.642 +31546401,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.950023966,266.490278952,273.15,270.686157292,894.0,296.15,77777.0,10401.0,0.693942910593,-1.83015225364,0.4,0.801108333333,101325.0,0.5718703125,-0.881238445248,-0.402731879184,-2.39874078574,10214.9464394,2.45203477204,3.1777418767,3.65566666667 +31546524,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.947023959,266.477862132,273.15,270.682731885,894.0,296.15,77777.0,10524.0,0.693942910593,-1.83015225364,0.4,0.800766666667,101325.0,0.57129375,-0.874518775954,-0.402730044384,-2.38979875909,10337.9081324,2.44531510275,3.16659813123,3.66933333333 +31546647,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.944023953,266.465445312,273.15,270.679306477,894.0,296.15,77777.0,10647.0,0.693942910593,-1.83015225364,0.4,0.800425,101325.0,0.5707171875,-0.867799106659,-0.402728209584,-2.38085673244,10460.8698253,2.43859543345,3.15545438576,3.683 +31546770,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,258.941023946,266.453028493,273.15,270.67588107,894.0,296.15,77777.0,10770.0,0.693942910593,-1.83015225364,0.4,0.800083333333,101325.0,0.570140625,-0.861079437364,-0.402726374784,-2.37191470579,10583.8315183,2.43187576416,3.14431064029,3.69666666667 +31546893,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.940093223,266.449176562,273.15,270.675045605,894.0,296.15,77777.0,10893.0,0.693942910593,-1.83015225364,0.4,0.802583333333,101325.0,0.57,-0.854309049012,-0.402724538579,-2.36297267893,10706.7932142,2.42510537581,3.13817914106,3.71033333333 +31547016,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.939830012,266.4480875,273.15,270.675045605,894.0,296.15,77777.0,11016.0,0.693942910593,-1.83015225364,0.4,0.806,101325.0,0.57,-0.847522299673,-0.40272270192,-2.35403065199,10829.7549111,2.41831862647,3.13366449546,3.724 +31547139,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.9395668,266.446998437,273.15,270.675045605,894.0,296.15,77777.0,11139.0,0.693942910593,-1.83015225364,0.4,0.809416666667,101325.0,0.57,-0.840735550334,-0.402720865261,-2.34508862506,10952.716608,2.41153187713,3.12914984986,3.73766666667 +31547262,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.939303588,266.445909375,273.15,270.675045605,894.0,296.15,77777.0,11262.0,0.693942910593,-1.83015225364,0.4,0.812833333333,101325.0,0.57,-0.833948800995,-0.402719028602,-2.33614659812,11075.6783049,2.40474512779,3.12463520426,3.75133333333 +31547385,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.939040377,266.444820312,273.15,270.675045605,894.0,296.15,77777.0,11385.0,0.693942910593,-1.83015225364,0.4,0.81625,101325.0,0.57,-0.827162051656,-0.402717191943,-2.32720457119,11198.6400017,2.39795837845,3.12012055866,3.765 +31547508,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938777165,266.44373125,273.15,270.675045605,894.0,296.15,77777.0,11508.0,0.693942910593,-1.83015225364,0.4,0.819666666667,101325.0,0.57,-0.820375302318,-0.402715355284,-2.31826254426,11321.6016986,2.39117162912,3.11560591306,3.77866666667 +31547631,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938513953,266.442642187,273.15,270.675045605,894.0,296.15,77777.0,11631.0,0.693942910593,-1.83015225364,0.4,0.823083333333,101325.0,0.57,-0.813588552979,-0.402713518625,-2.30932051732,11444.5633955,2.38438487978,3.11109126746,3.79233333333 +31547754,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938354969,266.441984375,273.15,270.675045605,894.0,296.15,77777.0,11754.0,0.693942910593,-1.83015225364,0.4,0.8265,101325.0,0.57,-0.806781832987,-0.40271168115,-2.30037849026,11567.5250941,2.37757815979,3.10826595513,3.806 +31547877,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938329163,266.441877604,273.15,270.675045605,894.0,296.15,77777.0,11877.0,0.693942910593,-1.83015225364,0.4,0.829916666667,101325.0,0.57,-0.799949594938,-0.402709842632,-2.29143646304,11690.4867949,2.37074592174,3.10759923532,3.81966666667 +31548000,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938303357,266.441770833,273.15,270.675045605,894.0,296.15,77777.0,12000.0,0.693942910593,-1.83015225364,0.4,0.833333333333,101325.0,0.57,-0.79311735689,-0.402708004114,-2.28249443582,11813.4484957,2.36391368369,3.1069325155,3.83333333333 +31548123,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938277551,266.441664063,273.15,270.675045605,894.0,296.15,77777.0,12123.0,0.693942910593,-1.83015225364,0.4,0.83675,101325.0,0.57,-0.786285118841,-0.402706165597,-2.2735524086,11936.4101965,2.35708144564,3.10626579569,3.847 +31548246,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938251745,266.441557292,273.15,270.675045605,894.0,296.15,77777.0,12246.0,0.693942910593,-1.83015225364,0.4,0.840166666667,101325.0,0.57,-0.779452880793,-0.402704327079,-2.26461038138,12059.3718973,2.35024920759,3.10559907588,3.86066666667 +31548369,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.93822594,266.441450521,273.15,270.675045605,894.0,296.15,77777.0,12369.0,0.693942910593,-1.83015225364,0.4,0.843583333333,101325.0,0.57,-0.772620642744,-0.402702488561,-2.25566835416,12182.3335981,2.34341696954,3.10493235606,3.87433333333 +31548492,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938200134,266.44134375,273.15,270.675045605,894.0,296.15,77777.0,12492.0,0.693942910593,-1.83015225364,0.4,0.847,101325.0,0.57,-0.765788404696,-0.402700650043,-2.24672632695,12305.2952989,2.33658473149,3.10426563625,3.888 +31548615,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938191951,266.441309896,273.15,270.675045605,894.0,296.15,77777.0,12615.0,0.693942910593,-1.83015225364,0.4,0.850416666667,101325.0,0.57,-0.758952775725,-0.402698811299,-2.23778429969,12428.2570001,2.32974910252,3.10391485335,3.90166666667 +31548738,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938310657,266.441801042,273.15,270.675045605,894.0,296.15,77777.0,12738.0,0.693942910593,-1.83015225364,0.4,0.853833333333,101325.0,0.57,-0.752092732112,-0.402696970922,-2.22884227219,12551.2187049,2.3228890589,3.10583881624,3.91533333333 +31548861,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938429363,266.442292188,273.15,270.675045605,894.0,296.15,77777.0,12861.0,0.693942910593,-1.83015225364,0.4,0.85725,101325.0,0.57,-0.7452326885,-0.402695130546,-2.21990024468,12674.1804096,2.31602901529,3.10776277914,3.929 +31548984,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938548068,266.442783333,273.15,270.675045605,894.0,296.15,77777.0,12984.0,0.693942910593,-1.83015225364,0.4,0.860666666667,101325.0,0.57,-0.738372644888,-0.402693290169,-2.21095821718,12797.1421143,2.30916897168,3.10968674203,3.94266666667 +31549107,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938666774,266.443274479,273.15,270.675045605,894.0,296.15,77777.0,13107.0,0.693942910593,-1.83015225364,0.4,0.864083333333,101325.0,0.57,-0.731512601275,-0.402691449793,-2.20201618967,12920.103819,2.30230892807,3.11161070492,3.95633333333 +31549230,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.93878548,266.443765625,273.15,270.675045605,894.0,296.15,77777.0,13230.0,0.693942910593,-1.83015225364,0.4,0.8675,101325.0,0.57,-0.724652557663,-0.402689609416,-2.19307416216,13043.0655237,2.29544888446,3.11353466781,3.97 +31549353,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.938904185,266.444256771,273.15,270.675045605,894.0,296.15,77777.0,13353.0,0.693942910593,-1.83015225364,0.4,0.870916666667,101325.0,0.57,-0.71779251405,-0.402687769039,-2.18413213466,13166.0272284,2.28858884085,3.1154586307,3.98366666667 +31549476,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.939022891,266.444747917,273.15,270.675045605,894.0,296.15,77777.0,13476.0,0.693942910593,-1.83015225364,0.4,0.874333333333,101325.0,0.57,-0.710932470438,-0.402685928663,-2.17519010715,13288.9889332,2.28172879723,3.1173825936,3.99733333333 +31549599,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.939183133,266.445410938,273.15,270.675045605,894.0,296.15,77777.0,13599.0,0.693942910593,-1.83015225364,0.4,0.87775,101325.0,0.57,-0.704062018053,-0.40268408679,-2.16624807942,13411.950641,2.27485834485,3.12037981278,4.011 +31549722,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.939353445,266.446115625,273.15,270.675045605,894.0,296.15,77777.0,13722.0,0.693942910593,-1.83015225364,0.4,0.881166666667,101325.0,0.57,-0.697189042328,-0.402682244555,-2.15730605163,13534.9123497,2.26798536912,3.1236372153,4.02466666667 +31549845,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.939523757,266.446820312,273.15,270.675045605,894.0,296.15,77777.0,13845.0,0.693942910593,-1.83015225364,0.4,0.884583333333,101325.0,0.57,-0.690316066604,-0.40268040232,-2.14836402384,13657.8740583,2.2611123934,3.12689461782,4.03833333333 +31549968,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.939694069,266.447525,273.15,270.675045605,894.0,296.15,77777.0,13968.0,0.693942910593,-1.83015225364,0.4,0.888,101325.0,0.57,-0.68344309088,-0.402678560085,-2.13942199605,13780.8357669,2.25423941767,3.13015202034,4.052 +31550091,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.93986438,266.448229687,273.15,270.675045605,894.0,296.15,77777.0,14091.0,0.693942910593,-1.83015225364,0.4,0.891416666667,101325.0,0.57,-0.676570115156,-0.402676717849,-2.13047996826,13903.7974756,2.24736644195,3.13340942286,4.06566666667 +31550214,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.940034692,266.448934375,273.15,270.675045605,894.0,296.15,77777.0,14214.0,0.693942910593,-1.83015225364,0.4,0.894833333333,101325.0,0.57,-0.669697139431,-0.402674875614,-2.12153794047,14026.7591842,2.24049346622,3.13666682539,4.07933333333 +31550337,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,258.940205004,266.449639063,273.15,270.675045605,894.0,296.15,77777.0,14337.0,0.693942910593,-1.83015225364,0.4,0.89825,101325.0,0.57,-0.662824163707,-0.402673033379,-2.11259591268,14149.7208928,2.2336204905,3.13992422791,4.093 +31550460,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.014015152,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,258.943690245,266.45107971,273.15,270.675045605,894.0,296.15,77777.0,14460.0,0.693942910593,-1.83015225364,0.400651041667,0.901822916667,101325.0,0.57,-0.655951152433,-0.402671190237,-2.10365388475,14272.6826034,2.22674747923,3.14455785531,4.10740885417 +31550583,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.042746212,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,258.950656163,266.453293116,273.15,270.675045605,894.0,296.15,77777.0,14583.0,0.693942910593,-1.83015225364,0.401985677083,0.905559895833,101325.0,0.57,-0.649078103833,-0.402669346143,-2.09471185668,14395.644316,2.21987443062,3.15063651884,4.12259700521 +31550706,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.071477273,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,258.95762208,266.455506522,273.15,270.675045605,894.0,296.15,77777.0,14706.0,0.693942910593,-1.83015225364,0.4033203125,0.909296875,101325.0,0.57,-0.642205055232,-0.40266750205,-2.0857698286,14518.6060285,2.21300138202,3.15671518236,4.13778515625 +31550829,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.100208333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,258.964587998,266.457719927,273.15,270.675045605,894.0,296.15,77777.0,14829.0,0.693942910593,-1.83015225364,0.404654947917,0.913033854167,101325.0,0.57,-0.635332006631,-0.402665657956,-2.07682780053,14641.5677411,2.20612833342,3.16279384589,4.15297330729 +31550952,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.128939394,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,258.971553915,266.459933333,273.15,270.675045605,894.0,296.15,77777.0,14952.0,0.693942910593,-1.83015225364,0.405989583333,0.916770833333,101325.0,0.57,-0.62845895803,-0.402663813862,-2.06788577245,14764.5294536,2.19925528482,3.16887250941,4.16816145833 +31551075,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.157670455,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,258.978519832,266.462146739,273.15,270.675045605,894.0,296.15,77777.0,15075.0,0.693942910593,-1.83015225364,0.40732421875,0.9205078125,101325.0,0.57,-0.621585909429,-0.402661969768,-2.05894374437,14887.4911662,2.19238223622,3.17495117294,4.18334960938 +31551198,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.186401515,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,258.98548575,266.464360145,273.15,270.675045605,894.0,296.15,77777.0,15198.0,0.693942910593,-1.83015225364,0.408658854167,0.924244791667,101325.0,0.57,-0.614712860829,-0.402660125674,-2.0500017163,15010.4528788,2.18550918762,3.18102983647,4.19853776042 +31551321,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.222291667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,258.994195715,266.466903261,273.15,270.675045605,894.0,296.15,77777.0,15321.0,0.693942910593,-1.83015225364,0.41033984375,0.928018229167,101325.0,0.57,-0.607841751438,-0.402658281263,-2.04105968817,15133.414592,2.17863807823,3.18798250873,4.21409353299 +31551444,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.292954546,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.011376768,266.471047826,273.15,270.675045605,894.0,296.15,77777.0,15444.0,0.693942910593,-1.83015225364,0.413703125,0.93196875,101325.0,0.57,-0.600980061068,-0.402656435311,-2.03211765981,15256.3763085,2.17177638786,3.19918036631,4.23143489583 +31551567,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.363617424,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.028557822,266.475192391,273.15,270.675045605,894.0,296.15,77777.0,15567.0,0.693942910593,-1.83015225364,0.41706640625,0.935919270833,101325.0,0.57,-0.594118370698,-0.402654589359,-2.02317563145,15379.338025,2.16491469749,3.21037822389,4.24877625868 +31551690,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.434280303,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.045738875,266.479336956,273.15,270.675045605,894.0,296.15,77777.0,15690.0,0.693942910593,-1.83015225364,0.4204296875,0.939869791667,101325.0,0.57,-0.587256680329,-0.402652743406,-2.01423360309,15502.2997415,2.15805300712,3.22157608147,4.26611762153 +31551813,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.504943182,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.062919929,266.483481522,273.15,270.675045605,894.0,296.15,77777.0,15813.0,0.693942910593,-1.83015225364,0.42379296875,0.9438203125,101325.0,0.57,-0.580394989959,-0.402650897454,-2.00529157473,15625.261458,2.15119131675,3.23277393905,4.28345898437 +31551936,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.57560606,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.080100982,266.487626087,273.15,270.675045605,894.0,296.15,77777.0,15936.0,0.693942910593,-1.83015225364,0.42715625,0.947770833333,101325.0,0.57,-0.573533299589,-0.402649051501,-1.99634954637,15748.2231745,2.14432962638,3.24397179663,4.30080034722 +31552059,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.646268939,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.097282036,266.491770652,273.15,270.675045605,894.0,296.15,77777.0,16059.0,0.693942910593,-1.83015225364,0.43051953125,0.951721354167,101325.0,0.57,-0.566671609219,-0.402647205549,-1.98740751801,15871.184891,2.13746793601,3.25516965421,4.31814171007 +31552182,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.716931818,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.114463089,266.495915217,273.15,270.675045605,894.0,296.15,77777.0,16182.0,0.693942910593,-1.83015225364,0.4338828125,0.955671875,101325.0,0.57,-0.559809918849,-0.402645359596,-1.97846548965,15994.1466075,2.13060624564,3.26636751178,4.33548307291 +31552305,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.803503788,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.13627554,266.500262681,273.15,270.675045605,894.0,296.15,77777.0,16305.0,0.693942910593,-1.83015225364,0.438157552083,0.9592578125,101325.0,0.57,-0.552966839751,-0.402643512058,-1.96952346104,16117.1083273,2.12376316654,3.2818994949,4.35352322048 +31552428,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.89280303,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.158881945,266.504644928,273.15,270.675045605,894.0,296.15,77777.0,16428.0,0.693942910593,-1.83015225364,0.442588541667,0.96278125,101325.0,0.57,-0.546126951157,-0.402641664247,-1.96058143239,16240.0700478,2.11692327795,3.29817447097,4.37168315972 +31552551,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.982102272,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.18148835,266.509027174,273.15,270.675045605,894.0,296.15,77777.0,16551.0,0.693942910593,-1.83015225364,0.44701953125,0.9663046875,101325.0,0.57,-0.539287062563,-0.402639816436,-1.95163940375,16363.0317682,2.11008338936,3.31444944703,4.38984309896 +31552674,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.071401515,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.204094754,266.51340942,273.15,270.675045605,894.0,296.15,77777.0,16674.0,0.693942910593,-1.83015225364,0.451450520833,0.969828125,101325.0,0.57,-0.532447173968,-0.402637968625,-1.9426973751,16485.9934886,2.10324350076,3.3307244231,4.40800303819 +31552797,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.160700757,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.226701159,266.517791667,273.15,270.675045605,894.0,296.15,77777.0,16797.0,0.693942910593,-1.83015225364,0.455881510417,0.9733515625,101325.0,0.57,-0.525607285374,-0.402636120814,-1.93375534645,16608.955209,2.09640361217,3.34699939916,4.42616297743 +31552920,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.25,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.249307564,266.522173913,273.15,270.675045605,894.0,296.15,77777.0,16920.0,0.693942910593,-1.83015225364,0.4603125,0.976875,101325.0,0.57,-0.51876739678,-0.402634273003,-1.9248133178,16731.9169295,2.08956372357,3.36327437523,4.44432291667 +31553043,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.339299242,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.271913968,266.52655616,273.15,270.675045605,894.0,296.15,77777.0,17043.0,0.693942910593,-1.83015225364,0.464743489583,0.9803984375,101325.0,0.57,-0.511927508186,-0.402632425193,-1.91587128915,16854.8786499,2.08272383498,3.37954935129,4.4624828559 +31553166,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.426098485,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.295002807,266.530157247,273.15,270.675045605,894.0,296.15,77777.0,17166.0,0.693942910593,-1.83015225364,0.469231770833,0.983348958333,101325.0,0.57,-0.505104573846,-0.402630576385,-1.90692926035,16977.8403725,2.07590090064,3.3985260577,4.48036588542 +31553289,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.510738636,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.318508294,266.533083696,273.15,270.675045605,894.0,296.15,77777.0,17289.0,0.693942910593,-1.83015225364,0.47376953125,0.9858046875,101325.0,0.57,-0.498296281817,-0.402628726716,-1.89798723142,17100.8020968,2.06909260861,3.41983607669,4.49800976562 +31553412,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.595378788,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.342013781,266.536010145,273.15,270.675045605,894.0,296.15,77777.0,17412.0,0.693942910593,-1.83015225364,0.478307291667,0.988260416667,101325.0,0.57,-0.491487989789,-0.402626877046,-1.88904520248,17223.7638212,2.06228431658,3.44114609567,4.51565364583 +31553535,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.680018939,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.365519267,266.538936594,273.15,270.675045605,894.0,296.15,77777.0,17535.0,0.693942910593,-1.83015225364,0.482845052083,0.990716145833,101325.0,0.57,-0.48467969776,-0.402625027377,-1.88010317355,17346.7255456,2.05547602456,3.46245611466,4.53329752604 +31553658,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.764659091,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.389024754,266.541863044,273.15,270.675045605,894.0,296.15,77777.0,17658.0,0.693942910593,-1.83015225364,0.4873828125,0.993171875,101325.0,0.57,-0.477871405732,-0.402623177708,-1.87116114461,17469.68727,2.04866773253,3.48376613364,4.55094140625 +31553781,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.849299242,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.412530241,266.544789493,273.15,270.675045605,894.0,296.15,77777.0,17781.0,0.693942910593,-1.83015225364,0.491920572917,0.995627604167,101325.0,0.57,-0.471063113703,-0.402621328039,-1.86221911568,17592.6489944,2.0418594405,3.50507615263,4.56858528646 +31553904,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.933939394,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,259.436035727,266.547715942,273.15,270.675045605,894.0,296.15,77777.0,17904.0,0.693942910593,-1.83015225364,0.496458333333,0.998083333333,101325.0,0.57,-0.464254821674,-0.40261947837,-1.85327708674,17715.6107188,2.03505114847,3.52638617161,4.58622916667 +31554027,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.01724026,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.458381516,266.538858016,273.15,270.672721876,894.0,296.15,77648.2566747,18027.0,0.693942910593,-1.83015225364,0.50125390625,1.0,101325.0,0.569609375,-0.457455531816,-0.402617628293,-1.84433505775,17838.572444,2.02825185861,3.551528637,4.60351210937 +31554150,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.095779221,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.476603935,266.48810009,273.15,270.662136,894.0,296.15,77061.7593041,18150.0,0.693942910593,-1.83015225364,0.506966145833,1.0,101325.0,0.567829861111,-0.450688249676,-0.402615776766,-1.83539302852,17961.5341723,2.02148457647,3.59029757849,4.61951171875 +31554273,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.174318182,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.494826354,266.437342165,273.15,270.651550123,894.0,296.15,76475.2619334,18273.0,0.693942910593,-1.83015225364,0.512678385417,1.0,101325.0,0.566050347222,-0.443920967535,-0.402613925238,-1.8264509993,18084.4959006,2.01471729433,3.62906651998,4.63551132812 +31554396,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.252857143,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.513048774,266.386584239,273.15,270.640964247,894.0,296.15,75888.7645628,18396.0,0.693942910593,-1.83015225364,0.518390625,1.0,101325.0,0.564270833333,-0.437153685394,-0.402612073711,-1.81750897008,18207.4576289,2.00795001219,3.66783546148,4.6515109375 +31554519,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.331396104,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.531271193,266.335826313,273.15,270.630378371,894.0,296.15,75302.2671921,18519.0,0.693942910593,-1.83015225364,0.524102864583,1.0,101325.0,0.562491319445,-0.430386403253,-0.402610222183,-1.80856694086,18330.4193572,2.00118273005,3.70660440297,4.66751054687 +31554642,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.409935065,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.549493612,266.285068387,273.15,270.619792494,894.0,296.15,74715.7698215,18642.0,0.693942910593,-1.83015225364,0.529815104167,1.0,101325.0,0.560711805556,-0.423619121112,-0.402608370656,-1.79962491164,18453.3810855,1.99441544791,3.74537334446,4.68351015625 +31554765,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.488474026,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.567716031,266.234310462,273.15,270.609206618,894.0,296.15,74129.2724508,18765.0,0.693942910593,-1.83015225364,0.53552734375,1.0,101325.0,0.558932291667,-0.416851838972,-0.402606519128,-1.79068288242,18576.3428138,1.98764816577,3.78414228595,4.69950976562 +31554888,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.567012987,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.58593845,266.183552536,273.15,270.598620741,894.0,296.15,73542.7750802,18888.0,0.693942910593,-1.83015225364,0.541239583333,1.0,101325.0,0.557152777778,-0.410084556831,-0.402604667601,-1.78174085319,18699.3045421,1.98088088363,3.82291122744,4.715509375 +31555011,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.656363637,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.603528475,266.077143795,273.15,270.575481121,894.0,296.15,72305.6064662,19011.0,0.693942910593,-1.83015225364,0.54858984375,1.0,101325.0,0.553274884259,-0.403362630006,-0.402602814397,-1.77279882372,18822.266274,1.9741589568,3.87965862287,4.72995768229 +31555134,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.746883117,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.621050133,265.96471875,273.15,270.550984338,894.0,296.15,70998.0950151,19134.0,0.693942910593,-1.83015225364,0.5561171875,1.0,101325.0,0.549170138889,-0.396645606459,-0.402600961011,-1.76385679421,18945.2280063,1.96744193325,3.93834963494,4.74423828125 +31555257,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.837402598,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.638571791,265.852293704,273.15,270.526487555,894.0,296.15,69690.5835641,19257.0,0.693942910593,-1.83015225364,0.56364453125,1.0,101325.0,0.545065393519,-0.389928582912,-0.402599107626,-1.7549147647,19068.1897385,1.96072490971,3.997040647,4.75851888021 +31555380,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.927922078,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.656093449,265.739868659,273.15,270.501990773,894.0,296.15,68383.072113,19380.0,0.693942910593,-1.83015225364,0.571171875,1.0,101325.0,0.540960648148,-0.383211559364,-0.40259725424,-1.74597273519,19191.1514708,1.95400788616,4.05573165907,4.77279947917 +31555503,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.018441559,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.673615107,265.627443614,273.15,270.47749399,894.0,296.15,67075.5606619,19503.0,0.693942910593,-1.83015225364,0.57869921875,1.0,101325.0,0.536855902778,-0.376494535817,-0.402595400855,-1.73703070569,19314.1132031,1.94729086261,4.11442267114,4.78708007812 +31555626,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.108961039,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.691136764,265.515018569,273.15,270.452997208,894.0,296.15,65768.0492108,19626.0,0.693942910593,-1.83015225364,0.5862265625,1.0,101325.0,0.532751157407,-0.36977751227,-0.402593547469,-1.72808867618,19437.0749353,1.94057383906,4.17311368321,4.80136067708 +31555749,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.199480519,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.708658422,265.402593524,273.15,270.428500425,894.0,296.15,64460.5377597,19749.0,0.693942910593,-1.83015225364,0.59375390625,1.0,101325.0,0.528646412037,-0.363060488722,-0.402591694084,-1.71914664667,19560.0366676,1.93385681551,4.23180469527,4.81564127604 +31555872,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.300519481,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.731773385,265.291929348,273.15,270.402269795,894.0,296.15,63127.830354,19872.0,0.693942910593,-1.83015225364,0.60140625,1.0,101325.0,0.524263888888,-0.356378308454,-0.402589839611,-1.710204617,19682.9984022,1.92717463525,4.29338676942,4.829059375 +31555995,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.40900974,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.758850272,265.182512455,273.15,270.374811022,894.0,296.15,61777.2758138,19995.0,0.693942910593,-1.83015225364,0.609147135417,1.0,101325.0,0.519684606481,-0.349720808843,-0.402587984367,-1.7012625872,19805.9601384,1.92051713564,4.35701667921,4.84186653646 +31556118,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.5175,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.785927159,265.073095562,273.15,270.347352248,894.0,296.15,60426.7212736,20118.0,0.693942910593,-1.83015225364,0.616888020833,1.0,101325.0,0.515105324074,-0.343063309231,-0.402586129124,-1.6923205574,19928.9218746,1.91385963602,4.42064658899,4.85467369792 +31556241,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.62599026,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.813004045,264.963678669,273.15,270.319893475,894.0,296.15,59076.1667334,20241.0,0.693942910593,-1.83015225364,0.62462890625,1.0,101325.0,0.510526041666,-0.336405809619,-0.40258427388,-1.68337852761,20051.8836108,1.90720213641,4.48427649878,4.86748085938 +31556364,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.73448052,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.840080932,264.854261776,273.15,270.292434702,894.0,296.15,57725.6121931,20364.0,0.693942910593,-1.83015225364,0.632369791667,1.0,101325.0,0.505946759259,-0.329748310007,-0.402582418636,-1.67443649781,20174.8453471,1.9005446368,4.54790640856,4.88028802083 +31556487,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.842970779,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.867157819,264.744844882,273.15,270.264975929,894.0,296.15,56375.0576529,20487.0,0.693942910593,-1.83015225364,0.640110677083,1.0,101325.0,0.501367476852,-0.323090810395,-0.402580563393,-1.66549446802,20297.8070833,1.89388713719,4.61153631835,4.89309518229 +31556610,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.951461039,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.894234706,264.635427989,273.15,270.237517155,894.0,296.15,55024.5031127,20610.0,0.693942910593,-1.83015225364,0.6478515625,1.0,101325.0,0.496788194444,-0.316433310783,-0.402578708149,-1.65655243822,20420.7688195,1.88722963758,4.67516622813,4.90590234375 +31556733,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.06637987,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.925176755,264.544170064,273.15,270.212250352,894.0,296.15,53844.2950828,20733.0,0.693942910593,-1.83015225364,0.655220052083,1.0,101325.0,0.492578125,-0.309794313194,-0.402576852407,-1.64761040835,20543.7305568,1.88059063999,4.7361013324,4.91838007812 +31556856,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.198831169,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,259.966660157,264.502436594,273.15,270.192961648,894.0,296.15,53128.6684448,20856.0,0.693942910593,-1.83015225364,0.661572916667,1.0,101325.0,0.489375,-0.303205775666,-0.402574995306,-1.63866837827,20666.6922969,1.87400210246,4.78968696705,4.929959375 +31556979,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.331282468,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,260.008143559,264.460703125,273.15,270.173672945,894.0,296.15,52413.0418067,20979.0,0.693942910593,-1.83015225364,0.66792578125,1.0,101325.0,0.486171875,-0.296617238138,-0.402573138204,-1.62972634818,20789.6540371,1.86741356493,4.8432726017,4.94153867187 +31557102,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.463733766,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,260.04962696,264.418969656,273.15,270.154384241,894.0,296.15,51697.4151687,21102.0,0.693942910593,-1.83015225364,0.674278645833,1.0,101325.0,0.48296875,-0.29002870061,-0.402571281103,-1.6207843181,20912.6157773,1.86082502741,4.89685823634,4.95311796875 +31557225,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.596185065,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,260.091110362,264.377236187,273.15,270.135095538,894.0,296.15,50981.7885306,21225.0,0.693942910593,-1.83015225364,0.680631510417,1.0,101325.0,0.479765625,-0.283440163082,-0.402569424001,-1.61184228802,21035.5775174,1.85423648988,4.95044387099,4.96469726563 +31557348,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.728636364,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,260.132593764,264.335502717,273.15,270.115806834,894.0,296.15,50266.1618926,21348.0,0.693942910593,-1.83015225364,0.686984375,1.0,101325.0,0.4765625,-0.276851625554,-0.402567566899,-1.60290025793,21158.5392576,1.84764795235,5.00402950564,4.9762765625 +31557471,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.861087662,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,260.174077166,264.293769248,273.15,270.096518131,894.0,296.15,49550.5352545,21471.0,0.693942910593,-1.83015225364,0.693337239583,1.0,101325.0,0.473359375,-0.270263088026,-0.402565709798,-1.59395822785,21281.5009978,1.84105941482,5.05761514029,4.98785585938 +31557594,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.993538961,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,260.215560567,264.252035779,273.15,270.077229427,894.0,296.15,48834.9086165,21594.0,0.693942910593,-1.83015225364,0.699690104167,1.0,101325.0,0.47015625,-0.263674550498,-0.402563852696,-1.58501619777,21404.4627379,1.83447087729,5.11120077494,4.99943515625 +31557717,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,260.238004464,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,260.290877282,264.29736875,273.213009375,270.119775878,894.0,296.15,48736.1654812,21717.0,0.693942910593,-1.83015225364,0.700177734375,1.0,101325.0,0.4684,-0.257160884955,-0.402561993828,-1.57607416741,21527.4244819,1.82795721175,5.15065774889,4.96944291424 +31557840,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,260.488214286,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,260.367929038,264.347166667,273.27925,270.165493362,894.0,296.15,48669.0573974,21840.0,0.693942910593,-1.83015225364,0.700364583333,1.0,101325.0,0.466717948718,-0.250651059001,-0.402560134868,-1.56713213704,21650.386226,1.8214473858,5.18939017614,4.93731879845 +31557963,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,260.738424107,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,260.444980794,264.396964583,273.345490625,270.211210847,894.0,296.15,48601.9493136,21963.0,0.693942910593,-1.83015225364,0.700551432292,1.0,101325.0,0.465035897436,-0.244141233047,-0.402558275909,-1.55819010667,21773.3479701,1.81493755984,5.22812260339,4.90519468266 +31558086,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,260.988633928,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,260.522032549,264.4467625,273.41173125,270.256928331,894.0,296.15,48534.8412298,22086.0,0.693942910593,-1.83015225364,0.70073828125,1.0,101325.0,0.463353846154,-0.237631407093,-0.402556416949,-1.5492480763,21896.3097143,1.80842773389,5.26685503063,4.87307056686 +31558209,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,261.23884375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,260.599084305,264.496560417,273.477971875,270.302645815,894.0,296.15,48467.7331459,22209.0,0.693942910593,-1.83015225364,0.700925130208,1.0,101325.0,0.461671794872,-0.231121581139,-0.40255455799,-1.54030604593,22019.2714584,1.80191790793,5.30558745788,4.84094645107 +31558332,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,261.489053571,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,260.676136061,264.546358333,273.5442125,270.3483633,894.0,296.15,48400.6250621,22332.0,0.693942910593,-1.83015225364,0.701111979167,1.0,101325.0,0.459989743589,-0.224611755185,-0.402552699031,-1.53136401556,22142.2332025,1.79540808198,5.34431988513,4.80882233527 +31558455,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,261.739263392,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,260.753187817,264.59615625,273.610453125,270.394080784,894.0,296.15,48333.5169783,22455.0,0.693942910593,-1.83015225364,0.701298828125,1.0,101325.0,0.458307692307,-0.218101929232,-0.402550840071,-1.52242198519,22265.1949467,1.78889825602,5.38305231238,4.77669821948 +31558578,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,262.0890625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,260.854372065,264.674229167,273.72853125,270.484973193,894.0,296.15,48347.2204672,22578.0,0.693942910593,-1.83015225364,0.697592447917,1.0,101325.0,0.456973789174,-0.211648477949,-0.402548979934,-1.51347995463,22388.1566933,1.78244480474,5.41330336932,4.71026539891 +31558701,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,262.496316964,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,260.969478904,264.768614583,273.876515625,270.601928058,894.0,296.15,48407.5460174,22701.0,0.693942910593,-1.83015225364,0.691639973958,1.0,101325.0,0.455840740741,-0.205227550515,-0.402547119116,-1.50453792397,22511.1184414,1.7760238773,5.438661328,4.6240390948 +31558824,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,262.903571428,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,261.084585743,264.863,274.0245,270.718882923,894.0,296.15,48467.8715675,22824.0,0.693942910593,-1.83015225364,0.6856875,1.0,101325.0,0.454707692308,-0.19880662308,-0.402545258299,-1.49559589331,22634.0801894,1.76960294987,5.46401928669,4.5378127907 +31558947,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,263.310825893,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,261.199692582,264.957385417,274.172484375,270.835837788,894.0,296.15,48528.1971177,22947.0,0.693942910593,-1.83015225364,0.679735026042,1.0,101325.0,0.453574643875,-0.192385695646,-0.402543397482,-1.48665386265,22757.0419375,1.76318202244,5.48937724538,4.4515864866 +31559070,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,263.718080357,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,261.314799421,265.051770833,274.32046875,270.952792653,894.0,296.15,48588.5226678,23070.0,0.693942910593,-1.83015225364,0.673782552083,1.0,101325.0,0.452441595442,-0.185964768212,-0.402541536665,-1.47771183199,22880.0036856,1.756761095,5.51473520406,4.3653601825 +31559193,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,264.125334822,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,261.42990626,265.14615625,274.468453125,271.069747519,894.0,296.15,48648.848218,23193.0,0.693942910593,-1.83015225364,0.667830078125,1.0,101325.0,0.451308547009,-0.179543840778,-0.402539675847,-1.46876980133,23002.9654337,1.75034016757,5.54009316275,4.27913387839 +31559316,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,264.532589286,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,261.545013098,265.240541667,274.6164375,271.186702384,894.0,296.15,48709.1737681,23316.0,0.693942910593,-1.83015225364,0.661877604167,1.0,101325.0,0.450175498576,-0.173122913344,-0.40253781503,-1.45982777068,23125.9271818,1.74391924013,5.56545112144,4.19290757429 +31559439,0.0,0.1,0.5,0.2,0.0,0.0161612021858,0.0073125,0.0168976449275,264.965611607,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,261.662774092,265.335902083,274.766209375,271.306281638,894.0,296.15,48770.574598,23439.0,0.693942910593,-1.83015225364,0.655755859375,1.0,101325.0,0.449272079772,-0.166733579114,-0.402535953624,-1.45088573993,23248.8889311,1.7375299059,5.58480811057,4.1048608083 +31559562,0.0,0.1,0.5,0.2,0.0,0.067131147541,0.030375,0.0701902173913,265.454133929,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,261.786251728,265.4333625,274.91983125,271.431513424,894.0,296.15,48834.291415,23562.0,0.693942910593,-1.83015225364,0.64926953125,1.0,101325.0,0.448863247863,-0.160412291785,-0.402534090949,-1.44194370898,23371.8506832,1.73120861858,5.5912399345,4.01289304748 +31559685,0.0,0.1,0.5,0.2,0.0,0.118101092896,0.0534375,0.123482789855,265.94265625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,261.909729364,265.530822917,275.073453125,271.55674521,894.0,296.15,48898.008232,23685.0,0.693942910593,-1.83015225364,0.642783203125,1.0,101325.0,0.448454415955,-0.154091004457,-0.402532228274,-1.43300167803,23494.8124352,1.72488733125,5.59767175843,3.92092528666 +31559808,0.0,0.1,0.5,0.2,0.0,0.169071038251,0.0765,0.176775362319,266.431178572,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,262.033207,265.628283333,275.227075,271.681976996,894.0,296.15,48961.725049,23808.0,0.693942910593,-1.83015225364,0.636296875,1.0,101325.0,0.448045584046,-0.147769717129,-0.402530365599,-1.42405964709,23617.7741873,1.71856604392,5.60410358236,3.82895752584 +31559931,0.0,0.1,0.5,0.2,0.0,0.220040983606,0.0995625,0.230067934783,266.919700893,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,262.156684636,265.72574375,275.380696875,271.807208782,894.0,296.15,49025.4418659,23931.0,0.693942910593,-1.83015225364,0.629810546875,1.0,101325.0,0.447636752137,-0.141448429801,-0.402528502924,-1.41511761614,23740.7359393,1.71224475659,5.61053540629,3.73698976502 +31560054,0.0,0.1,0.5,0.2,0.0,0.271010928962,0.122625,0.283360507246,267.408223214,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,262.280162271,265.823204167,275.53431875,271.932440567,894.0,296.15,49089.1586829,24054.0,0.693942910593,-1.83015225364,0.62332421875,1.0,101325.0,0.447227920228,-0.135127142472,-0.402526640249,-1.40617558519,23863.6976914,1.70592346927,5.61696723022,3.6450220042 +31560177,0.0,0.1,0.5,0.2,0.0,0.321980874317,0.1456875,0.33665307971,267.896745536,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,262.403639907,265.920664583,275.687940625,272.057672353,894.0,296.15,49152.8754999,24177.0,0.693942910593,-1.83015225364,0.616837890625,1.0,101325.0,0.446819088319,-0.128805855144,-0.402524777574,-1.39723355425,23986.6594434,1.69960218194,5.62339905415,3.55305424338 +31560300,0.0,0.1,0.5,0.2,0.0,0.372950819672,0.16875,0.389945652174,268.385267857,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,262.527117543,266.018125,275.8415625,272.182904139,894.0,296.15,49216.5923169,24300.0,0.693942910593,-1.83015225364,0.6103515625,1.0,101325.0,0.44641025641,-0.122484567816,-0.402522914899,-1.3882915233,24109.6211955,1.69328089461,5.62983087808,3.46108648256 +31560423,0.0,0.1,0.5,0.2,0.0,0.53762295082,0.229965277778,0.558488828503,268.87928125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,262.611375508,266.077147917,275.924715625,272.255393024,894.0,296.15,49159.6580336,24423.0,0.693942910593,-1.83015225364,0.608936848958,1.0,101325.0,0.446900854701,-0.116274327177,-0.402521050366,-1.37934949206,24232.5829515,1.68707065397,5.61178490106,3.41173799661 +31560546,0.0,0.1,0.5,0.2,0.0,0.702295081967,0.291180555556,0.727032004832,269.373294643,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,262.695633472,266.136170833,276.00786875,272.32788191,894.0,296.15,49102.7237503,24546.0,0.693942910593,-1.83015225364,0.607522135417,1.0,101325.0,0.447391452991,-0.110064086538,-0.402519185834,-1.37040746083,24355.5447076,1.68086041333,5.59373892404,3.36238951066 +31560669,0.0,0.1,0.5,0.2,0.0,0.866967213115,0.352395833333,0.895575181161,269.867308036,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,262.779891437,266.19519375,276.091021875,272.400370795,894.0,296.15,49045.789467,24669.0,0.693942910593,-1.83015225364,0.606107421875,1.0,101325.0,0.447882051282,-0.103853845899,-0.402517321301,-1.36146542959,24478.5064636,1.67465017269,5.57569294702,3.31304102471 +31560792,0.0,0.1,0.5,0.2,0.0,1.03163934426,0.413611111111,1.06411835749,270.361321429,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,262.864149402,266.254216667,276.174175,272.47285968,894.0,296.15,48988.8551837,24792.0,0.693942910593,-1.83015225364,0.604692708333,1.0,101325.0,0.448372649573,-0.0976436052602,-0.402515456769,-1.35252339836,24601.4682196,1.66843993206,5.55764697,3.26369253876 +31560915,0.0,0.1,0.5,0.2,0.0,1.19631147541,0.474826388889,1.23266153382,270.855334821,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,262.948407367,266.313239583,276.257328125,272.545348566,894.0,296.15,48931.9209004,24915.0,0.693942910593,-1.83015225364,0.603277994792,1.0,101325.0,0.448863247863,-0.0914333646212,-0.402513592236,-1.34358136712,24724.4299757,1.66222969142,5.53960099298,3.21434405281 +31561038,0.0,0.1,0.5,0.2,0.0,1.36098360656,0.536041666667,1.40120471015,271.349348214,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,263.032665331,266.3722625,276.34048125,272.617837451,894.0,296.15,48874.986617,25038.0,0.693942910593,-1.83015225364,0.60186328125,1.0,101325.0,0.449353846154,-0.0852231239823,-0.402511727704,-1.33463933588,24847.3917317,1.65601945078,5.52155501595,3.16499556686 +31561161,0.0,0.1,0.5,0.2,0.0,1.52565573771,0.597256944445,1.56974788648,271.843361607,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,263.116923296,266.431285417,276.423634375,272.690326336,894.0,296.15,48818.0523337,25161.0,0.693942910593,-1.83015225364,0.600448567708,1.0,101325.0,0.449844444444,-0.0790128833433,-0.402509863171,-1.32569730465,24970.3534877,1.64980921014,5.50350903893,3.11564708091 +31561284,0.0,0.1,0.5,0.2,0.0,1.78002732241,0.676361111111,1.82587560387,272.38325,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,263.189059595,266.465569697,276.441551389,272.713765474,894.0,296.15,48663.6020476,25284.0,0.693942910593,-1.83015225364,0.606794270833,1.0,101325.0,0.451049184149,-0.0728867947572,-0.40250799737,-1.31675527321,25093.3152465,1.64368312155,5.45013833403,3.10802371289 +31561407,0.0,0.1,0.5,0.2,0.0,2.07604508197,0.763770833334,2.12266757247,272.9444375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,263.255567978,266.488368182,276.429180208,272.714431514,894.0,296.15,48463.8764743,25407.0,0.693942910593,-1.83015225364,0.616743024554,1.0,101325.0,0.45258548951,-0.066799776767,-0.40250613098,-1.30781324169,25216.2770065,1.63759610356,5.3803668626,3.11977272104 +31561530,0.0,0.1,0.5,0.2,0.0,2.37206284153,0.851180555556,2.41945954106,273.505625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,263.32207636,266.511166667,276.416809028,272.715097554,894.0,296.15,48264.1509011,25530.0,0.693942910593,-1.83015225364,0.626691778274,1.0,101325.0,0.454121794872,-0.0607127587768,-0.40250426459,-1.29887121016,25339.2387665,1.63150908557,5.31059539117,3.1315217292 +31561653,0.0,0.1,0.5,0.2,0.0,2.6680806011,0.938590277778,2.71625150966,274.0668125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,263.388584743,266.533965152,276.404437847,272.715763594,894.0,296.15,48064.4253279,25653.0,0.693942910593,-1.83015225364,0.636640531994,1.0,101325.0,0.455658100233,-0.0546257407867,-0.4025023982,-1.28992917864,25462.2005265,1.62542206758,5.24082391974,3.14327073735 +31561776,0.0,0.1,0.5,0.2,0.0,2.96409836066,1.026,3.01304347826,274.628,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,263.455093126,266.556763636,276.392066667,272.716429635,894.0,296.15,47864.6997547,25776.0,0.693942910593,-1.83015225364,0.646589285715,1.0,101325.0,0.457194405594,-0.0485387227965,-0.40250053181,-1.28098714711,25585.1622865,1.61933504959,5.17105244832,3.1550197455 +31561899,0.0,0.1,0.5,0.2,0.0,3.26011612022,1.11340972222,3.30983544686,275.1891875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,263.521601509,266.579562121,276.379695486,272.717095675,894.0,296.15,47664.9741815,25899.0,0.693942910593,-1.83015225364,0.656538039435,1.0,101325.0,0.458730710956,-0.0424517048064,-0.40249866542,-1.27204511558,25708.1240465,1.6132480316,5.10128097689,3.16676875366 +31562022,0.0,0.1,0.5,0.2,0.0,3.55613387978,1.20081944444,3.60662741546,275.750375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,263.588109891,266.602360606,276.367324306,272.717761715,894.0,296.15,47465.2486083,26022.0,0.693942910593,-1.83015225364,0.666486793155,1.0,101325.0,0.460267016317,-0.0363646868162,-0.40249679903,-1.26310308406,25831.0858065,1.60716101361,5.03150950546,3.17851776181 +31562145,0.0,0.1,0.5,0.2,0.0,3.90665983607,1.2934375,3.95509510869,276.3509375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,263.679660031,266.623719697,276.339102431,272.706890808,894.0,296.15,47249.4198709,26145.0,0.693942910593,-1.83015225364,0.67943498884,1.0,101325.0,0.462062645687,-0.0303275222606,-0.402494931961,-1.25416105243,25954.0475679,1.60112384905,4.94338749828,3.2016595135 +31562268,0.0,0.1,0.5,0.2,0.0,4.35166666667,1.39508333333,4.39313405797,277.01975,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,263.814615881,266.642583839,276.283406019,272.676022527,894.0,296.15,47005.6789825,26268.0,0.693942910593,-1.83015225364,0.697582217262,1.0,101325.0,0.464307770008,-0.0243767703251,-0.402493063713,-1.24521902061,26077.0093319,1.59517309712,4.8234578958,3.24454868729 +31562391,0.0,0.1,0.5,0.2,0.0,4.79667349727,1.49672916667,4.83117300725,277.6885625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,263.949571731,266.66144798,276.227709607,272.645154245,894.0,296.15,46761.9380942,26391.0,0.693942910593,-1.83015225364,0.715729445685,1.0,101325.0,0.466552894328,-0.0184260183896,-0.402491195466,-1.2362769888,26199.9710959,1.58922234518,4.70352829332,3.28743786109 +31562514,0.0,0.1,0.5,0.2,0.0,5.24168032787,1.598375,5.26921195652,278.357375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,264.084527582,266.680312121,276.172013194,272.614285963,894.0,296.15,46518.1972058,26514.0,0.693942910593,-1.83015225364,0.733876674107,1.0,101325.0,0.468798018648,-0.0124752664541,-0.402489327219,-1.22733495698,26322.9328598,1.58327159325,4.58359869084,3.33032703488 +31562637,0.0,0.1,0.5,0.2,0.0,5.68668715847,1.70002083333,5.7072509058,279.0261875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,264.219483432,266.699176263,276.116316782,272.583417682,894.0,296.15,46274.4563174,26637.0,0.693942910593,-1.83015225364,0.75202390253,1.0,101325.0,0.471043142968,-0.00652451451855,-0.402487458971,-1.21839292517,26445.8946238,1.57732084131,4.46366908836,3.37321620868 +31562760,0.0,0.1,0.5,0.2,0.0,6.13169398907,1.80166666667,6.14528985507,279.695,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,264.354439282,266.718040404,276.06062037,272.5525494,894.0,296.15,46030.715429,26760.0,0.693942910593,-1.83015225364,0.770171130953,1.0,101325.0,0.473288267288,-0.000573762583027,-0.402485590724,-1.20945089335,26568.8563878,1.57137008938,4.34373948587,3.41610538248 +31562883,0.0,0.1,0.5,0.2,0.0,6.57670081967,1.9033125,6.58332880435,280.3638125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,264.489395133,266.736904546,276.004923958,272.521681119,894.0,296.15,45786.9745406,26883.0,0.693942910593,-1.83015225364,0.788318359375,1.0,101325.0,0.475533391608,0.0053769893525,-0.402483722476,-1.20050886154,26691.8181518,1.56541933744,4.22380988339,3.45899455627 +31563006,0.0,0.1,0.5,0.2,0.0,7.08284665301,2.05378959811,7.08197297961,281.032625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,264.628214797,266.755752525,275.949054398,272.49068221,894.0,296.15,45543.8832407,27006.0,0.693942910593,-1.83015225364,0.806446986607,1.0,101325.0,0.477786285936,0.0113204111856,-0.402481854138,-1.19156682971,26814.7799159,1.55947591561,4.10327114861,3.50221775815 +31563129,0.0,0.1,0.5,0.2,0.0,8.78120303961,3.15647635934,8.76241906166,281.7014375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,264.842378826,266.774285354,275.889808449,272.457136069,894.0,296.15,45313.4589164,27129.0,0.693942910593,-1.83015225364,0.824212890625,1.0,101325.0,0.480190695416,0.0171208960206,-0.402479984034,-1.18262479761,26937.7416839,1.55367543078,3.97085433409,3.55195450764 +31563252,0.0,0.1,0.5,0.2,0.0,10.4795594262,4.25916312056,10.4428651437,282.37025,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,265.056542854,266.792818182,275.8305625,272.423589929,894.0,296.15,45083.0345921,27252.0,0.693942910593,-1.83015225364,0.841978794643,1.0,101325.0,0.482595104895,0.0229213808556,-0.402478113929,-1.1736827655,27060.7034519,1.54787494594,3.83843751956,3.60169125713 +31563375,0.0,0.1,0.5,0.2,0.0,12.1779158128,5.36184988179,12.1233112258,283.0390625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,265.270706883,266.81135101,275.771316551,272.390043789,894.0,296.15,44852.6102679,27375.0,0.693942910593,-1.83015225364,0.859744698661,1.0,101325.0,0.484999514374,0.0287218656907,-0.402476243824,-1.1647407334,27183.6652198,1.54207446111,3.70602070504,3.65142800662 +31563498,0.0,0.1,0.5,0.2,0.0,13.8762721994,6.46453664302,13.8037573078,283.707875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,265.484870912,266.829883838,275.712070602,272.356497648,894.0,296.15,44622.1859436,27498.0,0.693942910593,-1.83015225364,0.877510602679,1.0,101325.0,0.487403923854,0.0345223505257,-0.402474373719,-1.1557987013,27306.6269878,1.53627397627,3.57360389051,3.7011647561 +31563621,0.0,0.1,0.5,0.2,0.0,15.5746285861,7.56722340425,15.4842033898,284.3766875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,265.699034941,266.848416666,275.652824653,272.322951508,894.0,296.15,44391.7616193,27621.0,0.693942910593,-1.83015225364,0.895276506697,1.0,101325.0,0.489808333333,0.0403228353608,-0.402472503614,-1.14685666919,27429.5887557,1.53047349144,3.44118707599,3.75090150559 +31563744,0.0,0.1,0.5,0.2,0.0,17.2729849727,8.66991016547,17.1646494719,285.0455,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,265.913198969,266.866949495,275.593578704,272.289405367,894.0,296.15,44161.337295,27744.0,0.693942910593,-1.83015225364,0.913042410715,1.0,101325.0,0.492212742813,0.0461233201958,-0.402470633509,-1.13791463709,27552.5505237,1.5246730066,3.30877026146,3.80063825508 +31563867,0.0,0.1,0.5,0.2,0.0,18.9713413593,9.7725969267,18.8450955539,285.7143125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,266.127362998,266.885482323,275.534332755,272.255859227,894.0,296.15,43930.9129708,27867.0,0.693942910593,-1.83015225364,0.930808314732,1.0,101325.0,0.494617152292,0.0519238050308,-0.402468763404,-1.12897260498,27675.5122917,1.51887252177,3.17635344693,3.85037500457 +31563990,0.0,0.1,0.5,0.2,0.0,21.7804047131,11.8865130024,21.6865757799,286.304375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,266.297834004,266.906409091,275.50159375,272.242457635,894.0,296.15,43752.1826295,27990.0,0.693942910593,-1.83015225364,0.942017299107,1.0,101325.0,0.496736013986,0.0576033348341,-0.402466891941,-1.12003057267,27798.4740625,1.51319299196,3.06236373507,3.88734710948 +31564113,0.0,0.1,0.5,0.2,0.0,24.9967272882,14.37121316,24.9537685254,286.8655625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,266.452284236,266.928213636,275.478573958,272.236442378,894.0,296.15,43592.4067488,28113.0,0.693942910593,-1.83015225364,0.950822079613,1.0,101325.0,0.498750174825,0.0632385144591,-0.402465019979,-1.11108854027,27921.4358345,1.50755781234,2.95513062751,3.9196388447 +31564236,0.0,0.1,0.5,0.2,0.0,28.2130498634,16.8559133176,28.2209612708,287.42675,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,266.606734467,266.950018182,275.455554167,272.230427121,894.0,296.15,43432.630868,28236.0,0.693942910593,-1.83015225364,0.959626860119,1.0,101325.0,0.500764335664,0.0688736940842,-0.402463148017,-1.10214650788,28044.3976064,1.50192263271,2.84789751996,3.95193057993 +31564359,0.0,0.1,0.5,0.2,0.0,31.4293724385,19.3406134752,31.4881540162,287.9879375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,266.761184698,266.971822727,275.432534375,272.224411864,894.0,296.15,43272.8549872,28359.0,0.693942910593,-1.83015225364,0.968431640625,1.0,101325.0,0.502778496503,0.0745088737092,-0.402461276055,-1.09320447549,28167.3593784,1.49628745309,2.7406644124,3.98422231516 +31564482,0.0,0.1,0.5,0.2,0.0,34.6456950137,21.8253136328,34.7553467616,288.549125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,266.915634929,266.993627273,275.409514583,272.218396607,894.0,296.15,43113.0791064,28482.0,0.693942910593,-1.83015225364,0.977236421131,1.0,101325.0,0.504792657343,0.0801440533342,-0.402459404093,-1.08426244309,28290.3211503,1.49065227346,2.63343130485,4.01651405039 +31564605,0.0,0.1,0.5,0.2,0.0,37.8620175888,24.3100137904,38.0225395071,289.1103125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,267.07008516,267.015431818,275.386494792,272.212381349,894.0,296.15,42953.3032256,28605.0,0.693942910593,-1.83015225364,0.986041201637,1.0,101325.0,0.506806818182,0.0857792329592,-0.402457532131,-1.0753204107,28413.2829223,1.48501709384,2.52619819729,4.04880578561 +31564728,0.0,0.1,0.5,0.2,0.0,41.078340164,26.794713948,41.2897322525,289.6715,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,267.224535392,267.037236364,275.363475,272.206366092,894.0,296.15,42793.5273448,28728.0,0.693942910593,-1.83015225364,0.994845982143,1.0,101325.0,0.508820979021,0.0914144125842,-0.40245566017,-1.06637837831,28536.2446942,1.47938191421,2.41896508973,4.08109752084 +31564851,0.0,0.1,0.5,0.2,0.0,44.4090992145,29.4706875492,44.7495283304,290.070457031,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,267.312959388,267.065024358,275.355790625,272.211704716,894.0,296.15,42680.3161914,28851.0,0.693942910593,-1.83015225364,0.99945610119,1.0,101325.0,0.510581859612,0.0969743590505,-0.402453787438,-1.05743634579,28659.2064678,1.47382196775,2.32567729572,4.09242200683 +31564974,0.0,0.1,0.5,0.2,0.0,47.9014156421,32.4166942474,48.4812349955,290.240382813,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,267.308169876,267.101259575,275.36975625,272.233072347,894.0,296.15,42632.8434765,28974.0,0.693942910593,-1.83015225364,0.998144345238,1.0,101325.0,0.511985168087,0.102428093999,-0.402451913618,-1.04849431311,28782.1682437,1.4683682328,2.25207700317,4.07414567035 +31565097,0.0,0.1,0.5,0.2,0.0,51.3937320697,35.3627009456,52.2129416605,290.410308594,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,267.303380365,267.137494792,275.383721875,272.254439979,894.0,296.15,42585.3707617,29097.0,0.693942910593,-1.83015225364,0.996832589286,1.0,101325.0,0.513388476562,0.107881828947,-0.402450039799,-1.03955228042,28905.1300197,1.46291449785,2.17847671061,4.05586933387 +31565220,0.0,0.1,0.5,0.2,0.0,54.8860484973,38.3087076438,55.9446483255,290.580234375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,267.298590853,267.173730008,275.3976875,272.27580761,894.0,296.15,42537.8980468,29220.0,0.693942910593,-1.83015225364,0.995520833333,1.0,101325.0,0.514791785038,0.113335563895,-0.40244816598,-1.03061024774,29028.0917956,1.4574607629,2.10487641806,4.03759299739 +31565343,0.0,0.1,0.5,0.2,0.0,58.3783649249,41.254714342,59.6763549906,290.750160156,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,267.293801341,267.209965225,275.411653125,272.297175242,894.0,296.15,42490.425332,29343.0,0.693942910593,-1.83015225364,0.994209077381,1.0,101325.0,0.516195093513,0.118789298844,-0.402446292161,-1.02166821505,29151.0535715,1.45200702795,2.03127612551,4.01931666092 +31565466,0.0,0.1,0.5,0.2,0.0,61.8706813524,44.2007210402,63.4080616556,290.920085938,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,267.28901183,267.246200442,275.42561875,272.318542873,894.0,296.15,42442.9526171,29466.0,0.693942910593,-1.83015225364,0.992897321428,1.0,101325.0,0.517598401988,0.124243033792,-0.402444418342,-1.01272618237,29274.0153475,1.446553293,1.95767583296,4.00104032444 +31565589,0.0,0.1,0.5,0.2,0.0,65.36299778,47.1467277383,67.1397683206,291.090011719,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,267.284222318,267.282435658,275.439584375,272.339910504,894.0,296.15,42395.4799023,29589.0,0.693942910593,-1.83015225364,0.991585565476,1.0,101325.0,0.519001710464,0.12969676874,-0.402442544523,-1.00378414969,29396.9771234,1.44109955806,1.88407554041,3.98276398796 +31565712,0.0,0.1,0.5,0.2,0.0,68.7610724043,50.0479148936,70.8073072955,291.22165625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,267.274444714,267.319845819,275.454865741,272.362028625,894.0,296.15,42358.5300384,29712.0,0.693942910593,-1.83015225364,0.989934523809,1.0,101325.0,0.520347806186,0.135131115522,-0.402440670522,-0.994842116973,29519.9388997,1.43566521127,1.81239715883,3.9606784016 +31565835,0.0,0.1,0.5,0.2,0.0,71.2874103483,52.5345212766,73.8812951363,290.999199219,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,267.218527259,267.368124211,275.482317708,272.391088766,894.0,296.15,42418.9165463,29835.0,0.693942910593,-1.83015225364,0.985145089285,1.0,101325.0,0.521164683949,0.140386121771,-0.402438794846,-0.985900083999,29642.9006796,1.43041020503,1.75849645383,3.9033572538 +31565958,0.0,0.1,0.5,0.2,0.0,73.8137482923,55.0211276595,76.9552829771,290.776742188,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,267.162609803,267.416402602,275.509769676,272.420148908,894.0,296.15,42479.3030541,29958.0,0.693942910593,-1.83015225364,0.980355654762,1.0,101325.0,0.521981561711,0.145641128019,-0.40243691917,-0.976958051024,29765.8624596,1.42515519878,1.70459574882,3.846036106 +31566081,0.0,0.1,0.5,0.2,0.0,76.3400862363,57.5077340425,80.029270818,290.554285156,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,267.106692347,267.464680994,275.537221644,272.449209049,894.0,296.15,42539.6895619,30081.0,0.693942910593,-1.83015225364,0.975566220238,1.0,101325.0,0.522798439473,0.150896134268,-0.402435043494,-0.96801601805,29888.8242395,1.41990019253,1.65069504382,3.7887149582 +31566204,0.0,0.1,0.5,0.2,0.0,78.8664241803,59.9943404255,83.1032586588,290.331828125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,267.050774891,267.512959385,275.564673611,272.47826919,894.0,296.15,42600.0760698,30204.0,0.693942910593,-1.83015225364,0.970776785714,1.0,101325.0,0.523615317235,0.156151140516,-0.402433167817,-0.959073985075,30011.7860195,1.41464518628,1.59679433881,3.7313938104 +31566327,0.0,0.1,0.5,0.2,0.0,81.3927621243,62.4809468085,86.1772464996,290.109371094,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.994857435,267.561237777,275.592125579,272.507329332,894.0,296.15,42660.4625776,30327.0,0.693942910593,-1.83015225364,0.96598735119,1.0,101325.0,0.524432194997,0.161406146765,-0.402431292141,-0.950131952101,30134.7477994,1.40939018003,1.54289363381,3.6740726626 +31566450,0.0,0.1,0.5,0.2,0.0,83.9191000683,64.9675531915,89.2512343404,289.886914063,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.938939979,267.609516169,275.619577547,272.536389473,894.0,296.15,42720.8490855,30450.0,0.693942910593,-1.83015225364,0.961197916666,1.0,101325.0,0.525249072759,0.166661153014,-0.402429416465,-0.941189919126,30257.7095793,1.40413517378,1.4889929288,3.6167515148 +31566573,0.0,0.1,0.5,0.2,0.0,86.4454380123,67.4541595745,92.3252221813,289.664457031,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.883022523,267.65779456,275.647029514,272.565449615,894.0,296.15,42781.2355933,30573.0,0.693942910593,-1.83015225364,0.956408482143,1.0,101325.0,0.526065950521,0.171916159262,-0.402427540789,-0.932247886152,30380.6713593,1.39888016754,1.43509222379,3.559430367 +31566696,0.0,0.1,0.5,0.2,0.0,88.2549112022,67.5514295984,93.9740061474,289.3825,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.84029653,267.702425365,275.687651852,272.601766581,894.0,296.15,42916.5825722,30696.0,0.693942910593,-1.83015225364,0.951333333333,1.0,101325.0,0.526283080809,0.177001665628,-0.402425663663,-0.923305852951,30503.6331423,1.39379466117,1.39976478967,3.50494400981 +31566819,0.0,0.1,0.5,0.2,0.0,89.86276618,66.9766987714,95.2219515238,289.083808594,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.801280635,267.746030286,275.731978357,272.640124529,894.0,296.15,43073.0121836,30819.0,0.693942910593,-1.83015225364,0.946177827381,1.0,101325.0,0.526331532118,0.182039500153,-0.40242378613,-0.914363819686,30626.5949262,1.38875682665,1.36966108798,3.45125493749 +31566942,0.0,0.1,0.5,0.2,0.0,91.4706211578,66.4019679443,96.4698969002,288.785117188,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.762264741,267.789635206,275.776304861,272.678482477,894.0,296.15,43229.4417949,30942.0,0.693942910593,-1.83015225364,0.941022321428,1.0,101325.0,0.526379983428,0.187077334678,-0.402421908597,-0.905421786421,30749.5567101,1.38371899212,1.3395573863,3.39756586516 +31567065,0.0,0.1,0.5,0.2,0.0,93.0784761356,65.8272371173,97.7178422765,288.486425781,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.723248846,267.833240127,275.820631366,272.716840426,894.0,296.15,43385.8714063,31065.0,0.693942910593,-1.83015225364,0.935866815476,1.0,101325.0,0.526428434738,0.192115169202,-0.402420031064,-0.896479753156,30872.5184941,1.3786811576,1.30945368461,3.34387679284 +31567188,0.0,0.1,0.5,0.2,0.0,94.6863311134,65.2525062902,98.9657876529,288.187734375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.684232951,267.876845048,275.86495787,272.755198374,894.0,296.15,43542.3010176,31188.0,0.693942910593,-1.83015225364,0.930711309523,1.0,101325.0,0.526476886048,0.197153003727,-0.40241815353,-0.887537719891,30995.480278,1.37364332307,1.27934998292,3.29018772051 +31567311,0.0,0.1,0.5,0.2,0.0,96.2941860912,64.6777754631,100.213733029,287.889042969,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.645217057,267.920449969,275.909284375,272.793556322,894.0,296.15,43698.730629,31311.0,0.693942910593,-1.83015225364,0.925555803571,1.0,101325.0,0.526525337358,0.202190838252,-0.402416275997,-0.878595686626,31118.4420619,1.36860548855,1.24924628123,3.23649864818 +31567434,0.0,0.1,0.5,0.2,0.0,97.902041069,64.1030446361,101.461678406,287.590351563,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.606201162,267.96405489,275.953610879,272.83191427,894.0,296.15,43855.1602404,31434.0,0.693942910593,-1.83015225364,0.920400297619,1.0,101325.0,0.526573788668,0.207228672776,-0.402414398464,-0.869653653361,31241.4038458,1.36356765402,1.21914257954,3.18280957586 +31567557,0.0,0.1,0.5,0.2,0.0,99.3887856472,62.1726498848,102.123054888,287.402839844,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.598050545,267.997747317,276.00732743,272.875193089,894.0,296.15,44050.6218688,31557.0,0.693942910593,-1.83015225364,0.916517113095,1.0,101325.0,0.526181800426,0.212156793838,-0.40241252007,-0.860711619961,31364.3656316,1.35863953296,1.20196555987,3.15058075434 +31567680,0.0,0.1,0.5,0.2,0.0,100.735297131,58.6725390107,102.105246334,287.3440625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.62563867,268.019962122,276.071916666,272.924169758,894.0,296.15,44291.2784645,31680.0,0.693942910593,-1.83015225364,0.914107142857,1.0,101325.0,0.525279829546,0.216957878258,-0.40241064068,-0.851769586405,31487.3274195,1.35383844854,1.19975627728,3.14320064427 +31567803,0.0,0.1,0.5,0.2,0.0,102.081808615,55.1724281366,102.08743778,287.285285156,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.653226795,268.042176926,276.136505903,272.973146426,894.0,296.15,44531.9350601,31803.0,0.693942910593,-1.83015225364,0.911697172619,1.0,101325.0,0.524377858665,0.221758962678,-0.40240876129,-0.842827552849,31610.2892074,1.34903736412,1.19754699469,3.13582053421 +31567926,0.0,0.1,0.5,0.2,0.0,103.428320099,51.6723172625,102.069629227,287.226507813,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.68081492,268.06439173,276.201095139,273.022123095,894.0,296.15,44772.5916558,31926.0,0.693942910593,-1.83015225364,0.909287202381,1.0,101325.0,0.523475887784,0.226560047098,-0.4024068819,-0.833885519293,31733.2509954,1.3442362797,1.19533771209,3.12844042415 +31568049,0.0,0.1,0.5,0.2,0.0,104.774831583,48.1722063884,102.051820673,287.167730469,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.708403045,268.086606534,276.265684375,273.071099763,894.0,296.15,45013.2482514,32049.0,0.693942910593,-1.83015225364,0.906877232143,1.0,101325.0,0.522573916903,0.231361131517,-0.40240500251,-0.824943485737,31856.2127833,1.33943519528,1.1931284295,3.12106031408 +31568172,0.0,0.1,0.5,0.2,0.0,106.121343067,44.6720955143,102.034012119,287.108953125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.73599117,268.108821339,276.330273611,273.120076432,894.0,296.15,45253.9048471,32172.0,0.693942910593,-1.83015225364,0.904467261905,1.0,101325.0,0.521671946023,0.236162215937,-0.40240312312,-0.816001452181,31979.1745712,1.33463411086,1.1909191469,3.11368020402 +31568295,0.0,0.1,0.5,0.2,0.0,107.467854551,41.1719846402,102.016203566,287.050175781,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,266.763579295,268.131036143,276.394862847,273.169053101,894.0,296.15,45494.5614427,32295.0,0.693942910593,-1.83015225364,0.902057291667,1.0,101325.0,0.520769975142,0.240963300357,-0.40240124373,-0.807059418625,32102.1363592,1.32983302644,1.18870986431,3.10630009396 +31568418,0.0,0.1,0.5,0.2,0.0,108.728192879,37.7100329149,102.028385001,287.08445613,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,266.810644536,268.140730655,276.4674,273.219917611,894.0,296.15,45753.5917386,32418.0,0.693942910593,-1.83015225364,0.90053125,1.0,101325.0,0.519217480469,0.245726717754,-0.402399364069,-0.798117385026,32225.0981477,1.32506960904,1.20275791132,3.12199057198 +31568541,0.0,0.1,0.5,0.2,0.0,109.485854466,34.4706762248,102.215508036,287.661573017,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,266.971326289,268.077390129,276.5863,273.28179453,894.0,296.15,46119.8019523,32541.0,0.693942910593,-1.83015225364,0.904161458333,1.0,101325.0,0.513870263672,0.250270410851,-0.402397482822,-0.789175351179,32348.0599396,1.32052591595,1.31164038105,3.27225948049 +31568664,0.0,0.1,0.5,0.2,0.0,110.243516052,31.2313195346,102.402631071,288.238689904,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,267.132008041,268.014049603,276.7052,273.343671448,894.0,296.15,46486.012166,32664.0,0.693942910593,-1.83015225364,0.907791666667,1.0,101325.0,0.508523046875,0.254814103947,-0.402395601575,-0.780233317331,32471.0217315,1.31598222285,1.42052285077,3.42252838901 +31568787,0.0,0.1,0.5,0.2,0.0,111.001177638,27.9919628444,102.589754106,288.815806791,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,267.292689794,267.950709077,276.8241,273.405548367,894.0,296.15,46852.2223798,32787.0,0.693942910593,-1.83015225364,0.911421875,1.0,101325.0,0.503175830078,0.259357797044,-0.402393720328,-0.771291283484,32593.9835235,1.31143852975,1.5294053205,3.57279729752 +31568910,0.0,0.1,0.5,0.2,0.0,111.758839225,24.7526061542,102.776877141,289.392923678,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,267.453371547,267.887368552,276.943,273.467425286,894.0,296.15,47218.4325935,32910.0,0.693942910593,-1.83015225364,0.915052083333,1.0,101325.0,0.497828613282,0.26390149014,-0.402391839082,-0.762349249637,32716.9453154,1.30689483666,1.63828779023,3.72306620604 +31569033,0.0,0.1,0.5,0.2,0.0,112.516500811,21.5132494641,102.964000176,289.970040565,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,267.6140533,267.824028026,277.0619,273.529302205,894.0,296.15,47584.6428072,33033.0,0.693942910593,-1.83015225364,0.918682291667,1.0,101325.0,0.492481396485,0.268445183237,-0.402389957835,-0.753407215789,32839.9071074,1.30235114356,1.74717025995,3.87333511455 +31569156,0.0,0.1,0.5,0.2,0.0,113.274162397,18.2738927739,103.151123211,290.547157452,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,267.774735052,267.7606875,277.1808,273.591179123,894.0,296.15,47950.8530209,33156.0,0.693942910593,-1.83015225364,0.9223125,1.0,101325.0,0.487134179688,0.272988876334,-0.402388076588,-0.744465181942,32962.8688993,1.29780745047,1.85605272968,4.02360402307 +31569279,0.0,0.1,0.5,0.2,0.0,114.031823984,15.0345360837,103.338246246,291.124274339,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,267.935416805,267.697346974,277.2997,273.653056042,894.0,296.15,48317.0632347,33279.0,0.693942910593,-1.83015225364,0.925942708333,1.0,101325.0,0.481786962891,0.27753256943,-0.402386195341,-0.735523148095,33085.8306912,1.29326375737,1.96493519941,4.17387293158 +31569402,0.0,0.1,0.5,0.2,0.0,114.029580345,14.6535746644,104.914905418,292.080656049,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,268.176969552,267.55722349,277.458266667,273.712140022,894.0,296.15,48799.0051039,33402.0,0.693942910593,-1.83015225364,0.932524305556,1.0,101325.0,0.472409255643,0.281844927955,-0.402384312555,-0.726581114006,33208.7924865,1.28895139884,2.16765224194,4.44561706323 +31569525,0.0,0.1,0.5,0.2,0.0,113.87088563,14.861106389,106.777645561,293.115121694,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,268.43517221,267.401291749,277.625,273.770648984,894.0,296.15,49304.7740787,33525.0,0.693942910593,-1.83015225364,0.939713541667,1.0,101325.0,0.462201741537,0.286109658773,-0.402382429451,-0.717639079867,33331.7542824,1.28468666802,2.38968816711,4.74237079965 +31569648,0.0,0.1,0.5,0.2,0.0,113.712190915,15.0686381137,108.640385703,294.14958734,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,268.693374867,267.245360009,277.791733333,273.829157947,894.0,296.15,49810.5430535,33648.0,0.693942910593,-1.83015225364,0.946902777778,1.0,101325.0,0.451994227431,0.290374389592,-0.402380546348,-0.708697045728,33454.7160784,1.28042193721,2.61172409228,5.03912453606 +31569771,0.0,0.1,0.5,0.2,0.0,113.5534962,15.2761698384,110.503125845,295.184052985,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,268.951577525,267.089428268,277.958466667,273.88766691,894.0,296.15,50316.3120283,33771.0,0.693942910593,-1.83015225364,0.954092013889,1.0,101325.0,0.441786713325,0.29463912041,-0.402378663245,-0.69975501159,33577.6778743,1.27615720639,2.83376001745,5.33587827247 +31569894,0.0,0.1,0.5,0.2,0.0,113.394801486,15.483701563,112.365865988,296.21851863,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,269.209780183,266.933496528,278.1252,273.946175873,894.0,296.15,50822.0810031,33894.0,0.693942910593,-1.83015225364,0.96128125,1.0,101325.0,0.431579199219,0.298903851229,-0.402376780141,-0.690812977451,33700.6396702,1.27189247557,3.05579594262,5.63263200888 +31570017,0.0,0.1,0.5,0.2,0.0,113.236106771,15.6912332877,114.22860613,297.252984275,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,269.46798284,266.777564787,278.291933333,274.004684836,894.0,296.15,51327.8499779,34017.0,0.693942910593,-1.83015225364,0.968470486111,1.0,101325.0,0.421371685113,0.303168582048,-0.402374897038,-0.681870943312,33823.6014662,1.26762774475,3.27783186779,5.9293857453 +31570140,0.0,0.1,0.5,0.2,0.0,113.077412056,15.8987650124,116.091346272,298.28744992,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,269.726185498,266.621633047,278.458666667,274.063193799,894.0,296.15,51833.6189527,34140.0,0.693942910593,-1.83015225364,0.975659722223,1.0,101325.0,0.411164171007,0.307433312866,-0.402373013934,-0.672928909174,33946.5632621,1.26336301393,3.49986779296,6.22613948171 +31570263,0.0,0.1,0.5,0.2,0.0,112.621289062,23.8997219782,120.045136433,299.276693209,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,269.937166937,266.453606399,278.6205,274.11013108,894.0,296.15,52383.8261841,34263.0,0.693942910593,-1.83015225364,0.980625,1.0,101325.0,0.400740185547,0.311543741004,-0.40237112988,-0.663986874885,34069.5250601,1.25925258579,3.71962313147,6.52566180905 +31570386,0.0,0.1,0.5,0.2,0.0,111.881901042,39.3229886975,125.990402801,300.222867588,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,270.103175786,266.274060791,278.777666667,274.146047712,894.0,296.15,52976.3555647,34386.0,0.693942910593,-1.83015225364,0.983472222222,1.0,101325.0,0.390110036892,0.315507214207,-0.40236924492,-0.655044840455,34192.4868601,1.25528911259,3.93720648269,6.82782088967 +31570509,0.0,0.1,0.5,0.2,0.0,111.142513021,54.7462554168,131.93566917,301.169041967,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,270.269184636,266.094515184,278.934833333,274.181964344,894.0,296.15,53568.8849452,34509.0,0.693942910593,-1.83015225364,0.986319444445,1.0,101325.0,0.379479888238,0.31947068741,-0.40236735996,-0.646102806024,34315.44866,1.25132563938,4.15478983391,7.12997997029 +31570632,0.0,0.1,0.5,0.2,0.0,110.403125,70.1695221362,137.880935539,302.115216346,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,270.435193486,265.914969577,279.092,274.217880976,894.0,296.15,54161.4143257,34632.0,0.693942910593,-1.83015225364,0.989166666667,1.0,101325.0,0.368849739583,0.323434160613,-0.402365475,-0.637160771593,34438.41046,1.24736216618,4.37237318513,7.4321390509 +31570755,0.0,0.1,0.5,0.2,0.0,109.663736979,85.5927888555,143.826201907,303.061390725,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,270.601202335,265.73542397,279.249166667,274.253797609,894.0,296.15,54753.9437063,34755.0,0.693942910593,-1.83015225364,0.992013888889,1.0,101325.0,0.358219590929,0.327397633816,-0.40236359004,-0.628218737163,34561.3722599,1.24339869298,4.58995653635,7.73429813152 +31570878,0.0,0.1,0.5,0.2,0.0,108.924348958,101.016055575,149.771468276,304.007565104,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,270.767211185,265.555878362,279.406333333,274.289714241,894.0,296.15,55346.4730868,34878.0,0.693942910593,-1.83015225364,0.994861111111,1.0,101325.0,0.347589442275,0.33136110702,-0.40236170508,-0.619276702732,34684.3340598,1.23943521977,4.80753988757,8.03645721214 +31571001,0.0,0.1,0.5,0.2,0.0,108.184960937,116.439322294,155.716734645,304.953739483,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,270.933220034,265.376332755,279.5635,274.325630873,894.0,296.15,55939.0024673,35001.0,0.693942910593,-1.83015225364,0.997708333333,1.0,101325.0,0.33695929362,0.335324580223,-0.40235982012,-0.610334668302,34807.2958598,1.23547174657,5.02512323878,8.33861629275 +31571124,0.0,0.1,0.5,0.2,0.0,107.439947917,134.907085799,162.346111656,305.776219952,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,271.077171858,265.205638559,279.7076,274.356571713,894.0,296.15,56538.1585894,35124.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.327112565105,0.339224835952,-0.402357934798,-0.601392633814,34930.2576605,1.23157149084,5.21889027715,8.61430237054 +31571247,0.0,0.1,0.5,0.2,0.0,106.671731771,165.933398544,171.797445069,306.088463041,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,271.130138451,265.071456432,279.7978,274.366987411,894.0,296.15,57164.6500204,35247.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.320497444662,0.342864319602,-0.402356047981,-0.592450599091,35053.2194645,1.22793200719,5.31441502502,8.78078731166 +31571370,0.0,0.1,0.5,0.2,0.0,105.903515625,196.95971129,181.248778481,306.40070613,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,271.183105044,264.937274306,279.888,274.377403109,894.0,296.15,57791.1414513,35370.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.313882324219,0.346503803253,-0.402354161165,-0.583508564369,35176.1812685,1.22429252354,5.40993977289,8.94727225279 +31571493,0.0,0.1,0.5,0.2,0.0,105.135299479,227.986024035,190.700111893,306.712949219,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,271.236071637,264.80309218,279.9782,274.387818806,894.0,296.15,58417.6328822,35493.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.307267203776,0.350143286903,-0.402352274348,-0.574566529646,35299.1430724,1.22065303989,5.50546452076,9.11375719391 +31571616,0.0,0.1,0.5,0.2,0.0,104.367083333,259.012336781,200.151445306,307.025192308,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,271.28903823,264.668910053,280.0684,274.398234504,894.0,296.15,59044.1243132,35616.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.300652083334,0.353782770553,-0.402350387531,-0.565624494923,35422.1048764,1.21701355624,5.60098926863,9.28024213503 +31571739,0.0,0.1,0.5,0.2,0.0,103.598867188,290.038649526,209.602778718,307.337435397,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,271.342004823,264.534727927,280.1586,274.408650202,894.0,296.15,59670.6157441,35739.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.294036962891,0.357422254203,-0.402348500715,-0.556682460201,35545.0666804,1.21337407259,5.6965140165,9.44672707615 +31571862,0.0,0.1,0.5,0.2,0.0,102.830651042,321.064962271,219.054112131,307.649678486,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,271.394971415,264.4005458,280.2488,274.419065899,894.0,296.15,60297.107175,35862.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.287421842448,0.361061737853,-0.402346613898,-0.547740425478,35668.0284844,1.20973458894,5.79203876437,9.61321201728 +31571985,0.0,0.1,0.5,0.2,0.0,102.062434896,352.091275017,228.505445543,307.961921575,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,271.447938008,264.266363674,280.339,274.429481597,894.0,296.15,60923.598606,35985.0,0.693942910593,-1.83015225364,1.0,1.0,101325.0,0.280806722005,0.364701221503,-0.402344727082,-0.538798390755,35790.9902884,1.20609510529,5.88756351224,9.7796969584 +31572108,0.0,0.1,0.5,0.2,0.0,101.26609375,384.62508946,238.397296125,307.549314904,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,271.28403769,264.173184753,280.374057692,274.425638087,894.0,296.15,61791.6708031,36108.0,0.693942910593,-1.83015225364,0.99109375,0.999125,101325.0,0.277458575994,0.368036214347,-0.402342838635,-0.529856355776,35913.9520958,1.20276011245,5.88245047953,9.83932404891 +31572231,0.0,0.1,0.5,0.2,0.0,100.465846354,417.36827914,248.350329647,307.036034655,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,271.090016968,264.085700721,280.401456731,274.419814132,894.0,296.15,62693.2958844,36231.0,0.693942910593,-1.83015225364,0.980950520833,0.998128472222,101325.0,0.274564176432,0.371328916801,-0.402340949962,-0.520914320761,36036.9139038,1.19946740999,5.86335997729,9.88410977128 +31572354,0.0,0.1,0.5,0.2,0.0,99.6655989583,450.11146882,258.303363169,306.522754407,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,270.895996245,263.99821669,280.428855769,274.413990177,894.0,296.15,63594.9209656,36354.0,0.693942910593,-1.83015225364,0.970807291667,0.997131944444,101325.0,0.27166977687,0.374621619254,-0.402339061289,-0.511972285746,36159.8757118,1.19617470754,5.84426947505,9.92889549366 +31572477,0.0,0.1,0.5,0.2,0.0,98.8653515625,482.854658499,268.256396691,306.009474158,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,270.701975522,263.910732658,280.456254808,274.408166221,894.0,296.15,64496.5460469,36477.0,0.693942910593,-1.83015225364,0.9606640625,0.996135416666,101325.0,0.268775377308,0.377914321708,-0.402337172616,-0.503030250731,36282.8375198,1.19288200509,5.82517897281,9.97368121603 +31572600,0.0,0.1,0.5,0.2,0.0,98.0651041667,515.597848179,278.209430212,305.49619391,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,270.5079548,263.823248627,280.483653846,274.402342266,894.0,296.15,65398.1711282,36600.0,0.693942910593,-1.83015225364,0.950520833333,0.995138888889,101325.0,0.265880977746,0.381207024162,-0.402335283943,-0.494088215716,36405.7993278,1.18958930263,5.80608847057,10.0184669384 +31572723,0.0,0.1,0.5,0.2,0.0,97.2648567708,548.341037859,288.162463734,304.982913662,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,270.313934077,263.735764595,280.511052884,274.396518311,894.0,296.15,66299.7962095,36723.0,0.693942910593,-1.83015225364,0.940377604167,0.994142361111,101325.0,0.262986578184,0.384499726615,-0.40233339527,-0.485146180701,36528.7611357,1.18629660018,5.78699796833,10.0632526608 +31572846,0.0,0.1,0.5,0.2,0.0,96.464609375,581.084227538,298.115497256,304.469633413,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,270.119913354,263.648280564,280.538451923,274.390694355,894.0,296.15,67201.4212908,36846.0,0.693942910593,-1.83015225364,0.930234375,0.993145833333,101325.0,0.260092178622,0.387792429069,-0.402331506597,-0.476204145686,36651.7229437,1.18300389773,5.7679074661,10.1080383831 +31572969,0.0,0.1,0.5,0.2,0.0,95.6445963542,607.00074113,306.66459573,303.728518629,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,269.91476097,263.566868609,280.558847756,274.382644351,894.0,296.15,68267.313335,36969.0,0.693942910593,-1.83015225364,0.918214409722,0.991137731481,101325.0,0.257550824159,0.390878038536,-0.402329616883,-0.467262110507,36774.684754,1.17991828826,5.73929987222,10.1438093486 +31573092,0.0,0.1,0.5,0.2,0.0,94.8091145833,627.574638652,314.114962427,302.809098557,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,269.70089685,263.490208715,280.57376282,274.372852221,894.0,296.15,69461.7621327,37092.0,0.693942910593,-1.83015225364,0.904725694444,0.988337962963,101325.0,0.255285765861,0.393801575231,-0.402327726354,-0.458320075199,36897.646566,1.17699475157,5.70324411967,10.1725252868 +31573215,0.0,0.1,0.5,0.2,0.0,93.9736328125,648.148536174,321.565329124,301.889678485,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,269.48703273,263.413548821,280.588677885,274.363060092,894.0,296.15,70656.2109305,37215.0,0.693942910593,-1.83015225364,0.891236979167,0.985538194444,101325.0,0.253020707564,0.396725111926,-0.402325835825,-0.449378039891,37020.608378,1.17407121487,5.66718836712,10.2012412251 +31573338,0.0,0.1,0.5,0.2,0.0,93.1381510417,668.722433697,329.015695821,300.970258413,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,269.27316861,263.336888927,280.603592949,274.353267962,894.0,296.15,71850.6597283,37338.0,0.693942910593,-1.83015225364,0.877748263889,0.982738425926,101325.0,0.250755649266,0.399648648621,-0.402323945295,-0.440436004584,37143.57019,1.17114767818,5.63113261457,10.2299571633 +31573461,0.0,0.1,0.5,0.2,0.0,92.3026692708,689.296331219,336.466062518,300.050838341,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,269.05930449,263.260229033,280.618508013,274.343475832,894.0,296.15,73045.1085261,37461.0,0.693942910593,-1.83015225364,0.864259548611,0.979938657407,101325.0,0.248490590968,0.402572185316,-0.402322054766,-0.431493969276,37266.532002,1.16822414148,5.59507686203,10.2586731016 +31573584,0.0,0.1,0.5,0.2,0.0,91.4671875,709.870228741,343.916429215,299.131418269,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,268.84544037,263.183569139,280.633423077,274.333683702,894.0,296.15,74239.5573239,37584.0,0.693942910593,-1.83015225364,0.850770833333,0.977138888889,101325.0,0.24622553267,0.405495722011,-0.402320164237,-0.422551933968,37389.493814,1.16530060479,5.55902110948,10.2873890399 +31573707,0.0,0.1,0.5,0.2,0.0,90.6317057292,730.444126264,351.366795912,298.211998197,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,268.63157625,263.106909245,280.648338141,274.323891572,894.0,296.15,75434.0061217,37707.0,0.693942910593,-1.83015225364,0.837282118055,0.97433912037,101325.0,0.243960474372,0.408419258706,-0.402318273708,-0.41360989866,37512.455626,1.16237706809,5.52296535693,10.3161049781 +31573830,0.0,0.1,0.5,0.2,0.0,89.7916666667,748.30975615,358.231689724,297.283964343,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,268.427640959,263.036100236,280.663092949,274.31587788,894.0,296.15,76605.2361537,37830.0,0.693942910593,-1.83015225364,0.823342013889,0.971168981481,101325.0,0.241907951586,0.411247528517,-0.402316382726,-0.404667863281,37635.417439,1.15954879828,5.48708977271,10.3400239659 +31573953,0.0,0.1,0.5,0.2,0.0,88.9375,757.779756367,363.281617591,296.329227764,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,268.254485038,262.983428972,280.677350962,274.313377343,894.0,296.15,77704.488012,37953.0,0.693942910593,-1.83015225364,0.808002604166,0.966850694444,101325.0,0.240514288885,0.413780470991,-0.40231449034,-0.395725827681,37758.3792551,1.15701585581,5.45177271031,10.3490724072 +31574076,0.0,0.1,0.5,0.2,0.0,88.0833333333,767.249756583,368.331545457,295.374491186,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,268.081329117,262.930757707,280.691608975,274.310876807,894.0,296.15,78803.7398702,38076.0,0.693942910593,-1.83015225364,0.792663194444,0.962532407407,101325.0,0.239120626184,0.416313413464,-0.402312597955,-0.38678379208,37881.3410711,1.15448291333,5.4164556479,10.3581208484 +31574199,0.0,0.1,0.5,0.2,0.0,87.2291666667,776.7197568,373.381473324,294.419754607,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,267.908173196,262.878086443,280.705866988,274.30837627,894.0,296.15,79902.9917285,38199.0,0.693942910593,-1.83015225364,0.777323784722,0.95821412037,101325.0,0.237726963482,0.418846355938,-0.402310705569,-0.377841756479,38004.3028872,1.15194997086,5.3811385855,10.3671692897 +31574322,0.0,0.1,0.5,0.2,0.0,86.375,786.189757016,378.431401191,293.465018029,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,267.735017275,262.825415178,280.720125,274.305875733,894.0,296.15,81002.2435867,38322.0,0.693942910593,-1.83015225364,0.761984375,0.953895833333,101325.0,0.236333300781,0.421379298411,-0.402308813184,-0.368899720879,38127.2647032,1.14941702839,5.3458215231,10.376217731 +31574445,0.0,0.1,0.5,0.2,0.0,85.5208333333,795.659757233,383.481329058,292.51028145,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,267.561861354,262.772743914,280.734383013,274.303375197,894.0,296.15,82101.495445,38445.0,0.693942910593,-1.83015225364,0.746644965278,0.949577546296,101325.0,0.23493963808,0.423912240885,-0.402306920798,-0.359957685278,38250.2265193,1.14688408591,5.31050446069,10.3852661723 +31574568,0.0,0.1,0.5,0.2,0.0,84.6666666667,805.129757449,388.531256925,291.555544872,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,267.388705433,262.720072649,280.748641026,274.30087466,894.0,296.15,83200.7473032,38568.0,0.693942910593,-1.83015225364,0.731305555556,0.945259259259,101325.0,0.233545975379,0.426445183358,-0.402305028413,-0.351015649677,38373.1883353,1.14435114344,5.27518739829,10.3943146136 +31574691,0.0,0.1,0.5,0.2,0.0,83.8125,814.599757666,393.581184792,290.600808293,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,267.215549511,262.667401385,280.762899039,274.298374123,894.0,296.15,84299.9991615,38691.0,0.693942910593,-1.83015225364,0.715966145833,0.940940972222,101325.0,0.232152312678,0.428978125832,-0.402303136027,-0.342073614077,38496.1501513,1.14181820096,5.23987033589,10.4033630548 +31574814,0.0,0.1,0.5,0.2,0.0,82.9583333333,822.756002685,398.084681767,289.957029247,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,267.106369878,262.649164721,280.787509616,274.312825274,894.0,296.15,84951.3908092,38814.0,0.693942910593,-1.83015225364,0.700296875,0.935479166667,101325.0,0.231790627959,0.431130647917,-0.402301241921,-0.333131578205,38619.1119711,1.13966567888,5.2216464433,10.3908486187 +31574937,0.0,0.1,0.5,0.2,0.0,82.1041666667,830.808530189,402.545039461,289.337799479,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,267.002241005,262.633646577,280.8129375,274.328614717,894.0,296.15,85567.4250719,38937.0,0.693942910593,-1.83015225364,0.6846015625,0.929927083333,101325.0,0.231510415187,0.433253136813,-0.40229934768,-0.324189542311,38742.0737912,1.13754318998,5.2047720115,10.3766318501 +31575060,0.0,0.1,0.5,0.2,0.0,81.25,838.861057692,407.005397155,288.718569711,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,266.898112132,262.618128434,280.838365385,274.344404159,894.0,296.15,86183.4593346,39060.0,0.693942910593,-1.83015225364,0.66890625,0.924375,101325.0,0.231230202415,0.43537562571,-0.402297453438,-0.315247506417,38865.0356113,1.13542070109,5.18789757969,10.3624150815 +31575183,0.0,0.1,0.5,0.2,0.0,80.3958333333,846.913585196,411.46575485,288.099339944,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,266.793983258,262.602610291,280.863793269,274.360193602,894.0,296.15,86799.4935973,39183.0,0.693942910593,-1.83015225364,0.6532109375,0.918822916667,101325.0,0.230949989643,0.437498114606,-0.402295559197,-0.306305470523,38987.9974314,1.13329821219,5.17102314788,10.348198313 +31575306,0.0,0.1,0.5,0.2,0.0,79.5416666667,854.966112699,415.926112544,287.480110176,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,266.689854385,262.587092147,280.889221154,274.375983044,894.0,296.15,87415.5278599,39306.0,0.693942910593,-1.83015225364,0.637515625,0.913270833333,101325.0,0.23066977687,0.439620603502,-0.402293664955,-0.297363434629,39110.9592514,1.13117572329,5.15414871607,10.3339815444 +31575429,0.0,0.1,0.5,0.2,0.0,78.6875,863.018640203,420.386470238,286.860880409,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,266.585725511,262.571574004,280.914649039,274.391772487,894.0,296.15,88031.5621226,39429.0,0.693942910593,-1.83015225364,0.6218203125,0.90771875,101325.0,0.230389564098,0.441743092399,-0.402291770714,-0.288421398736,39233.9210715,1.1290532344,5.13727428427,10.3197647758 +31575552,0.0,0.1,0.5,0.2,0.0,77.8333333333,871.071167707,424.846827932,286.241650641,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,266.481596638,262.556055861,280.940076923,274.407561929,894.0,296.15,88647.5963853,39552.0,0.693942910593,-1.83015225364,0.606125,0.902166666667,101325.0,0.230109351326,0.443865581295,-0.402289876472,-0.279479362842,39356.8828916,1.1269307455,5.12039985246,10.3055480072 +31575675,0.0,0.1,0.5,0.2,0.0,76.9791666667,877.677294482,428.678541654,285.797375801,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,266.406810174,262.572475962,280.972991787,274.433916817,894.0,296.15,88827.3867714,39675.0,0.693942910593,-1.83015225364,0.589192708333,0.887890625,101325.0,0.230379379735,0.445727035618,-0.402287981099,-0.270537326769,39479.8447141,1.12506929118,5.11245548874,10.2777018229 +31575798,0.0,0.1,0.5,0.2,0.0,76.125,883.357724792,432.107923234,285.465072115,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,266.350802853,262.609336538,281.010698317,274.467033589,894.0,296.15,88727.9810766,39798.0,0.693942910593,-1.83015225364,0.57146875,0.86803125,101325.0,0.2310015625,0.447421427814,-0.402286085001,-0.261595290582,39602.8065382,1.12337489898,5.1102263686,10.2411328125 +31575921,0.0,0.1,0.5,0.2,0.0,75.2708333333,889.038155102,435.537304815,285.132768429,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,266.294795531,262.646197115,281.048404848,274.500150361,894.0,296.15,88628.5753818,39921.0,0.693942910593,-1.83015225364,0.553744791667,0.848171875,101325.0,0.231623745265,0.44911582001,-0.402284188904,-0.252653254395,39725.7683623,1.12168050678,5.10799724846,10.2045638021 +31576044,0.0,0.1,0.5,0.2,0.0,74.4166666667,894.718585413,438.966686395,284.800464743,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,266.238788209,262.683057692,281.086111378,274.533267134,894.0,296.15,88529.1696869,40044.0,0.693942910593,-1.83015225364,0.536020833333,0.8283125,101325.0,0.23224592803,0.450810212206,-0.402282292806,-0.243711218208,39848.7301864,1.11998611459,5.10576812832,10.1679947917 +31576167,0.0,0.1,0.5,0.2,0.0,73.5625,900.399015723,442.396067975,284.468161057,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,266.182780888,262.719918269,281.123817908,274.566383906,894.0,296.15,88429.7639921,40167.0,0.693942910593,-1.83015225364,0.518296875,0.808453125,101325.0,0.232868110795,0.452504604402,-0.402280396708,-0.23476918202,39971.6920105,1.11829172239,5.10353900818,10.1314257812 +31576290,0.0,0.1,0.5,0.2,0.0,72.7083333333,906.079446033,445.825449555,284.135857371,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,266.126773566,262.756778846,281.161524439,274.599500678,894.0,296.15,88330.3582973,40290.0,0.693942910593,-1.83015225364,0.500572916667,0.78859375,101325.0,0.23349029356,0.454198996598,-0.402278500611,-0.225827145833,40094.6538347,1.1165973302,5.10130988804,10.0948567708 +31576413,0.0,0.1,0.5,0.2,0.0,71.8541666667,911.759876343,449.254831135,283.803553686,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,266.070766245,262.793639423,281.199230969,274.632617451,894.0,296.15,88230.9526024,40413.0,0.693942910593,-1.83015225364,0.482848958333,0.768734375,101325.0,0.234112476326,0.455893388794,-0.402276604513,-0.216885109646,40217.6156588,1.114902938,5.09908076789,10.0582877604 +31576536,0.0,0.1,0.5,0.2,0.0,71.0,916.466632017,452.253271626,283.479038461,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,266.018411214,262.841179487,281.237730769,274.667137686,894.0,296.15,88003.3817406,40536.0,0.693942910593,-1.83015225364,0.4645,0.744111111111,101325.0,0.234818181818,0.457458156681,-0.402274707872,-0.207943073373,40340.577484,1.11333817011,5.09692942032,10.0191666667 +31576659,0.0,0.1,0.5,0.2,0.0,70.1458333333,918.820340653,454.210271151,283.173345352,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.974882552,262.914528312,281.278147636,274.705049622,894.0,296.15,87466.0783919,40659.0,0.693942910593,-1.83015225364,0.444640625,0.707975115741,101325.0,0.235725733901,0.45870966582,-0.402272809919,-0.199001036892,40463.5393122,1.11208666097,5.09496602311,9.9738780382 +31576782,0.0,0.1,0.5,0.2,0.0,69.2916666667,921.17404929,456.167270677,282.867652243,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.93135389,262.987877136,281.318564503,274.742961559,894.0,296.15,86928.7750432,40782.0,0.693942910593,-1.83015225364,0.42478125,0.67183912037,101325.0,0.236633285985,0.45996117496,-0.402270911965,-0.190059000411,40586.5011403,1.11083515183,5.0930026259,9.92858940972 +31576905,0.0,0.1,0.5,0.2,0.0,68.4375,923.527757926,458.124270202,282.561959134,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.887825228,263.061225961,281.35898137,274.780873496,894.0,296.15,86391.4716944,40905.0,0.693942910593,-1.83015225364,0.404921875,0.635703125,101325.0,0.237540838068,0.4612126841,-0.402269014012,-0.18111696393,40709.4629685,1.10958364269,5.09103922869,9.88330078125 +31577028,0.0,0.1,0.5,0.2,0.0,67.5833333333,925.881466563,460.081269728,282.256266025,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.844296566,263.134574786,281.399398237,274.818785432,894.0,296.15,85854.1683457,41028.0,0.693942910593,-1.83015225364,0.3850625,0.59956712963,101325.0,0.238448390151,0.462464193239,-0.402267116058,-0.172174927449,40832.4247966,1.10833213355,5.08907583148,9.83801215278 +31577151,0.0,0.1,0.5,0.2,0.0,66.7291666667,928.235175199,462.038269253,281.950572916,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.800767904,263.207923611,281.439815104,274.856697369,894.0,296.15,85316.864997,41151.0,0.693942910593,-1.83015225364,0.365203125,0.563431134259,101325.0,0.239355942235,0.463715702379,-0.402265218105,-0.163232890968,40955.3866247,1.10708062441,5.08711243427,9.79272352431 +31577274,0.0,0.1,0.5,0.2,0.0,65.875,930.588883836,463.995268779,281.644879807,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.757239242,263.281272435,281.480231971,274.894609306,894.0,296.15,84779.5616483,41274.0,0.693942910593,-1.83015225364,0.34534375,0.527295138889,101325.0,0.240263494318,0.464967211518,-0.402263320151,-0.154290854487,41078.3484529,1.10582911527,5.08514903706,9.74743489584 +31577397,0.0,0.1,0.5,0.2,0.0,65.0208333333,932.942592472,465.952268304,281.339186698,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.71371058,263.35462126,281.520648838,274.932521243,894.0,296.15,84242.2582995,41397.0,0.693942910593,-1.83015225364,0.325484375,0.491159143519,101325.0,0.241171046401,0.466218720658,-0.402261422198,-0.145348818006,41201.310281,1.10457760613,5.08318563985,9.70214626736 +31577520,0.0,0.1,0.5,0.2,0.0,64.1666666667,933.353841518,466.810614525,281.111378205,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.653713517,263.430876068,281.559623397,274.968780026,894.0,296.15,83645.1780615,41520.0,0.693942910593,-1.83015225364,0.307291666667,0.455671296297,101325.0,0.24199905303,0.467027081388,-0.402259522433,-0.136406781238,41324.2721131,1.1037692454,5.08326737305,9.66345486111 +31577643,0.0,0.1,0.5,0.2,0.0,63.3125,933.716529073,467.641494414,280.885516827,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.593304745,263.507203525,281.598561899,275.004997481,894.0,296.15,83046.6034012,41643.0,0.693942910593,-1.83015225364,0.289140625,0.420199652778,101325.0,0.242825071023,0.467824363407,-0.402257622624,-0.127464744463,41447.2339453,1.10297196339,5.08340023452,9.62492838542 +31577766,0.0,0.1,0.5,0.2,0.0,62.4583333333,934.079216629,468.472374302,280.659655448,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.532895972,263.583530983,281.637500401,275.041214936,894.0,296.15,82448.0287409,41766.0,0.693942910593,-1.83015225364,0.270989583333,0.38472800926,101325.0,0.243651089015,0.468621645427,-0.402255722815,-0.118522707688,41570.1957775,1.10217468137,5.08353309598,9.58640190972 +31577889,0.0,0.1,0.5,0.2,0.0,61.6041666667,934.441904184,469.30325419,280.43379407,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.4724872,263.65985844,281.676438902,275.077432391,894.0,296.15,81849.4540806,41889.0,0.693942910593,-1.83015225364,0.252838541667,0.349256365741,101325.0,0.244477107007,0.469418927446,-0.402253823005,-0.109580670913,41693.1576097,1.10137739935,5.08366595745,9.54787543403 +31578012,0.0,0.1,0.5,0.2,0.0,60.75,934.80459174,470.134134079,280.207932692,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.412078428,263.736185897,281.715377404,275.113649846,894.0,296.15,81250.8794204,42012.0,0.693942910593,-1.83015225364,0.2346875,0.313784722223,101325.0,0.245303125,0.470216209466,-0.402251923196,-0.100638634138,41816.1194419,1.10058011733,5.08379881891,9.50934895833 +31578135,0.0,0.1,0.5,0.2,0.0,59.8958333333,935.167279295,470.965013967,279.982071314,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.351669655,263.812513354,281.754315906,275.1498673,894.0,296.15,80652.3047601,42135.0,0.693942910593,-1.83015225364,0.216536458333,0.278313078704,101325.0,0.246129142992,0.471013491486,-0.402250023387,-0.0916965973629,41939.0812741,1.09978283531,5.08393168038,9.47082248264 +31578258,0.0,0.1,0.5,0.2,0.0,59.0416666667,935.529966851,471.795893855,279.756209935,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.291260883,263.888840812,281.793254407,275.186084755,894.0,296.15,80053.7300998,42258.0,0.693942910593,-1.83015225364,0.198385416667,0.242841435186,101325.0,0.246955160985,0.471810773505,-0.402248123577,-0.0827545605879,42062.0431063,1.09898555329,5.08406454184,9.43229600694 +31578381,0.0,0.1,0.5,0.2,0.0,58.1875,935.859315522,472.306997207,279.61796875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.223651779,263.9450625,281.828460938,275.216789402,894.0,296.15,79662.8282647,42381.0,0.693942910593,-1.83015225364,0.183890625,0.218963541667,101325.0,0.247485866477,0.472304042773,-0.402246222546,-0.073812523619,42185.0049412,1.09849228402,5.0867833411,9.40841796875 +31578504,0.0,0.1,0.5,0.2,0.0,57.3333333333,936.171377363,472.652290503,279.525160256,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.152309171,263.990858974,281.861732372,275.244635555,894.0,296.15,79379.6086352,42504.0,0.693942910593,-1.83015225364,0.171291666667,0.201097222222,101325.0,0.24786344697,0.472639675798,-0.402244320881,-0.0648704865497,42307.9667774,1.098156651,5.09084299698,9.39213541667 +31578627,0.0,0.1,0.5,0.2,0.0,56.4791666667,936.483439205,472.997583799,279.432351763,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.080966563,264.036655449,281.895003806,275.272481709,894.0,296.15,79096.3890057,42627.0,0.693942910593,-1.83015225364,0.158692708333,0.183230902778,101325.0,0.248241027462,0.472975308824,-0.402242419216,-0.0559284494803,42430.9286136,1.09782101797,5.09490265287,9.37585286458 +31578750,0.0,0.1,0.5,0.2,0.0,55.625,936.795501047,473.342877095,279.339543269,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,265.009623955,264.082451923,281.92827524,275.300327862,894.0,296.15,78813.1693762,42750.0,0.693942910593,-1.83015225364,0.14609375,0.165364583334,101325.0,0.248618607954,0.47331094185,-0.40224051755,-0.046986412411,42553.8904499,1.09748538494,5.09896230876,9.3595703125 +31578873,0.0,0.1,0.5,0.2,0.0,54.7708333333,937.107562889,473.688170391,279.246734775,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,264.938281346,264.128248397,281.961546675,275.328174015,894.0,296.15,78529.9497467,42873.0,0.693942910593,-1.83015225364,0.133494791667,0.147498263889,101325.0,0.248996188447,0.473646574876,-0.402238615885,-0.0380443753417,42676.8522861,1.09714975192,5.10302196464,9.34328776042 +31578996,0.0,0.1,0.5,0.2,0.0,53.9166666667,937.419624731,474.033463687,279.153926282,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,264.866938738,264.174044872,281.994818109,275.356020169,894.0,296.15,78246.7301172,42996.0,0.693942910593,-1.83015225364,0.120895833333,0.129631944445,101325.0,0.249373768939,0.473982207902,-0.40223671422,-0.0291023382723,42799.8141223,1.09681411889,5.10708162053,9.32700520833 +31579119,0.0,0.1,0.5,0.2,0.0,53.0625,937.731686572,474.378756983,279.061117788,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,264.79559613,264.219841346,282.028089543,275.383866322,894.0,296.15,77963.5104877,43119.0,0.693942910593,-1.83015225364,0.108296875,0.111765625,101325.0,0.249751349432,0.474317840927,-0.402234812555,-0.020160301203,42922.7759585,1.09647848587,5.11114127641,9.31072265625 +31579242,0.0,0.1,0.5,0.2,0.0,52.2083333333,938.010213964,474.558240223,279.015130208,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.74074558,264.255578125,282.057747396,275.407670329,894.0,296.15,77777.0,43242.0,0.693942910593,-1.83015225364,0.098515625,0.09951875,101325.0,0.249984090909,0.474494754899,-0.402232910256,-0.011218264033,43045.7377962,1.0963015719,5.11760859329,9.3 +31579365,0.0,0.1,0.5,0.2,0.0,51.3541666667,938.224067774,474.417946927,279.059440104,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.717701145,264.271914063,282.080436198,275.423678768,894.0,296.15,77777.0,43365.0,0.693942910593,-1.83015225364,0.0941685267857,0.098109375,101325.0,0.2499375,0.474365567838,-0.402231006735,-0.00227622666909,43168.6996364,1.09643075896,5.12871925635,9.3 +31579488,0.0,0.1,0.5,0.2,0.0,50.5,938.437921584,474.277653631,279.10375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.69465671,264.28825,282.103125,275.439687207,894.0,296.15,77777.0,43488.0,0.693942910593,-1.83015225364,0.0898214285714,0.0967,101325.0,0.249890909091,0.474236380777,-0.402229103215,0.00666581069484,43291.6614767,1.09655994602,5.13982991942,9.3 +31579611,0.0,0.1,0.5,0.2,0.0,49.6458333333,938.651775393,474.137360335,279.148059896,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.671612274,264.304585938,282.125813802,275.455695646,894.0,296.15,77777.0,43611.0,0.693942910593,-1.83015225364,0.0854743303571,0.095290625,101325.0,0.249844318182,0.474107193717,-0.402227199694,0.0156078480588,43414.623317,1.09668913308,5.15094058248,9.3 +31579734,0.0,0.1,0.5,0.2,0.0,48.7916666667,938.865629203,473.997067039,279.192369792,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.648567839,264.320921875,282.148502604,275.471704084,894.0,296.15,77777.0,43734.0,0.693942910593,-1.83015225364,0.0811272321428,0.09388125,101325.0,0.249797727273,0.473978006656,-0.402225296173,0.0245498854227,43537.5851573,1.09681832014,5.16205124554,9.3 +31579857,0.0,0.1,0.5,0.2,0.0,47.9375,939.079483013,473.856773743,279.236679687,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.625523403,264.337257813,282.171191406,275.487712523,894.0,296.15,77777.0,43857.0,0.693942910593,-1.83015225364,0.0767801339286,0.092471875,101325.0,0.249751136364,0.473848819595,-0.402223392652,0.0334919227866,43660.5469976,1.0969475072,5.17316190861,9.3 +31579980,0.0,0.1,0.5,0.2,0.0,47.0833333333,939.293336823,473.716480447,279.280989583,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.602478968,264.35359375,282.193880208,275.503720962,894.0,296.15,77777.0,43980.0,0.693942910593,-1.83015225364,0.0724330357143,0.0910625,101325.0,0.249704545454,0.473719632534,-0.402221489131,0.0424339601506,43783.5088379,1.09707669426,5.18427257167,9.3 +31580103,0.0,0.1,0.5,0.2,0.0,46.2291666667,939.50363477,473.564343576,279.326783854,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.580741536,264.36972309,282.21636849,275.519540837,894.0,296.15,77777.0,44103.0,0.693942910593,-1.83015225364,0.0682235863095,0.0897135416667,101325.0,0.249653661616,0.473579138243,-0.402219585565,0.0513759975217,43906.4706783,1.09721718855,5.19550876879,9.3 +31580226,0.0,0.1,0.5,0.2,0.0,45.375,939.57169823,472.938463688,279.431953125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.611284243,264.377588542,282.230835937,275.527818148,894.0,296.15,77777.0,44226.0,0.693942910593,-1.83015225364,0.0695200892857,0.09078125,101325.0,0.249431060606,0.472986354746,-0.402217680189,0.0603180351805,44029.4325226,1.09780997205,5.21176632829,9.3 +31580349,0.0,0.1,0.5,0.2,0.0,44.5208333333,939.63976169,472.312583799,279.537122396,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.641826949,264.385453993,282.245303385,275.53609546,894.0,296.15,77777.0,44349.0,0.693942910593,-1.83015225364,0.0708165922619,0.0918489583333,101325.0,0.249208459596,0.47239357125,-0.402215774813,0.0692600728393,44152.394367,1.09840275555,5.22802388779,9.3 +31580472,0.0,0.1,0.5,0.2,0.0,43.6666666667,939.707825149,471.686703911,279.642291667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.672369655,264.393319444,282.259770833,275.544372771,894.0,296.15,77777.0,44472.0,0.693942910593,-1.83015225364,0.0721130952381,0.0929166666667,101325.0,0.248985858586,0.471800787754,-0.402213869436,0.0782021104981,44275.3562113,1.09899553904,5.24428144728,9.3 +31580595,0.0,0.1,0.5,0.2,0.0,42.8125,939.775888609,471.060824023,279.747460938,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.702912362,264.401184896,282.274238281,275.552650083,894.0,296.15,77777.0,44595.0,0.693942910593,-1.83015225364,0.0734095982143,0.093984375,101325.0,0.248763257576,0.471208004257,-0.40221196406,0.0871441481568,44398.3180557,1.09958832254,5.26053900678,9.3 +31580718,0.0,0.1,0.5,0.2,0.0,41.9583333333,939.843952068,470.434944134,279.852630208,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.733455068,264.409050347,282.288705729,275.560927394,894.0,296.15,77777.0,44718.0,0.693942910593,-1.83015225364,0.0747061011905,0.0950520833333,101325.0,0.248540656565,0.470615220761,-0.402210058684,0.0960861858156,44521.2799,1.10018110604,5.27679656628,9.3 +31580841,0.0,0.1,0.5,0.2,0.0,41.1041666667,939.912015528,469.809064246,279.957799479,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.763997775,264.416915798,282.303173177,275.569204706,894.0,296.15,77777.0,44841.0,0.693942910593,-1.83015225364,0.0760026041667,0.0961197916667,101325.0,0.248318055555,0.470022437264,-0.402208153307,0.105028223474,44644.2417444,1.10077388953,5.29305412578,9.3 +31580964,0.0,0.1,0.5,0.2,0.0,40.25,939.980078987,469.183184358,280.06296875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.794540481,264.42478125,282.317640625,275.577482017,894.0,296.15,77777.0,44964.0,0.693942910593,-1.83015225364,0.0772991071429,0.0971875,101325.0,0.248095454545,0.469429653768,-0.402206247931,0.113970261133,44767.2035887,1.10136667303,5.30931168527,9.3 +31581087,0.0,0.1,0.5,0.2,0.0,39.4191866987,940.036402582,468.422872583,280.163606771,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.833295,264.424087673,282.331050781,275.583510009,894.0,296.15,77777.0,45087.0,0.693942910593,-1.83015225364,0.0796744791667,0.0983760416667,101325.0,0.247726388889,0.468512895131,-0.402204341242,0.122912299001,44890.1654359,1.10228343167,5.32516957309,9.3 +31581210,0.0,0.1,0.5,0.2,0.0,38.598036859,940.087868302,467.60693382,280.262369792,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.875447511,264.41985243,282.344023437,275.588607247,894.0,296.15,77777.0,45210.0,0.693942910593,-1.83015225364,0.0824962797619,0.0996145833333,101325.0,0.247296717171,0.467462077816,-0.402202434011,0.131854336955,45013.1272843,1.10333424898,5.34086207951,9.3 +31581333,0.0,0.1,0.5,0.2,0.0,37.7768870192,940.139334021,466.790995058,280.361132812,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.917600021,264.415617187,282.356996094,275.593704486,894.0,296.15,77777.0,45333.0,0.693942910593,-1.83015225364,0.0853180803571,0.100853125,101325.0,0.246867045454,0.466411260501,-0.402200526779,0.140796374909,45136.0891327,1.1043850663,5.35655458594,9.3 +31581456,0.0,0.1,0.5,0.2,0.0,36.9557371795,940.190799741,465.975056296,280.459895833,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,264.959752532,264.411381944,282.36996875,275.598801724,894.0,296.15,77777.0,45456.0,0.693942910593,-1.83015225364,0.0881398809524,0.102091666667,101325.0,0.246437373737,0.465360443185,-0.402198619547,0.149738412863,45259.0509811,1.10543588361,5.37224709237,9.3 +31581579,0.0,0.1,0.5,0.2,0.0,36.1345873398,940.24226546,465.159117533,280.558658854,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,265.001905042,264.407146701,282.382941406,275.603898963,894.0,296.15,77777.0,45579.0,0.693942910593,-1.83015225364,0.0909616815476,0.103330208333,101325.0,0.24600770202,0.46430962587,-0.402196712316,0.158680450817,45382.0128296,1.10648670093,5.3879395988,9.3 +31581702,0.0,0.1,0.5,0.2,0.0,35.3134375,940.29373118,464.343178771,280.657421875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,265.044057552,264.402911458,282.395914062,275.608996201,894.0,296.15,77777.0,45702.0,0.693942910593,-1.83015225364,0.0937834821428,0.10456875,101325.0,0.245578030303,0.463258808555,-0.402194805084,0.167622488771,45504.974678,1.10753751824,5.40363210522,9.3 +31581825,0.0,0.1,0.5,0.2,0.0,34.4922876603,940.3451969,463.527240009,280.756184896,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,265.086210063,264.398676215,282.408886719,275.61409344,894.0,296.15,77777.0,45825.0,0.693942910593,-1.83015225364,0.0966052827381,0.105807291667,101325.0,0.245148358585,0.462207991239,-0.402192897852,0.176564526725,45627.9365264,1.10858833555,5.41932461165,9.3 +31581948,0.0,0.1,0.5,0.2,0.0,33.6930608975,940.39590497,462.638018908,280.826197917,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,265.11756779,264.388302083,282.423901042,275.619706342,894.0,296.15,77777.0,45948.0,0.693942910593,-1.83015225364,0.0984151785714,0.1062125,101325.0,0.244625757575,0.460982195638,-0.402190989896,0.185506564794,45750.8983764,1.10981413116,5.4325675561,9.3 +31582071,0.0,0.1,0.5,0.2,0.0,32.9280889423,940.445429213,461.634294156,280.851289062,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,265.132058669,264.368335937,282.442105469,275.62612497,894.0,296.15,77777.0,46071.0,0.693942910593,-1.83015225364,0.0986439732143,0.105315625,101325.0,0.243957954545,0.459482996463,-0.402189080809,0.194448603044,45873.8602288,1.11131333033,5.44198305995,9.3 +31582194,0.0,0.1,0.5,0.2,0.0,32.1631169872,940.494953456,460.630569403,280.876380208,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,265.146549548,264.348369792,282.460309896,275.632543598,894.0,296.15,77777.0,46194.0,0.693942910593,-1.83015225364,0.0988727678571,0.10441875,101325.0,0.243290151515,0.457983797288,-0.402187171722,0.203390641293,45996.8220813,1.11281252951,5.45139856381,9.3 +31582317,0.0,0.1,0.5,0.2,0.0,31.3981450321,940.544477699,459.62684465,280.901471354,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,265.161040427,264.328403646,282.478514323,275.638962225,894.0,296.15,77777.0,46317.0,0.693942910593,-1.83015225364,0.0991015625,0.103521875,101325.0,0.242622348485,0.456484598113,-0.402185262635,0.212332679542,46119.7839337,1.11431172868,5.46081406766,9.3 +31582440,0.0,0.1,0.5,0.2,0.0,30.6331730769,940.594001943,458.623119897,280.9265625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,265.175531306,264.3084375,282.49671875,275.645380853,894.0,296.15,77777.0,46440.0,0.693942910593,-1.83015225364,0.0993303571428,0.102625,101325.0,0.241954545454,0.454985398939,-0.402183353547,0.221274717792,46242.7457862,1.11581092786,5.47022957152,9.3 +31582563,0.0,0.1,0.5,0.2,0.0,29.8682011218,940.643526186,457.619395144,280.951653646,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,265.190022185,264.288471354,282.514923177,275.65179948,894.0,296.15,77777.0,46563.0,0.693942910593,-1.83015225364,0.0995591517857,0.101728125,101325.0,0.241286742424,0.453486199764,-0.40218144446,0.230216756041,46365.7076386,1.11731012703,5.47964507538,9.3 +31582686,0.0,0.1,0.5,0.2,0.0,29.1032291666,940.693050429,456.615670391,280.976744792,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,265.204513064,264.268505208,282.533127604,275.658218108,894.0,296.15,77777.0,46686.0,0.693942910593,-1.83015225364,0.0997879464286,0.10083125,101325.0,0.240618939394,0.451987000589,-0.402179535373,0.23915879429,46488.6694911,1.11880932621,5.48906057923,9.3 +31582809,0.0,0.1,0.5,0.2,0.0,28.3412860577,940.726379917,455.566018694,280.994308036,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.217314139,264.246478179,282.553105469,275.66531059,894.0,296.15,77777.0,46809.0,0.693942910593,-1.83015225364,0.0997589285714,0.099746875,101325.0,0.23989375,0.450455967885,-0.40217762615,0.248100832561,46611.6313438,1.12034035891,5.49740446855,9.3 +31582932,0.0,0.1,0.5,0.2,0.0,27.6177083333,940.554575846,453.934625699,280.916517857,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.208711034,264.198346624,282.595546875,275.680938565,894.0,296.15,77777.0,46932.0,0.693942910593,-1.83015225364,0.0964642857143,0.0962875,101325.0,0.238441666667,0.44852171048,-0.402175715207,0.257042871106,46734.5932004,1.12227461631,5.49217457372,9.3 +31583055,0.0,0.1,0.5,0.2,0.0,26.894130609,940.382771774,452.303232703,280.838727678,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.200107929,264.150215068,282.637988281,275.69656654,894.0,296.15,77777.0,47055.0,0.693942910593,-1.83015225364,0.0931696428572,0.092828125,101325.0,0.236989583333,0.446587453075,-0.402173804265,0.265984909652,46857.5550569,1.12420887372,5.4869446789,9.3 +31583178,0.0,0.1,0.5,0.2,0.0,26.1705528846,940.210967703,450.671839708,280.7609375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.191504824,264.102083513,282.680429688,275.712194516,894.0,296.15,77777.0,47178.0,0.693942910593,-1.83015225364,0.089875,0.08936875,101325.0,0.2355375,0.44465319567,-0.402171893322,0.274926948197,46980.5169134,1.12614313112,5.48171478407,9.3 +31583301,0.0,0.1,0.5,0.2,0.0,25.4469751603,940.039163631,449.040446713,280.683147321,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.182901718,264.053951958,282.722871094,275.727822491,894.0,296.15,77777.0,47301.0,0.693942910593,-1.83015225364,0.0865803571429,0.085909375,101325.0,0.234085416667,0.442718938265,-0.40216998238,0.283868986742,47103.47877,1.12807738853,5.47648488924,9.3 +31583424,0.0,0.1,0.5,0.2,0.0,24.7233974359,939.867359559,447.409053717,280.605357143,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.174298613,264.005820402,282.7653125,275.743450466,894.0,296.15,77777.0,47424.0,0.693942910593,-1.83015225364,0.0832857142857,0.08245,101325.0,0.232633333333,0.44078468086,-0.402168071438,0.292811025287,47226.4406265,1.13001164593,5.47125499442,9.3 +31583547,0.0,0.1,0.5,0.2,0.0,23.9998197115,939.695555488,445.777660722,280.527566964,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.165695508,263.957688847,282.807753906,275.759078441,894.0,296.15,77777.0,47547.0,0.693942910593,-1.83015225364,0.0799910714286,0.078990625,101325.0,0.23118125,0.438850423455,-0.402166160495,0.301753063832,47349.402483,1.13194590334,5.46602509959,9.3 +31583670,0.0,0.1,0.5,0.2,0.0,23.2762419872,939.523751416,444.146267727,280.449776785,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.157092402,263.909557292,282.850195313,275.774706416,894.0,296.15,77777.0,47670.0,0.693942910593,-1.83015225364,0.0766964285715,0.07553125,101325.0,0.229729166667,0.43691616605,-0.402164249553,0.310695102377,47472.3643396,1.13388016074,5.46079520476,9.3 +31583793,0.0,0.1,0.5,0.2,0.0,22.5727844551,939.018723692,441.707702406,280.332775297,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.146630887,263.844483746,282.906925781,275.794119475,894.0,296.15,77777.0,47793.0,0.693942910593,-1.83015225364,0.0727251984127,0.0715336805556,101325.0,0.227717361111,0.434665400457,-0.402162337207,0.319637141146,47595.3261992,1.13613092633,5.44631624418,9.3 +31583916,0.0,0.1,0.5,0.2,0.0,21.8758173077,938.406204468,439.008758917,280.203125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.135569885,263.773945043,282.968265625,275.814753529,894.0,296.15,77777.0,47916.0,0.693942910593,-1.83015225364,0.0685357142857,0.0673625,101325.0,0.225525,0.432312535448,-0.40216042441,0.328579179987,47718.2880598,1.13848379134,5.42885371399,9.3 +31584039,0.0,0.1,0.5,0.2,0.0,21.1788501603,937.793685243,436.309815428,280.073474702,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.124508883,263.70340634,283.029605469,275.835387584,894.0,296.15,77777.0,48039.0,0.693942910593,-1.83015225364,0.0643462301588,0.0631913194445,101325.0,0.223332638889,0.429959670439,-0.402158511612,0.337521218828,47841.2499204,1.14083665635,5.4113911838,9.3 +31584162,0.0,0.1,0.5,0.2,0.0,20.4818830128,937.181166019,433.610871938,279.943824404,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.113447881,263.632867636,283.090945313,275.856021638,894.0,296.15,77777.0,48162.0,0.693942910593,-1.83015225364,0.0601567460318,0.0590201388889,101325.0,0.221140277778,0.427606805431,-0.402156598815,0.346463257669,47964.211781,1.14318952136,5.39392865362,9.3 +31584285,0.0,0.1,0.5,0.2,0.0,19.7849158654,936.568646794,430.911928449,279.814174107,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.102386879,263.562328933,283.152285156,275.876655692,894.0,296.15,77777.0,48285.0,0.693942910593,-1.83015225364,0.0559672619048,0.0548489583334,101325.0,0.218947916666,0.425253940422,-0.402154686017,0.35540529651,48087.1736416,1.14554238637,5.37646612343,9.3 +31584408,0.0,0.1,0.5,0.2,0.0,19.087948718,935.95612757,428.212984959,279.684523809,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.091325877,263.49179023,283.213625,275.897289747,894.0,296.15,77777.0,48408.0,0.693942910593,-1.83015225364,0.0517777777778,0.0506777777778,101325.0,0.216755555555,0.422901075414,-0.402152773219,0.364347335351,48210.1355022,1.14789525138,5.35900359325,9.3 +31584531,0.0,0.1,0.5,0.2,0.0,18.3909815705,935.343608345,425.51404147,279.554873512,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.080264875,263.421251526,283.274964844,275.917923801,894.0,296.15,77777.0,48531.0,0.693942910593,-1.83015225364,0.0475882936508,0.0465065972223,101325.0,0.214563194444,0.420548210405,-0.402150860422,0.373289374192,48333.0973628,1.15024811639,5.34154106306,9.3 +31584654,0.0,0.1,0.5,0.2,0.0,17.7290769231,934.085818886,422.430753988,279.425758928,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.064371994,263.351262392,283.331523437,275.935247699,894.0,296.15,77777.0,48654.0,0.693942910593,-1.83015225364,0.0435416666667,0.0425104166667,101325.0,0.212420833333,0.418019888293,-0.40214894681,0.382231413163,48456.0592252,1.1527764385,5.32330021037,9.3 +31584777,0.0,0.1,0.5,0.2,0.0,17.111974359,932.003517459,418.856360295,279.297328869,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.042305043,263.281975485,283.381972656,275.948341955,894.0,296.15,77777.0,48777.0,0.693942910593,-1.83015225364,0.0396775793651,0.0387378472222,101325.0,0.210342361111,0.415267370995,-0.402147032157,0.3911734523,48579.0210898,1.1555289558,5.30406483448,9.3 +31584900,0.0,0.1,0.5,0.2,0.0,16.4948717949,929.921216032,415.281966601,279.168898809,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,265.020238093,263.212688577,283.432421875,275.96143621,894.0,296.15,77777.0,48900.0,0.693942910593,-1.83015225364,0.0358134920635,0.0349652777778,101325.0,0.208263888889,0.412514853696,-0.402145117504,0.400115491438,48701.9829545,1.1582814731,5.28482945859,9.3 +31585023,0.0,0.1,0.5,0.2,0.0,15.8777692308,927.838914606,411.707572907,279.04046875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,264.998171142,263.14340167,283.482871094,275.974530465,894.0,296.15,77777.0,49023.0,0.693942910593,-1.83015225364,0.0319494047619,0.0311927083334,101325.0,0.206185416666,0.409762336397,-0.402143202852,0.409057530575,48824.9448192,1.1610339904,5.2655940827,9.3 +31585146,0.0,0.1,0.5,0.2,0.0,15.2606666667,925.756613179,408.133179214,278.91203869,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,264.976104192,263.074114763,283.533320312,275.987624721,894.0,296.15,77777.0,49146.0,0.693942910593,-1.83015225364,0.0280853174603,0.0274201388889,101325.0,0.204106944444,0.407009819099,-0.402141288199,0.417999569712,48947.9066838,1.16378650769,5.2463587068,9.3 +31585269,0.0,0.1,0.5,0.2,0.0,14.6435641026,923.674311752,404.55878552,278.783608631,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,264.954037241,263.004827856,283.583769531,276.000718976,894.0,296.15,77777.0,49269.0,0.693942910593,-1.83015225364,0.0242212301587,0.0236475694445,101325.0,0.202028472222,0.4042573018,-0.402139373546,0.42694160885,49070.8685485,1.16653902499,5.22712333091,9.3 +31585392,0.0,0.1,0.5,0.2,0.0,14.0264615384,921.592010325,400.984391827,278.655178571,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,264.931970291,262.935540948,283.63421875,276.013813231,894.0,296.15,77777.0,49392.0,0.693942910593,-1.83015225364,0.0203571428572,0.019875,101325.0,0.19995,0.401504784501,-0.402137458893,0.435883647987,49193.8304132,1.16929154229,5.20788795502,9.3 +31585515,0.0,0.1,0.5,0.2,0.0,13.4237179487,919.299515717,397.367623515,278.533370535,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,264.908255326,262.869291936,283.679707031,276.024672882,894.0,296.15,77777.0,49515.0,0.693942910593,-1.83015225364,0.0166815476191,0.0162864583333,101325.0,0.197989583333,0.398706066953,-0.402135544015,0.444825687161,49316.7922783,1.17209025984,5.18971196254,9.3 +31585638,0.0,0.1,0.5,0.2,0.0,12.9243589743,915.493630197,393.445757958,278.459241071,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,264.872674653,262.824915769,283.689476562,276.019443383,894.0,296.15,77777.0,49638.0,0.693942910593,-1.83015225364,0.0143630952381,0.0140229166667,101325.0,0.196879166667,0.395574707611,-0.402133627507,0.453767726595,49439.7541471,1.17522161918,5.1791635306,9.3 +31585761,0.0,0.1,0.5,0.2,0.0,12.425,911.687744677,389.5238924,278.385111607,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,264.837093981,262.780539601,283.699246094,276.014213884,894.0,296.15,77777.0,49761.0,0.693942910593,-1.83015225364,0.0120446428572,0.011759375,101325.0,0.19576875,0.392443348269,-0.402131710999,0.462709766029,49562.7160159,1.17835297852,5.16861509866,9.3 +31585884,0.0,0.1,0.5,0.2,0.0,11.9256410256,907.881859158,385.602026843,278.310982143,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,264.801513309,262.736163434,283.709015625,276.008984384,894.0,296.15,77777.0,49884.0,0.693942910593,-1.83015225364,0.0097261904762,0.00949583333333,101325.0,0.194658333333,0.389311988927,-0.402129794491,0.471651805462,49685.6778846,1.18148433787,5.15806666672,9.3 +31586007,0.0,0.1,0.5,0.2,0.0,11.4262820513,904.075973638,381.680161285,278.236852678,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,264.765932637,262.691787267,283.718785156,276.003754885,894.0,296.15,77777.0,50007.0,0.693942910593,-1.83015225364,0.00740773809524,0.00723229166667,101325.0,0.193547916667,0.386180629585,-0.402127877984,0.480593844896,49808.6397534,1.18461569721,5.14751823478,9.3 +31586130,0.0,0.1,0.5,0.2,0.0,10.9269230769,900.270088119,377.758295727,278.162723214,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,264.730351965,262.647411099,283.728554687,275.998525386,894.0,296.15,77777.0,50130.0,0.693942910593,-1.83015225364,0.00508928571429,0.00496875,101325.0,0.1924375,0.383049270242,-0.402125961476,0.48953588433,49931.6016221,1.18774705655,5.13696980284,9.3 +31586253,0.0,0.1,0.5,0.2,0.0,10.4275641026,896.464202599,373.83643017,278.08859375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,264.694771292,262.603034932,283.738324219,275.993295886,894.0,296.15,77777.0,50253.0,0.693942910593,-1.83015225364,0.00277083333334,0.00270520833333,101325.0,0.191327083333,0.3799179109,-0.402124044968,0.498477923764,50054.5634909,1.19087841589,5.1264213709,9.3 +31586376,0.0,0.1,0.5,0.2,0.0,9.92820512821,892.65831708,369.914564612,278.014464286,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,264.65919062,262.558658764,283.74809375,275.988066387,894.0,296.15,77777.0,50376.0,0.693942910593,-1.83015225364,0.000452380952381,0.000441666666667,101325.0,0.190216666667,0.376786551558,-0.402122128461,0.507419963198,50177.5253596,1.19400977524,5.11587293896,9.3 +31586499,0.0,0.1,0.5,0.2,0.0,9.49315384615,888.22456777,365.764486314,278.046037946,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.653459666,262.53683185,283.7335,275.974477717,894.0,296.15,77777.0,50499.0,0.693942910593,-1.83015225364,0.001375,0.001375,101325.0,0.18988828125,0.373368004174,-0.40212021046,0.516362002871,50300.4872317,1.19742832262,5.11828211341,9.22188453125 +31586622,0.0,0.1,0.5,0.2,0.0,9.07369230769,883.638609057,361.559083715,278.103236607,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.654965006,262.520471421,283.713,275.958862582,894.0,296.15,77777.0,50622.0,0.693942910593,-1.83015225364,0.00308333333333,0.00308333333333,101325.0,0.189749479167,0.369879835448,-0.402118292097,0.525304042601,50423.4491045,1.20091649135,5.12383252577,9.12483197917 +31586745,0.0,0.1,0.5,0.2,0.0,8.65423076923,879.052650344,357.353681117,278.160435268,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.656470347,262.504110991,283.6925,275.943247446,894.0,296.15,77777.0,50745.0,0.693942910593,-1.83015225364,0.00479166666667,0.00479166666667,101325.0,0.189610677083,0.366391666721,-0.402116373735,0.534246082332,50546.4109774,1.20440466007,5.12938293813,9.02777942708 +31586868,0.0,0.1,0.5,0.2,0.0,8.23476923077,874.466691631,353.148278518,278.217633929,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.657975688,262.487750562,283.672,275.927632311,894.0,296.15,77777.0,50868.0,0.693942910593,-1.83015225364,0.0065,0.0065,101325.0,0.189471875,0.362903497994,-0.402114455372,0.543188122063,50669.3728502,1.2078928288,5.13493335049,8.930726875 +31586991,0.0,0.1,0.5,0.2,0.0,7.81530769231,869.880732918,348.942875919,278.274832589,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.659481028,262.471390133,283.6515,275.912017175,894.0,296.15,77777.0,50991.0,0.693942910593,-1.83015225364,0.00820833333333,0.00820833333333,101325.0,0.189333072917,0.359415329267,-0.402112537009,0.552130161793,50792.3347231,1.21138099753,5.14048376285,8.83367432292 +31587114,0.0,0.1,0.5,0.2,0.0,7.39584615385,865.294774204,344.737473321,278.33203125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.660986369,262.455029704,283.631,275.89640204,894.0,296.15,77777.0,51114.0,0.693942910593,-1.83015225364,0.00991666666667,0.00991666666667,101325.0,0.189194270833,0.35592716054,-0.402110618647,0.561072201524,50915.2965959,1.21486916626,5.14603417521,8.73662177083 +31587237,0.0,0.1,0.5,0.2,0.0,6.97638461539,860.708815491,340.532070722,278.389229911,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.66249171,262.438669275,283.6105,275.880786904,894.0,296.15,77777.0,51237.0,0.693942910593,-1.83015225364,0.011625,0.011625,101325.0,0.18905546875,0.352438991813,-0.402108700284,0.570014241255,51038.2584687,1.21835733498,5.15158458756,8.63956921875 +31587360,0.0,0.1,0.5,0.2,0.0,6.57743589744,856.202582488,336.21954509,278.495982143,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.686910084,262.428712519,283.59,275.86706318,894.0,296.15,77777.0,51360.0,0.693942910593,-1.83015225364,0.015,0.015,101325.0,0.18909375,0.348787830557,-0.402106781017,0.57895628113,51161.2203436,1.22200849624,5.1623992232,8.48484375 +31587483,0.0,0.1,0.5,0.2,0.0,6.20002564103,851.780061481,331.794540273,278.654765625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.735387144,262.42547962,283.5695,275.855325439,894.0,296.15,77777.0,51483.0,0.693942910593,-1.83015225364,0.020125,0.020125,101325.0,0.18931796875,0.344965527145,-0.402104860799,0.587898321158,51284.1822205,1.22583079965,5.17874129328,8.26956171875 +31587606,0.0,0.1,0.5,0.2,0.0,5.82261538462,847.357540474,327.369535456,278.813549107,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.783864204,262.422246721,283.549,275.843587697,894.0,296.15,77777.0,51606.0,0.693942910593,-1.83015225364,0.02525,0.02525,101325.0,0.1895421875,0.341143223732,-0.402102940582,0.596840361186,51407.1440974,1.22965310306,5.19508336336,8.0542796875 +31587729,0.0,0.1,0.5,0.2,0.0,5.44520512821,842.935019467,322.94453064,278.97233259,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.832341263,262.419013821,283.5285,275.831849955,894.0,296.15,77777.0,51729.0,0.693942910593,-1.83015225364,0.030375,0.030375,101325.0,0.18976640625,0.33732092032,-0.402101020364,0.605782401214,51530.1059743,1.23347540648,5.21142543344,7.83899765625 +31587852,0.0,0.1,0.5,0.2,0.0,5.0677948718,838.512498459,318.519525823,279.131116072,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.880818323,262.415780922,283.508,275.820112213,894.0,296.15,77777.0,51852.0,0.693942910593,-1.83015225364,0.0355,0.0355,101325.0,0.189990625,0.333498616907,-0.402099100147,0.614724441241,51653.0678512,1.23729770989,5.22776750352,7.623715625 +31587975,0.0,0.1,0.5,0.2,0.0,4.69038461538,834.089977452,314.094521006,279.289899554,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.929295383,262.412548023,283.4875,275.808374472,894.0,296.15,77777.0,51975.0,0.693942910593,-1.83015225364,0.040625,0.040625,101325.0,0.19021484375,0.329676313494,-0.40209717993,0.623666481269,51776.0297282,1.2411200133,5.2441095736,7.40843359375 +31588098,0.0,0.1,0.5,0.2,0.0,4.31297435897,829.667456445,309.669516189,279.448683036,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,264.977772442,262.409315124,283.467,275.79663673,894.0,296.15,77777.0,52098.0,0.693942910593,-1.83015225364,0.04575,0.04575,101325.0,0.1904390625,0.325854010082,-0.402095259712,0.632608521297,51898.9916051,1.24494231671,5.26045164369,7.1931515625 +31588221,0.0,0.1,0.5,0.2,0.0,3.94918923611,825.257087076,305.223918484,279.606529018,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.025280266,262.407754826,283.4465,275.785430233,894.0,296.15,77777.0,52221.0,0.693942910593,-1.83015225364,0.050875,0.050875,101325.0,0.190714322917,0.321978553998,-0.402093339178,0.641550561376,52021.9534827,1.2488177728,5.27716468252,6.97711557292 +31588344,0.0,0.1,0.5,0.2,0.0,3.65158333333,820.90573995,300.678298179,279.759821429,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.068080371,262.414318591,283.426,275.776804069,894.0,296.15,77777.0,52344.0,0.693942910593,-1.83015225364,0.056,0.056,101325.0,0.1912375,0.317844927793,-0.402091417106,0.650492601701,52144.9153637,1.252951399,5.29567956959,6.7574175 +31588467,0.0,0.1,0.5,0.2,0.0,3.35397743055,816.554392824,296.132677873,279.91311384,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.110880475,262.420882356,283.4055,275.768177904,894.0,296.15,77777.0,52467.0,0.693942910593,-1.83015225364,0.061125,0.061125,101325.0,0.191760677083,0.313711301587,-0.402089495034,0.659434642026,52267.8772447,1.25708502521,5.31419445667,6.53771942708 +31588590,0.0,0.1,0.5,0.2,0.0,3.05637152778,812.203045699,291.587057567,280.06640625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.15368058,262.427446121,283.385,275.759551739,894.0,296.15,77777.0,52590.0,0.693942910593,-1.83015225364,0.06625,0.06625,101325.0,0.192283854167,0.309577675382,-0.402087572962,0.668376682351,52390.8391257,1.26121865141,5.33270934374,6.31802135417 +31588713,0.0,0.1,0.5,0.2,0.0,2.758765625,807.851698573,287.041437262,280.219698661,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.196480685,262.434009886,283.3645,275.750925575,894.0,296.15,77777.0,52713.0,0.693942910593,-1.83015225364,0.071375,0.071375,101325.0,0.19280703125,0.305444049177,-0.402085650889,0.677318722676,52513.8010067,1.26535227762,5.35122423081,6.09832328125 +31588836,0.0,0.1,0.5,0.2,0.0,2.46115972222,803.500351447,282.495816956,280.372991072,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.23928079,262.440573651,283.344,275.74229941,894.0,296.15,77777.0,52836.0,0.693942910593,-1.83015225364,0.0765,0.0765,101325.0,0.193330208333,0.301310422972,-0.402083728817,0.686260763002,52636.7628877,1.26948590382,5.36973911789,5.87862520833 +31588959,0.0,0.1,0.5,0.2,0.0,2.16355381944,799.149004321,277.95019665,280.526283483,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.282080894,262.447137416,283.3235,275.733673245,894.0,296.15,77777.0,52959.0,0.693942910593,-1.83015225364,0.081625,0.081625,101325.0,0.193853385417,0.297176796767,-0.402081806745,0.695202803327,52759.7247687,1.27361953003,5.38825400496,5.65892713542 +31589082,0.0,0.1,0.5,0.2,0.0,1.86594791666,794.797657195,273.404576345,280.679575893,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.324880999,262.453701181,283.303,275.725047081,894.0,296.15,77777.0,53082.0,0.693942910593,-1.83015225364,0.08675,0.08675,101325.0,0.1943765625,0.293043170562,-0.402079884673,0.704144843652,52882.6866497,1.27775315623,5.40676889203,5.4392290625 +31589205,0.0,0.1,0.5,0.2,0.0,1.67508391203,789.900073315,268.812500608,280.736774554,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.33333814,262.46578453,283.2825,275.718437286,894.0,296.15,77777.0,53205.0,0.693942910593,-1.83015225364,0.0889583333333,0.0889583333333,101325.0,0.195100260417,0.28866301556,-0.402077961017,0.713086884231,53005.6485342,1.28213331123,5.41978107591,5.31291901042 +31589328,0.0,0.1,0.5,0.2,0.0,1.50251851852,784.908848849,264.212461084,280.7775,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.335907916,262.478814093,283.262,275.712173154,894.0,296.15,77777.0,53328.0,0.693942910593,-1.83015225364,0.0906666666667,0.0906666666667,101325.0,0.195858333333,0.284240598479,-0.402076037091,0.722028924854,53128.6104193,1.28655572832,5.43184993924,5.20261833333 +31589451,0.0,0.1,0.5,0.2,0.0,1.329953125,779.917624383,259.612421559,280.818225447,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.338477693,262.491843657,283.2415,275.705909022,894.0,296.15,77777.0,53451.0,0.693942910593,-1.83015225364,0.092375,0.092375,101325.0,0.19661640625,0.279818181398,-0.402074113164,0.730970965477,53251.5723044,1.2909781454,5.44391880257,5.09231765625 +31589574,0.0,0.1,0.5,0.2,0.0,1.15738773148,774.926399916,255.012382034,280.858950893,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.341047469,262.50487322,283.221,275.69964489,894.0,296.15,77777.0,53574.0,0.693942910593,-1.83015225364,0.0940833333333,0.0940833333333,101325.0,0.197374479167,0.275395764317,-0.402072189237,0.7399130061,53374.5341895,1.29540056248,5.4559876659,4.98201697917 +31589697,0.0,0.1,0.5,0.2,0.0,0.984822337962,769.93517545,250.41234251,280.899676339,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.343617245,262.517902783,283.2005,275.693380759,894.0,296.15,77777.0,53697.0,0.693942910593,-1.83015225364,0.0957916666667,0.0957916666667,101325.0,0.198132552083,0.270973347236,-0.40207026531,0.748855046723,53497.4960746,1.29982297956,5.46805652923,4.87171630208 +31589820,0.0,0.1,0.5,0.2,0.0,0.812256944444,764.943950983,245.812302985,280.940401786,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.346187021,262.530932346,283.18,275.687116627,894.0,296.15,77777.0,53820.0,0.693942910593,-1.83015225364,0.0975,0.0975,101325.0,0.198890625,0.266550930155,-0.402068341384,0.757797087345,53620.4579597,1.30424539664,5.48012539256,4.761415625 +31589943,0.0,0.1,0.5,0.2,0.0,0.639691550926,759.952726517,241.21226346,280.981127232,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,265.348756797,262.54396191,283.1595,275.680852495,894.0,296.15,77777.0,53943.0,0.693942910593,-1.83015225364,0.0992083333333,0.0992083333333,101325.0,0.199648697917,0.262128513074,-0.402066417457,0.766739127968,53743.4198448,1.30866781373,5.49219425589,4.65111494792 +31590066,0.0,0.1,0.5,0.2,0.0,0.519936342592,754.626378982,236.590937549,280.948007813,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,265.328284023,262.569399456,283.139,275.676178663,894.0,296.15,77777.0,54066.0,0.693942910593,-1.83015225364,0.0985104166667,0.0985104166667,101325.0,0.2005671875,0.25756289973,-0.402064492535,0.775681168751,53866.3817321,1.31323342707,5.49555218091,4.64323179759 +31590189,0.0,0.1,0.5,0.2,0.0,0.445789930555,749.010606978,231.951227939,280.851113281,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,265.287910863,262.605552989,283.1185,275.672878272,894.0,296.15,77777.0,54189.0,0.693942910593,-1.83015225364,0.095734375,0.095734375,101325.0,0.20162421875,0.252873616886,-0.402062566754,0.784623209672,53989.3436213,1.31792270991,5.49138702284,4.72380014765 +31590312,0.0,0.1,0.5,0.2,0.0,0.371643518518,743.394834975,227.31151833,280.75421875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,265.247537704,262.641706522,283.098,275.669577881,894.0,296.15,77777.0,54312.0,0.693942910593,-1.83015225364,0.0929583333333,0.0929583333333,101325.0,0.20268125,0.248184334043,-0.402060640973,0.793565250593,54112.3055105,1.32261199276,5.48722186478,4.8043684977 +31590435,0.0,0.1,0.5,0.2,0.0,0.297497106481,737.779062971,222.67180872,280.657324219,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,265.207164545,262.677860054,283.0775,275.66627749,894.0,296.15,77777.0,54435.0,0.693942910593,-1.83015225364,0.0901822916667,0.0901822916667,101325.0,0.20373828125,0.243495051199,-0.402058715191,0.802507291513,54235.2673997,1.3273012756,5.48305670671,4.88493684776 +31590558,0.0,0.1,0.5,0.2,0.0,0.223350694444,732.163290968,218.032099111,280.560429688,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,265.166791386,262.714013587,283.057,275.662977099,894.0,296.15,77777.0,54558.0,0.693942910593,-1.83015225364,0.08740625,0.08740625,101325.0,0.2047953125,0.238805768356,-0.40205678941,0.811449332434,54358.2292889,1.33199055844,5.47889154864,4.96550519782 +31590681,0.0,0.1,0.5,0.2,0.0,0.149204282407,726.547518964,213.392389501,280.463535156,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,265.126418227,262.750167119,283.0365,275.659676707,894.0,296.15,77777.0,54681.0,0.693942910593,-1.83015225364,0.0846302083333,0.0846302083333,101325.0,0.20585234375,0.234116485512,-0.402054863629,0.820391373355,54481.1911781,1.33667984128,5.47472639057,5.04607354787 +31590804,0.0,0.1,0.5,0.2,0.0,0.0750578703703,720.931746961,208.752679891,280.366640625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,265.086045067,262.786320652,283.016,275.656376316,894.0,296.15,77777.0,54804.0,0.693942910593,-1.83015225364,0.0818541666667,0.0818541666667,101325.0,0.206909375,0.229427202669,-0.402052937848,0.829333414276,54604.1530673,1.34136912413,5.4705612325,5.12664189793 +31590927,0.0,0.1,0.5,0.2,0.0,0.016671875,715.182244235,204.107499829,280.251816406,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,265.041412387,262.827438858,282.9955,275.653466651,894.0,296.15,77777.0,54927.0,0.693942910593,-1.83015225364,0.078671875,0.078671875,101325.0,0.20800859375,0.224683966295,-0.402051011659,0.838275455262,54727.1149574,1.3461123605,5.4625119183,5.23337823824 +31591050,0.0,0.1,0.5,0.2,0.0,0.0143229166667,708.957254497,199.442869269,280.073242188,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.981634741,262.886209239,282.975,275.651946233,894.0,296.15,77777.0,55050.0,0.693942910593,-1.83015225364,0.0740451388889,0.0740451388889,101325.0,0.2092578125,0.219748895147,-0.402049084024,0.847217496481,54850.0768507,1.35104743165,5.44065227122,5.43315632167 +31591173,0.0,0.1,0.5,0.2,0.0,0.0119739583333,702.73226476,194.778238709,279.894667969,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.921857096,262.944979619,282.9545,275.650425816,894.0,296.15,77777.0,55173.0,0.693942910593,-1.83015225364,0.0694184027778,0.0694184027778,101325.0,0.21050703125,0.214813823999,-0.402047156388,0.8561595377,54973.038744,1.3559825028,5.41879262413,5.6329344051 +31591296,0.0,0.1,0.5,0.2,0.0,0.009625,696.507275022,190.113608149,279.71609375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.86207945,263.00375,282.934,275.648905398,894.0,296.15,77777.0,55296.0,0.693942910593,-1.83015225364,0.0647916666667,0.0647916666667,101325.0,0.21175625,0.209878752851,-0.402045228752,0.865101578919,55096.0006373,1.36091757394,5.39693297705,5.83271248853 +31591419,0.0,0.1,0.5,0.2,0.0,0.00727604166667,690.282285285,185.448977589,279.537519531,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.802301805,263.06252038,282.9135,275.64738498,894.0,296.15,77777.0,55419.0,0.693942910593,-1.83015225364,0.0601649305555,0.0601649305555,101325.0,0.21300546875,0.204943681702,-0.402043301116,0.874043620138,55218.9625306,1.36585264509,5.37507332996,6.03249057196 +31591542,0.0,0.1,0.5,0.2,0.0,0.00492708333333,684.057295547,180.784347029,279.358945312,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.742524159,263.12129076,282.893,275.645864563,894.0,296.15,77777.0,55542.0,0.693942910593,-1.83015225364,0.0555381944444,0.0555381944444,101325.0,0.2142546875,0.200008610554,-0.402041373481,0.882985661357,55341.9244239,1.37078771624,5.35321368288,6.23226865539 +31591665,0.0,0.1,0.5,0.2,0.0,0.002578125,677.83230581,176.119716468,279.180371094,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.682746514,263.180061141,282.8725,275.644344145,894.0,296.15,77777.0,55665.0,0.693942910593,-1.83015225364,0.0509114583333,0.0509114583333,101325.0,0.21550390625,0.195073539406,-0.402039445845,0.891927702576,55464.8863172,1.37572278739,5.33135403579,6.43204673882 +31591788,0.0,0.1,0.5,0.2,0.0,0.000229166666667,671.607316072,171.455085908,279.001796875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.622968868,263.238831521,282.852,275.642823727,894.0,296.15,77777.0,55788.0,0.693942910593,-1.83015225364,0.0462847222222,0.0462847222222,101325.0,0.216753125,0.190138468258,-0.402037518209,0.900869743795,55587.8482105,1.38065785853,5.30949438871,6.63182482225 +31591911,0.0,0.1,0.5,0.2,0.0,0.273067708333,657.190475156,166.294121896,278.762519531,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.559290371,263.29177038,282.8315,275.639915733,894.0,296.15,77777.0,55911.0,0.693942910593,-1.83015225364,0.0419149305555,0.0419149305555,101325.0,0.21788671875,0.184999696512,-0.4020355889,0.909811785283,55710.8101075,1.38579663028,5.27516119814,6.83460512471 +31592034,0.0,0.1,0.5,0.2,0.0,0.57565625,641.888028706,161.079500214,278.516679688,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.495190159,263.344078804,282.811,275.636857731,894.0,296.15,77777.0,56034.0,0.693942910593,-1.83015225364,0.0375729166666,0.0375729166666,101325.0,0.2190078125,0.179838903081,-0.40203365941,0.918753826801,55833.7720049,1.39095742371,5.23947951638,7.0377099914 +31592157,0.0,0.1,0.5,0.2,0.0,0.878244791667,626.585582257,155.864878531,278.270839844,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.431089948,263.396387228,282.7905,275.633799729,894.0,296.15,77777.0,56157.0,0.693942910593,-1.83015225364,0.0332309027778,0.0332309027778,101325.0,0.22012890625,0.174678109649,-0.40203172992,0.927695868318,55956.7339023,1.39611821714,5.20379783463,7.24081485808 +31592280,0.0,0.1,0.5,0.2,0.0,1.18083333333,611.283135808,150.650256849,278.025,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.366989736,263.448695652,282.77,275.630741727,894.0,296.15,77777.0,56280.0,0.693942910593,-1.83015225364,0.0288888888889,0.0288888888889,101325.0,0.22125,0.169517316217,-0.40202980043,0.936637909835,56079.6957997,1.40127901058,5.16811615287,7.44391972477 +31592403,0.0,0.1,0.5,0.2,0.0,1.483421875,595.980689359,145.435635167,277.779160156,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.302889525,263.501004076,282.7495,275.627683725,894.0,296.15,77777.0,56403.0,0.693942910593,-1.83015225364,0.024546875,0.024546875,101325.0,0.22237109375,0.164356522785,-0.40202787094,0.945579951353,56202.6576971,1.40643980401,5.13243447112,7.64702459145 +31592526,0.0,0.1,0.5,0.2,0.0,1.78601041667,580.67824291,140.221013484,277.533320312,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.238789313,263.5533125,282.729,275.624625722,894.0,296.15,77777.0,56526.0,0.693942910593,-1.83015225364,0.0202048611111,0.0202048611111,101325.0,0.2234921875,0.159195729354,-0.40202594145,0.95452199287,56325.6195945,1.41160059744,5.09675278936,7.85012945814 +31592649,0.0,0.1,0.5,0.2,0.0,2.08859895833,565.37579646,135.006391802,277.287480469,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.174689101,263.605620924,282.7085,275.62156772,894.0,296.15,77777.0,56649.0,0.693942910593,-1.83015225364,0.0158628472222,0.0158628472222,101325.0,0.22461328125,0.154034935922,-0.402024011959,0.963464034388,56448.5814919,1.41676139087,5.0610711076,8.05323432482 +31592772,0.0,0.1,0.5,0.2,0.0,2.58149305556,543.974209805,129.491727311,277.010703125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.123126298,263.637125,282.688,275.615739621,894.0,296.15,77777.0,56772.0,0.693942910593,-1.83015225364,0.0129375,0.0129375,101325.0,0.225471875,0.148753108957,-0.402022081384,0.97240607608,56571.5433917,1.42204321784,5.01956528126,8.19045265481 +31592895,0.0,0.1,0.5,0.2,0.0,3.2091869213,518.252398838,123.764532498,276.712011719,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.080444159,263.653892663,282.6675,275.607949369,894.0,296.15,77777.0,56895.0,0.693942910593,-1.83015225364,0.011015625,0.011015625,101325.0,0.22614453125,0.143385549905,-0.40202015004,0.981348117896,56694.5052933,1.42741077689,4.97393401918,8.28100135464 +31593018,0.0,0.1,0.5,0.2,0.0,3.83688078704,492.530587871,118.037337685,276.413320312,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,264.037762019,263.670660326,282.647,275.600159118,894.0,296.15,77777.0,57018.0,0.693942910593,-1.83015225364,0.00909375,0.00909375,101325.0,0.2268171875,0.138017990853,-0.402018218696,0.990290159711,56817.4671948,1.43277833594,4.92830275709,8.37155005447 +31593141,0.0,0.1,0.5,0.2,0.0,4.46457465278,466.808776903,112.310142872,276.114628906,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,263.99507988,263.687427989,282.6265,275.592368866,894.0,296.15,77777.0,57141.0,0.693942910593,-1.83015225364,0.007171875,0.007171875,101325.0,0.22748984375,0.132650431802,-0.402016287351,0.999232201527,56940.4290963,1.43814589499,4.882671495,8.4620987543 +31593264,0.0,0.1,0.5,0.2,0.0,5.09226851852,441.086965936,106.582948059,275.8159375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,263.95239774,263.704195652,282.606,275.584578615,894.0,296.15,77777.0,57264.0,0.693942910593,-1.83015225364,0.00525,0.00525,101325.0,0.2281625,0.12728287275,-0.402014356007,1.00817424334,57063.3909978,1.44351345404,4.83704023291,8.55264745413 +31593387,0.0,0.1,0.5,0.2,0.0,5.71996238426,415.365154969,100.855753246,275.517246094,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,263.909715601,263.720963315,282.5855,275.576788363,894.0,296.15,77777.0,57387.0,0.693942910593,-1.83015225364,0.003328125,0.003328125,101325.0,0.22883515625,0.121915313699,-0.402012424663,1.01711628516,57186.3528993,1.4488810131,4.79140897082,8.64319615396 +31593510,0.0,0.1,0.5,0.2,0.0,6.34765625,389.643344001,95.1285584332,275.218554687,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,263.867033462,263.737730978,282.565,275.568998112,894.0,296.15,77777.0,57510.0,0.693942910593,-1.83015225364,0.00140625,0.00140625,101325.0,0.2295078125,0.116547754647,-0.402010493319,1.02605832697,57309.3148008,1.45424857215,4.74577770874,8.73374485378 +31593633,0.0,0.1,0.5,0.2,0.0,6.96972280092,363.998120411,89.494168272,274.896316406,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,263.819001223,263.740513774,282.534558388,275.55315709,894.0,296.15,77777.0,57633.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.230091666667,0.111129498416,-0.402008561477,1.03500036887,57432.2767035,1.45966682838,4.6788984598,8.79836850153 +31593756,0.0,0.1,0.5,0.2,0.0,7.57644212963,338.561771485,84.1128817066,274.509859375,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,263.756377804,263.705156024,282.47700329,275.515359422,894.0,296.15,77777.0,57756.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.230433333333,0.10557297715,-0.402006628279,1.04394241099,57555.2386091,1.46522334964,4.55407015583,8.79228746177 +31593879,0.0,0.1,0.5,0.2,0.0,8.18316145834,313.12542256,78.7315951413,274.123402344,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,263.693754384,263.669798273,282.419448191,275.477561753,894.0,296.15,77777.0,57879.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.230775,0.100016455885,-0.40200469508,1.0528844531,57678.2005147,1.47077987091,4.42924185186,8.78620642202 +31594002,0.0,0.1,0.5,0.2,0.0,8.78988078705,287.689073634,73.3503085759,273.736945312,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,263.631130965,263.634440522,282.361893092,275.439764085,894.0,296.15,77777.0,58002.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.231116666667,0.0944599346193,-0.402002761882,1.06182649522,57801.1624203,1.47633639218,4.30441354789,8.78012538226 +31594125,0.0,0.1,0.5,0.2,0.0,9.39660011576,262.252724708,67.9690220105,273.350488281,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,263.568507546,263.599082771,282.304337994,275.401966417,894.0,296.15,77777.0,58125.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.231458333333,0.0889034133537,-0.402000828684,1.07076853733,57924.1243259,1.48189291344,4.17958524391,8.77404434251 +31594248,0.0,0.1,0.5,0.2,0.0,10.0033194445,236.816375783,62.5877354452,272.96403125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,263.505884126,263.563725021,282.246782895,275.364168748,894.0,296.15,77777.0,58248.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.2318,0.0833468920881,-0.401998895485,1.07971057945,58047.0862315,1.48744943471,4.05475693994,8.76796330276 +31594371,0.0,0.1,0.5,0.2,0.0,10.6100387732,211.380026857,57.2064488798,272.577574219,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,263.443260707,263.52836727,282.189227796,275.32637108,894.0,296.15,77777.0,58371.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.232141666667,0.0777903708226,-0.401996962287,1.08865262157,58170.0481371,1.49300595598,3.92992863597,8.761882263 +31594494,0.0,0.1,0.5,0.2,0.0,11.2167581019,185.943677932,51.8251623145,272.191117188,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,263.380637288,263.493009519,282.131672698,275.288573412,894.0,296.15,77777.0,58494.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.232483333333,0.072233849557,-0.401995029088,1.09759466368,58293.0100428,1.49856247724,3.805100332,8.75580122325 +31594617,0.0,0.1,0.5,0.2,0.0,11.474328125,170.961505968,47.5895146618,271.734277344,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,263.267154264,263.426987027,282.027869244,275.217142762,894.0,296.15,77777.0,58617.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.232825,0.0665134205905,-0.401993094126,1.10653670608,58415.9719523,1.50428290621,3.60132012681,8.73809174312 +31594740,0.0,0.1,0.5,0.2,0.0,11.7139930556,156.515445644,43.4126177226,271.273828125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,263.151063056,263.359391984,281.921694079,275.143987344,894.0,296.15,77777.0,58740.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.233166666667,0.0607845861009,-0.401991159074,1.1154787485,58538.933862,1.5100117407,3.39349110617,8.71978593273 +31594863,0.0,0.1,0.5,0.2,0.0,11.9536579861,142.069385319,39.2357207834,270.813378906,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,263.034971847,263.29179694,281.815518915,275.070831926,894.0,296.15,77777.0,58863.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.233508333333,0.0550557516112,-0.401989224021,1.12442079091,58661.8957718,1.51574057519,3.18566208554,8.70148012233 +31594986,0.0,0.1,0.5,0.2,0.0,12.1933229167,127.623324995,35.0588238442,270.352929688,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,262.918880639,263.224201897,281.70934375,274.997676508,894.0,296.15,77777.0,58986.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.23385,0.0493269171215,-0.401987288969,1.13336283333,58784.8576815,1.52146940968,2.9778330649,8.68317431193 +31595109,0.0,0.1,0.5,0.2,0.0,12.4329878472,113.17726467,30.881926905,269.892480469,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,262.80278943,263.156606854,281.603168586,274.92452109,894.0,296.15,77777.0,59109.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.234191666667,0.0435980826319,-0.401985353916,1.14230487574,58907.8195913,1.52719824416,2.77000404426,8.66486850153 +31595232,0.0,0.1,0.5,0.2,0.0,12.6726527778,98.7312043456,26.7050299657,269.43203125,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,262.686698222,263.08901181,281.496993421,274.851365672,894.0,296.15,77777.0,59232.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.234533333333,0.0378692481422,-0.401983418864,1.15124691815,59030.781501,1.53292707865,2.56217502363,8.64656269113 +31595355,0.0,0.1,0.5,0.2,0.0,12.9123177083,84.2851440212,22.5281330265,268.971582031,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,262.570607013,263.021416767,281.390818256,274.778210254,894.0,296.15,77777.0,59355.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.234875,0.0321404136526,-0.401981483811,1.16018896057,59153.7434108,1.53865591314,2.35434600299,8.62825688074 +31595478,0.0,0.1,0.5,0.2,0.0,12.8028333333,76.0101810804,19.542578125,268.519664062,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,262.447343514,262.949631959,281.278057566,274.699835862,894.0,296.15,77777.0,59478.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.235216666667,0.026312153205,-0.401979547583,1.16913100317,59276.7053231,1.54448417359,2.15858949123,8.59385015291 +31595601,0.0,0.1,0.5,0.2,0.0,12.4919166667,71.2954666303,17.2443359375,268.072667969,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,262.319942154,262.875429979,281.161497533,274.618450523,894.0,296.15,77777.0,59601.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.235558333333,0.0204265316279,-0.401977610676,1.17807304589,59399.667237,1.55036979517,1.96979788844,8.55015443425 +31595724,0.0,0.1,0.5,0.2,0.0,12.181,66.5807521802,14.94609375,267.625671875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,262.192540794,262.801228,281.0449375,274.537065184,894.0,296.15,77777.0,59724.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.2359,0.0145409100507,-0.40197567377,1.1870150886,59522.6291509,1.55625541674,1.78100628565,8.5064587156 +31595847,0.0,0.1,0.5,0.2,0.0,11.8700833333,61.8660377301,12.6478515625,267.178675781,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,262.065139435,262.72702602,280.928377467,274.455679845,894.0,296.15,77777.0,59847.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.236241666667,0.00865528847358,-0.401973736864,1.19595713132,59645.5910647,1.56214103832,1.59221468286,8.46276299695 +31595970,0.0,0.1,0.5,0.2,0.0,11.5591666667,57.15132328,10.349609375,266.731679687,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.937738075,262.65282404,280.811817434,274.374294506,894.0,296.15,77777.0,59970.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.236583333333,0.00276966689644,-0.401971799957,1.20489917403,59768.5529786,1.5680266599,1.40342308007,8.41906727829 +31596093,0.0,0.1,0.5,0.2,0.0,11.24825,52.4366088299,8.0513671875,266.284683594,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.810336715,262.57862206,280.695257401,274.292909167,894.0,296.15,77777.0,60093.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.236925,-0.0031159546807,-0.401969863051,1.21384121675,59891.5148925,1.57391228147,1.21463147728,8.37537155964 +31596216,0.0,0.1,0.5,0.2,0.0,10.9373333333,47.7218943798,5.753125,265.8376875,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.682935356,262.504420081,280.578697369,274.211523828,894.0,296.15,77777.0,60216.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.237266666667,-0.00900157625785,-0.401967926144,1.22278325946,60014.4768063,1.57979790305,1.02583987449,8.33167584098 +31596339,0.0,0.1,0.5,0.2,0.0,10.5325277778,43.4319867369,4.0023046875,265.422683594,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.56529892,262.436249917,280.470967928,274.136366732,894.0,296.15,77777.0,60339.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.237608333333,-0.014932326204,-0.40196598865,1.23172530227,60137.4387215,1.58572865299,0.875438080986,8.27575535169 +31596462,0.0,0.1,0.5,0.2,0.0,9.9255,40.0570476017,3.430546875,265.076585937,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.468694629,262.381071358,280.382258224,274.074624313,894.0,296.15,77777.0,60462.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.23795,-0.0209602757144,-0.40196404989,1.24066734529,60260.4006395,1.59175660251,0.807722030554,8.19350458716 +31596585,0.0,0.1,0.5,0.2,0.0,9.31847222222,36.6821084665,2.8587890625,264.730488281,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.372090337,262.325892798,280.29354852,274.012881894,894.0,296.15,77777.0,60585.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.238291666667,-0.0269882252247,-0.40196211113,1.2496093883,60383.3625575,1.59778455202,0.740005980121,8.11125382263 +31596708,0.0,0.1,0.5,0.2,0.0,8.71144444444,33.3071693314,2.28703125,264.384390625,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.275486046,262.270714238,280.204838816,273.951139476,894.0,296.15,77777.0,60708.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.238633333333,-0.033016174735,-0.401960172369,1.25855143131,60506.3244755,1.60381250153,0.672289929689,8.02900305811 +31596831,0.0,0.1,0.5,0.2,0.0,8.10441666666,29.9322301962,1.7152734375,264.038292969,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.178881755,262.215535679,280.116129112,273.889397057,894.0,296.15,77777.0,60831.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.238975,-0.0390441242453,-0.401958233609,1.26749347433,60629.2863934,1.60984045104,0.604573879256,7.94675229358 +31596954,0.0,0.1,0.5,0.2,0.0,7.49738888889,26.557291061,1.143515625,263.692195313,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,261.082277464,262.160357119,280.027419408,273.827654638,894.0,296.15,77777.0,60954.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.239316666667,-0.0450720737556,-0.401956294849,1.27643551734,60752.2483114,1.61586840055,0.536857828824,7.86450152905 +31597077,0.0,0.1,0.5,0.2,0.0,6.89036111111,23.1823519259,0.5717578125,263.346097656,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,260.985673172,262.10517856,279.938709704,273.76591222,894.0,296.15,77777.0,61077.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.239658333333,-0.0511000232659,-0.401954356088,1.28537756036,60875.2102294,1.62189635006,0.469141778391,7.78225076453 +31597200,0.0,0.1,0.5,0.2,0.0,6.28333333333,19.8074127907,0.0,263.0,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.889068881,262.05,279.85,273.704169801,894.0,296.15,77777.0,61200.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.24,-0.0571279727762,-0.401952417328,1.29431960337,60998.1721474,1.62792429957,0.401425727959,7.7 +31597323,0.0,0.1,0.5,0.2,0.0,5.69111111111,17.7781337815,0.0,262.788166667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.836512971,262.014360834,279.803245614,273.672831095,894.0,296.15,77777.0,61323.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.240341666667,-0.0632847845748,-0.401950476714,1.30326164668,61121.1340695,1.63408111137,0.428260165208,7.59408333333 +31597446,0.0,0.1,0.5,0.2,0.0,5.09888888889,15.7488547723,0.0,262.576333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.783957061,261.978721669,279.756491228,273.641492388,894.0,296.15,77777.0,61446.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.240683333333,-0.0694415963734,-0.4019485361,1.31220369,61244.0959916,1.64023792317,0.455094602458,7.48816666667 +31597569,0.0,0.1,0.5,0.2,0.0,4.50666666666,13.7195757631,0.0,262.3645,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.731401151,261.943082503,279.709736842,273.610153682,894.0,296.15,77777.0,61569.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.241025,-0.075598408172,-0.401946595486,1.32114573331,61367.0579137,1.64639473497,0.481929039707,7.38225 +31597692,0.0,0.1,0.5,0.2,0.0,3.91444444444,11.6902967539,0.0,262.152666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.67884524,261.907443338,279.662982456,273.578814976,894.0,296.15,77777.0,61692.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.241366666667,-0.0817552199706,-0.401944654872,1.33008777662,61490.0198358,1.65255154677,0.508763476956,7.27633333333 +31597815,0.0,0.1,0.5,0.2,0.0,3.32222222222,9.66101774467,0.0,261.940833333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.62628933,261.871804172,279.61622807,273.54747627,894.0,296.15,77777.0,61815.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.241708333333,-0.0879120317692,-0.401942714258,1.33902981994,61612.981758,1.65870835856,0.535597914206,7.17041666667 +31597938,0.0,0.1,0.5,0.2,0.0,2.73,7.63173873546,0.0,261.729,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.57373342,261.836165007,279.569473684,273.516137563,894.0,296.15,77777.0,61938.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.24205,-0.0940688435678,-0.401940773644,1.34797186325,61735.9436801,1.66486517036,0.562432351455,7.0645 +31598061,0.0,0.1,0.5,0.2,0.0,2.13777777778,5.60245972626,0.0,261.517166667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.52117751,261.800525841,279.522719298,273.484798857,894.0,296.15,77777.0,62061.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.242391666667,-0.100225655366,-0.40193883303,1.35691390656,61858.9056022,1.67102198216,0.589266788705,6.95858333333 +31598184,0.0,0.1,0.5,0.2,0.0,1.768,4.4961870155,0.0,261.352,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.481421955,261.769346612,279.488491228,273.462580717,894.0,296.15,77777.0,62184.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.242733333333,-0.106461894376,-0.40193689115,1.36585595008,61981.8675271,1.67725822117,0.616101225954,6.85266666667 +31598307,0.0,0.1,0.5,0.2,0.0,1.5015,3.81845294331,0.0,261.2085,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.447609421,261.740238067,279.460078947,273.444597127,894.0,296.15,77777.0,62307.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.243075,-0.112735010305,-0.401934948682,1.3747979937,62104.8294533,1.6835313371,0.642935663203,6.74675 +31598430,0.0,0.1,0.5,0.2,0.0,1.235,3.14071887112,0.0,261.065,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.413796888,261.711129522,279.431666667,273.426613536,894.0,296.15,77777.0,62430.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.243416666667,-0.119008126234,-0.401933006214,1.38374003731,62227.7913796,1.68980445303,0.669770100453,6.64083333333 +31598553,0.0,0.1,0.5,0.2,0.0,0.9685,2.46298479893,0.0,260.9215,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.379984354,261.682020976,279.403254386,273.408629945,894.0,296.15,77777.0,62553.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.243758333333,-0.125281242163,-0.401931063747,1.39268208093,62350.7533058,1.69607756896,0.696604537702,6.53491666667 +31598676,0.0,0.1,0.5,0.2,0.0,0.702,1.78525072674,0.0,260.778,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.346171821,261.652912431,279.374842105,273.390646355,894.0,296.15,77777.0,62676.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.2441,-0.131554358092,-0.401929121279,1.40162412455,62473.7152321,1.70235068489,0.723438974951,6.429 +31598799,0.0,0.1,0.5,0.2,0.0,0.4355,1.10751665455,0.0,260.6345,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.312359287,261.623803886,279.346429825,273.372662764,894.0,296.15,77777.0,62799.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.244441666667,-0.137827474021,-0.401927178811,1.41056616816,62596.6771583,1.70862380082,0.750273412201,6.32308333333 +31598922,0.0,0.1,0.5,0.2,0.0,0.169,0.429782582364,0.0,260.491,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.278546753,261.594695341,279.318017544,273.354679173,894.0,296.15,77777.0,62922.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.244783333333,-0.14410058995,-0.401925236344,1.41950821178,62719.6390845,1.71489691674,0.77710784945,6.21716666667 +31599045,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,260.35,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.245829794,261.56993089,279.289605263,273.336661181,894.0,296.15,77777.0,63045.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.245125,-0.150411958955,-0.401923293198,1.4284502555,62842.6010123,1.72120828575,0.8039422867,6.11125 +31599168,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,260.213333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.215011829,261.5526962,279.261192982,273.318583559,894.0,296.15,77777.0,63168.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.245466666667,-0.15678963329,-0.401921348877,1.43739229942,62965.5629427,1.72758596008,0.830776723949,6.00533333333 +31599291,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,260.076666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.184193864,261.53546151,279.232780702,273.300505937,894.0,296.15,77777.0,63291.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.245808333333,-0.163167307626,-0.401919404555,1.44633434333,63088.524873,1.73396363442,0.857611161199,5.89941666667 +31599414,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.94,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.153375899,261.51822682,279.204368421,273.282428314,894.0,296.15,77777.0,63414.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.24615,-0.169544981961,-0.401917460234,1.45527638725,63211.4868034,1.74034130875,0.884445598448,5.7935 +31599537,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.803333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.122557934,261.50099213,279.17595614,273.264350692,894.0,296.15,77777.0,63537.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.246491666667,-0.175922656297,-0.401915515913,1.46421843116,63334.4487338,1.74671898309,0.911280035697,5.68758333333 +31599660,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.666666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.091739969,261.48375744,279.14754386,273.24627307,894.0,296.15,77777.0,63660.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.246833333333,-0.182300330632,-0.401913571592,1.47316047507,63457.4106642,1.75309665742,0.938114472947,5.58166666667 +31599783,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.53,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.060922005,261.46652275,279.119131579,273.228195448,894.0,296.15,77777.0,63783.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.247175,-0.188678004968,-0.40191162727,1.48210251899,63580.3725946,1.75947433176,0.964948910196,5.47575 +31599906,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.390666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,260.029482197,261.450127918,279.089824561,273.20944872,894.0,296.15,77777.0,63906.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.247516666667,-0.195060241409,-0.401909682859,1.49104456292,63703.3345251,1.7658565682,0.991783347446,5.36983333333 +31600029,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.199333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.985916454,261.450110319,279.043070175,273.177654421,894.0,296.15,77777.0,64029.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.247858333333,-0.20153143891,-0.401907736684,1.49998660714,63826.2964597,1.7723277657,1.0186177847,5.26391666667 +31600152,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.008,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.942350711,261.450092719,278.996315789,273.145860123,894.0,296.15,77777.0,64152.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.2482,-0.208002636411,-0.401905790509,1.50892865135,63949.2583942,1.7787989632,1.04545222195,5.158 +31600275,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.816666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.898784968,261.45007512,278.949561403,273.114065824,894.0,296.15,77777.0,64275.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.248541666667,-0.214473833912,-0.401903844334,1.51787069557,64072.2203287,1.7852701607,1.0722866592,5.05208333333 +31600398,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.625333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.855219226,261.45005752,278.902807017,273.082271526,894.0,296.15,77777.0,64398.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.248883333333,-0.220945031413,-0.40190189816,1.52681273979,64195.1822632,1.79174135821,1.09912109645,4.94616666667 +31600521,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.434,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.811653483,261.450039921,278.856052632,273.050477227,894.0,296.15,77777.0,64521.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.249225,-0.227416228914,-0.401899951985,1.535754784,64318.1441977,1.79821255571,1.1259555337,4.84025 +31600644,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.242666667,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.76808774,261.450022321,278.809298246,273.018682929,894.0,296.15,77777.0,64644.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.249566666667,-0.233887426415,-0.40189800581,1.54469682822,64441.1061323,1.80468375321,1.15278997095,4.73433333333 +31600767,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.051333333,192.0,96.0,288.0,295.15,2.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,259.724521997,261.450004722,278.76254386,272.986888631,894.0,296.15,77777.0,64767.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.249908333333,-0.240358623916,-0.401896059635,1.55363887244,64564.0680668,1.81115495071,1.1796244082,4.62841666667 +31600890,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.784375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,259.658322455,261.477444754,278.684100877,272.941424297,894.0,296.15,77777.0,64890.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.251505580357,-0.246890619283,-0.401894112105,1.56258091687,64687.0300043,1.81768694608,1.20645884545,4.5225 +31601013,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.4896875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,259.583823854,261.514952586,278.594038743,272.890947618,894.0,296.15,77777.0,65013.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.253563206845,-0.253444907201,-0.401892164077,1.57152296139,64809.991943,1.824241234,1.23329328269,4.41658333333 +31601136,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.195,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,259.509325253,261.552460417,278.503976608,272.840470938,894.0,296.15,77777.0,65136.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.255620833333,-0.259999195119,-0.401890216048,1.58046500591,64932.9538817,1.83079552191,1.26012771994,4.31066666667 +31601259,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.9003125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,259.434826651,261.589968248,278.413914474,272.789994259,894.0,296.15,77777.0,65259.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.257678459821,-0.266553483037,-0.40188826802,1.58940705043,65055.9158203,1.83734980983,1.28696215719,4.20475 +31601382,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.605625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,259.36032805,261.627476079,278.323852339,272.739517579,894.0,296.15,77777.0,65382.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.259736086309,-0.273107770955,-0.401886319992,1.59834909494,65178.877759,1.84390409775,1.31379659444,4.09883333333 +31601505,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.3109375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,259.285829449,261.66498391,278.233790205,272.6890409,894.0,296.15,77777.0,65505.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.261793712797,-0.279662058873,-0.401884371964,1.60729113946,65301.8396976,1.85045838567,1.34063103169,3.99291666667 +31601628,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.01625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,259.211330847,261.702491741,278.14372807,272.638564221,894.0,296.15,77777.0,65628.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.263851339285,-0.286216346791,-0.401882423936,1.61623318398,65424.8016363,1.85701267359,1.36746546894,3.887 +31601751,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.696770833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,259.12876652,261.754094773,278.041272174,272.584924296,894.0,296.15,77777.0,65751.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.266808296131,-0.292800963451,-0.40188047514,1.62517522862,65547.7635767,1.86359729025,1.39429990619,3.78108333333 +31601874,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.342291667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,259.034815284,261.825596913,277.921319201,272.526818614,894.0,296.15,77777.0,65874.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.271034895833,-0.299428397158,-0.401878525258,1.63411727344,65670.7255195,1.87022472395,1.42113434344,3.67516666667 +31601997,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.9878125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.940864048,261.897099052,277.801366228,272.468712932,894.0,296.15,77777.0,65997.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.275261495535,-0.306055830866,-0.401876575377,1.64305931826,65793.6874623,1.87685215766,1.44796878069,3.56925 +31602120,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.633333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.846912813,261.968601191,277.681413256,272.41060725,894.0,296.15,77777.0,66120.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.279488095238,-0.312683264573,-0.401874625495,1.65200136308,65916.6494051,1.88347959137,1.47480321794,3.46333333333 +31602243,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.278854167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.752961577,262.04010333,277.561460283,272.352501567,894.0,296.15,77777.0,66243.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.28371469494,-0.319310698281,-0.401872675614,1.6609434079,66039.6113479,1.89010702508,1.50163765518,3.35741666667 +31602366,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.924375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.659010341,262.111605469,277.44150731,272.294395885,894.0,296.15,77777.0,66366.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.287941294643,-0.325938131988,-0.401870725732,1.66988545272,66162.5732907,1.89673445878,1.52847209243,3.2515 +31602489,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.569895833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.565059105,262.183107608,277.321554338,272.236290203,894.0,296.15,77777.0,66489.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.292167894345,-0.332565565696,-0.401868775851,1.67882749754,66285.5352335,1.90336189249,1.55530652968,3.14558333333 +31602612,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.217083333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.472027308,262.254958855,277.202512671,272.178743709,894.0,296.15,77777.0,66612.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.296421279762,-0.339199201059,-0.401866825789,1.68776954239,66408.4971767,1.90999552785,1.58214096693,3.03966666667 +31602735,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.8796875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.387500315,262.330039342,277.091900585,272.126369706,894.0,296.15,77777.0,66735.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.300922433036,-0.345890201743,-0.401864874054,1.69671158751,66531.4591237,1.91668652854,1.60897540418,2.93375 +31602858,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.542291667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.302973322,262.405119829,276.981288499,272.073995704,894.0,296.15,77777.0,66858.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.305423586309,-0.352581202426,-0.40186292232,1.70565363263,66654.4210706,1.92337752922,1.63580984143,2.82783333333 +31602981,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.204895833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.218446329,262.480200316,276.870676413,272.021621701,894.0,296.15,77777.0,66981.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.309924739583,-0.359272203109,-0.401860970585,1.71459567775,66777.3830176,1.93006852991,1.66264427868,2.72191666667 +31603104,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.8675,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.133919336,262.555280804,276.760064327,271.969247698,894.0,296.15,77777.0,67104.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.314425892857,-0.365963203793,-0.40185901885,1.72353772287,66900.3449645,1.93675953059,1.68947871593,2.616 +31603227,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.530104167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,258.049392344,262.630361291,276.649452242,271.916873696,894.0,296.15,77777.0,67227.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.318927046131,-0.372654204476,-0.401857067116,1.73247976799,67023.3069115,1.94345053127,1.71631315318,2.51008333333 +31603350,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.192708333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,257.964865351,262.705441778,276.538840156,271.864499693,894.0,296.15,77777.0,67350.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.323428199405,-0.379345205159,-0.401855115381,1.74142181312,67146.2688584,1.95014153196,1.74314759042,2.40416666667 +31603473,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.8553125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,257.880338358,262.780522265,276.42822807,271.81212569,894.0,296.15,77777.0,67473.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.327929352678,-0.386036205842,-0.401853163647,1.75036385824,67269.2308054,1.95683253264,1.76998202767,2.29825 +31603596,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.59125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,257.825900575,262.834656324,276.355526315,271.778531772,894.0,296.15,77777.0,67596.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.331166220238,-0.392769525246,-0.401851210466,1.75930590359,67392.1927556,1.96356585205,1.79681646492,2.19233333333 +31603719,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.3478125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,257.779925383,262.8828992,276.293486842,271.750219752,894.0,296.15,77777.0,67719.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.33404750744,-0.399514746789,-0.401849256878,1.76824794902,67515.1547067,1.97031107359,1.82365090217,2.08641666667 +31603842,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.104375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,257.73395019,262.931142076,276.231447368,271.721907733,894.0,296.15,77777.0,67842.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.336928794643,-0.406259968333,-0.40184730329,1.77718999444,67638.1166578,1.97705629513,1.85048533942,1.9805 +31603965,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.8609375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,257.687974998,262.979384952,276.169407895,271.693595713,894.0,296.15,77777.0,67965.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.339810081845,-0.413005189876,-0.401845349703,1.78613203986,67761.0786089,1.98380151667,1.87731977667,1.87458333333 +31604088,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.6175,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,257.641999805,263.027627827,276.107368421,271.665283694,894.0,296.15,77777.0,68088.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.342691369048,-0.41975041142,-0.401843396115,1.79507408529,67884.0405601,1.99054673822,1.90415421392,1.76866666667 +31604211,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.3740625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,257.596024613,263.075870703,276.045328947,271.636971674,894.0,296.15,77777.0,68211.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.34557265625,-0.426495632963,-0.401841442527,1.80401613071,68007.0025112,1.99729195976,1.93098865117,1.66275 +31604334,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.130625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,257.55004942,263.124113579,275.983289474,271.608659654,894.0,296.15,77777.0,68334.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.348453943452,-0.433240854506,-0.40183948894,1.81295817613,68129.9644623,2.0040371813,1.95782308842,1.55683333333 +31604457,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.935380208,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.517485706,263.158958203,275.939178199,271.588568904,894.0,296.15,77777.0,68457.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.350528101749,-0.440006910746,-0.401837534493,1.8219002217,68252.9264153,2.01080323754,1.98038283254,1.48932526882 +31604580,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.7959375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.500451072,263.178289063,275.915825893,271.577997518,894.0,296.15,77777.0,68580.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.351667689732,-0.446797091369,-0.401835579052,1.83084226742,68375.8883706,2.01759341816,1.99799293199,1.46629032258 +31604703,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.656494792,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.483416437,263.197619922,275.892473586,271.567426132,894.0,296.15,77777.0,68703.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.352807277716,-0.453587271993,-0.401833623612,1.83978431315,68498.8503258,2.02438359879,2.01560303143,1.44325537634 +31604826,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.517052083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.466381803,263.216950781,275.86912128,271.556854746,894.0,296.15,77777.0,68826.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.3539468657,-0.460377452617,-0.401831668171,1.84872635888,68621.8122811,2.03117377941,2.03321313088,1.42022043011 +31604949,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.377609375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.449347169,263.236281641,275.845768973,271.546283361,894.0,296.15,77777.0,68949.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.355086453683,-0.467167633241,-0.40182971273,1.8576684046,68744.7742364,2.03796396004,2.05082323033,1.39718548387 +31605072,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.238166667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.432312534,263.2556125,275.822416666,271.535711975,894.0,296.15,77777.0,69072.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.356226041667,-0.473957813865,-0.401827757289,1.86661045033,68867.7361916,2.04475414066,2.06843332977,1.37415053763 +31605195,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.098723958,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.4152779,263.27494336,275.79906436,271.525140589,894.0,296.15,77777.0,69195.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.357365629651,-0.480747994489,-0.401825801849,1.87555249605,68990.6981469,2.05154432129,2.08604342922,1.3511155914 +31605318,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.96734375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.39812815,263.292547657,275.776044891,271.514233726,894.0,296.15,77777.0,69318.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.358422349331,-0.487543386567,-0.401823846137,1.88449454182,69113.6601028,2.05833971336,2.10144459633,1.344 +31605441,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.882994792,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.380306896,263.300080339,275.754966972,271.501369913,894.0,296.15,77777.0,69441.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.358995670573,-0.494369178797,-0.401821888843,1.89343658785,69236.6220622,2.06516550559,2.10396032482,1.42974731182 +31605564,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.798645833,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.362485641,263.307613021,275.733889054,271.4885061,894.0,296.15,77777.0,69564.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.359568991816,-0.501194971026,-0.40181993155,1.90237863388,69359.5840217,2.07199129782,2.10647605331,1.51549462365 +31605687,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.714296875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.344664386,263.315145703,275.712811136,271.475642287,894.0,296.15,77777.0,69687.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.360142313058,-0.508020763256,-0.401817974256,1.9113206799,69482.5459811,2.07881709005,2.1089917818,1.60124193548 +31605810,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.629947917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.326843131,263.322678386,275.691733218,271.462778474,894.0,296.15,77777.0,69810.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.360715634301,-0.514846555486,-0.401816016963,1.92026272593,69605.5079405,2.08564288228,2.1115075103,1.68698924731 +31605933,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.545598958,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.309021876,263.330211068,275.670655299,271.449914661,894.0,296.15,77777.0,69933.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.361288955543,-0.521672347715,-0.401814059669,1.92920477196,69728.4699,2.09246867451,2.11402323879,1.77273655914 +31606056,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.46125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.291200621,263.33774375,275.649577381,271.437050848,894.0,296.15,77777.0,70056.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.361862276786,-0.528498139945,-0.401812102376,1.93814681799,69851.4318594,2.09929446674,2.11653896728,1.85848387097 +31606179,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.376901042,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.273379366,263.345276432,275.628499463,271.424187035,894.0,296.15,77777.0,70179.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.362435598028,-0.535323932175,-0.401810145082,1.94708886401,69974.3938188,2.10612025897,2.11905469577,1.94423118279 +31606302,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.328677083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.254146957,263.341670573,275.608843833,271.409443962,894.0,296.15,77777.0,70302.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.36258202195,-0.542171266841,-0.401808186252,1.95603091029,70097.3557817,2.11296759364,2.11322556878,2.04930913978 +31606425,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.287890625,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.234624015,263.335771484,275.589481027,271.394313982,894.0,296.15,77777.0,70425.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.362640555246,-0.549023036716,-0.401806227106,1.96497295663,70220.3177453,2.11981936351,2.1056783833,2.15836693548 +31606548,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.247104167,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.215101073,263.329872396,275.570118221,271.379184002,894.0,296.15,77777.0,70548.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.362699088542,-0.55587480659,-0.401804267959,1.97391500296,70343.2797089,2.12667113338,2.09813119782,2.26742473118 +31606671,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.206317708,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.195578132,263.323973307,275.550755415,271.364054023,894.0,296.15,77777.0,70671.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.362757621838,-0.562726576464,-0.401802308813,1.98285704929,70466.2416725,2.13352290326,2.09058401235,2.37648252688 +31606794,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.16553125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.17605519,263.318074218,275.531392609,271.348924043,894.0,296.15,77777.0,70794.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.362816155134,-0.569578346338,-0.401800349666,1.99179909562,70589.2036361,2.14037467313,2.08303682687,2.48554032258 +31606917,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.124744792,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.156532249,263.31217513,275.512029803,271.333794063,894.0,296.15,77777.0,70917.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.36287468843,-0.576430116212,-0.40179839052,2.00074114195,70712.1655997,2.14722644301,2.0754896414,2.59459811828 +31607040,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.083958333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.137009307,263.306276041,275.492666997,271.318664084,894.0,296.15,77777.0,71040.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.362933221727,-0.583281886086,-0.401796431373,2.00968318828,70835.1275633,2.15407821288,2.06794245592,2.70365591398 +31607163,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.059578125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.116142747,263.292660546,275.473896205,271.302367521,894.0,296.15,77777.0,71163.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.362754450335,-0.590141755215,-0.401794471278,2.01862523477,70958.0895291,2.16093808201,2.05781818272,2.780875 +31607286,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.050822917,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.093996551,263.271696093,275.455689236,271.284959928,894.0,296.15,77777.0,71286.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.36234967448,-0.597009337919,-0.401792510279,2.0275672814,71081.0514968,2.16780566471,2.04523954026,2.82777150538 +31607409,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.042067708,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.071850355,263.25073164,275.437482267,271.267552334,894.0,296.15,77777.0,71409.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.361944898624,-0.603876920623,-0.40179054928,2.03650932804,71204.0134646,2.17467324742,2.0326608978,2.87466801075 +31607532,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.0333125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.049704159,263.229767187,275.419275298,271.250144741,894.0,296.15,77777.0,71532.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.361540122768,-0.610744503327,-0.40178858828,2.04545137467,71326.9754323,2.18154083012,2.02008225534,2.92156451613 +31607655,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.024557292,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.027557963,263.208802734,275.401068328,271.232737147,894.0,296.15,77777.0,71655.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.361135346912,-0.617612086031,-0.401786627281,2.0543934213,71449.9374001,2.18840841283,2.00750361287,2.96846102151 +31607778,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.015802083,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,257.005411767,263.187838281,275.382861359,271.215329554,894.0,296.15,77777.0,71778.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.360730571057,-0.624479668735,-0.401784666282,2.06333546794,71572.8993679,2.19527599553,1.99492497041,3.01535752688 +31607901,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.007046875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,256.983265571,263.166873828,275.36465439,271.19792196,894.0,296.15,77777.0,71901.0,0.693942910593,-1.83015225364,0.0,0.0,101325.0,0.360325795201,-0.631347251439,-0.401782705283,2.07227751457,71695.8613356,2.20214357823,1.98234632795,3.06225403226 +31608024,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.001684524,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.963393792,263.140951042,275.34671131,271.179758041,894.0,296.15,77777.0,72024.0,0.693942910593,-1.83015225364,0.000229166666667,0.000229166666667,101325.0,0.35977890625,-0.638215772892,-0.401780743923,2.08121956127,71818.8233042,2.20901209969,1.96780900257,3.09513822703 +31608147,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.010317708,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.952903983,263.09457513,275.329856771,271.158474278,894.0,296.15,77777.0,72147.0,0.693942910593,-1.83015225364,0.00140364583333,0.00140364583333,101325.0,0.358645800781,-0.645088166685,-0.401778781071,2.09016160821,71941.7852761,2.21588449348,1.94519211015,3.07022164055 +31608270,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.018950893,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.942414174,263.048199219,275.313002232,271.137190515,894.0,296.15,77777.0,72270.0,0.693942910593,-1.83015225364,0.002578125,0.002578125,101325.0,0.357512695312,-0.651960560478,-0.401776818219,2.09910365514,72064.7472481,2.22275688727,1.92257521772,3.04530505407 +31608393,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.027584077,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.931924365,263.001823307,275.296147693,271.115906752,894.0,296.15,77777.0,72393.0,0.693942910593,-1.83015225364,0.00375260416667,0.00375260416667,101325.0,0.356379589844,-0.65883295427,-0.401774855368,2.10804570208,72187.70922,2.22962928106,1.8999583253,3.02038846759 +31608516,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.036217262,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.921434556,262.955447396,275.279293155,271.094622989,894.0,296.15,77777.0,72516.0,0.693942910593,-1.83015225364,0.00492708333333,0.00492708333333,101325.0,0.355246484375,-0.665705348063,-0.401772892516,2.11698774902,72310.6711919,2.23650167486,1.87734143287,2.99547188111 +31608639,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.044850447,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.910944747,262.909071484,275.262438616,271.073339227,894.0,296.15,77777.0,72639.0,0.693942910593,-1.83015225364,0.0061015625,0.0061015625,101325.0,0.354113378906,-0.672577741856,-0.401770929664,2.12592979596,72433.6331639,2.24337406865,1.85472454045,2.97055529463 +31608762,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.053483631,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.900454938,262.862695572,275.245584077,271.052055464,894.0,296.15,77777.0,72762.0,0.693942910593,-1.83015225364,0.00727604166667,0.00727604166667,101325.0,0.352980273437,-0.679450135648,-0.401768966813,2.1348718429,72556.5951358,2.25024646244,1.83210764803,2.94563870815 +31608885,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.062116816,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.889965129,262.816319661,275.228729539,271.030771701,894.0,296.15,77777.0,72885.0,0.693942910593,-1.83015225364,0.00845052083333,0.00845052083333,101325.0,0.351847167969,-0.686322529441,-0.401767003961,2.14381388984,72679.5571078,2.25711885624,1.8094907556,2.92072212167 +31609008,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.082803572,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.897521397,262.751296875,275.212651786,271.006632499,894.0,296.15,77777.0,73008.0,0.693942910593,-1.83015225364,0.0113125,0.0113125,101325.0,0.35019453125,-0.693188407024,-0.401765039483,2.15275593705,72802.5190834,2.26398473382,1.77756169745,2.88234924853 +31609131,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.105164435,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.907584064,262.683684244,275.19668192,270.982096709,894.0,296.15,77777.0,73131.0,0.693942910593,-1.83015225364,0.0144088541667,0.0144088541667,101325.0,0.348469737413,-0.700053379579,-0.401763074779,2.16169798429,72925.4810595,2.27084970637,1.74433928295,2.84210744669 +31609254,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.127525298,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.917646731,262.616071614,275.180712054,270.957560919,894.0,296.15,77777.0,73254.0,0.693942910593,-1.83015225364,0.0175052083333,0.0175052083333,101325.0,0.346744943577,-0.706918352133,-0.401761110074,2.17064003153,73048.4430356,2.27771467893,1.71111686846,2.80186564486 +31609377,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.149886161,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.927709398,262.548458984,275.164742188,270.933025129,894.0,296.15,77777.0,73377.0,0.693942910593,-1.83015225364,0.0206015625,0.0206015625,101325.0,0.34502014974,-0.713783324687,-0.40175914537,2.17958207877,73171.4050117,2.28457965148,1.67789445396,2.76162384302 +31609500,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.172247024,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.937772065,262.480846354,275.148772322,270.908489339,894.0,296.15,77777.0,73500.0,0.693942910593,-1.83015225364,0.0236979166667,0.0236979166667,101325.0,0.343295355903,-0.720648297242,-0.401757180666,2.18852412601,73294.3669879,2.29144462403,1.64467203946,2.72138204118 +31609623,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.194607887,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.947834733,262.413233724,275.132802456,270.883953549,894.0,296.15,77777.0,73623.0,0.693942910593,-1.83015225364,0.0267942708333,0.0267942708333,101325.0,0.341570562066,-0.727513269796,-0.401755215961,2.19746617325,73417.328964,2.29830959659,1.61144962496,2.68114023934 +31609746,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.21696875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.9578974,262.345621094,275.11683259,270.859417759,894.0,296.15,77777.0,73746.0,0.693942910593,-1.83015225364,0.029890625,0.029890625,101325.0,0.339845768229,-0.73437824235,-0.401753251257,2.20640822049,73540.2909401,2.30517456914,1.57822721046,2.6408984375 +31609869,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.249802827,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.974173395,262.277397526,275.100486236,270.834881697,894.0,296.15,77777.0,73869.0,0.693942910593,-1.83015225364,0.0337057291667,0.0337057291667,101325.0,0.338155913629,-0.741231208528,-0.401751285514,2.2153502679,73663.2529186,2.31202753532,1.54561357579,2.59976610231 +31609992,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.290833333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,256.995311994,262.208695833,275.083845238,270.810345422,894.0,296.15,77777.0,73992.0,0.693942910593,-1.83015225364,0.0380833333333,0.0380833333333,101325.0,0.336493402778,-0.74807477841,-0.401749318957,2.22429231545,73786.2148989,2.3188711052,1.5134763775,2.55793682796 +31610115,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.331863839,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.016450593,262.13999414,275.067204241,270.785809148,894.0,296.15,77777.0,74115.0,0.693942910593,-1.83015225364,0.0424609375,0.0424609375,101325.0,0.334830891927,-0.754918348292,-0.4017473524,2.233234363,73909.1768792,2.32571467508,1.48133917921,2.51610755361 +31610238,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.372894345,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.037589192,262.071292448,275.050563244,270.761272873,894.0,296.15,77777.0,74238.0,0.693942910593,-1.83015225364,0.0468385416667,0.0468385416667,101325.0,0.333168381077,-0.761761918174,-0.401745385844,2.24217641054,74032.1388595,2.33255824497,1.44920198093,2.47427827926 +31610361,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.413924851,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.058727791,262.002590755,275.033922247,270.736736598,894.0,296.15,77777.0,74361.0,0.693942910593,-1.83015225364,0.0512161458333,0.0512161458333,101325.0,0.331505870226,-0.768605488056,-0.401743419287,2.25111845809,74155.1008398,2.33940181485,1.41706478264,2.43244900492 +31610484,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.454955357,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.079866391,261.933889062,275.01728125,270.712200323,894.0,296.15,77777.0,74484.0,0.693942910593,-1.83015225364,0.05559375,0.05559375,101325.0,0.329843359375,-0.775449057939,-0.40174145273,2.26006050563,74278.0628201,2.34624538473,1.38492758436,2.39061973057 +31610607,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.495985863,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.10100499,261.865187369,275.000640253,270.687664049,894.0,296.15,77777.0,74607.0,0.693942910593,-1.83015225364,0.0599713541667,0.0599713541667,101325.0,0.328180848524,-0.782292627821,-0.401739486174,2.26900255318,74401.0248004,2.35308895461,1.35279038607,2.34879045622 +31610730,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.542775298,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.123033197,261.801134114,274.983456101,270.663906404,894.0,296.15,77777.0,74730.0,0.693942910593,-1.83015225364,0.0645052083333,0.0645052083333,101325.0,0.326693033854,-0.789126970689,-0.401737519165,2.2779446008,74523.9867817,2.35992329748,1.32376927425,2.30992466245 +31610853,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.607417411,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.147819191,261.751491015,274.96458817,270.642562511,894.0,296.15,77777.0,74853.0,0.693942910593,-1.83015225364,0.0695234375,0.0695234375,101325.0,0.325746777344,-0.795932709814,-0.401735550756,2.28688664865,74646.9487662,2.36672903661,1.30440803046,2.28024565845 +31610976,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.672059524,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.172605185,261.701847916,274.945720238,270.621218619,894.0,296.15,77777.0,74976.0,0.693942910593,-1.83015225364,0.0745416666667,0.0745416666667,101325.0,0.324800520833,-0.80273844894,-0.401733582347,2.2958286965,74769.9107507,2.37353477573,1.28504678667,2.25056665444 +31611099,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.736701637,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.197391178,261.652204817,274.926852307,270.599874727,894.0,296.15,77777.0,75099.0,0.693942910593,-1.83015225364,0.0795598958333,0.0795598958333,101325.0,0.323854264323,-0.809544188065,-0.401731613939,2.30477074435,74892.8727351,2.38034051486,1.26568554288,2.22088765044 +31611222,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.80134375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.222177172,261.602561719,274.907984375,270.578530834,894.0,296.15,77777.0,75222.0,0.693942910593,-1.83015225364,0.084578125,0.084578125,101325.0,0.322908007813,-0.81634992719,-0.40172964553,2.3137127922,75015.8347196,2.38714625398,1.2463242991,2.19120864644 +31611345,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.865985863,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.246963165,261.55291862,274.889116444,270.557186942,894.0,296.15,77777.0,75345.0,0.693942910593,-1.83015225364,0.0895963541667,0.0895963541667,101325.0,0.321961751302,-0.823155666316,-0.401727677121,2.32265484005,75138.7967041,2.39395199311,1.22696305531,2.16152964244 +31611468,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.930627976,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.271749159,261.503275521,274.870248512,270.53584305,894.0,296.15,77777.0,75468.0,0.693942910593,-1.83015225364,0.0946145833333,0.0946145833333,101325.0,0.321015494792,-0.829961405441,-0.401725708712,2.3315968879,75261.7586886,2.40075773223,1.20760181152,2.13185063844 +31611591,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,247.995270089,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,257.296535153,261.453632422,274.85138058,270.514499157,894.0,296.15,77777.0,75591.0,0.693942910593,-1.83015225364,0.0996328125,0.0996328125,101325.0,0.320069238281,-0.836767144566,-0.401723740303,2.34053893575,75384.720673,2.40756347136,1.18824056773,2.10217163444 +31611714,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.101611722,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.333821927,261.419690712,274.823668087,270.492964196,894.0,296.15,77777.0,75714.0,0.693942910593,-1.83015225364,0.1072734375,0.1072734375,101325.0,0.320128805444,-0.843519441565,-0.401721770177,2.34948098388,75507.6826614,2.41431576836,1.1844236626,2.09137419314 +31611837,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.211245421,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.372095605,261.386988585,274.795257339,270.471414151,894.0,296.15,77777.0,75837.0,0.693942910593,-1.83015225364,0.11512109375,0.11512109375,101325.0,0.320267779738,-0.850267519449,-0.401719799916,2.35842303203,75630.6446501,2.42106384624,1.18183394209,2.08206740153 +31611960,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.320879121,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.410369282,261.354286458,274.766846591,270.449864105,894.0,296.15,77777.0,75960.0,0.693942910593,-1.83015225364,0.12296875,0.12296875,101325.0,0.320406754032,-0.857015597333,-0.401717829655,2.36736508019,75753.6066388,2.42781192413,1.17924422158,2.07276060992 +31612083,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.43051282,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.44864296,261.321584332,274.738435843,270.42831406,894.0,296.15,77777.0,76083.0,0.693942910593,-1.83015225364,0.13081640625,0.13081640625,101325.0,0.320545728327,-0.863763675217,-0.401715859394,2.37630712835,75876.5686274,2.43456000201,1.17665450108,2.06345381831 +31612206,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.54014652,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.486916638,261.288882205,274.710025095,270.406764015,894.0,296.15,77777.0,76206.0,0.693942910593,-1.83015225364,0.1386640625,0.1386640625,101325.0,0.320684702621,-0.8705117531,-0.401713889133,2.3852491765,75999.5306161,2.44130807989,1.17406478057,2.05414702671 +31612329,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.64978022,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.525190316,261.256180078,274.681614346,270.385213969,894.0,296.15,77777.0,76329.0,0.693942910593,-1.83015225364,0.14651171875,0.14651171875,101325.0,0.320823676916,-0.877259830984,-0.401711918872,2.39419122466,76122.4926048,2.44805615778,1.17147506006,2.0448402351 +31612452,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.759413919,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.563463994,261.223477952,274.653203598,270.363663924,894.0,296.15,77777.0,76452.0,0.693942910593,-1.83015225364,0.154359375,0.154359375,101325.0,0.32096265121,-0.884007908868,-0.40170994861,2.40313327281,76245.4545935,2.45480423566,1.16888533956,2.03553344349 +31612575,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,248.893772894,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.603874751,261.197846861,274.618104877,270.33999876,894.0,296.15,77777.0,76575.0,0.693942910593,-1.83015225364,0.16435546875,0.16435546875,101325.0,0.321592146898,-0.890705850188,-0.40170797722,2.41207532115,76368.4165847,2.46150217698,1.1707772492,2.03751600427 +31612698,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.043956044,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.645653239,261.176741233,274.578725852,270.314979921,894.0,296.15,77777.0,76698.0,0.693942910593,-1.83015225364,0.1757265625,0.1757265625,101325.0,0.322535576277,-0.897371704109,-0.401706005106,2.42101736961,76491.3785776,2.4681680309,1.17553740213,2.04672375058 +31612821,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.194139194,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.687431727,261.155635605,274.539346828,270.289961081,894.0,296.15,77777.0,76821.0,0.693942910593,-1.83015225364,0.18709765625,0.18709765625,101325.0,0.323479005657,-0.904037558029,-0.401704032993,2.42995941807,76614.3405704,2.47483388482,1.18029755506,2.05593149688 +31612944,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.344322344,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.729210214,261.134529977,274.499967803,270.264942242,894.0,296.15,77777.0,76944.0,0.693942910593,-1.83015225364,0.19846875,0.19846875,101325.0,0.324422435036,-0.91070341195,-0.40170206088,2.43890146653,76737.3025633,2.48149973874,1.18505770799,2.06513924319 +31613067,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.494505494,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.770988702,261.113424349,274.460588778,270.239923402,894.0,296.15,77777.0,77067.0,0.693942910593,-1.83015225364,0.20983984375,0.20983984375,101325.0,0.325365864416,-0.91736926587,-0.401700088766,2.44784351499,76860.2645562,2.48816559266,1.18981786092,2.0743469895 +31613190,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.644688645,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.81276719,261.092318721,274.421209754,270.214904563,894.0,296.15,77777.0,77190.0,0.693942910593,-1.83015225364,0.2212109375,0.2212109375,101325.0,0.326309293795,-0.92403511979,-0.401698116653,2.45678556345,76983.226549,2.49483144658,1.19457801385,2.08355473581 +31613313,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.794871795,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.854545678,261.071213093,274.381830729,270.189885723,894.0,296.15,77777.0,77313.0,0.693942910593,-1.83015225364,0.23258203125,0.23258203125,101325.0,0.327252723175,-0.930700973711,-0.401696144539,2.46572761191,77106.1885419,2.5014973005,1.19933816678,2.09276248212 +31613436,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,249.947032967,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.892986319,261.057981771,274.341372159,270.164842715,894.0,296.15,77777.0,77436.0,0.693942910593,-1.83015225364,0.244140625,0.244140625,101325.0,0.328337752016,-0.937333639993,-0.401694171884,2.47466966045,77229.150536,2.50812996679,1.20378069545,2.10698472286 +31613559,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.103974359,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.923360495,261.06378002,274.298304688,270.1397413,894.0,296.15,77777.0,77559.0,0.693942910593,-1.83015225364,0.25615234375,0.25615234375,101325.0,0.329764979559,-0.943886102815,-0.401692197919,2.48361170922,77352.112533,2.51468242961,1.20745563217,2.13332532516 +31613682,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.260915751,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.953734671,261.06957827,274.255237216,270.114639884,894.0,296.15,77777.0,77682.0,0.693942910593,-1.83015225364,0.2681640625,0.2681640625,101325.0,0.331192207101,-0.950438565637,-0.401690223953,2.49255375798,77475.0745301,2.52123489243,1.21113056889,2.15966592745 +31613805,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.417857143,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,257.984108847,261.075376519,274.212169745,270.089538469,894.0,296.15,77777.0,77805.0,0.693942910593,-1.83015225364,0.28017578125,0.28017578125,101325.0,0.332619434644,-0.956991028459,-0.401688249988,2.50149580675,77598.0365272,2.52778735525,1.21480550561,2.18600652974 +31613928,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.574798534,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.014483023,261.081174769,274.169102273,270.064437053,894.0,296.15,77777.0,77928.0,0.693942910593,-1.83015225364,0.2921875,0.2921875,101325.0,0.334046662187,-0.963543491281,-0.401686276023,2.51043785551,77720.9985242,2.53433981808,1.21848044233,2.21234713204 +31614051,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.731739926,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.044857199,261.086973018,274.126034801,270.039335638,894.0,296.15,77777.0,78051.0,0.693942910593,-1.83015225364,0.30419921875,0.30419921875,101325.0,0.335473889729,-0.970095954103,-0.401684302057,2.51937990428,77843.9605213,2.5408922809,1.22215537905,2.23868773433 +31614174,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,250.888681318,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.075231374,261.092771268,274.08296733,270.014234222,894.0,296.15,77777.0,78174.0,0.693942910593,-1.83015225364,0.3162109375,0.3162109375,101325.0,0.336901117272,-0.976648416925,-0.401682328092,2.52832195304,77966.9225183,2.54744474372,1.22583031577,2.26502833662 +31614297,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.04562271,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.10560555,261.098569517,274.039899858,269.989132807,894.0,296.15,77777.0,78297.0,0.693942910593,-1.83015225364,0.32822265625,0.32822265625,101325.0,0.338328344814,-0.983200879747,-0.401680354126,2.53726400181,78089.8845154,2.55399720654,1.22950525249,2.29136893892 +31614420,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.176190476,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.129204359,261.14554948,274.000336174,269.967483727,894.0,296.15,77777.0,78420.0,0.693942910593,-1.83015225364,0.338046875,0.338046875,101325.0,0.339914734543,-0.98960327883,-0.401678378354,2.54620605087,78212.8465166,2.56039960563,1.22389208593,2.33307654028 +31614543,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.306098901,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.152633784,261.193558985,273.960860085,269.945920957,894.0,296.15,77777.0,78543.0,0.693942910593,-1.83015225364,0.34781640625,0.34781640625,101325.0,0.341505103327,-0.99600192632,-0.401676402537,2.55514809994,78335.8085178,2.56679825311,1.21804671678,2.37516831662 +31614666,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.436007326,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.176063208,261.24156849,273.921383996,269.924358186,894.0,296.15,77777.0,78666.0,0.693942910593,-1.83015225364,0.3575859375,0.3575859375,101325.0,0.34309547211,-1.00240057381,-0.40167442672,2.56409014901,78458.7705191,2.5731969006,1.21220134764,2.41726009296 +31614789,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.565915751,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.199492633,261.289577995,273.881907907,269.902795415,894.0,296.15,77777.0,78789.0,0.693942910593,-1.83015225364,0.36735546875,0.36735546875,101325.0,0.344685840894,-1.0087992213,-0.401672450903,2.57303219808,78581.7325204,2.57959554809,1.2063559785,2.4593518693 +31614912,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.695824176,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.222922058,261.3375875,273.842431818,269.881232644,894.0,296.15,77777.0,78912.0,0.693942910593,-1.83015225364,0.377125,0.377125,101325.0,0.346276209677,-1.01519786879,-0.401670475086,2.58197424715,78704.6945216,2.58599419558,1.20051060935,2.50144364564 +31615035,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.825732601,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.246351482,261.385597005,273.802955729,269.859669873,894.0,296.15,77777.0,79035.0,0.693942910593,-1.83015225364,0.38689453125,0.38689453125,101325.0,0.347866578461,-1.02159651628,-0.401668499268,2.59091629622,78827.6565229,2.59239284307,1.19466524021,2.54353542198 +31615158,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.955641026,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,258.269780907,261.43360651,273.76347964,269.838107102,894.0,296.15,77777.0,79158.0,0.693942910593,-1.83015225364,0.3966640625,0.3966640625,101325.0,0.349456947245,-1.02799516377,-0.401666523451,2.59985834529,78950.6185242,2.59879149056,1.18881987107,2.58562719832 +31615281,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.030504808,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.28411441,261.500306083,273.733201186,269.825911305,894.0,296.15,77777.0,79281.0,0.693942910593,-1.83015225364,0.40200390625,0.40200390625,101325.0,0.35139124705,-1.03425733162,-0.401664546415,2.60880039456,79073.5805282,2.60505365841,1.17786462544,2.71212470565 +31615404,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.076826923,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.293731511,261.576696801,273.707691877,269.818572458,894.0,296.15,77777.0,79404.0,0.693942910593,-1.83015225364,0.405046875,0.405046875,101325.0,0.353503881458,-1.04044873224,-0.401662568745,2.61774244394,79196.5425337,2.61124505903,1.16425981422,2.88238814757 +31615527,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.123149039,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.303348611,261.653087519,273.682182567,269.81123361,894.0,296.15,77777.0,79527.0,0.693942910593,-1.83015225364,0.40808984375,0.40808984375,101325.0,0.355616515867,-1.04664013286,-0.401660591076,2.62668449331,79319.5045391,2.61743645966,1.150655003,3.05265158948 +31615650,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.169471154,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.312965711,261.729478236,273.656673257,269.803894763,894.0,296.15,77777.0,79650.0,0.693942910593,-1.83015225364,0.4111328125,0.4111328125,101325.0,0.357729150276,-1.05283153349,-0.401658613407,2.63562654269,79442.4665446,2.62362786028,1.13705019178,3.2229150314 +31615773,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.215793269,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.322582811,261.805868954,273.631163947,269.796555915,894.0,296.15,77777.0,79773.0,0.693942910593,-1.83015225364,0.41417578125,0.41417578125,101325.0,0.359841784684,-1.05902293411,-0.401656635738,2.64456859207,79565.4285501,2.6298192609,1.12344538056,3.39317847331 +31615896,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.262115385,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.332199911,261.882259672,273.605654637,269.789217067,894.0,296.15,77777.0,79896.0,0.693942910593,-1.83015225364,0.41721875,0.41721875,101325.0,0.361954419093,-1.06521433473,-0.401654658069,2.65351064144,79688.3905555,2.63601066153,1.10984056934,3.56344191522 +31616019,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.3084375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.341817012,261.95865039,273.580145328,269.78187822,894.0,296.15,77777.0,80019.0,0.693942910593,-1.83015225364,0.42026171875,0.42026171875,101325.0,0.364067053501,-1.07140573535,-0.4016526804,2.66245269082,79811.352561,2.64220206215,1.09623575812,3.73370535714 +31616142,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.329407052,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.346055026,262.036032717,273.558533566,269.779704556,894.0,296.15,77777.0,80142.0,0.693942910593,-1.83015225364,0.421372395833,0.421372395833,101325.0,0.366515093103,-1.07750190362,-0.401650702098,2.6713947403,79934.3145679,2.64829823042,1.08255430594,3.95187875021 +31616265,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.301482372,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.33991909,262.115327432,273.544438504,269.787492319,894.0,296.15,77777.0,80265.0,0.693942910593,-1.83015225364,0.418756510417,0.418756510417,101325.0,0.369609985576,-1.0834144095,-0.401648722577,2.68033678998,80057.2765776,2.6542107363,1.06872504619,4.26244990624 +31616388,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.273557693,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.333783153,262.194622148,273.530343443,269.795280081,894.0,296.15,77777.0,80388.0,0.693942910593,-1.83015225364,0.416140625,0.416140625,101325.0,0.372704878049,-1.08932691537,-0.401646743056,2.68927883966,80180.2385872,2.66012324217,1.05489578644,4.57302106227 +31616511,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.245633013,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.327647217,262.273916863,273.516248381,269.803067844,894.0,296.15,77777.0,80511.0,0.693942910593,-1.83015225364,0.413524739583,0.413524739583,101325.0,0.375799770522,-1.09523942125,-0.401644763535,2.69822088934,80303.2005969,2.66603574805,1.04106652669,4.8835922183 +31616634,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.217708334,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.32151128,262.353211578,273.502153319,269.810855607,894.0,296.15,77777.0,80634.0,0.693942910593,-1.83015225364,0.410908854167,0.410908854167,101325.0,0.378894662995,-1.10115192712,-0.401642784015,2.70716293903,80426.1626066,2.67194825392,1.02723726693,5.19416337432 +31616757,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.189783654,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.315375344,262.432506293,273.488058257,269.818643369,894.0,296.15,77777.0,80757.0,0.693942910593,-1.83015225364,0.40829296875,0.40829296875,101325.0,0.381989555468,-1.10706443299,-0.401640804494,2.71610498871,80549.1246163,2.67786075979,1.01340800718,5.50473453035 +31616880,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.161858975,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.309239407,262.511801008,273.473963196,269.826431132,894.0,296.15,77777.0,80880.0,0.693942910593,-1.83015225364,0.405677083333,0.405677083333,101325.0,0.385084447941,-1.11297693887,-0.401638824973,2.72504703839,80672.0866259,2.68377326567,0.999578747427,5.81530568638 +31617003,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.133709936,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.303062154,262.591113787,273.459851114,269.834319799,894.0,296.15,77777.0,81003.0,0.693942910593,-1.83015225364,0.403055989583,0.403055989583,101325.0,0.388199167322,-1.11888028233,-0.401636845407,2.73398908808,80795.0486357,2.68967660913,0.985749528076,6.12559633918 +31617126,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.096586539,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.295232207,262.671149119,273.445058238,269.846244653,894.0,296.15,77777.0,81126.0,0.693942910593,-1.83015225364,0.4002265625,0.4002265625,101325.0,0.392106963021,-1.12441712943,-0.401634864034,2.74293113807,80918.0106496,2.69521345623,0.97192192477,6.4246668629 +31617249,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.059463141,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.28740226,262.751184451,273.430265362,269.858169506,894.0,296.15,77777.0,81249.0,0.693942910593,-1.83015225364,0.397397135417,0.397397135417,101325.0,0.39601475872,-1.12995397652,-0.401632882662,2.75187318806,81040.9726635,2.70075030332,0.958094321465,6.72373738662 +31617372,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.022339744,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.279572313,262.831219783,273.415472487,269.87009436,894.0,296.15,77777.0,81372.0,0.693942910593,-1.83015225364,0.394567708333,0.394567708333,101325.0,0.399922554419,-1.13549082362,-0.40163090129,2.76081523804,81163.9346774,2.70628715042,0.944266718159,7.02280791034 +31617495,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.985216346,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.271742366,262.911255115,273.400679611,269.882019214,894.0,296.15,77777.0,81495.0,0.693942910593,-1.83015225364,0.39173828125,0.39173828125,101325.0,0.403830350118,-1.14102767072,-0.401628919917,2.76975728803,81286.8966912,2.71182399752,0.930439114854,7.32187843406 +31617618,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.948092949,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.263912419,262.991290447,273.385886735,269.893944068,894.0,296.15,77777.0,81618.0,0.693942910593,-1.83015225364,0.388908854167,0.388908854167,101325.0,0.407738145817,-1.14656451781,-0.401626938545,2.77869933802,81409.8587051,2.71736084461,0.916611511548,7.62094895779 +31617741,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.910969551,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.256082473,263.071325779,273.371093859,269.905868921,894.0,296.15,77777.0,81741.0,0.693942910593,-1.83015225364,0.386079427083,0.386079427083,101325.0,0.411645941516,-1.15210136491,-0.401624957172,2.78764138801,81532.820719,2.72289769171,0.902783908243,7.92001948151 +31617864,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.873846154,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.248252526,263.151361111,273.356300983,269.917793775,894.0,296.15,77777.0,81864.0,0.693942910593,-1.83015225364,0.38325,0.38325,101325.0,0.415553737214,-1.15763821201,-0.4016229758,2.796583438,81655.7827329,2.72843453881,0.888956304937,8.21909000523 +31617987,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.876225961,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.249436918,263.230390098,273.332447463,269.924587747,894.0,296.15,77777.0,81987.0,0.693942910593,-1.83015225364,0.38412109375,0.38412109375,101325.0,0.419916725675,-1.16281737144,-0.401620993118,2.8055254882,81778.7447497,2.73361369824,0.875289801178,8.4026493001 +31618110,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.894951923,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.254351382,263.309002666,273.30484471,269.929258596,894.0,296.15,77777.0,82110.0,0.693942910593,-1.83015225364,0.3865234375,0.3865234375,101325.0,0.424468069761,-1.16784852219,-0.401619009894,2.8144675385,81901.7067678,2.73864484899,0.8616899593,8.5384108451 +31618233,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.913677884,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.259265846,263.387615234,273.277241957,269.933929444,894.0,296.15,77777.0,82233.0,0.693942910593,-1.83015225364,0.38892578125,0.38892578125,101325.0,0.429019413847,-1.17287967294,-0.40161702667,2.82340958879,82024.6687859,2.74367599974,0.848090117421,8.67417239011 +31618356,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.932403846,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.264180309,263.466227802,273.249639205,269.938600293,894.0,296.15,77777.0,82356.0,0.693942910593,-1.83015225364,0.391328125,0.391328125,101325.0,0.433570757933,-1.17791082369,-0.401615043446,2.83235163909,82147.630804,2.74870715049,0.834490275543,8.80993393511 +31618479,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.951129808,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.269094773,263.544840371,273.222036452,269.943271141,894.0,296.15,77777.0,82479.0,0.693942910593,-1.83015225364,0.39373046875,0.39373046875,101325.0,0.438122102019,-1.18294197444,-0.401613060222,2.84129368939,82270.5928221,2.75373830124,0.820890433665,8.94569548011 +31618602,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.969855769,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.274009237,263.623452939,273.194433699,269.94794199,894.0,296.15,77777.0,82602.0,0.693942910593,-1.83015225364,0.3961328125,0.3961328125,101325.0,0.442673446105,-1.18797312519,-0.401611076998,2.85023573968,82393.5548402,2.75876945198,0.807290591786,9.08145702512 +31618725,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.988581731,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,258.278923701,263.702065507,273.166830947,269.952612839,894.0,296.15,77777.0,82725.0,0.693942910593,-1.83015225364,0.39853515625,0.39853515625,101325.0,0.447224790191,-1.19300427594,-0.401609093774,2.85917778998,82516.5168583,2.76380060273,0.793690749908,9.21721857012 +31618848,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.104102564,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.28237036,263.780119048,273.108743887,269.941510449,894.0,296.15,77138.8583333,82848.0,0.693942910593,-1.83015225364,0.4065,0.4065,101325.0,0.453607317073,-1.19777160327,-0.401607109827,2.86811984039,82639.478878,2.76856793006,0.77925460443,9.28766317016 +31618971,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.370865385,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.283523574,263.857299107,273.003025096,269.905762375,894.0,296.15,75503.6203125,82971.0,0.693942910593,-1.83015225364,0.42315625,0.42315625,101325.0,0.462851067073,-1.20212670648,-0.401605124752,2.87706189099,82762.4409004,2.77292303328,0.763511734577,9.25605004371 +31619094,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.637628205,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.284676789,263.934479167,272.897306306,269.8700143,894.0,296.15,73868.3822917,83094.0,0.693942910593,-1.83015225364,0.4398125,0.4398125,101325.0,0.472094817073,-1.2064818097,-0.401603139676,2.88600394159,82885.4029227,2.7772781365,0.747768864724,9.22443691725 +31619217,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,252.904391026,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.285830003,264.011659226,272.791587516,269.834266226,894.0,296.15,72233.1442708,83217.0,0.693942910593,-1.83015225364,0.45646875,0.45646875,101325.0,0.481338567073,-1.21083691292,-0.401601154601,2.89494599219,83008.364945,2.78163323972,0.732025994871,9.19282379079 +31619340,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.171153846,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.286983218,264.088839286,272.685868726,269.798518152,894.0,296.15,70597.90625,83340.0,0.693942910593,-1.83015225364,0.473125,0.473125,101325.0,0.490582317073,-1.21519201614,-0.401599169525,2.90388804279,83131.3269674,2.78598834294,0.716283125018,9.16121066434 +31619463,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.437916667,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.288136433,264.166019345,272.580149935,269.762770078,894.0,296.15,68962.6682292,83463.0,0.693942910593,-1.83015225364,0.48978125,0.48978125,101325.0,0.499826067073,-1.21954711936,-0.40159718445,2.91283009339,83254.2889897,2.79034344616,0.700540255165,9.12959753788 +31619586,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.704679487,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.289289647,264.243199405,272.474431145,269.727022003,894.0,296.15,67327.4302083,83586.0,0.693942910593,-1.83015225364,0.5064375,0.5064375,101325.0,0.509069817073,-1.22390222258,-0.401595199374,2.92177214399,83377.251012,2.79469854938,0.684797385313,9.09798441142 +31619709,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.987788462,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.292927526,264.320330357,272.362672458,269.687548101,894.0,296.15,65548.6103125,83709.0,0.693942910593,-1.83015225364,0.52390625,0.52390625,101325.0,0.518695376016,-1.22819248495,-0.401593214163,2.93071419462,83500.2130347,2.79898881175,0.66894785645,9.06323943765 +31619832,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.477948718,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.328037821,264.396839286,272.174408408,269.600880374,894.0,296.15,61951.0866667,83832.0,0.693942910593,-1.83015225364,0.551666666667,0.551666666667,101325.0,0.533157181572,-1.23166142991,-0.401591227236,2.93965624553,83623.1750612,2.80245775671,0.651747313462,8.98882439782 +31619955,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.968108974,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.363148117,264.473348214,271.986144358,269.514212647,894.0,296.15,58353.5630208,83955.0,0.693942910593,-1.83015225364,0.579427083333,0.579427083333,101325.0,0.547618987127,-1.23513037487,-0.401589240309,2.94859829644,83746.1370877,2.80592670167,0.634546770475,8.914409358 +31620078,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.458269231,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.398258412,264.549857143,271.797880309,269.42754492,894.0,296.15,54756.039375,84078.0,0.693942910593,-1.83015225364,0.6071875,0.6071875,101325.0,0.562080792683,-1.23859931982,-0.401587253383,2.95754034735,83869.0991143,2.80939564662,0.617346227487,8.83999431818 +31620201,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,255.948429487,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.433368707,264.626366071,271.609616259,269.340877194,894.0,296.15,51158.5157292,84201.0,0.693942910593,-1.83015225364,0.634947916667,0.634947916667,101325.0,0.576542598239,-1.24206826478,-0.401585266456,2.96648239826,83992.0611408,2.81286459158,0.6001456845,8.76557927836 +31620324,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.438589743,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.468479003,264.702875,271.421352209,269.254209467,894.0,296.15,47560.9920833,84324.0,0.693942910593,-1.83015225364,0.662708333333,0.662708333333,101325.0,0.591004403794,-1.24553720974,-0.401583279529,2.97542444916,84115.0231673,2.81633353654,0.582945141512,8.69116423854 +31620447,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,256.92875,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.503589298,264.779383928,271.23308816,269.16754174,894.0,296.15,43963.4684375,84447.0,0.693942910593,-1.83015225364,0.69046875,0.69046875,101325.0,0.60546620935,-1.2490061547,-0.401581292602,2.98436650007,84237.9851939,2.8198024815,0.565744598525,8.61674919871 +31620570,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.418910256,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.538699593,264.855892857,271.04482411,269.080874013,894.0,296.15,40365.9447917,84570.0,0.693942910593,-1.83015225364,0.718229166667,0.718229166667,101325.0,0.619928014905,-1.25247509965,-0.401579305675,2.99330855098,84360.9472204,2.82327142645,0.548544055537,8.54233415889 +31620693,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,257.88125,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.673295734,264.931133184,270.854033248,268.981265501,894.0,296.15,36768.4211458,84693.0,0.693942910593,-1.83015225364,0.744697916667,0.744697916667,101325.0,0.634211297426,-1.25510011011,-0.401577317349,3.00225060212,84483.9092502,2.82589643691,0.533878441684,8.4666696047 +31620816,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.334615384,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,258.839984083,265.005964285,270.662427285,268.877482542,894.0,296.15,33170.8975,84816.0,0.693942910593,-1.83015225364,0.77075,0.77075,101325.0,0.64843699187,-1.25745288363,-0.401575328571,3.01119265334,84606.8712809,2.82824921042,0.520030546906,8.39060198135 +31620939,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,258.787980769,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,259.006672432,265.080795387,270.470821321,268.773699584,894.0,296.15,29573.3738542,84939.0,0.693942910593,-1.83015225364,0.796802083333,0.796802083333,101325.0,0.662662686314,-1.25980565714,-0.401573339792,3.02013470456,84729.8333117,2.83060198394,0.506182652127,8.314534358 +31621062,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.241346154,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,259.17336078,265.155626488,270.279215358,268.669916625,894.0,296.15,25975.8502083,85062.0,0.693942910593,-1.83015225364,0.822854166667,0.822854166667,101325.0,0.676888380759,-1.26215843066,-0.401571351014,3.02907675577,84852.7953425,2.83295475745,0.492334757349,8.23846673465 +31621185,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,259.694711538,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,259.340049129,265.230457589,270.087609395,268.566133666,894.0,296.15,22378.3265625,85185.0,0.693942910593,-1.83015225364,0.84890625,0.84890625,101325.0,0.691114075203,-1.26451120418,-0.401569362236,3.03801880699,84975.7573733,2.83530753097,0.478486862571,8.16239911131 +31621308,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,260.148076923,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,259.506737478,265.30528869,269.896003432,268.462350707,894.0,296.15,18780.8029167,85308.0,0.693942910593,-1.83015225364,0.874958333333,0.874958333333,101325.0,0.705339769647,-1.26686397769,-0.401567373458,3.0469608582,85098.719404,2.83766030449,0.464638967793,8.08633148796 +31621431,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,260.601442308,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,259.673425827,265.380119791,269.704397469,268.358567749,894.0,296.15,15183.2792708,85431.0,0.693942910593,-1.83015225364,0.901010416667,0.901010416667,101325.0,0.719565464092,-1.26921675121,-0.40156538468,3.05590290942,85221.6814348,2.840013078,0.450791073015,8.01026386461 +31621554,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,260.924423077,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,259.819312476,265.453772321,269.546096525,268.270191792,894.0,296.15,12447.246875,85554.0,0.693942910593,-1.83015225364,0.9206875,0.9206875,101325.0,0.731292987805,-1.27099148643,-0.401563395089,3.06484496077,85344.6434674,2.84178781322,0.440526920968,7.95153627623 +31621677,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,261.080801282,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,259.938619176,265.525918899,269.430351995,268.201502559,894.0,296.15,10812.0088542,85677.0,0.693942910593,-1.83015225364,0.93221875,0.93221875,101325.0,0.739828404471,-1.27202761717,-0.40156140446,3.07378701229,85467.6055024,2.84282394396,0.434841995743,7.91496539919 +31621800,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,261.237179487,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,260.057925876,265.598065476,269.314607465,268.132813327,894.0,296.15,9176.77083333,85800.0,0.693942910593,-1.83015225364,0.94375,0.94375,101325.0,0.748363821138,-1.2730637479,-0.401559413831,3.08272906382,85590.5675374,2.84386007469,0.429157070518,7.87839452215 +31621923,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,261.393557692,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,260.177232575,265.670212053,269.198862934,268.064124094,894.0,296.15,7541.5328125,85923.0,0.693942910593,-1.83015225364,0.95528125,0.95528125,101325.0,0.756899237805,-1.27409987864,-0.401557423202,3.09167111534,85713.5295724,2.84489620543,0.423472145294,7.84182364511 +31622046,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,261.549935898,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,260.296539275,265.742358631,269.083118404,267.995434862,894.0,296.15,5906.29479167,86046.0,0.693942910593,-1.83015225364,0.9668125,0.9668125,101325.0,0.765434654471,-1.27513600937,-0.401555432573,3.10061316687,85836.4916074,2.84593233616,0.417787220069,7.80525276807 +31622169,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,261.706314103,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,260.415845975,265.814505208,268.967373874,267.926745629,894.0,296.15,4271.05677083,86169.0,0.693942910593,-1.83015225364,0.97834375,0.97834375,101325.0,0.773970071138,-1.27617214011,-0.401553441944,3.10955521839,85959.4536424,2.8469684669,0.412102294844,7.76868189103 +31622292,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,261.862692308,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,260.535152675,265.886651786,268.851629344,267.858056397,894.0,296.15,2635.81875,86292.0,0.693942910593,-1.83015225364,0.989875,0.989875,101325.0,0.782505487805,-1.27720827084,-0.401551451314,3.11849726991,86082.4156774,2.84800459763,0.40641736962,7.73211101399 diff --git a/testing/references/forecast/testcase3/tc3_forecast_over_year.csv b/testing/references/forecast/testcase3/tc3_forecast_over_year.csv new file mode 100644 index 000000000..9e898eb88 --- /dev/null +++ b/testing/references/forecast/testcase3/tc3_forecast_over_year.csv @@ -0,0 +1,1406 @@ +time,EmissionsBiomassPower,EmissionsDistrictHeatingPower,EmissionsElectricPower,EmissionsGasPower,EmissionsSolarThermalPower,InternalGainsCon[North],InternalGainsCon[South],InternalGainsLat[North],InternalGainsLat[South],InternalGainsRad[North],InternalGainsRad[South],LowerSetp[North],LowerSetp[South],Occupancy[North],Occupancy[South],PriceBiomassPower,PriceDistrictHeatingPower,PriceElectricPowerConstant,PriceElectricPowerDynamic,PriceElectricPowerHighlyDynamic,PriceGasPower,PriceSolarThermalPower,TDryBul,UpperCO2[North],UpperCO2[South],UpperSetp[North],UpperSetp[South] +31449600,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,293.15,994.0,894.0,297.15,296.15 +31449723,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,293.2394505,994.0,894.0,297.15,296.15 +31449846,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,293.328884,994.0,894.0,297.15,296.15 +31449969,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,293.4183115,994.0,894.0,297.15,296.15 +31450092,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,293.50772,994.0,894.0,297.15,296.15 +31450215,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,293.597085,994.0,894.0,297.15,296.15 +31450338,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,293.686435,994.0,894.0,297.15,296.15 +31450461,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,293.775732,994.0,894.0,297.15,296.15 +31450584,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,293.864968,994.0,894.0,297.15,296.15 +31450707,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,293.954175,994.0,894.0,297.15,296.15 +31450830,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,294.043275,994.0,894.0,297.15,296.15 +31450953,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,294.132352,994.0,894.0,297.15,296.15 +31451076,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,294.22132,994.0,894.0,297.15,296.15 +31451199,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,294.310211,994.0,894.0,297.15,296.15 +31451322,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,294.399004,994.0,894.0,297.15,296.15 +31451445,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,294.48769,994.0,894.0,297.15,296.15 +31451568,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,294.576288,994.0,894.0,297.15,296.15 +31451691,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,294.6647575,994.0,894.0,297.15,296.15 +31451814,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,294.753114,994.0,894.0,297.15,296.15 +31451937,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,294.841349,994.0,894.0,297.15,296.15 +31452060,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,294.92944,994.0,894.0,297.15,296.15 +31452183,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,295.017372,994.0,894.0,297.15,296.15 +31452306,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,295.105178,994.0,894.0,297.15,296.15 +31452429,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,295.192835,994.0,894.0,297.15,296.15 +31452552,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,295.28032,994.0,894.0,297.15,296.15 +31452675,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,295.367595,994.0,894.0,297.15,296.15 +31452798,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,295.454755,994.0,894.0,297.15,296.15 +31452921,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,295.541679,994.0,894.0,297.15,296.15 +31453044,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,295.628444,994.0,894.0,297.15,296.15 +31453167,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-3.52727989225e-14,0.07,0.0,295.71499,994.0,894.0,297.15,296.15 +31453290,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,295.80135,994.0,894.0,297.15,296.15 +31453413,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,295.8874835,994.0,894.0,297.15,296.15 +31453536,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,295.973404,994.0,894.0,297.15,296.15 +31453659,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.059107,994.0,894.0,297.15,296.15 +31453782,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.144554,994.0,894.0,297.15,296.15 +31453905,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.2297875,994.0,894.0,297.15,296.15 +31454028,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.314778,994.0,894.0,297.15,296.15 +31454151,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.3994765,994.0,894.0,297.15,296.15 +31454274,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.483953,994.0,894.0,297.15,296.15 +31454397,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.5681485,994.0,894.0,297.15,296.15 +31454520,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.65207,994.0,894.0,297.15,296.15 +31454643,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.7357055,994.0,894.0,297.15,296.15 +31454766,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.819056,994.0,894.0,297.15,296.15 +31454889,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.902126,994.0,894.0,297.15,296.15 +31455012,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,296.984896,994.0,894.0,297.15,296.15 +31455135,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.067335,994.0,894.0,297.15,296.15 +31455258,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.149474,994.0,894.0,297.15,296.15 +31455381,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.231317,994.0,894.0,297.15,296.15 +31455504,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.312804,994.0,894.0,297.15,296.15 +31455627,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.393966,994.0,894.0,297.15,296.15 +31455750,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.474775,994.0,894.0,297.15,296.15 +31455873,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.555258,994.0,894.0,297.15,296.15 +31455996,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.63537,994.0,894.0,297.15,296.15 +31456119,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.7151395,994.0,894.0,297.15,296.15 +31456242,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.794555,994.0,894.0,297.15,296.15 +31456365,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.8735825,994.0,894.0,297.15,296.15 +31456488,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,297.95224,994.0,894.0,297.15,296.15 +31456611,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,298.030502,994.0,894.0,297.15,296.15 +31456734,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135306,0.07,0.0,298.10836,994.0,894.0,297.15,296.15 +31456857,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.185853,994.0,894.0,297.15,296.15 +31456980,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.26294,994.0,894.0,297.15,296.15 +31457103,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.339603,994.0,894.0,297.15,296.15 +31457226,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.415846,994.0,894.0,297.15,296.15 +31457349,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.4916775,994.0,894.0,297.15,296.15 +31457472,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.56708,994.0,894.0,297.15,296.15 +31457595,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.64204,994.0,894.0,297.15,296.15 +31457718,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.716572,994.0,894.0,297.15,296.15 +31457841,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.7906535,994.0,894.0,297.15,296.15 +31457964,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.864296,994.0,894.0,297.15,296.15 +31458087,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.937461,994.0,894.0,297.15,296.15 +31458210,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.01018,994.0,894.0,297.15,296.15 +31458333,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.082427,994.0,894.0,297.15,296.15 +31458456,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.154186,994.0,894.0,297.15,296.15 +31458579,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.225469,994.0,894.0,297.15,296.15 +31458702,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.29628,994.0,894.0,297.15,296.15 +31458825,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.3665975,994.0,894.0,297.15,296.15 +31458948,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.436408,994.0,894.0,297.15,296.15 +31459071,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.505712,994.0,894.0,297.15,296.15 +31459194,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.574532,994.0,894.0,297.15,296.15 +31459317,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.6428085,994.0,894.0,297.15,296.15 +31459440,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.7106,994.0,894.0,297.15,296.15 +31459563,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.77783,994.0,894.0,297.15,296.15 +31459686,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.844536,994.0,894.0,297.15,296.15 +31459809,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.910718,994.0,894.0,297.15,296.15 +31459932,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.976342,994.0,894.0,297.15,296.15 +31460055,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,300.041435,994.0,894.0,297.15,296.15 +31460178,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,300.10599,994.0,894.0,297.15,296.15 +31460301,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,300.169971,994.0,894.0,297.15,296.15 +31460424,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.233386,994.0,894.0,297.15,296.15 +31460547,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.296234,994.0,894.0,297.15,296.15 +31460670,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.358505,994.0,894.0,297.15,296.15 +31460793,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.4202335,994.0,894.0,297.15,296.15 +31460916,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.48135,994.0,894.0,297.15,296.15 +31461039,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.5418995,994.0,894.0,297.15,296.15 +31461162,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.601834,994.0,894.0,297.15,296.15 +31461285,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.66119,994.0,894.0,297.15,296.15 +31461408,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.719936,994.0,894.0,297.15,296.15 +31461531,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.778081,994.0,894.0,297.15,296.15 +31461654,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.835606,994.0,894.0,297.15,296.15 +31461777,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.892536,994.0,894.0,297.15,296.15 +31461900,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.94885,994.0,894.0,297.15,296.15 +31462023,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.0045175,994.0,894.0,297.15,296.15 +31462146,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.059563,994.0,894.0,297.15,296.15 +31462269,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.1139695,994.0,894.0,297.15,296.15 +31462392,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.167746,994.0,894.0,297.15,296.15 +31462515,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.22088,994.0,894.0,297.15,296.15 +31462638,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.273376,994.0,894.0,297.15,296.15 +31462761,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.325192,994.0,894.0,297.15,296.15 +31462884,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.376384,994.0,894.0,297.15,296.15 +31463007,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.4269115,994.0,894.0,297.15,296.15 +31463130,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.47678,994.0,894.0,297.15,296.15 +31463253,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.5259675,994.0,894.0,297.15,296.15 +31463376,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.574512,994.0,894.0,297.15,296.15 +31463499,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.6223695,994.0,894.0,297.15,296.15 +31463622,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.669539,994.0,894.0,297.15,296.15 +31463745,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.7160425,994.0,894.0,297.15,296.15 +31463868,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.76185,994.0,894.0,297.15,296.15 +31463991,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.806958,994.0,894.0,297.15,296.15 +31464114,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.851395,994.0,894.0,297.15,296.15 +31464237,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.8951385,994.0,894.0,297.15,296.15 +31464360,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.93817,994.0,894.0,297.15,296.15 +31464483,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.980481,994.0,894.0,297.15,296.15 +31464606,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.022106,994.0,894.0,297.15,296.15 +31464729,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.063021,994.0,894.0,297.15,296.15 +31464852,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.103204,994.0,894.0,297.15,296.15 +31464975,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.1427,994.0,894.0,297.15,296.15 +31465098,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.181453,994.0,894.0,297.15,296.15 +31465221,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.219503,994.0,894.0,297.15,296.15 +31465344,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.2568,994.0,894.0,297.15,296.15 +31465467,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.293398,994.0,894.0,297.15,296.15 +31465590,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.32926,994.0,894.0,297.15,296.15 +31465713,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.364368,994.0,894.0,297.15,296.15 +31465836,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.39876,994.0,894.0,297.15,296.15 +31465959,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.432409,994.0,894.0,297.15,296.15 +31466082,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.465318,994.0,894.0,297.15,296.15 +31466205,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.497455,994.0,894.0,297.15,296.15 +31466328,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.52888,994.0,894.0,297.15,296.15 +31466451,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.5595455,994.0,894.0,297.15,296.15 +31466574,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.589434,994.0,894.0,297.15,296.15 +31466697,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.618595,994.0,894.0,297.15,296.15 +31466820,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.647,994.0,894.0,297.15,296.15 +31466943,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.6746105,994.0,894.0,297.15,296.15 +31467066,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.701484,994.0,894.0,297.15,296.15 +31467189,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.727575,994.0,894.0,297.15,296.15 +31467312,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.75292,994.0,894.0,297.15,296.15 +31467435,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.7775075,994.0,894.0,297.15,296.15 +31467558,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.801297,994.0,894.0,297.15,296.15 +31467681,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.8243235,994.0,894.0,297.15,296.15 +31467804,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.84658,994.0,894.0,297.15,296.15 +31467927,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.8680515,994.0,894.0,297.15,296.15 +31468050,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.88875,994.0,894.0,297.15,296.15 +31468173,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.908658,994.0,894.0,297.15,296.15 +31468296,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.92782,994.0,894.0,297.15,296.15 +31468419,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.9461735,994.0,894.0,297.15,296.15 +31468542,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.963754,994.0,894.0,297.15,296.15 +31468665,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.980535,994.0,894.0,297.15,296.15 +31468788,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.996548,994.0,894.0,297.15,296.15 +31468911,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.011755,994.0,894.0,297.15,296.15 +31469034,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.026206,994.0,894.0,297.15,296.15 +31469157,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.039832,994.0,894.0,297.15,296.15 +31469280,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.05267,994.0,894.0,297.15,296.15 +31469403,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.0647295,994.0,894.0,297.15,296.15 +31469526,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.075993,994.0,894.0,297.15,296.15 +31469649,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.086449,994.0,894.0,297.15,296.15 +31469772,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.096094,994.0,894.0,297.15,296.15 +31469895,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1049925,994.0,894.0,297.15,296.15 +31470018,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.113056,994.0,894.0,297.15,296.15 +31470141,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1203355,994.0,894.0,297.15,296.15 +31470264,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.126824,994.0,894.0,297.15,296.15 +31470387,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1324975,994.0,894.0,297.15,296.15 +31470510,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1374,994.0,894.0,297.15,296.15 +31470633,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1414765,994.0,894.0,297.15,296.15 +31470756,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.14476,994.0,894.0,297.15,296.15 +31470879,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.147243,994.0,894.0,297.15,296.15 +31471002,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.148939,994.0,894.0,297.15,296.15 +31471125,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1498325,994.0,894.0,297.15,296.15 +31471248,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.14992,994.0,894.0,297.15,296.15 +31471371,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.1492135,994.0,894.0,297.15,296.15 +31471494,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.147687,994.0,894.0,297.15,296.15 +31471617,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.145383,994.0,894.0,297.15,296.15 +31471740,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.1423,994.0,894.0,297.15,296.15 +31471863,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.13839,994.0,894.0,297.15,296.15 +31471986,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.133645,994.0,894.0,297.15,296.15 +31472109,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.128156,994.0,894.0,297.15,296.15 +31472232,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.121834,994.0,894.0,297.15,296.15 +31472355,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.11473,994.0,894.0,297.15,296.15 +31472478,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.106833,994.0,894.0,297.15,296.15 +31472601,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.0981055,994.0,894.0,297.15,296.15 +31472724,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.088636,994.0,894.0,297.15,296.15 +31472847,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.0783465,994.0,894.0,297.15,296.15 +31472970,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.067245,994.0,894.0,297.15,296.15 +31473093,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.055361,994.0,894.0,297.15,296.15 +31473216,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.042696,994.0,894.0,297.15,296.15 +31473339,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.029245,994.0,894.0,297.15,296.15 +31473462,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.014983,994.0,894.0,297.15,296.15 +31473585,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.9999475,994.0,894.0,297.15,296.15 +31473708,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.984116,994.0,894.0,297.15,296.15 +31473831,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.967516,994.0,894.0,297.15,296.15 +31473954,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.950111,994.0,894.0,297.15,296.15 +31474077,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.931948,994.0,894.0,297.15,296.15 +31474200,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.91296,994.0,894.0,297.15,296.15 +31474323,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.893205,994.0,894.0,297.15,296.15 +31474446,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.872673,994.0,894.0,297.15,296.15 +31474569,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.8513725,994.0,894.0,297.15,296.15 +31474692,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.829278,994.0,894.0,297.15,296.15 +31474815,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.8064225,994.0,894.0,297.15,296.15 +31474938,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.782795,994.0,894.0,297.15,296.15 +31475061,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.758365,994.0,894.0,297.15,296.15 +31475184,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.7332,994.0,894.0,297.15,296.15 +31475307,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.707262,994.0,894.0,297.15,296.15 +31475430,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.680555,994.0,894.0,297.15,296.15 +31475553,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.6530975,994.0,894.0,297.15,296.15 +31475676,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.624876,994.0,894.0,297.15,296.15 +31475799,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.595892,994.0,894.0,297.15,296.15 +31475922,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.566165,994.0,894.0,297.15,296.15 +31476045,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.535675,994.0,894.0,297.15,296.15 +31476168,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.504416,994.0,894.0,297.15,296.15 +31476291,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.472455,994.0,894.0,297.15,296.15 +31476414,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.439706,994.0,894.0,297.15,296.15 +31476537,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.406222,994.0,894.0,297.15,296.15 +31476660,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.372,994.0,894.0,297.15,296.15 +31476783,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.337054,994.0,894.0,297.15,296.15 +31476906,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.301336,994.0,894.0,297.15,296.15 +31477029,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.2649,994.0,894.0,297.15,296.15 +31477152,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.227774,994.0,894.0,297.15,296.15 +31477275,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.1898725,994.0,894.0,297.15,296.15 +31477398,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.151268,994.0,894.0,297.15,296.15 +31477521,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.1119205,994.0,894.0,297.15,296.15 +31477644,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.071904,994.0,894.0,297.15,296.15 +31477767,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.031133,994.0,894.0,297.15,296.15 +31477890,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.98967,994.0,894.0,297.15,296.15 +31478013,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.9474985,994.0,894.0,297.15,296.15 +31478136,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.904628,994.0,894.0,297.15,296.15 +31478259,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.861047,994.0,894.0,297.15,296.15 +31478382,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.816768,994.0,894.0,297.15,296.15 +31478505,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.771815,994.0,894.0,297.15,296.15 +31478628,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.726154,994.0,894.0,297.15,296.15 +31478751,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.6798095,994.0,894.0,297.15,296.15 +31478874,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.632803,994.0,894.0,297.15,296.15 +31478997,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.5850875,994.0,894.0,297.15,296.15 +31479120,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.5367,994.0,894.0,297.15,296.15 +31479243,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.487652,994.0,894.0,297.15,296.15 +31479366,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.437923,994.0,894.0,297.15,296.15 +31479489,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.3875485,994.0,894.0,297.15,296.15 +31479612,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.336496,994.0,894.0,297.15,296.15 +31479735,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.284815,994.0,894.0,297.15,296.15 +31479858,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.232454,994.0,894.0,297.15,296.15 +31479981,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.1794595,994.0,894.0,297.15,296.15 +31480104,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.125818,994.0,894.0,297.15,296.15 +31480227,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.0715465,994.0,894.0,297.15,296.15 +31480350,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.016645,994.0,894.0,297.15,296.15 +31480473,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.961099,994.0,894.0,297.15,296.15 +31480596,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.904932,994.0,894.0,297.15,296.15 +31480719,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.848144,994.0,894.0,297.15,296.15 +31480842,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.790762,994.0,894.0,297.15,296.15 +31480965,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.7327525,994.0,894.0,297.15,296.15 +31481088,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.674136,994.0,894.0,297.15,296.15 +31481211,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.6149185,994.0,894.0,297.15,296.15 +31481334,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.555125,994.0,894.0,297.15,296.15 +31481457,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.494707,994.0,894.0,297.15,296.15 +31481580,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.43372,994.0,894.0,297.15,296.15 +31481703,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.3721175,994.0,894.0,297.15,296.15 +31481826,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.309968,994.0,894.0,297.15,296.15 +31481949,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.2472415,994.0,894.0,297.15,296.15 +31482072,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.183948,994.0,894.0,297.15,296.15 +31482195,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.120075,994.0,894.0,297.15,296.15 +31482318,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.055646,994.0,894.0,297.15,296.15 +31482441,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.990679,994.0,894.0,297.15,296.15 +31482564,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.925172,994.0,894.0,297.15,296.15 +31482687,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.859098,994.0,894.0,297.15,296.15 +31482810,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.7925,994.0,894.0,297.15,296.15 +31482933,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.7253915,994.0,894.0,297.15,296.15 +31483056,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.657722,994.0,894.0,297.15,296.15 +31483179,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.589556,994.0,894.0,297.15,296.15 +31483302,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.520859,994.0,894.0,297.15,296.15 +31483425,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.4516625,994.0,894.0,297.15,296.15 +31483548,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.381968,994.0,894.0,297.15,296.15 +31483671,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.311751,994.0,894.0,297.15,296.15 +31483794,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.24106,994.0,894.0,297.15,296.15 +31483917,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.1698895,994.0,894.0,297.15,296.15 +31484040,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.09824,994.0,894.0,297.15,296.15 +31484163,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.026092,994.0,894.0,297.15,296.15 +31484286,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.953472,994.0,894.0,297.15,296.15 +31484409,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.8804015,994.0,894.0,297.15,296.15 +31484532,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.806858,994.0,894.0,297.15,296.15 +31484655,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.73288,994.0,894.0,297.15,296.15 +31484778,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.658438,994.0,894.0,297.15,296.15 +31484901,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.5835725,994.0,894.0,297.15,296.15 +31485024,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.50826,994.0,894.0,297.15,296.15 +31485147,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.432523,994.0,894.0,297.15,296.15 +31485270,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.35637,994.0,894.0,297.15,296.15 +31485393,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.279788,994.0,894.0,297.15,296.15 +31485516,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.202792,994.0,894.0,297.15,296.15 +31485639,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,298.1253975,994.0,894.0,297.15,296.15 +31485762,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,298.047629,994.0,894.0,297.15,296.15 +31485885,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.96945,994.0,894.0,297.15,296.15 +31486008,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.89088,994.0,894.0,297.15,296.15 +31486131,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.811937,994.0,894.0,297.15,296.15 +31486254,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.732607,994.0,894.0,297.15,296.15 +31486377,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.6529165,994.0,894.0,297.15,296.15 +31486500,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.57288,994.0,894.0,297.15,296.15 +31486623,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.4924825,994.0,894.0,297.15,296.15 +31486746,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.411732,994.0,894.0,297.15,296.15 +31486869,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.330651,994.0,894.0,297.15,296.15 +31486992,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.249236,994.0,894.0,297.15,296.15 +31487115,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.167465,994.0,894.0,297.15,296.15 +31487238,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.085398,994.0,894.0,297.15,296.15 +31487361,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.003022,994.0,894.0,297.15,296.15 +31487484,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.920324,994.0,894.0,297.15,296.15 +31487607,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.837308,994.0,894.0,297.15,296.15 +31487730,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.754025,994.0,894.0,297.15,296.15 +31487853,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.6704435,994.0,894.0,297.15,296.15 +31487976,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.586592,994.0,894.0,297.15,296.15 +31488099,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.502455,994.0,894.0,297.15,296.15 +31488222,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.418039,994.0,894.0,297.15,296.15 +31488345,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.33339,994.0,894.0,297.15,296.15 +31488468,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.248466,994.0,894.0,297.15,296.15 +31488591,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.16328,994.0,894.0,297.15,296.15 +31488714,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.077899,994.0,894.0,297.15,296.15 +31488837,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,295.9922305,994.0,894.0,297.15,296.15 +31488960,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,295.90637,994.0,894.0,297.15,296.15 +31489083,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,295.820295,994.0,894.0,297.15,296.15 +31489206,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,295.73398,994.0,894.0,297.15,296.15 +31489329,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,295.647461,994.0,894.0,297.15,296.15 +31489452,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,295.560732,994.0,894.0,297.15,296.15 +31489575,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,295.4738575,994.0,894.0,297.15,296.15 +31489698,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,295.386738,994.0,894.0,297.15,296.15 +31489821,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,295.29949,994.0,894.0,297.15,296.15 +31489944,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,295.21205,994.0,894.0,297.15,296.15 +31490067,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,295.124429,994.0,894.0,297.15,296.15 +31490190,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,295.03665,994.0,894.0,297.15,296.15 +31490313,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,294.9487495,994.0,894.0,297.15,296.15 +31490436,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,294.860688,994.0,894.0,297.15,296.15 +31490559,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,294.772491,994.0,894.0,297.15,296.15 +31490682,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,294.684169,994.0,894.0,297.15,296.15 +31490805,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,294.5957175,994.0,894.0,297.15,296.15 +31490928,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,294.507144,994.0,894.0,297.15,296.15 +31491051,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,294.418489,994.0,894.0,297.15,296.15 +31491174,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,294.32971,994.0,894.0,297.15,296.15 +31491297,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,294.240848,994.0,894.0,297.15,296.15 +31491420,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,294.1519,994.0,894.0,297.15,296.15 +31491543,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,294.0628275,994.0,894.0,297.15,296.15 +31491666,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,293.97375,994.0,894.0,297.15,296.15 +31491789,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,293.884552,994.0,894.0,297.15,296.15 +31491912,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,293.795316,994.0,894.0,297.15,296.15 +31492035,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,293.7060325,994.0,894.0,297.15,296.15 +31492158,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,293.616714,994.0,894.0,297.15,296.15 +31492281,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,293.52734,994.0,894.0,297.15,296.15 +31492404,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,293.437936,994.0,894.0,297.15,296.15 +31492527,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,293.348522,994.0,894.0,297.15,296.15 +31492650,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,293.259075,994.0,894.0,297.15,296.15 +31492773,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135307,0.07,0.0,293.1696335,994.0,894.0,297.15,296.15 +31492896,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,293.080184,994.0,894.0,297.15,296.15 +31493019,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,292.990734,994.0,894.0,297.15,296.15 +31493142,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,292.901323,994.0,894.0,297.15,296.15 +31493265,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,292.8119,994.0,894.0,297.15,296.15 +31493388,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,292.722524,994.0,894.0,297.15,296.15 +31493511,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,292.633187,994.0,894.0,297.15,296.15 +31493634,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,292.543875,994.0,894.0,297.15,296.15 +31493757,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,292.4545975,994.0,894.0,297.15,296.15 +31493880,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,292.36542,994.0,894.0,297.15,296.15 +31494003,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,292.276268,994.0,894.0,297.15,296.15 +31494126,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,292.18719,994.0,894.0,297.15,296.15 +31494249,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,292.098196,994.0,894.0,297.15,296.15 +31494372,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,292.009304,994.0,894.0,297.15,296.15 +31494495,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,291.920475,994.0,894.0,297.15,296.15 +31494618,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,291.831755,994.0,894.0,297.15,296.15 +31494741,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,291.7431605,994.0,894.0,297.15,296.15 +31494864,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,291.65464,994.0,894.0,297.15,296.15 +31494987,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,291.5662695,994.0,894.0,297.15,296.15 +31495110,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,291.478,994.0,894.0,297.15,296.15 +31495233,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,291.3898885,994.0,894.0,297.15,296.15 +31495356,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,291.301912,994.0,894.0,297.15,296.15 +31495479,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,291.21408,994.0,894.0,297.15,296.15 +31495602,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,291.12641,994.0,894.0,297.15,296.15 +31495725,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,291.0388975,994.0,894.0,297.15,296.15 +31495848,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,290.951536,994.0,894.0,297.15,296.15 +31495971,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,290.864372,994.0,894.0,297.15,296.15 +31496094,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,290.777372,994.0,894.0,297.15,296.15 +31496217,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,290.6905945,994.0,894.0,297.15,296.15 +31496340,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,7.26130319539e-14,0.07,0.0,290.60397,994.0,894.0,297.15,296.15 +31496463,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,290.5175775,994.0,894.0,297.15,296.15 +31496586,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,290.431402,994.0,894.0,297.15,296.15 +31496709,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,290.345421,994.0,894.0,297.15,296.15 +31496832,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,290.259692,994.0,894.0,297.15,296.15 +31496955,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,290.1741625,994.0,894.0,297.15,296.15 +31497078,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,290.088897,994.0,894.0,297.15,296.15 +31497201,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,290.0038765,994.0,894.0,297.15,296.15 +31497324,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.919088,994.0,894.0,297.15,296.15 +31497447,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.834569,994.0,894.0,297.15,296.15 +31497570,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.75032,994.0,894.0,297.15,296.15 +31497693,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.666334,994.0,894.0,297.15,296.15 +31497816,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.58262,994.0,894.0,297.15,296.15 +31497939,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.4992205,994.0,894.0,297.15,296.15 +31498062,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.41608,994.0,894.0,297.15,296.15 +31498185,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.333245,994.0,894.0,297.15,296.15 +31498308,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.250724,994.0,894.0,297.15,296.15 +31498431,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.168512,994.0,894.0,297.15,296.15 +31498554,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.086629,994.0,894.0,297.15,296.15 +31498677,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,289.005067,994.0,894.0,297.15,296.15 +31498800,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,288.92383,994.0,894.0,297.15,296.15 +31498923,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,288.842913,994.0,894.0,297.15,296.15 +31499046,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,288.76238,994.0,894.0,297.15,296.15 +31499169,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,288.68217,994.0,894.0,297.15,296.15 +31499292,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,288.602332,994.0,894.0,297.15,296.15 +31499415,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,288.5228425,994.0,894.0,297.15,296.15 +31499538,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,288.44375,994.0,894.0,297.15,296.15 +31499661,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,288.365015,994.0,894.0,297.15,296.15 +31499784,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,288.28666,994.0,894.0,297.15,296.15 +31499907,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135307,0.07,0.0,288.2087015,994.0,894.0,297.15,296.15 +31500030,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,288.131135,994.0,894.0,297.15,296.15 +31500153,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,288.053973,994.0,894.0,297.15,296.15 +31500276,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.97722,994.0,894.0,297.15,296.15 +31500399,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.9008595,994.0,894.0,297.15,296.15 +31500522,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.824928,994.0,894.0,297.15,296.15 +31500645,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.749445,994.0,894.0,297.15,296.15 +31500768,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.67436,994.0,894.0,297.15,296.15 +31500891,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.599745,994.0,894.0,297.15,296.15 +31501014,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.525553,994.0,894.0,297.15,296.15 +31501137,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.4518345,994.0,894.0,297.15,296.15 +31501260,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.37854,994.0,894.0,297.15,296.15 +31501383,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.305733,994.0,894.0,297.15,296.15 +31501506,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.233388,994.0,894.0,297.15,296.15 +31501629,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.1615135,994.0,894.0,297.15,296.15 +31501752,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.090116,994.0,894.0,297.15,296.15 +31501875,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.0192175,994.0,894.0,297.15,296.15 +31501998,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.948796,994.0,894.0,297.15,296.15 +31502121,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.87888,994.0,894.0,297.15,296.15 +31502244,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.809444,994.0,894.0,297.15,296.15 +31502367,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.740543,994.0,894.0,297.15,296.15 +31502490,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.672135,994.0,894.0,297.15,296.15 +31502613,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.604261,994.0,894.0,297.15,296.15 +31502736,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.5369,994.0,894.0,297.15,296.15 +31502859,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.470055,994.0,894.0,297.15,296.15 +31502982,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.403769,994.0,894.0,297.15,296.15 +31503105,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.338015,994.0,894.0,297.15,296.15 +31503228,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.272792,994.0,894.0,297.15,296.15 +31503351,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.2081445,994.0,894.0,297.15,296.15 +31503474,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.14402,994.0,894.0,297.15,296.15 +31503597,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.080467,994.0,894.0,297.15,296.15 +31503720,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,286.0175,994.0,894.0,297.15,296.15 +31503843,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.955088,994.0,894.0,297.15,296.15 +31503966,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.893273,994.0,894.0,297.15,296.15 +31504089,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.832005,994.0,894.0,297.15,296.15 +31504212,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.771342,994.0,894.0,297.15,296.15 +31504335,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.7112825,994.0,894.0,297.15,296.15 +31504458,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.651781,994.0,894.0,297.15,296.15 +31504581,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.592904,994.0,894.0,297.15,296.15 +31504704,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.534626,994.0,894.0,297.15,296.15 +31504827,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.476969,994.0,894.0,297.15,296.15 +31504950,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.41991,994.0,894.0,297.15,296.15 +31505073,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.3634865,994.0,894.0,297.15,296.15 +31505196,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.307664,994.0,894.0,297.15,296.15 +31505319,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.25248,994.0,894.0,297.15,296.15 +31505442,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.197917,994.0,894.0,297.15,296.15 +31505565,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.1439975,994.0,894.0,297.15,296.15 +31505688,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.090716,994.0,894.0,297.15,296.15 +31505811,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.0381055,994.0,894.0,297.15,296.15 +31505934,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.986107,994.0,894.0,297.15,296.15 +31506057,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.934777,994.0,894.0,297.15,296.15 +31506180,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.8841,994.0,894.0,297.15,296.15 +31506303,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.8340915,994.0,894.0,297.15,296.15 +31506426,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.784756,994.0,894.0,297.15,296.15 +31506549,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.736092,994.0,894.0,297.15,296.15 +31506672,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.688082,994.0,894.0,297.15,296.15 +31506795,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.64076,994.0,894.0,297.15,296.15 +31506918,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.594132,994.0,894.0,297.15,296.15 +31507041,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.548163,994.0,894.0,297.15,296.15 +31507164,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.502896,994.0,894.0,297.15,296.15 +31507287,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.458309,994.0,894.0,297.15,296.15 +31507410,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.414425,994.0,894.0,297.15,296.15 +31507533,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.371225,994.0,894.0,297.15,296.15 +31507656,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.328758,994.0,894.0,297.15,296.15 +31507779,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.286957,994.0,894.0,297.15,296.15 +31507902,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.2459,994.0,894.0,297.15,296.15 +31508025,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.2055375,994.0,894.0,297.15,296.15 +31508148,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.165894,994.0,894.0,297.15,296.15 +31508271,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.1269775,994.0,894.0,297.15,296.15 +31508394,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.088754,994.0,894.0,297.15,296.15 +31508517,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.0512895,994.0,894.0,297.15,296.15 +31508640,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.01456,994.0,894.0,297.15,296.15 +31508763,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.978535,994.0,894.0,297.15,296.15 +31508886,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.943253,994.0,894.0,297.15,296.15 +31509009,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.90871,994.0,894.0,297.15,296.15 +31509132,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.874916,994.0,894.0,297.15,296.15 +31509255,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.841855,994.0,894.0,297.15,296.15 +31509378,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.809535,994.0,894.0,297.15,296.15 +31509501,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.777954,994.0,894.0,297.15,296.15 +31509624,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.747148,994.0,894.0,297.15,296.15 +31509747,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.7170585,994.0,894.0,297.15,296.15 +31509870,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.68776,994.0,894.0,297.15,296.15 +31509993,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.659201,994.0,894.0,297.15,296.15 +31510116,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.631396,994.0,894.0,297.15,296.15 +31510239,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.604357,994.0,894.0,297.15,296.15 +31510362,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.578078,994.0,894.0,297.15,296.15 +31510485,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.552575,994.0,894.0,297.15,296.15 +31510608,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.527836,994.0,894.0,297.15,296.15 +31510731,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.503874,994.0,894.0,297.15,296.15 +31510854,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.48067,994.0,894.0,297.15,296.15 +31510977,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.458242,994.0,894.0,297.15,296.15 +31511100,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.43658,994.0,894.0,297.15,296.15 +31511223,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.415705,994.0,894.0,297.15,296.15 +31511346,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.395627,994.0,894.0,297.15,296.15 +31511469,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.3763245,994.0,894.0,297.15,296.15 +31511592,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.357796,994.0,894.0,297.15,296.15 +31511715,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.3400325,994.0,894.0,297.15,296.15 +31511838,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.323082,994.0,894.0,297.15,296.15 +31511961,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.306905,994.0,894.0,297.15,296.15 +31512084,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.291514,994.0,894.0,297.15,296.15 +31512207,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.2769115,994.0,894.0,297.15,296.15 +31512330,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.263115,994.0,894.0,297.15,296.15 +31512453,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.250081,994.0,894.0,297.15,296.15 +31512576,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.237874,994.0,894.0,297.15,296.15 +31512699,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.22644,994.0,894.0,297.15,296.15 +31512822,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.215809,994.0,894.0,297.15,296.15 +31512945,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.2059375,994.0,894.0,297.15,296.15 +31513068,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.196896,994.0,894.0,297.15,296.15 +31513191,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.1886365,994.0,894.0,297.15,296.15 +31513314,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.181174,994.0,894.0,297.15,296.15 +31513437,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.1745075,994.0,894.0,297.15,296.15 +31513560,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.16864,994.0,894.0,297.15,296.15 +31513683,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.1635915,994.0,894.0,297.15,296.15 +31513806,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.159338,994.0,894.0,297.15,296.15 +31513929,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.155884,994.0,894.0,297.15,296.15 +31514052,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.153194,994.0,894.0,297.15,296.15 +31514175,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.1513525,994.0,894.0,297.15,296.15 +31514298,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.15031,994.0,894.0,297.15,296.15 +31514421,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.150035,994.0,894.0,297.15,296.15 +31514544,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.15058,994.0,894.0,297.15,296.15 +31514667,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.1519025,994.0,894.0,297.15,296.15 +31514790,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.15403,994.0,894.0,297.15,296.15 +31514913,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.15698,994.0,894.0,297.15,296.15 +31515036,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.160726,994.0,894.0,297.15,296.15 +31515159,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.165247,994.0,894.0,297.15,296.15 +31515282,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.170586,994.0,894.0,297.15,296.15 +31515405,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.1767125,994.0,894.0,297.15,296.15 +31515528,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.183652,994.0,894.0,297.15,296.15 +31515651,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.1913735,994.0,894.0,297.15,296.15 +31515774,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.199892,994.0,894.0,297.15,296.15 +31515897,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.2092065,994.0,894.0,297.15,296.15 +31516020,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.21933,994.0,894.0,297.15,296.15 +31516143,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.230231,994.0,894.0,297.15,296.15 +31516266,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.241927,994.0,894.0,297.15,296.15 +31516389,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.2544325,994.0,894.0,297.15,296.15 +31516512,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.26774,994.0,894.0,297.15,296.15 +31516635,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.2818075,994.0,894.0,297.15,296.15 +31516758,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.296671,994.0,894.0,297.15,296.15 +31516881,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.312344,994.0,894.0,297.15,296.15 +31517004,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.328796,994.0,894.0,297.15,296.15 +31517127,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.3460045,994.0,894.0,297.15,296.15 +31517250,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.364045,994.0,894.0,297.15,296.15 +31517373,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.3828425,994.0,894.0,297.15,296.15 +31517496,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.402412,994.0,894.0,297.15,296.15 +31517619,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.422765,994.0,894.0,297.15,296.15 +31517742,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.443909,994.0,894.0,297.15,296.15 +31517865,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.46583,994.0,894.0,297.15,296.15 +31517988,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.48851,994.0,894.0,297.15,296.15 +31518111,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.511966,994.0,894.0,297.15,296.15 +31518234,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.536187,994.0,894.0,297.15,296.15 +31518357,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.561185,994.0,894.0,297.15,296.15 +31518480,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.58694,994.0,894.0,297.15,296.15 +31518603,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.613481,994.0,894.0,297.15,296.15 +31518726,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.640787,994.0,894.0,297.15,296.15 +31518849,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.668868,994.0,894.0,297.15,296.15 +31518972,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.697676,994.0,894.0,297.15,296.15 +31519095,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.72724,994.0,894.0,297.15,296.15 +31519218,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.757586,994.0,894.0,297.15,296.15 +31519341,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.7886465,994.0,894.0,297.15,296.15 +31519464,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.820492,994.0,894.0,297.15,296.15 +31519587,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.8530615,994.0,894.0,297.15,296.15 +31519710,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.886385,994.0,894.0,297.15,296.15 +31519833,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.920429,994.0,894.0,297.15,296.15 +31519956,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.95524,994.0,894.0,297.15,296.15 +31520079,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.990775,994.0,894.0,297.15,296.15 +31520202,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.027034,994.0,894.0,297.15,296.15 +31520325,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.0640225,994.0,894.0,297.15,296.15 +31520448,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.101732,994.0,894.0,297.15,296.15 +31520571,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.1401725,994.0,894.0,297.15,296.15 +31520694,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.179348,994.0,894.0,297.15,296.15 +31520817,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.2192225,994.0,894.0,297.15,296.15 +31520940,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.25983,994.0,894.0,297.15,296.15 +31521063,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.3011215,994.0,894.0,297.15,296.15 +31521186,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.343172,994.0,894.0,297.15,296.15 +31521309,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.385882,994.0,894.0,297.15,296.15 +31521432,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.429328,994.0,894.0,297.15,296.15 +31521555,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.4734525,994.0,894.0,297.15,296.15 +31521678,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.518278,994.0,894.0,297.15,296.15 +31521801,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.56378,994.0,894.0,297.15,296.15 +31521924,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.60998,994.0,894.0,297.15,296.15 +31522047,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.6568525,994.0,894.0,297.15,296.15 +31522170,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.70441,994.0,894.0,297.15,296.15 +31522293,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.752644,994.0,894.0,297.15,296.15 +31522416,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.801534,994.0,894.0,297.15,296.15 +31522539,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.851108,994.0,894.0,297.15,296.15 +31522662,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.901355,994.0,894.0,297.15,296.15 +31522785,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.952235,994.0,894.0,297.15,296.15 +31522908,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.003796,994.0,894.0,297.15,296.15 +31523031,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.0560045,994.0,894.0,297.15,296.15 +31523154,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.108832,994.0,894.0,297.15,296.15 +31523277,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.1623305,994.0,894.0,297.15,296.15 +31523400,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.21646,994.0,894.0,297.15,296.15 +31523523,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.271247,994.0,894.0,297.15,296.15 +31523646,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.326627,994.0,894.0,297.15,296.15 +31523769,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.3826695,994.0,894.0,297.15,296.15 +31523892,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.439316,994.0,894.0,297.15,296.15 +31524015,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.4965875,994.0,894.0,297.15,296.15 +31524138,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.554453,994.0,894.0,297.15,296.15 +31524261,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.612945,994.0,894.0,297.15,296.15 +31524384,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.672026,994.0,894.0,297.15,296.15 +31524507,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.731737,994.0,894.0,297.15,296.15 +31524630,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.79199,994.0,894.0,297.15,296.15 +31524753,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.852872,994.0,894.0,297.15,296.15 +31524876,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.914324,994.0,894.0,297.15,296.15 +31524999,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.9763405,994.0,894.0,297.15,296.15 +31525122,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,286.038962,994.0,894.0,297.15,296.15 +31525245,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.102125,994.0,894.0,297.15,296.15 +31525368,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.16586,994.0,894.0,297.15,296.15 +31525491,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.2301455,994.0,894.0,297.15,296.15 +31525614,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.294989,994.0,894.0,297.15,296.15 +31525737,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.360401,994.0,894.0,297.15,296.15 +31525860,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.42633,994.0,894.0,297.15,296.15 +31525983,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.492811,994.0,894.0,297.15,296.15 +31526106,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.559837,994.0,894.0,297.15,296.15 +31526229,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.627368,994.0,894.0,297.15,296.15 +31526352,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.695428,994.0,894.0,297.15,296.15 +31526475,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.764,994.0,894.0,297.15,296.15 +31526598,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.833092,994.0,894.0,297.15,296.15 +31526721,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.9027115,994.0,894.0,297.15,296.15 +31526844,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.972782,994.0,894.0,297.15,296.15 +31526967,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.0433775,994.0,894.0,297.15,296.15 +31527090,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.114445,994.0,894.0,297.15,296.15 +31527213,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.1860165,994.0,894.0,297.15,296.15 +31527336,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.258056,994.0,894.0,297.15,296.15 +31527459,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.330549,994.0,894.0,297.15,296.15 +31527582,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.403537,994.0,894.0,297.15,296.15 +31527705,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.4769575,994.0,894.0,297.15,296.15 +31527828,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.550844,994.0,894.0,297.15,296.15 +31527951,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.625155,994.0,894.0,297.15,296.15 +31528074,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.699945,994.0,894.0,297.15,296.15 +31528197,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.775163,994.0,894.0,297.15,296.15 +31528320,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.8508,994.0,894.0,297.15,296.15 +31528443,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.926883,994.0,894.0,297.15,296.15 +31528566,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,288.003375,994.0,894.0,297.15,296.15 +31528689,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,288.0802675,994.0,894.0,297.15,296.15 +31528812,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.157568,994.0,894.0,297.15,296.15 +31528935,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.2352775,994.0,894.0,297.15,296.15 +31529058,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.313366,994.0,894.0,297.15,296.15 +31529181,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.391853,994.0,894.0,297.15,296.15 +31529304,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.470728,994.0,894.0,297.15,296.15 +31529427,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.549942,994.0,894.0,297.15,296.15 +31529550,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.62956,994.0,894.0,297.15,296.15 +31529673,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.709514,994.0,894.0,297.15,296.15 +31529796,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.789844,994.0,894.0,297.15,296.15 +31529919,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.870503,994.0,894.0,297.15,296.15 +31530042,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.951529,994.0,894.0,297.15,296.15 +31530165,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.032885,994.0,894.0,297.15,296.15 +31530288,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.114552,994.0,894.0,297.15,296.15 +31530411,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.196568,994.0,894.0,297.15,296.15 +31530534,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.278878,994.0,894.0,297.15,296.15 +31530657,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.361511,994.0,894.0,297.15,296.15 +31530780,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.44443,994.0,894.0,297.15,296.15 +31530903,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.5276635,994.0,894.0,297.15,296.15 +31531026,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.611182,994.0,894.0,297.15,296.15 +31531149,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.694984,994.0,894.0,297.15,296.15 +31531272,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.779056,994.0,894.0,297.15,296.15 +31531395,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.863405,994.0,894.0,297.15,296.15 +31531518,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.948008,994.0,894.0,297.15,296.15 +31531641,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.0328845,994.0,894.0,297.15,296.15 +31531764,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.117986,994.0,894.0,297.15,296.15 +31531887,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.2033485,994.0,894.0,297.15,296.15 +31532010,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.28894,994.0,894.0,297.15,296.15 +31532133,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.374756,994.0,894.0,297.15,296.15 +31532256,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.460818,994.0,894.0,297.15,296.15 +31532379,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.547058,994.0,894.0,297.15,296.15 +31532502,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.633531,994.0,894.0,297.15,296.15 +31532625,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.7201975,994.0,894.0,297.15,296.15 +31532748,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.807066,994.0,894.0,297.15,296.15 +31532871,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.894108,994.0,894.0,297.15,296.15 +31532994,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.981342,994.0,894.0,297.15,296.15 +31533117,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.0687665,994.0,894.0,297.15,296.15 +31533240,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.1563,994.0,894.0,297.15,296.15 +31533363,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.244043,994.0,894.0,297.15,296.15 +31533486,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.331933,994.0,894.0,297.15,296.15 +31533609,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.41995,994.0,894.0,297.15,296.15 +31533732,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.508114,994.0,894.0,297.15,296.15 +31533855,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.5964325,994.0,894.0,297.15,296.15 +31533978,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.68486,994.0,894.0,297.15,296.15 +31534101,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.7733935,994.0,894.0,297.15,296.15 +31534224,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.862038,994.0,894.0,297.15,296.15 +31534347,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.950803,994.0,894.0,297.15,296.15 +31534470,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.039655,994.0,894.0,297.15,296.15 +31534593,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.1285865,994.0,894.0,297.15,296.15 +31534716,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.217612,994.0,894.0,297.15,296.15 +31534839,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.3067085,994.0,894.0,297.15,296.15 +31534962,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.395856,994.0,894.0,297.15,296.15 +31535085,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.4850825,994.0,894.0,297.15,296.15 +31535208,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.57436,994.0,894.0,297.15,296.15 +31535331,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.663693,994.0,894.0,297.15,296.15 +31535454,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.753058,994.0,894.0,297.15,296.15 +31535577,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.84242,994.0,894.0,297.15,296.15 +31535700,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.93185,994.0,894.0,297.15,296.15 +31535823,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,293.021282,994.0,894.0,297.15,296.15 +31535946,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,293.110715,994.0,894.0,297.15,296.15 +31536069,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,293.200176,994.0,894.0,297.15,296.15 +31536192,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,293.289608,994.0,894.0,297.15,296.15 +31536315,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,293.3790625,994.0,894.0,297.15,296.15 +31536438,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,293.468466,994.0,894.0,297.15,296.15 +31536561,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,293.557853,994.0,894.0,297.15,296.15 +31536684,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,293.647228,994.0,894.0,297.15,296.15 +31536807,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,293.736531,994.0,894.0,297.15,296.15 +31536930,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,293.82579,994.0,894.0,297.15,296.15 +31537053,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,293.915016,994.0,894.0,297.15,296.15 +31537176,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,294.00417,994.0,894.0,297.15,296.15 +31537299,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,294.093249,994.0,894.0,297.15,296.15 +31537422,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,294.182266,994.0,894.0,297.15,296.15 +31537545,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,294.2712,994.0,894.0,297.15,296.15 +31537668,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,294.36002,994.0,894.0,297.15,296.15 +31537791,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,294.448771,994.0,894.0,297.15,296.15 +31537914,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,294.537398,994.0,894.0,297.15,296.15 +31538037,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,294.6259225,994.0,894.0,297.15,296.15 +31538160,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,294.71436,994.0,894.0,297.15,296.15 +31538283,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,294.802631,994.0,894.0,297.15,296.15 +31538406,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,294.890767,994.0,894.0,297.15,296.15 +31538529,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,294.978782,994.0,894.0,297.15,296.15 +31538652,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,295.066636,994.0,894.0,297.15,296.15 +31538775,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,295.1543675,994.0,894.0,297.15,296.15 +31538898,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,295.241931,994.0,894.0,297.15,296.15 +31539021,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,295.329296,994.0,894.0,297.15,296.15 +31539144,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,295.416508,994.0,894.0,297.15,296.15 +31539267,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,295.5035455,994.0,894.0,297.15,296.15 +31539390,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,295.59037,994.0,894.0,297.15,296.15 +31539513,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,295.67701,994.0,894.0,297.15,296.15 +31539636,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,295.76346,994.0,894.0,297.15,296.15 +31539759,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,295.8497,994.0,894.0,297.15,296.15 +31539882,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,295.935721,994.0,894.0,297.15,296.15 +31540005,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.0214975,994.0,894.0,297.15,296.15 +31540128,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.107082,994.0,894.0,297.15,296.15 +31540251,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.1924,994.0,894.0,297.15,296.15 +31540374,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.277502,994.0,894.0,297.15,296.15 +31540497,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.362314,994.0,894.0,297.15,296.15 +31540620,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.4469,994.0,894.0,297.15,296.15 +31540743,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.5312215,994.0,894.0,297.15,296.15 +31540866,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.615269,994.0,894.0,297.15,296.15 +31540989,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.6990155,994.0,894.0,297.15,296.15 +31541112,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.782504,994.0,894.0,297.15,296.15 +31541235,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.865685,994.0,894.0,297.15,296.15 +31541358,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,296.948602,994.0,894.0,297.15,296.15 +31541481,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.031183,994.0,894.0,297.15,296.15 +31541604,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.113456,994.0,894.0,297.15,296.15 +31541727,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.195424,994.0,894.0,297.15,296.15 +31541850,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.27707,994.0,894.0,297.15,296.15 +31541973,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.35838,994.0,894.0,297.15,296.15 +31542096,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.439332,994.0,894.0,297.15,296.15 +31542219,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.5199755,994.0,894.0,297.15,296.15 +31542342,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.600243,994.0,894.0,297.15,296.15 +31542465,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.6801675,994.0,894.0,297.15,296.15 +31542588,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.759746,994.0,894.0,297.15,296.15 +31542711,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.838943,994.0,894.0,297.15,296.15 +31542834,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.91776,994.0,894.0,297.15,296.15 +31542957,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,297.99619,994.0,894.0,297.15,296.15 +31543080,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,298.07425,994.0,894.0,297.15,296.15 +31543203,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.151887,994.0,894.0,297.15,296.15 +31543326,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.229127,994.0,894.0,297.15,296.15 +31543449,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.305984,994.0,894.0,297.15,296.15 +31543572,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.382428,994.0,894.0,297.15,296.15 +31543695,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.4584375,994.0,894.0,297.15,296.15 +31543818,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.534025,994.0,894.0,297.15,296.15 +31543941,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.6091855,994.0,894.0,297.15,296.15 +31544064,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.683902,994.0,894.0,297.15,296.15 +31544187,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.7581895,994.0,894.0,297.15,296.15 +31544310,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.83202,994.0,894.0,297.15,296.15 +31544433,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.905394,994.0,894.0,297.15,296.15 +31544556,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,298.978312,994.0,894.0,297.15,296.15 +31544679,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.050766,994.0,894.0,297.15,296.15 +31544802,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.12274,994.0,894.0,297.15,296.15 +31544925,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.1942425,994.0,894.0,297.15,296.15 +31545048,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.26528,994.0,894.0,297.15,296.15 +31545171,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.335789,994.0,894.0,297.15,296.15 +31545294,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.405831,994.0,894.0,297.15,296.15 +31545417,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.4753575,994.0,894.0,297.15,296.15 +31545540,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.5444,994.0,894.0,297.15,296.15 +31545663,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.6129015,994.0,894.0,297.15,296.15 +31545786,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.6809,994.0,894.0,297.15,296.15 +31545909,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.7483795,994.0,894.0,297.15,296.15 +31546032,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.8153,994.0,894.0,297.15,296.15 +31546155,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.88172,994.0,894.0,297.15,296.15 +31546278,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,299.947605,994.0,894.0,297.15,296.15 +31546401,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,300.0129285,994.0,894.0,297.15,296.15 +31546524,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,300.077712,994.0,894.0,297.15,296.15 +31546647,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,300.14194,994.0,894.0,297.15,296.15 +31546770,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.15,0.07,0.0,300.205615,994.0,894.0,297.15,296.15 +31546893,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.268712,994.0,894.0,297.15,296.15 +31547016,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.331236,994.0,894.0,297.15,296.15 +31547139,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.393208,994.0,894.0,297.15,296.15 +31547262,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.454587,994.0,894.0,297.15,296.15 +31547385,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.515385,994.0,894.0,297.15,296.15 +31547508,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.5756,994.0,894.0,297.15,296.15 +31547631,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.6352115,994.0,894.0,297.15,296.15 +31547754,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.694212,994.0,894.0,297.15,296.15 +31547877,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.7526395,994.0,894.0,297.15,296.15 +31548000,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.81046,994.0,894.0,297.15,296.15 +31548123,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.867624,994.0,894.0,297.15,296.15 +31548246,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.92419,994.0,894.0,297.15,296.15 +31548369,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,300.980135,994.0,894.0,297.15,296.15 +31548492,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.035476,994.0,894.0,297.15,296.15 +31548615,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.0901525,994.0,894.0,297.15,296.15 +31548738,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.144207,994.0,894.0,297.15,296.15 +31548861,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.197628,994.0,894.0,297.15,296.15 +31548984,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.250402,994.0,894.0,297.15,296.15 +31549107,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.3025235,994.0,894.0,297.15,296.15 +31549230,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.35399,994.0,894.0,297.15,296.15 +31549353,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.4048165,994.0,894.0,297.15,296.15 +31549476,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.454968,994.0,894.0,297.15,296.15 +31549599,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.5044535,994.0,894.0,297.15,296.15 +31549722,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.55329,994.0,894.0,297.15,296.15 +31549845,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.6014325,994.0,894.0,297.15,296.15 +31549968,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.648924,994.0,894.0,297.15,296.15 +31550091,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.6957205,994.0,894.0,297.15,296.15 +31550214,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.741813,994.0,894.0,297.15,296.15 +31550337,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.212132034356,0.07,0.0,301.787257,994.0,894.0,297.15,296.15 +31550460,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.832,994.0,894.0,297.15,296.15 +31550583,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.8760315,994.0,894.0,297.15,296.15 +31550706,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.91936,994.0,894.0,297.15,296.15 +31550829,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,301.961984,994.0,894.0,297.15,296.15 +31550952,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.003924,994.0,894.0,297.15,296.15 +31551075,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.045135,994.0,894.0,297.15,296.15 +31551198,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.085659,994.0,894.0,297.15,296.15 +31551321,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.125434,994.0,894.0,297.15,296.15 +31551444,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.164524,994.0,894.0,297.15,296.15 +31551567,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.202884,994.0,894.0,297.15,296.15 +31551690,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.240525,994.0,894.0,297.15,296.15 +31551813,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.277423,994.0,894.0,297.15,296.15 +31551936,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.3136,994.0,894.0,297.15,296.15 +31552059,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.349048,994.0,894.0,297.15,296.15 +31552182,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.38376,994.0,894.0,297.15,296.15 +31552305,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.41773,994.0,894.0,297.15,296.15 +31552428,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.450948,994.0,894.0,297.15,296.15 +31552551,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.483445,994.0,894.0,297.15,296.15 +31552674,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.515182,994.0,894.0,297.15,296.15 +31552797,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.546189,994.0,894.0,297.15,296.15 +31552920,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.57642,994.0,894.0,297.15,296.15 +31553043,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.605905,994.0,894.0,297.15,296.15 +31553166,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.634616,994.0,894.0,297.15,296.15 +31553289,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.66256,994.0,894.0,297.15,296.15 +31553412,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.689768,994.0,894.0,297.15,296.15 +31553535,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.716205,994.0,894.0,297.15,296.15 +31553658,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.74189,994.0,894.0,297.15,296.15 +31553781,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.7667895,994.0,894.0,297.15,296.15 +31553904,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.259807621135,0.07,0.0,302.790944,994.0,894.0,297.15,296.15 +31554027,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.81431,994.0,894.0,297.15,296.15 +31554150,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.8369,994.0,894.0,297.15,296.15 +31554273,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.858723,994.0,894.0,297.15,296.15 +31554396,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.87976,994.0,894.0,297.15,296.15 +31554519,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.900005,994.0,894.0,297.15,296.15 +31554642,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.919498,994.0,894.0,297.15,296.15 +31554765,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.93822,994.0,894.0,297.15,296.15 +31554888,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.956138,994.0,894.0,297.15,296.15 +31555011,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.973284,994.0,894.0,297.15,296.15 +31555134,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.989632,994.0,894.0,297.15,296.15 +31555257,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.0051765,994.0,894.0,297.15,296.15 +31555380,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.01996,994.0,894.0,297.15,296.15 +31555503,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.033928,994.0,894.0,297.15,296.15 +31555626,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.047117,994.0,894.0,297.15,296.15 +31555749,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.05952,994.0,894.0,297.15,296.15 +31555872,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.071126,994.0,894.0,297.15,296.15 +31555995,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.081955,994.0,894.0,297.15,296.15 +31556118,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.091966,994.0,894.0,297.15,296.15 +31556241,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.101175,994.0,894.0,297.15,296.15 +31556364,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.109612,994.0,894.0,297.15,296.15 +31556487,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1172395,994.0,894.0,297.15,296.15 +31556610,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.12407,994.0,894.0,297.15,296.15 +31556733,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1301125,994.0,894.0,297.15,296.15 +31556856,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.13534,994.0,894.0,297.15,296.15 +31556979,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1397805,994.0,894.0,297.15,296.15 +31557102,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.143434,994.0,894.0,297.15,296.15 +31557225,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.146265,994.0,894.0,297.15,296.15 +31557348,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.148296,994.0,894.0,297.15,296.15 +31557471,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.1495565,994.0,894.0,297.15,296.15 +31557594,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,303.14999,994.0,894.0,297.15,296.15 +31557717,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.1496435,994.0,894.0,297.15,296.15 +31557840,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.14847,994.0,894.0,297.15,296.15 +31557963,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.146517,994.0,894.0,297.15,296.15 +31558086,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.143758,994.0,894.0,297.15,296.15 +31558209,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.1401745,994.0,894.0,297.15,296.15 +31558332,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.13582,994.0,894.0,297.15,296.15 +31558455,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.1306625,994.0,894.0,297.15,296.15 +31558578,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.124698,994.0,894.0,297.15,296.15 +31558701,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.1179415,994.0,894.0,297.15,296.15 +31558824,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.110388,994.0,894.0,297.15,296.15 +31558947,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.102035,994.0,894.0,297.15,296.15 +31559070,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.09289,994.0,894.0,297.15,296.15 +31559193,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.082959,994.0,894.0,297.15,296.15 +31559316,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.072212,994.0,894.0,297.15,296.15 +31559439,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.06068,994.0,894.0,297.15,296.15 +31559562,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.048351,994.0,894.0,297.15,296.15 +31559685,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.03524,994.0,894.0,297.15,296.15 +31559808,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.021348,994.0,894.0,297.15,296.15 +31559931,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,303.006645,994.0,894.0,297.15,296.15 +31560054,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.991186,994.0,894.0,297.15,296.15 +31560177,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.974921,994.0,894.0,297.15,296.15 +31560300,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.95786,994.0,894.0,297.15,296.15 +31560423,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.940012,994.0,894.0,297.15,296.15 +31560546,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.921366,994.0,894.0,297.15,296.15 +31560669,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.901945,994.0,894.0,297.15,296.15 +31560792,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.88178,994.0,894.0,297.15,296.15 +31560915,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.860815,994.0,894.0,297.15,296.15 +31561038,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.839068,994.0,894.0,297.15,296.15 +31561161,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.3,0.07,0.0,302.81655,994.0,894.0,297.15,296.15 +31561284,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.793256,994.0,894.0,297.15,296.15 +31561407,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.7691835,994.0,894.0,297.15,296.15 +31561530,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.74435,994.0,894.0,297.15,296.15 +31561653,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.718737,994.0,894.0,297.15,296.15 +31561776,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.692376,994.0,894.0,297.15,296.15 +31561899,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.66524,994.0,894.0,297.15,296.15 +31562022,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.637368,994.0,894.0,297.15,296.15 +31562145,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.608725,994.0,894.0,297.15,296.15 +31562268,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.579312,994.0,894.0,297.15,296.15 +31562391,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.5491645,994.0,894.0,297.15,296.15 +31562514,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.51824,994.0,894.0,297.15,296.15 +31562637,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.486577,994.0,894.0,297.15,296.15 +31562760,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.45416,994.0,894.0,297.15,296.15 +31562883,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.421018,994.0,894.0,297.15,296.15 +31563006,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.38712,994.0,894.0,297.15,296.15 +31563129,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.352472,994.0,894.0,297.15,296.15 +31563252,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.3171,994.0,894.0,297.15,296.15 +31563375,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.280995,994.0,894.0,297.15,296.15 +31563498,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.244155,994.0,894.0,297.15,296.15 +31563621,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.206588,994.0,894.0,297.15,296.15 +31563744,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.168296,994.0,894.0,297.15,296.15 +31563867,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.129282,994.0,894.0,297.15,296.15 +31563990,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.089565,994.0,894.0,297.15,296.15 +31564113,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.049115,994.0,894.0,297.15,296.15 +31564236,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,302.007968,994.0,894.0,297.15,296.15 +31564359,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.966096,994.0,894.0,297.15,296.15 +31564482,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.92354,994.0,894.0,297.15,296.15 +31564605,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.8802775,994.0,894.0,297.15,296.15 +31564728,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,0.289777747887,0.07,0.0,301.83631,994.0,894.0,297.15,296.15 +31564851,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.791642,994.0,894.0,297.15,296.15 +31564974,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.746275,994.0,894.0,297.15,296.15 +31565097,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.7002575,994.0,894.0,297.15,296.15 +31565220,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.65353,994.0,894.0,297.15,296.15 +31565343,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.6061025,994.0,894.0,297.15,296.15 +31565466,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.55803,994.0,894.0,297.15,296.15 +31565589,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.5092515,994.0,894.0,297.15,296.15 +31565712,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.459834,994.0,894.0,297.15,296.15 +31565835,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.4097425,994.0,894.0,297.15,296.15 +31565958,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.358978,994.0,894.0,297.15,296.15 +31566081,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.3075695,994.0,894.0,297.15,296.15 +31566204,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.255518,994.0,894.0,297.15,296.15 +31566327,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.202804,994.0,894.0,297.15,296.15 +31566450,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.149445,994.0,894.0,297.15,296.15 +31566573,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.0954505,994.0,894.0,297.15,296.15 +31566696,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,301.040832,994.0,894.0,297.15,296.15 +31566819,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.985555,994.0,894.0,297.15,296.15 +31566942,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.92967,994.0,894.0,297.15,296.15 +31567065,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.87316,994.0,894.0,297.15,296.15 +31567188,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.816048,994.0,894.0,297.15,296.15 +31567311,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.758299,994.0,894.0,297.15,296.15 +31567434,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.699937,994.0,894.0,297.15,296.15 +31567557,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.641002,994.0,894.0,297.15,296.15 +31567680,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.58145,994.0,894.0,297.15,296.15 +31567803,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.521293,994.0,894.0,297.15,296.15 +31567926,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.460549,994.0,894.0,297.15,296.15 +31568049,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.399232,994.0,894.0,297.15,296.15 +31568172,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.337308,994.0,894.0,297.15,296.15 +31568295,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.259807621135,0.07,0.0,300.27484,994.0,894.0,297.15,296.15 +31568418,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.211797,994.0,894.0,297.15,296.15 +31568541,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.14818,994.0,894.0,297.15,296.15 +31568664,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.084008,994.0,894.0,297.15,296.15 +31568787,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,300.0192705,994.0,894.0,297.15,296.15 +31568910,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.953995,994.0,894.0,297.15,296.15 +31569033,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.888168,994.0,894.0,297.15,296.15 +31569156,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.8218,994.0,894.0,297.15,296.15 +31569279,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.7549255,994.0,894.0,297.15,296.15 +31569402,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.6875,994.0,894.0,297.15,296.15 +31569525,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.6195475,994.0,894.0,297.15,296.15 +31569648,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.551096,994.0,894.0,297.15,296.15 +31569771,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.482108,994.0,894.0,297.15,296.15 +31569894,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.412636,994.0,894.0,297.15,296.15 +31570017,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.3426505,994.0,894.0,297.15,296.15 +31570140,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.2722,994.0,894.0,297.15,296.15 +31570263,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.2012005,994.0,894.0,297.15,296.15 +31570386,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.12974,994.0,894.0,297.15,296.15 +31570509,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,299.057814,994.0,894.0,297.15,296.15 +31570632,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.985406,994.0,894.0,297.15,296.15 +31570755,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.91253,994.0,894.0,297.15,296.15 +31570878,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.839204,994.0,894.0,297.15,296.15 +31571001,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.7654115,994.0,894.0,297.15,296.15 +31571124,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.691168,994.0,894.0,297.15,296.15 +31571247,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.6164915,994.0,894.0,297.15,296.15 +31571370,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.541375,994.0,894.0,297.15,296.15 +31571493,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.4658275,994.0,894.0,297.15,296.15 +31571616,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.389856,994.0,894.0,297.15,296.15 +31571739,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.313456,994.0,894.0,297.15,296.15 +31571862,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.236641,994.0,894.0,297.15,296.15 +31571985,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.212132034356,0.07,0.0,298.159435,994.0,894.0,297.15,296.15 +31572108,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,298.08183,994.0,894.0,297.15,296.15 +31572231,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,298.003818,994.0,894.0,297.15,296.15 +31572354,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.92543,994.0,894.0,297.15,296.15 +31572477,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.8466535,994.0,894.0,297.15,296.15 +31572600,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.7675,994.0,894.0,297.15,296.15 +31572723,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.6879535,994.0,894.0,297.15,296.15 +31572846,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.608061,994.0,894.0,297.15,296.15 +31572969,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.5278295,994.0,894.0,297.15,296.15 +31573092,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.447216,994.0,894.0,297.15,296.15 +31573215,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.3663,994.0,894.0,297.15,296.15 +31573338,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.285018,994.0,894.0,297.15,296.15 +31573461,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.203408,994.0,894.0,297.15,296.15 +31573584,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.121464,994.0,894.0,297.15,296.15 +31573707,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,297.039219,994.0,894.0,297.15,296.15 +31573830,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.95667,994.0,894.0,297.15,296.15 +31573953,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.873785,994.0,894.0,297.15,296.15 +31574076,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.790628,994.0,894.0,297.15,296.15 +31574199,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.7071695,994.0,894.0,297.15,296.15 +31574322,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.623447,994.0,894.0,297.15,296.15 +31574445,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.5394275,994.0,894.0,297.15,296.15 +31574568,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.455134,994.0,894.0,297.15,296.15 +31574691,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.3705735,994.0,894.0,297.15,296.15 +31574814,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.285791,994.0,894.0,297.15,296.15 +31574937,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.2007165,994.0,894.0,297.15,296.15 +31575060,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.11542,994.0,894.0,297.15,296.15 +31575183,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,296.0298595,994.0,894.0,297.15,296.15 +31575306,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,295.944107,994.0,894.0,297.15,296.15 +31575429,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,295.8581,994.0,894.0,297.15,296.15 +31575552,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.15,0.07,0.0,295.77188,994.0,894.0,297.15,296.15 +31575675,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.68545,994.0,894.0,297.15,296.15 +31575798,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.598838,994.0,894.0,297.15,296.15 +31575921,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.5120235,994.0,894.0,297.15,296.15 +31576044,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.425012,994.0,894.0,297.15,296.15 +31576167,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.337808,994.0,894.0,297.15,296.15 +31576290,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.250465,994.0,894.0,297.15,296.15 +31576413,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.1629175,994.0,894.0,297.15,296.15 +31576536,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,295.075202,994.0,894.0,297.15,296.15 +31576659,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.987358,994.0,894.0,297.15,296.15 +31576782,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.899361,994.0,894.0,297.15,296.15 +31576905,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.811235,994.0,894.0,297.15,296.15 +31577028,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.722972,994.0,894.0,297.15,296.15 +31577151,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.6345525,994.0,894.0,297.15,296.15 +31577274,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.546041,994.0,894.0,297.15,296.15 +31577397,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.457422,994.0,894.0,297.15,296.15 +31577520,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.36868,994.0,894.0,297.15,296.15 +31577643,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.279872,994.0,894.0,297.15,296.15 +31577766,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.190942,994.0,894.0,297.15,296.15 +31577889,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.101941,994.0,894.0,297.15,296.15 +31578012,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,294.01286,994.0,894.0,297.15,296.15 +31578135,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.92372,994.0,894.0,297.15,296.15 +31578258,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.834498,994.0,894.0,297.15,296.15 +31578381,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.745247,994.0,894.0,297.15,296.15 +31578504,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.655942,994.0,894.0,297.15,296.15 +31578627,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.566569,994.0,894.0,297.15,296.15 +31578750,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.47719,994.0,894.0,297.15,296.15 +31578873,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.3877845,994.0,894.0,297.15,296.15 +31578996,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.298336,994.0,894.0,297.15,296.15 +31579119,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,0.0776457135308,0.07,0.0,293.208904,994.0,894.0,297.15,296.15 +31579242,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,293.119445,994.0,894.0,297.15,296.15 +31579365,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,293.03001,994.0,894.0,297.15,296.15 +31579488,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,292.940572,994.0,894.0,297.15,296.15 +31579611,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,292.851146,994.0,894.0,297.15,296.15 +31579734,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,292.761778,994.0,894.0,297.15,296.15 +31579857,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,292.6724085,994.0,894.0,297.15,296.15 +31579980,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,292.58307,994.0,894.0,297.15,296.15 +31580103,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,292.4937925,994.0,894.0,297.15,296.15 +31580226,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,292.404552,994.0,894.0,297.15,296.15 +31580349,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,292.3154065,994.0,894.0,297.15,296.15 +31580472,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,292.226306,994.0,894.0,297.15,296.15 +31580595,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,292.1372725,994.0,894.0,297.15,296.15 +31580718,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,292.048329,994.0,894.0,297.15,296.15 +31580841,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,291.959471,994.0,894.0,297.15,296.15 +31580964,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,291.870692,994.0,894.0,297.15,296.15 +31581087,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,291.7820355,994.0,894.0,297.15,296.15 +31581210,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,291.6935,994.0,894.0,297.15,296.15 +31581333,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,291.6050505,994.0,894.0,297.15,296.15 +31581456,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,291.516728,994.0,894.0,297.15,296.15 +31581579,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,291.42855,994.0,894.0,297.15,296.15 +31581702,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,291.340519,994.0,894.0,297.15,296.15 +31581825,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,291.252615,994.0,894.0,297.15,296.15 +31581948,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,291.16486,994.0,894.0,297.15,296.15 +31582071,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,291.077305,994.0,894.0,297.15,296.15 +31582194,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,290.989863,994.0,894.0,297.15,296.15 +31582317,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,290.902607,994.0,894.0,297.15,296.15 +31582440,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,290.81555,994.0,894.0,297.15,296.15 +31582563,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,290.7286555,994.0,894.0,297.15,296.15 +31582686,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-9.64873589806e-17,0.07,0.0,290.641977,994.0,894.0,297.15,296.15 +31582809,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.555482,994.0,894.0,297.15,296.15 +31582932,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.469224,994.0,894.0,297.15,296.15 +31583055,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.38314,994.0,894.0,297.15,296.15 +31583178,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.2973,994.0,894.0,297.15,296.15 +31583301,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.2116945,994.0,894.0,297.15,296.15 +31583424,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.126304,994.0,894.0,297.15,296.15 +31583547,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,290.0411785,994.0,894.0,297.15,296.15 +31583670,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.95628,994.0,894.0,297.15,296.15 +31583793,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.871649,994.0,894.0,297.15,296.15 +31583916,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.787272,994.0,894.0,297.15,296.15 +31584039,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.703176,994.0,894.0,297.15,296.15 +31584162,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.619346,994.0,894.0,297.15,296.15 +31584285,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.5357975,994.0,894.0,297.15,296.15 +31584408,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.452544,994.0,894.0,297.15,296.15 +31584531,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.36959,994.0,894.0,297.15,296.15 +31584654,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.286925,994.0,894.0,297.15,296.15 +31584777,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.204585,994.0,894.0,297.15,296.15 +31584900,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.12253,994.0,894.0,297.15,296.15 +31585023,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,289.040833,994.0,894.0,297.15,296.15 +31585146,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.959443,994.0,894.0,297.15,296.15 +31585269,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.878387,994.0,894.0,297.15,296.15 +31585392,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.797692,994.0,894.0,297.15,296.15 +31585515,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.71733,994.0,894.0,297.15,296.15 +31585638,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.637344,994.0,894.0,297.15,296.15 +31585761,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.557694,994.0,894.0,297.15,296.15 +31585884,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.478442,994.0,894.0,297.15,296.15 +31586007,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.399529,994.0,894.0,297.15,296.15 +31586130,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.32101,994.0,894.0,297.15,296.15 +31586253,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.2428835,994.0,894.0,297.15,296.15 +31586376,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.0776457135308,0.07,0.0,288.165136,994.0,894.0,297.15,296.15 +31586499,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,288.0877975,994.0,894.0,297.15,296.15 +31586622,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,288.010865,994.0,894.0,297.15,296.15 +31586745,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.934335,994.0,894.0,297.15,296.15 +31586868,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.85821,994.0,894.0,297.15,296.15 +31586991,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.782526,994.0,894.0,297.15,296.15 +31587114,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.707266,994.0,894.0,297.15,296.15 +31587237,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.6324225,994.0,894.0,297.15,296.15 +31587360,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.55807,994.0,894.0,297.15,296.15 +31587483,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.4841355,994.0,894.0,297.15,296.15 +31587606,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.410679,994.0,894.0,297.15,296.15 +31587729,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.337641,994.0,894.0,297.15,296.15 +31587852,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.265108,994.0,894.0,297.15,296.15 +31587975,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.1930225,994.0,894.0,297.15,296.15 +31588098,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.121403,994.0,894.0,297.15,296.15 +31588221,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,287.0502875,994.0,894.0,297.15,296.15 +31588344,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.979648,994.0,894.0,297.15,296.15 +31588467,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.9095295,994.0,894.0,297.15,296.15 +31588590,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.83986,994.0,894.0,297.15,296.15 +31588713,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.77072,994.0,894.0,297.15,296.15 +31588836,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.702106,994.0,894.0,297.15,296.15 +31588959,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.633992,994.0,894.0,297.15,296.15 +31589082,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.566411,994.0,894.0,297.15,296.15 +31589205,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.499335,994.0,894.0,297.15,296.15 +31589328,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.4328,994.0,894.0,297.15,296.15 +31589451,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.366815,994.0,894.0,297.15,296.15 +31589574,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.301346,994.0,894.0,297.15,296.15 +31589697,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.2364395,994.0,894.0,297.15,296.15 +31589820,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.1721,994.0,894.0,297.15,296.15 +31589943,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.15,0.07,0.0,286.108313,994.0,894.0,297.15,296.15 +31590066,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,286.045094,994.0,894.0,297.15,296.15 +31590189,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.9824145,994.0,894.0,297.15,296.15 +31590312,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.920342,994.0,894.0,297.15,296.15 +31590435,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.85884,994.0,894.0,297.15,296.15 +31590558,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.797898,994.0,894.0,297.15,296.15 +31590681,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.737589,994.0,894.0,297.15,296.15 +31590804,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.677824,994.0,894.0,297.15,296.15 +31590927,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.618685,994.0,894.0,297.15,296.15 +31591050,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.560135,994.0,894.0,297.15,296.15 +31591173,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.5022095,994.0,894.0,297.15,296.15 +31591296,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.444882,994.0,894.0,297.15,296.15 +31591419,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.3881755,994.0,894.0,297.15,296.15 +31591542,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.332081,994.0,894.0,297.15,296.15 +31591665,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.276635,994.0,894.0,297.15,296.15 +31591788,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.221788,994.0,894.0,297.15,296.15 +31591911,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.1675895,994.0,894.0,297.15,296.15 +31592034,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.114023,994.0,894.0,297.15,296.15 +31592157,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.061125,994.0,894.0,297.15,296.15 +31592280,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,285.00885,994.0,894.0,297.15,296.15 +31592403,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.957223,994.0,894.0,297.15,296.15 +31592526,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.906285,994.0,894.0,297.15,296.15 +31592649,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.855972,994.0,894.0,297.15,296.15 +31592772,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.806332,994.0,894.0,297.15,296.15 +31592895,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.75738,994.0,894.0,297.15,296.15 +31593018,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.709086,994.0,894.0,297.15,296.15 +31593141,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.6614625,994.0,894.0,297.15,296.15 +31593264,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.61452,994.0,894.0,297.15,296.15 +31593387,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.56826,994.0,894.0,297.15,296.15 +31593510,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.212132034356,0.07,0.0,284.52269,994.0,894.0,297.15,296.15 +31593633,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.4777985,994.0,894.0,297.15,296.15 +31593756,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.433606,994.0,894.0,297.15,296.15 +31593879,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.390098,994.0,894.0,297.15,296.15 +31594002,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.347316,994.0,894.0,297.15,296.15 +31594125,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.3052075,994.0,894.0,297.15,296.15 +31594248,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.26384,994.0,894.0,297.15,296.15 +31594371,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.2231595,994.0,894.0,297.15,296.15 +31594494,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.183208,994.0,894.0,297.15,296.15 +31594617,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.1439525,994.0,894.0,297.15,296.15 +31594740,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.10544,994.0,894.0,297.15,296.15 +31594863,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.0676605,994.0,894.0,297.15,296.15 +31594986,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,284.030598,994.0,894.0,297.15,296.15 +31595109,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.994275,994.0,894.0,297.15,296.15 +31595232,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.95867,994.0,894.0,297.15,296.15 +31595355,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.923785,994.0,894.0,297.15,296.15 +31595478,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.889671,994.0,894.0,297.15,296.15 +31595601,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.8562755,994.0,894.0,297.15,296.15 +31595724,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.823638,994.0,894.0,297.15,296.15 +31595847,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.7917245,994.0,894.0,297.15,296.15 +31595970,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.76059,994.0,894.0,297.15,296.15 +31596093,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.730176,994.0,894.0,297.15,296.15 +31596216,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.700532,994.0,894.0,297.15,296.15 +31596339,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.671652,994.0,894.0,297.15,296.15 +31596462,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.643501,994.0,894.0,297.15,296.15 +31596585,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.616125,994.0,894.0,297.15,296.15 +31596708,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.589512,994.0,894.0,297.15,296.15 +31596831,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.563672,994.0,894.0,297.15,296.15 +31596954,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.538592,994.0,894.0,297.15,296.15 +31597077,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.259807621135,0.07,0.0,283.5142875,994.0,894.0,297.15,296.15 +31597200,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.49075,994.0,894.0,297.15,296.15 +31597323,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.467998,994.0,894.0,297.15,296.15 +31597446,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.446003,994.0,894.0,297.15,296.15 +31597569,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.424785,994.0,894.0,297.15,296.15 +31597692,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.404356,994.0,894.0,297.15,296.15 +31597815,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.3847125,994.0,894.0,297.15,296.15 +31597938,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.365839,994.0,894.0,297.15,296.15 +31598061,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.3477265,994.0,894.0,297.15,296.15 +31598184,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.330444,994.0,894.0,297.15,296.15 +31598307,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.313912,994.0,894.0,297.15,296.15 +31598430,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.298165,994.0,894.0,297.15,296.15 +31598553,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.2832295,994.0,894.0,297.15,296.15 +31598676,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.26908,994.0,894.0,297.15,296.15 +31598799,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.2557025,994.0,894.0,297.15,296.15 +31598922,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.243121,994.0,894.0,297.15,296.15 +31599045,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.231355,994.0,894.0,297.15,296.15 +31599168,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.220374,994.0,894.0,297.15,296.15 +31599291,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.210169,994.0,894.0,297.15,296.15 +31599414,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.200765,994.0,894.0,297.15,296.15 +31599537,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.192164,994.0,894.0,297.15,296.15 +31599660,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.18436,994.0,894.0,297.15,296.15 +31599783,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.1773425,994.0,894.0,297.15,296.15 +31599906,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.171142,994.0,894.0,297.15,296.15 +31600029,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.165723,994.0,894.0,297.15,296.15 +31600152,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.161128,994.0,894.0,297.15,296.15 +31600275,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.1573,994.0,894.0,297.15,296.15 +31600398,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.154282,994.0,894.0,297.15,296.15 +31600521,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.1520725,994.0,894.0,297.15,296.15 +31600644,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.15067,994.0,894.0,297.15,296.15 +31600767,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.3,-0.289777747887,0.07,0.0,283.150055,994.0,894.0,297.15,296.15 +31600890,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.15025,994.0,894.0,297.15,296.15 +31601013,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.1512185,994.0,894.0,297.15,296.15 +31601136,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.152988,994.0,894.0,297.15,296.15 +31601259,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.155596,994.0,894.0,297.15,296.15 +31601382,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.158974,994.0,894.0,297.15,296.15 +31601505,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.1631575,994.0,894.0,297.15,296.15 +31601628,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.168128,994.0,894.0,297.15,296.15 +31601751,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.1739105,994.0,894.0,297.15,296.15 +31601874,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.180488,994.0,894.0,297.15,296.15 +31601997,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.1878655,994.0,894.0,297.15,296.15 +31602120,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.19604,994.0,894.0,297.15,296.15 +31602243,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.2050035,994.0,894.0,297.15,296.15 +31602366,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.214803,994.0,894.0,297.15,296.15 +31602489,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.22536,994.0,894.0,297.15,296.15 +31602612,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.236722,994.0,894.0,297.15,296.15 +31602735,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.248845,994.0,894.0,297.15,296.15 +31602858,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.261801,994.0,894.0,297.15,296.15 +31602981,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.2755255,994.0,894.0,297.15,296.15 +31603104,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.290056,994.0,894.0,297.15,296.15 +31603227,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.305365,994.0,894.0,297.15,296.15 +31603350,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.32147,994.0,894.0,297.15,296.15 +31603473,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.3383545,994.0,894.0,297.15,296.15 +31603596,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.356032,994.0,894.0,297.15,296.15 +31603719,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.3744905,994.0,894.0,297.15,296.15 +31603842,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.393721,994.0,894.0,297.15,296.15 +31603965,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.413725,994.0,894.0,297.15,296.15 +31604088,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.434524,994.0,894.0,297.15,296.15 +31604211,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.4561025,994.0,894.0,297.15,296.15 +31604334,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.3,0.07,0.0,283.478449,994.0,894.0,297.15,296.15 +31604457,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.5015705,994.0,894.0,297.15,296.15 +31604580,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.52545,994.0,894.0,297.15,296.15 +31604703,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.550115,994.0,894.0,297.15,296.15 +31604826,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.575546,994.0,894.0,297.15,296.15 +31604949,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.601753,994.0,894.0,297.15,296.15 +31605072,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.628718,994.0,894.0,297.15,296.15 +31605195,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.656445,994.0,894.0,297.15,296.15 +31605318,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.684936,994.0,894.0,297.15,296.15 +31605441,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.7141645,994.0,894.0,297.15,296.15 +31605564,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.744182,994.0,894.0,297.15,296.15 +31605687,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.774922,994.0,894.0,297.15,296.15 +31605810,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.806425,994.0,894.0,297.15,296.15 +31605933,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.838675,994.0,894.0,297.15,296.15 +31606056,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.871662,994.0,894.0,297.15,296.15 +31606179,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.90539,994.0,894.0,297.15,296.15 +31606302,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.939859,994.0,894.0,297.15,296.15 +31606425,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,283.975075,994.0,894.0,297.15,296.15 +31606548,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.011028,994.0,894.0,297.15,296.15 +31606671,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.04768,994.0,894.0,297.15,296.15 +31606794,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.085067,994.0,894.0,297.15,296.15 +31606917,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.1232145,994.0,894.0,297.15,296.15 +31607040,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.16205,994.0,894.0,297.15,296.15 +31607163,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.2016275,994.0,894.0,297.15,296.15 +31607286,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.24192,994.0,894.0,297.15,296.15 +31607409,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.282913,994.0,894.0,297.15,296.15 +31607532,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.324644,994.0,894.0,297.15,296.15 +31607655,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.367045,994.0,894.0,297.15,296.15 +31607778,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.410175,994.0,894.0,297.15,296.15 +31607901,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.289777747887,0.07,0.0,284.453993,994.0,894.0,297.15,296.15 +31608024,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.498514,994.0,894.0,297.15,296.15 +31608147,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.543719,994.0,894.0,297.15,296.15 +31608270,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.58962,994.0,894.0,297.15,296.15 +31608393,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.636184,994.0,894.0,297.15,296.15 +31608516,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.683444,994.0,894.0,297.15,296.15 +31608639,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.731388,994.0,894.0,297.15,296.15 +31608762,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.779988,994.0,894.0,297.15,296.15 +31608885,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.8292575,994.0,894.0,297.15,296.15 +31609008,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.879204,994.0,894.0,297.15,296.15 +31609131,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.929813,994.0,894.0,297.15,296.15 +31609254,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,284.981069,994.0,894.0,297.15,296.15 +31609377,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.032999,994.0,894.0,297.15,296.15 +31609500,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.08554,994.0,894.0,297.15,296.15 +31609623,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.1387595,994.0,894.0,297.15,296.15 +31609746,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.192619,994.0,894.0,297.15,296.15 +31609869,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.24712,994.0,894.0,297.15,296.15 +31609992,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.302252,994.0,894.0,297.15,296.15 +31610115,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.3580125,994.0,894.0,297.15,296.15 +31610238,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.414374,994.0,894.0,297.15,296.15 +31610361,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.471373,994.0,894.0,297.15,296.15 +31610484,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.528974,994.0,894.0,297.15,296.15 +31610607,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.587192,994.0,894.0,297.15,296.15 +31610730,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.646015,994.0,894.0,297.15,296.15 +31610853,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.7054525,994.0,894.0,297.15,296.15 +31610976,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.765464,994.0,894.0,297.15,296.15 +31611099,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.826065,994.0,894.0,297.15,296.15 +31611222,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.887279,994.0,894.0,297.15,296.15 +31611345,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,285.94904,994.0,894.0,297.15,296.15 +31611468,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,286.011394,994.0,894.0,297.15,296.15 +31611591,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.259807621135,0.07,0.0,286.074306,994.0,894.0,297.15,296.15 +31611714,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.137796,994.0,894.0,297.15,296.15 +31611837,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.2018635,994.0,894.0,297.15,296.15 +31611960,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.26645,994.0,894.0,297.15,296.15 +31612083,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.331619,994.0,894.0,297.15,296.15 +31612206,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.397323,994.0,894.0,297.15,296.15 +31612329,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.463555,994.0,894.0,297.15,296.15 +31612452,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.53035,994.0,894.0,297.15,296.15 +31612575,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.597665,994.0,894.0,297.15,296.15 +31612698,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.665489,994.0,894.0,297.15,296.15 +31612821,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.733851,994.0,894.0,297.15,296.15 +31612944,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.802696,994.0,894.0,297.15,296.15 +31613067,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.87208,994.0,894.0,297.15,296.15 +31613190,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,286.94196,994.0,894.0,297.15,296.15 +31613313,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.0123275,994.0,894.0,297.15,296.15 +31613436,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.083182,994.0,894.0,297.15,296.15 +31613559,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.1545315,994.0,894.0,297.15,296.15 +31613682,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.226364,994.0,894.0,297.15,296.15 +31613805,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.298665,994.0,894.0,297.15,296.15 +31613928,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.371424,994.0,894.0,297.15,296.15 +31614051,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.4446715,994.0,894.0,297.15,296.15 +31614174,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.518339,994.0,894.0,297.15,296.15 +31614297,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.5924885,994.0,894.0,297.15,296.15 +31614420,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.66705,994.0,894.0,297.15,296.15 +31614543,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.742097,994.0,894.0,297.15,296.15 +31614666,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.817536,994.0,894.0,297.15,296.15 +31614789,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.8934255,994.0,894.0,297.15,296.15 +31614912,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,287.96975,994.0,894.0,297.15,296.15 +31615035,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,288.046465,994.0,894.0,297.15,296.15 +31615158,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.212132034356,0.07,0.0,288.123589,994.0,894.0,297.15,296.15 +31615281,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.2011155,994.0,894.0,297.15,296.15 +31615404,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.27904,994.0,894.0,297.15,296.15 +31615527,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.357355,994.0,894.0,297.15,296.15 +31615650,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.43605,994.0,894.0,297.15,296.15 +31615773,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.5151165,994.0,894.0,297.15,296.15 +31615896,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.594564,994.0,894.0,297.15,296.15 +31616019,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.67437,994.0,894.0,297.15,296.15 +31616142,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.75454,994.0,894.0,297.15,296.15 +31616265,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.835045,994.0,894.0,297.15,296.15 +31616388,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.915924,994.0,894.0,297.15,296.15 +31616511,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,288.997128,994.0,894.0,297.15,296.15 +31616634,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.078658,994.0,894.0,297.15,296.15 +31616757,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.1605015,994.0,894.0,297.15,296.15 +31616880,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.24268,994.0,894.0,297.15,296.15 +31617003,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.325169,994.0,894.0,297.15,296.15 +31617126,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.40798,994.0,894.0,297.15,296.15 +31617249,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.4910945,994.0,894.0,297.15,296.15 +31617372,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.57446,994.0,894.0,297.15,296.15 +31617495,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.65815,994.0,894.0,297.15,296.15 +31617618,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.742112,994.0,894.0,297.15,296.15 +31617741,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.826333,994.0,894.0,297.15,296.15 +31617864,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.910832,994.0,894.0,297.15,296.15 +31617987,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,289.9955945,994.0,894.0,297.15,296.15 +31618110,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.080595,994.0,894.0,297.15,296.15 +31618233,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.1658365,994.0,894.0,297.15,296.15 +31618356,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.251344,994.0,894.0,297.15,296.15 +31618479,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.337049,994.0,894.0,297.15,296.15 +31618602,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.423006,994.0,894.0,297.15,296.15 +31618725,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.15,0.07,0.0,290.5091675,994.0,894.0,297.15,296.15 +31618848,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.595536,994.0,894.0,297.15,296.15 +31618971,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.682138,994.0,894.0,297.15,296.15 +31619094,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.768894,994.0,894.0,297.15,296.15 +31619217,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.8558775,994.0,894.0,297.15,296.15 +31619340,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,290.94302,994.0,894.0,297.15,296.15 +31619463,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.0303635,994.0,894.0,297.15,296.15 +31619586,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.11787,994.0,894.0,297.15,296.15 +31619709,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.20552,994.0,894.0,297.15,296.15 +31619832,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.293336,994.0,894.0,297.15,296.15 +31619955,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.3813025,994.0,894.0,297.15,296.15 +31620078,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.4694,994.0,894.0,297.15,296.15 +31620201,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.5576515,994.0,894.0,297.15,296.15 +31620324,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.64601,994.0,894.0,297.15,296.15 +31620447,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.7345265,994.0,894.0,297.15,296.15 +31620570,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.823105,994.0,894.0,297.15,296.15 +31620693,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,291.911815,994.0,894.0,297.15,296.15 +31620816,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.000638,994.0,894.0,297.15,296.15 +31620939,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.089524,994.0,894.0,297.15,296.15 +31621062,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.17851,994.0,894.0,297.15,296.15 +31621185,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.26758,994.0,894.0,297.15,296.15 +31621308,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.356722,994.0,894.0,297.15,296.15 +31621431,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.445892,994.0,894.0,297.15,296.15 +31621554,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.535165,994.0,894.0,297.15,296.15 +31621677,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.624471,994.0,894.0,297.15,296.15 +31621800,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.7138,994.0,894.0,297.15,296.15 +31621923,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.80318,994.0,894.0,297.15,296.15 +31622046,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.892601,994.0,894.0,297.15,296.15 +31622169,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,292.982006,994.0,894.0,297.15,296.15 +31622292,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,294.15,293.15,0.0,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,293.071462,994.0,894.0,297.15,296.15 diff --git a/testing/references/testcase2/advance_over_year.csv b/testing/references/testcase2/advance_over_year.csv new file mode 100644 index 000000000..3cc7ca008 --- /dev/null +++ b/testing/references/testcase2/advance_over_year.csv @@ -0,0 +1,12 @@ +keys,value +CO2RooAir_y,123.1382838102673 +PCoo_y,0.0 +PFan_y,0.8739606953892677 +PHea_y,1844.306909142125 +PPum_y,0.0 +TRooAir_y,295.1440582575692 +oveTSetRooCoo_activate,0.0 +oveTSetRooCoo_u,296.15 +oveTSetRooHea_activate,0.0 +oveTSetRooHea_u,295.15 +time,31537800.0 diff --git a/testing/references/testcase2/put_forecast_over_year.csv b/testing/references/testcase2/put_forecast_over_year.csv new file mode 100644 index 000000000..436464d81 --- /dev/null +++ b/testing/references/testcase2/put_forecast_over_year.csv @@ -0,0 +1,6 @@ +time,EmissionsBiomassPower,EmissionsDistrictHeatingPower,EmissionsElectricPower,EmissionsGasPower,EmissionsSolarThermalPower,HDifHor,HDirNor,HGloHor,HHorIR,InternalGainsCon[1],InternalGainsLat[1],InternalGainsRad[1],LowerSetp[1],Occupancy[1],PriceBiomassPower,PriceDistrictHeatingPower,PriceElectricPowerConstant,PriceElectricPowerDynamic,PriceElectricPowerHighlyDynamic,PriceGasPower,PriceSolarThermalPower,TBlaSky,TDewPoi,TDryBul,TWetBul,UpperCO2[1],UpperSetp[1],ceiHei,cloTim,lat,lon,nOpa,nTot,pAtm,relHum,solAlt,solDec,solHouAng,solTim,solZen,winDir,winSpe +31534200,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.708333333,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,-0.0776457135308,0.07,0.0,256.636351915,259.379166667,272.625,268.72819641,894.0,296.15,31452.875,31534200.0,0.693942910593,-1.83015225364,0.3875,0.775,101325.0,0.317916666667,-1.25485882436,-0.4032265228,2290.07494135,31533990.938,2.82565515116,1.82168740677,1.7675 +31536000,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,245.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,2.6470940280699998e-14,0.07,0.0,256.473613407,259.15,272.45,268.540745643,894.0,296.15,36600.0,31536000.0,0.693942910593,-1.83015225364,0.4,0.8,101325.0,0.31,-1.27976763694,-0.403200665926,2290.20580064,31535790.3823,2.85056396373,1.91986217719,2.1 +31537800,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,251.5,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0,0.07,0.0,257.868968045,266.025,273.15,270.496356538,894.0,296.15,77777.0,1800.0,0.693942910593,-1.83015225364,0.225,0.525,101325.0,0.54,-1.26316008346,-0.402859568716,-3.02402826328,1616.62641254,2.83395641025,3.44266194956,2.525 +31539600,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,253.0,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.454386802,266.55,273.15,270.675045605,894.0,296.15,77777.0,3600.0,0.693942910593,-1.83015225364,0.3,0.7,101325.0,0.57,-1.21170311874,-0.402832949277,-2.89316937192,3416.06533739,2.78249944554,3.54301838155,2.8 +31541400,0.0,0.1,0.5,0.2,0.0,0.0,0.0,0.0,254.375,19.2,9.6,28.8,295.15,0.0,0.2,0.1,0.2,0.1,0.0776457135308,0.07,0.0,258.910390202,266.957720588,273.15,270.815940601,894.0,296.15,77777.0,5400.0,0.693942910593,-1.83015225364,0.36875,0.84125,101325.0,0.59375,-1.1376691186,-0.402806275407,-2.76231047229,5215.50437585,2.70846544539,3.59319659754,3.06875 diff --git a/testing/test_data.py b/testing/test_data.py index 10bc505f4..1a194096e 100644 --- a/testing/test_data.py +++ b/testing/test_data.py @@ -290,6 +290,22 @@ def test_get_data_index(self): # Check the data retrieved with the manager df_man = pd.DataFrame(data_dict).set_index('time') self.compare_ref_timeseries_df(df_man, self.ref_data_index) + + def test_get_data_over_year(self): + '''Check that the data manager can retrieve the test case data + when an arbitrary time index across the year is provided. + + ''' + + # Define index + index = np.arange(362*24*3600, (362+7)*24*3600, 321) + + # Get the data + data_dict = self.man.get_data(index=index) + + # Check the data retrieved with the manager + df_man = pd.DataFrame(data_dict).set_index('time') + self.compare_ref_timeseries_df(df_man, self.ref_data_over_year) class DataManagerSingleZoneTest(unittest.TestCase, utilities.partialChecks, PartialDataManagerTest): @@ -321,6 +337,8 @@ def setUp(self): 'references', 'data', 'testcase2', 'tc2_data_retrieved_default.csv') self.ref_data_index = os.path.join(testing_root_dir, 'references', 'data', 'testcase2', 'tc2_data_retrieved_index.csv') + self.ref_data_over_year = os.path.join(testing_root_dir, + 'references', 'data', 'testcase2', 'tc2_data_retrieved_over_year.csv') class DataManagerMultiZoneTest(unittest.TestCase, utilities.partialChecks, PartialDataManagerTest): @@ -352,6 +370,8 @@ def setUp(self): 'references', 'data', 'testcase3', 'tc3_data_retrieved_default.csv') self.ref_data_index = os.path.join(testing_root_dir, 'references', 'data', 'testcase3', 'tc3_data_retrieved_index.csv') + self.ref_data_over_year = os.path.join(testing_root_dir, + 'references', 'data', 'testcase3', 'tc3_data_retrieved_over_year.csv') class FindDaysTest(unittest.TestCase, utilities.partialChecks): '''Tests module to find peak and typical heating and cooling diff --git a/testing/test_forecast.py b/testing/test_forecast.py index 2376516c3..e84717083 100644 --- a/testing/test_forecast.py +++ b/testing/test_forecast.py @@ -62,6 +62,24 @@ def test_get_forecast_interval(self): # Check the forecast df_forecaster = pd.DataFrame(forecast).set_index('time') self.compare_ref_timeseries_df(df_forecaster, ref_filepath) + + def test_get_forecast_over_year(self): + '''Check that the forecaster is able to retrieve the data across + the year + + ''' + self.case.initialize(364*24*3600, 0) + # Load the data into the test case + forecast = self.forecaster.get_forecast(self.forecast_points, + horizon=2*24*3600, + interval=123) + + # Set reference file path + ref_filepath = self.ref_forecast_over_year + + # Check the forecast + df_forecaster = pd.DataFrame(forecast).set_index('time') + self.compare_ref_timeseries_df(df_forecaster, ref_filepath) class ForecasterSingleZoneTest(unittest.TestCase, utilities.partialChecks, PartialForecasterTest): @@ -91,6 +109,9 @@ def setUp(self): self.ref_forecast_interval = os.path.join(utilities.get_root_path(), 'testing', 'references', 'forecast', 'testcase2', 'tc2_forecast_interval.csv') + + self.ref_forecast_over_year = os.path.join(utilities.get_root_path(), + 'testing', 'references', 'forecast', 'testcase2', 'tc2_forecast_over_year.csv') class ForecasterMultiZoneTest(unittest.TestCase, utilities.partialChecks, PartialForecasterTest): @@ -120,6 +141,9 @@ def setUp(self): self.ref_forecast_interval = os.path.join(utilities.get_root_path(), 'testing', 'references', 'forecast', 'testcase3', 'tc3_forecast_interval.csv') + + self.ref_forecast_over_year = os.path.join(utilities.get_root_path(), + 'testing', 'references', 'forecast', 'testcase3', 'tc3_forecast_over_year.csv') if __name__ == '__main__': utilities.run_tests(os.path.basename(__file__)) diff --git a/testing/test_testcase2.py b/testing/test_testcase2.py index 6c0c10223..3671a56e7 100644 --- a/testing/test_testcase2.py +++ b/testing/test_testcase2.py @@ -174,5 +174,49 @@ def setUp(self): self.measurement = 'PFan_y' self.forecast_point = 'EmissionsBiomassPower' +class SimOverYear(unittest.TestCase, utilities.partialChecks): + '''Test if testcase can simulate across the year and retrieve forecasts. + + ''' + + def setUp(self): + '''Setup for each test. + + ''' + + self.url = 'http://127.0.0.1:5000' + + def test_advance_over_year(self): + '''Tests that simulation can advance over one year. + + ''' + + # Run test + requests.put('{0}/initialize'.format(self.url), json={'start_time':365*24*3600 - 1800, 'warmup_period':0}) + y = requests.post('{0}/advance'.format(self.url), json={}).json()['payload'] + # Check trajectories + df = pd.DataFrame.from_dict(y, orient = 'index', columns=['value']) + df.index.name = 'keys' + ref_filepath = os.path.join(utilities.get_root_path(), 'testing', 'references', 'testcase2', 'advance_over_year.csv') + self.compare_ref_values_df(df, ref_filepath) + + def test_put_forecast_over_year(self): + '''Tests that forecast across the year can be retrived. + + ''' + + horizon = 7200 + interval = 1800 + # Initialize + requests.put('{0}/initialize'.format(self.url), json={'start_time':365*24*3600 - 1800, 'warmup_period':0}) + # Test case forecast + forecast_points = list(requests.get('{0}/forecast_points'.format(self.url)).json()['payload'].keys()) + forecast = requests.put('{0}/forecast'.format(self.url), json={'point_names':forecast_points, 'horizon':horizon, 'interval':interval}).json()['payload'] + df_forecaster = pd.DataFrame(forecast).set_index('time') + # Set reference file path + ref_filepath = os.path.join(utilities.get_root_path(), 'testing', 'references', 'testcase2', 'put_forecast_over_year.csv') + # Check the forecast + self.compare_ref_timeseries_df(df_forecaster, ref_filepath) + if __name__ == '__main__': utilities.run_tests(os.path.basename(__file__))