From 023fd7772149dab36ddc1c6b289445b4904de57f Mon Sep 17 00:00:00 2001 From: Angran Li Date: Tue, 3 Jun 2025 19:08:18 +0000 Subject: [PATCH] Fix unit test --- flow360/component/results/case_results.py | 20 +- .../results/surface_forces_v2.csv | 121 ++++ .../simulation.json | 602 ++++++++++++++++++ tests/test_results.py | 21 + 4 files changed, 756 insertions(+), 8 deletions(-) create mode 100644 tests/data/case-70489f25-d6b7-4a0b-81e1-2fa2e82fc57b/results/surface_forces_v2.csv create mode 100644 tests/data/case-70489f25-d6b7-4a0b-81e1-2fa2e82fc57b/simulation.json diff --git a/flow360/component/results/case_results.py b/flow360/component/results/case_results.py index 835292fef..55b2be03f 100644 --- a/flow360/component/results/case_results.py +++ b/flow360/component/results/case_results.py @@ -511,20 +511,19 @@ def include_time(self): ) params = self._get_params_method() - if isinstance(params, Flow360Params): + if isinstance(params, SimulationParams): try: - step_size = params.time_stepping.time_step_size + step_size = params.time_stepping.step_size except KeyError: raise ValueError( - "Cannot find time step size for this simulation. Check flow360.json file." + "Cannot find time step size for this simulation. Check simulation.json." ) - - elif isinstance(params, SimulationParams): + elif isinstance(params, Flow360Params): try: - step_size = params.time_stepping.step_size + step_size = params.time_stepping.time_step_size except KeyError: raise ValueError( - "Cannot find time step size for this simulation. Check simulation.json." + "Cannot find time step size for this simulation. Check flow360.json file." ) else: raise ValueError( @@ -563,7 +562,12 @@ def _pseudo_step_masks(cls, df): @classmethod def _average_last_fraction(cls, df, average_fraction): - selected_fraction = df.tail(int(len(df) * average_fraction)) + columns_filtered = [ + col + for col in df.columns + if col not in [_PSEUDO_STEP, _PHYSICAL_STEP, _TIME, _TIME_UNITS] + ] + selected_fraction = df[columns_filtered].tail(int(len(df) * average_fraction)) return selected_fraction.mean() def get_averages(self, average_fraction): diff --git a/tests/data/case-70489f25-d6b7-4a0b-81e1-2fa2e82fc57b/results/surface_forces_v2.csv b/tests/data/case-70489f25-d6b7-4a0b-81e1-2fa2e82fc57b/results/surface_forces_v2.csv new file mode 100644 index 000000000..125d434f1 --- /dev/null +++ b/tests/data/case-70489f25-d6b7-4a0b-81e1-2fa2e82fc57b/results/surface_forces_v2.csv @@ -0,0 +1,121 @@ +,physical_step,pseudo_step,rotationField/blade_CL,rotationField/blade_CD,rotationField/blade_CFx,rotationField/blade_CFy,rotationField/blade_CFz,rotationField/blade_CMx,rotationField/blade_CMy,rotationField/blade_CMz,rotationField/blade_CLPressure,rotationField/blade_CDPressure,rotationField/blade_CFxPressure,rotationField/blade_CFyPressure,rotationField/blade_CFzPressure,rotationField/blade_CMxPressure,rotationField/blade_CMyPressure,rotationField/blade_CMzPressure,rotationField/blade_CLSkinFriction,rotationField/blade_CDSkinFriction,rotationField/blade_CFxSkinFriction,rotationField/blade_CFySkinFriction,rotationField/blade_CFzSkinFriction,rotationField/blade_CMxSkinFriction,rotationField/blade_CMySkinFriction,rotationField/blade_CMzSkinFriction,rotationField/blade_2_CL,rotationField/blade_2_CD,rotationField/blade_2_CFx,rotationField/blade_2_CFy,rotationField/blade_2_CFz,rotationField/blade_2_CMx,rotationField/blade_2_CMy,rotationField/blade_2_CMz,rotationField/blade_2_CLPressure,rotationField/blade_2_CDPressure,rotationField/blade_2_CFxPressure,rotationField/blade_2_CFyPressure,rotationField/blade_2_CFzPressure,rotationField/blade_2_CMxPressure,rotationField/blade_2_CMyPressure,rotationField/blade_2_CMzPressure,rotationField/blade_2_CLSkinFriction,rotationField/blade_2_CDSkinFriction,rotationField/blade_2_CFxSkinFriction,rotationField/blade_2_CFySkinFriction,rotationField/blade_2_CFzSkinFriction,rotationField/blade_2_CMxSkinFriction,rotationField/blade_2_CMySkinFriction,rotationField/blade_2_CMzSkinFriction,rotationField/blade_3_CL,rotationField/blade_3_CD,rotationField/blade_3_CFx,rotationField/blade_3_CFy,rotationField/blade_3_CFz,rotationField/blade_3_CMx,rotationField/blade_3_CMy,rotationField/blade_3_CMz,rotationField/blade_3_CLPressure,rotationField/blade_3_CDPressure,rotationField/blade_3_CFxPressure,rotationField/blade_3_CFyPressure,rotationField/blade_3_CFzPressure,rotationField/blade_3_CMxPressure,rotationField/blade_3_CMyPressure,rotationField/blade_3_CMzPressure,rotationField/blade_3_CLSkinFriction,rotationField/blade_3_CDSkinFriction,rotationField/blade_3_CFxSkinFriction,rotationField/blade_3_CFySkinFriction,rotationField/blade_3_CFzSkinFriction,rotationField/blade_3_CMxSkinFriction,rotationField/blade_3_CMySkinFriction,rotationField/blade_3_CMzSkinFriction,time,time_units,totalCL,totalCD,totalCFx,totalCFy,totalCFz,totalCMx,totalCMy,totalCMz,totalCLPressure,totalCDPressure,totalCFxPressure,totalCFyPressure,totalCFzPressure,totalCMxPressure,totalCMyPressure,totalCMzPressure,totalCLViscous,totalCDViscous,totalCFxViscous,totalCFyViscous,totalCFzViscous,totalCMxViscous,totalCMyViscous,totalCMzViscous,totalHeatTransfer +0,120,34,9.03149072968975e-05,-0.0013422056253929,9.03149072968974e-05,0.0005737103849115,0.0013422056253929,-0.0001034911530499,-0.0011932935605534,0.0005892252061967,8.3107352011097e-05,-0.0013850773847428,8.31073520110969e-05,0.0004968515437118,0.0013850773847428,-0.0001061139713541,-0.0012195536017124,0.0005341932373061,7.20755528580058e-06,4.28717593498357e-05,7.20755528580058e-06,7.68588411997299e-05,-4.28717593498357e-05,2.62281830422717e-06,2.62600411590545e-05,5.50319688905878e-05,-0.0005420780886204,-0.0013423443768216,-0.0005420780886204,-0.0002086755674445,0.0013423443768216,0.0010852559439545,0.0005070635855567,0.0005892764905708,-0.0004719106194757,-0.0013852168365584,-0.0004719106194757,-0.0001764887263741,0.0013852168365584,0.0011093097865221,0.0005179224417305,0.0005342431346564,-7.01674691447036e-05,4.2872459736804e-05,-7.01674691447036e-05,-3.21868410703783e-05,-4.2872459736804e-05,-2.40538425676435e-05,-1.08588561738081e-05,5.50333559143862e-05,0.0004517976587783,-0.001342497427447,0.0004517976587783,-0.0003651463968964,0.001342497427447,-0.0009818571460275,0.0006864013267549,0.0005893264573936,0.0003888375024966,-0.0013853712113077,0.0003888375024966,-0.0003204730996488,0.0013853712113077,-0.0010032881478889,0.0007018031515305,0.0005342930499149,6.29601562816323e-05,4.28737838606573e-05,6.29601562816323e-05,-4.46732972475601e-05,-4.28737838606573e-05,2.1431001861416e-05,-1.54018247755902e-05,5.50334074786033e-05,0.0,s,3.447745479758825e-08,-0.0040270474296615,3.447745479747983e-08,-1.115794294000356e-07,0.0040270474296615,-9.235512289998415e-08,1.7135175820013216e-07,0.0017678281541611,3.423503199700452e-08,-0.0041556654326088995,3.42350319968961e-08,-1.1028231110005865e-07,0.0041556654326088995,-9.233272090002423e-08,1.7199154860015296e-07,0.0016027294218774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1,121,34,0.0001373670210776,-0.0013770177364413,0.0001373670210776,0.0005291799273553,0.0013770177364413,-0.00023241375631,-0.0011958904953075,0.0005758841642006,0.0001221859017089,-0.0014191516467852,0.0001221859017089,0.0004542669027841,0.0014191516467852,-0.0002377115055272,-0.0012214585345289,0.0005211354395901,1.51811193686343e-05,4.2133910343854e-05,1.51811193686343e-05,7.49130245711969e-05,-4.2133910343854e-05,5.29774921719894e-06,2.55680392214336e-05,5.47487246104847e-05,-0.0005271020823064,-0.0013772757074935,-0.0005271020823064,-0.0001456715144285,0.0013772757074935,0.0011520445812036,0.0003967276413322,0.0005759747007088,-0.0004546332524055,-0.0014194104247156,-0.0004546332524055,-0.0001213626026832,0.0014194104247156,0.0011768364970302,0.0004049238479685,0.0005212247937287,-7.24688299008772e-05,4.21347172220346e-05,-7.24688299008772e-05,-2.43089117452972e-05,-4.21347172220346e-05,-2.47919158266041e-05,-8.1962066363589e-06,5.47499069801008e-05,0.0003897080783255,-0.0013773798999581,0.0003897080783255,-0.0003836599867061,0.0013773798999581,-0.0009196639823035,0.0007993987740635,0.0005760064690966,0.0003324192488451,-0.0014195161810539,0.0003324192488451,-0.0003330538097709,0.0014195161810539,-0.0009391584332373,0.0008167714240462,0.000521255480407,5.72888294803779e-05,4.2136281095849e-05,5.72888294803779e-05,-5.06061769352566e-05,-4.2136281095849e-05,1.94944509337891e-05,-1.73726499826606e-05,5.47509886896181e-05,0.08548143772760547,s,-2.6982903299959185e-08,-0.0041316733438929,-2.6982903299959185e-08,-1.5157377929999813e-07,0.0041316733438929,-3.3157409899870795e-08,2.3592008820008756e-07,0.0017278653340060002,-2.8101851500005916e-08,-0.0042580782525547005,-2.8101851500005916e-08,-1.4950966999995822e-07,0.0042580782525547005,-3.344173429994067e-08,2.3673748580010576e-07,0.0015636157137258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,122,34,0.0001890241676735,-0.0013714408399008,0.0001890241676735,0.0005125405746711,0.0013714408399008,-0.0003590045626194,-0.0011739974006352,0.0005866650484529,0.0001660356908547,-0.001413545861444,0.0001660356908547,0.000439562672671,0.001413545861444,-0.0003669578249085,-0.0011989061686017,0.0005317626224919,2.29884768188237e-05,4.21050215431655e-05,2.29884768188237e-05,7.29779020000695e-05,-4.21050215431655e-05,7.95326228908532e-06,2.4908767966566e-05,5.49024259610075e-05,-0.0005384911910421,-0.0013716551293221,-0.0005384911910421,-9.2591742750438e-05,0.0013716551293221,0.0011963600764954,0.0002761263855017,0.0005867389205759,-0.0004637952892917,-0.0014137608780994,-0.0004637952892917,-7.60115562602545e-05,0.0014137608780994,0.0012219085848565,0.0002816931175417,0.0005318360260425,-7.46959017504125e-05,4.21057487772418e-05,-7.46959017504125e-05,-1.65801864901833e-05,-4.21057487772418e-05,-2.55485083611659e-05,-5.56673203994064e-06,5.49028945333428e-05,0.000349414965849,-0.0013717649609361,0.000349414965849,-0.00042006073615,0.0013717649609361,-0.0008373818298149,0.0008980964848367,0.0005867767286333,0.0002977059515221,-0.0014138720078432,0.0002977059515221,-0.0003636612932837,0.0014138720078432,-0.0008549773702446,0.0009174391646312,0.0005318724558759,5.17090143268887e-05,4.21070469070867e-05,5.17090143268887e-05,-5.63994428662654e-05,-4.21070469070867e-05,1.75955404297374e-05,-1.93426797945305e-05,5.490427275739e-05,0.17096287545521094,s,-5.2057519600036926e-08,-0.004114860930159,-5.2057519600036926e-08,-1.119042293380116e-07,0.004114860930159,-2.6315938900125894e-08,2.254697032001273e-07,0.0017601806976620998,-5.3646914900033846e-08,-0.0042411787473866005,-5.3646914900033846e-08,-1.101768729544852e-07,0.0042411787473866005,-2.6610296599907657e-08,2.261135712001679e-07,0.0015954711044103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3,123,34,0.0002420679319919,-0.0013823580713488,0.0002420679319919,0.0004935681352249,0.0013823580713488,-0.0004842120836244,-0.0011404651981302,0.0005930597090898,0.0002114965349118,-0.0014246119987431,0.0002114965349118,0.0004231788558917,0.0014246119987431,-0.0004947582747597,-0.001164479580453,0.000537985839664,3.05713970800804e-05,4.22539273942752e-05,3.05713970800804e-05,7.03892793332358e-05,-4.22539273942752e-05,1.05461911353326e-05,2.40143823228366e-05,5.50738694258154e-05,-0.0005484927870049,-0.0013824113352969,-0.0005484927870049,-3.7156864360338e-05,0.0013824113352969,0.0012298171011148,0.0001508988916321,0.0005930791817663,-0.0004722483928453,-0.0014246655337621,-0.0004722483928453,-2.84379072738664e-05,0.0014246655337621,0.0012558871769532,0.000153772821476,0.0005380059169854,-7.62443941595642e-05,4.22541984651258e-05,-7.62443941595642e-05,-8.71895708647154e-06,-4.22541984651258e-05,-2.60700758383818e-05,-2.87392984392802e-06,5.50732647809541e-05,0.0003064185015221,-0.0013826013774401,0.0003064185015221,-0.0004564761789352,0.0013826013774401,-0.0007456915258934,0.0009897454278202,0.0005931444972786,0.000260743582747,-0.001424856548907,0.000260743582747,-0.0003948049856198,0.001424856548907,-0.0007612157382818,0.0010108861887779,0.000538069754811,4.56749187751336e-05,4.22551714668255e-05,4.56749187751336e-05,-6.16711933153952e-05,-4.22551714668255e-05,1.55242123883328e-05,-2.11407609576859e-05,5.50747424676125e-05,0.2564443131828164,s,-6.3534909000031135e-09,-0.0041473707840858,-6.3534909000031135e-09,-6.490807063802995e-08,0.0041473707840858,-8.650840300019908e-08,1.7912132210004365e-07,0.0017792833881347002,-8.27518650001538e-09,-0.0042741340814122005,-8.27518650001538e-09,-6.403700196640997e-08,0.0042741340814122005,-8.68360883001006e-08,1.7942980089983955e-07,0.0016140615114604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4,124,34,0.0002945888722466,-0.0013947279720041,0.0002945888722466,0.0004694355158887,0.0013947279720041,-0.0006049019933743,-0.0010909258818576,0.0005960136103248,0.0002567695385809,-0.0014370940844117,0.0002567695385809,0.0004024852731058,0.0014370940844117,-0.0006179240465013,-0.0011137466176794,0.0005408514941397,3.78193336656948e-05,4.2366112407637e-05,3.78193336656948e-05,6.69502427828443e-05,-4.2366112407637e-05,1.30220531270639e-05,2.28207358216857e-05,5.5162116185027e-05,-0.0005538003716628,-0.0013946654674953,-0.0005538003716628,2.03849235416233e-05,0.0013946654674953,0.0012471704982844,2.16038686925159e-05,0.0005959936466941,-0.0004769112827357,-0.0014370315070394,-0.0004769112827357,2.11075808105874e-05,0.0014370315070394,0.00127344450519,2.17368180940208e-05,0.000540833010133,-7.68890889271309e-05,4.23660395441523e-05,-7.68890889271309e-05,-7.22657268964729e-07,-4.23660395441523e-05,-2.62740069056e-05,-1.32949401504875e-07,5.51606365610667e-05,0.0002592570704217,-0.0013949201529615,0.0002592570704217,-0.000489895365759,0.0013949201529615,-0.0006424035911034,0.0010694699381636,0.0005960790665357,0.0002201851309482,-0.0014372868910348,0.0002201851309482,-0.0004236675180154,0.0014372868910348,-0.0006556559507134,0.0010921577960829,0.000540916878601,3.90719394734971e-05,4.23667380733721e-05,3.90719394734971e-05,-6.62278477436022e-05,-4.23667380733721e-05,1.32523596099833e-05,-2.26878579193613e-05,5.51621879347488e-05,0.3419257509104219,s,4.5571005499939806e-08,-0.0041843135924609,4.5571005499939806e-08,-7.492632867671465e-08,0.0041843135924609,-1.350861932999589e-07,1.4792499851597196e-07,0.0017880863235546001,4.3386793400015684e-08,-0.0043114124824859,4.3386793400015684e-08,-7.46640990125706e-08,0.0043114124824859,-1.354920247001283e-07,1.4799649752082235e-07,0.0016226013828737002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5,125,34,0.0003452114793246,-0.0014026002797157,0.0003452114793246,0.00043989294802,0.0014026002797157,-0.0007184530019514,-0.0010256853606386,0.0005983154714056,0.0003005670496548,-0.0014450257306723,0.0003005670496548,0.0003771839110776,0.0014450257306723,-0.0007338031406169,-0.0010470389958094,0.0005431094457839,4.46444296697096e-05,4.24254509565828e-05,4.46444296697096e-05,6.27090369423747e-05,-4.24254509565828e-05,1.53501386654868e-05,2.13536351708419e-05,5.52060256216528e-05,-0.0005535302391502,-0.0014025075686693,-0.0005535302391502,7.89841694065223e-05,0.0014025075686693,0.0012474143626389,-0.0001093457754118,0.0005982844538667,-0.0004769020810013,-0.0014449327264256,-0.0004769020810013,7.16757667185771e-05,0.0014449327264256,0.0012735816820876,-0.0001119625108575,0.0005430803071308,-7.66281581489608e-05,4.24251577562175e-05,-7.66281581489608e-05,7.30840268794574e-06,-4.24251577562175e-05,-2.61673194486619e-05,2.61673544570056e-06,5.52041467358472e-05,0.0002083759010641,-0.0014027650494835,0.0002083759010641,-0.0005189917004682,0.0014027650494835,-0.0005290974762201,0.0011351600058275,0.0005983700582865,0.0001763898355154,-0.0014451909060897,0.0001763898355154,-0.0004489740728454,0.0014451909060897,-0.0005399151800029,0.0011591303778648,0.0005431644036166,3.1986065548617e-05,4.24258566061401e-05,3.19860655486169e-05,-7.00176276227727e-05,-4.24258566061401e-05,1.08177037828221e-05,-2.39703720372981e-05,5.52056546698772e-05,0.42740718863802735,s,5.714123850001089e-08,-0.0042078728978685,5.714123850001089e-08,-1.145830416777148e-07,0.0042078728978685,-1.3611553259984446e-07,1.2886977710001649e-07,0.0017949699835588,5.480416889999174e-08,-0.0043351493631876,5.480416889999174e-08,-1.1439504922294104e-07,0.0043351493631876,-1.366385322000693e-07,1.28871197900126e-07,0.0016293541565313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6,126,34,0.0003927048181173,-0.0014079139165451,0.0003927048181173,0.0004046288477466,0.0014079139165451,-0.0008236760090665,-0.0009472209941375,0.0006002567927368,0.0003417303974058,-0.0014503701338028,0.0003417303974058,0.0003468821783801,0.0014503701338028,-0.00084118450058,-0.0009668648694937,0.0005450202108296,5.09744207114723e-05,4.24562172576511e-05,5.09744207114723e-05,5.77466693664996e-05,-4.24562172576511e-05,1.75084915134231e-05,1.96438753562616e-05,5.52365819071307e-05,-0.0005467663252468,-0.0014078367058727,-0.0005467663252468,0.0001377438687355,0.0014078367058727,0.0012320785461333,-0.0002396958831307,0.0006002296833603,-0.000471270644295,-0.0014502925838388,-0.000471270644295,0.0001224724545588,0.0014502925838388,0.0012578443380942,-0.0002450366339099,0.0005449948520514,-7.54956809518094e-05,4.24558779661205e-05,-7.54956809518094e-05,1.52714141767806e-05,-4.24558779661205e-05,-2.57657919609323e-05,5.34075077920283e-06,5.52348313089643e-05,0.0001540933649128,-0.0014080376404741,0.0001540933649128,-0.0005424980907825,0.0014080376404741,-0.0004085091174193,0.0011870181211631,0.0006002976956277,0.0001295699469539,-0.0014504943337326,0.0001295699469539,-0.000469479641336,0.0014504943337326,-0.0004167669635828,0.0012120028306778,0.0005450615809516,2.45234179588763e-05,4.24566932584986e-05,2.45234179588763e-05,-7.30184494465078e-05,-4.24566932584986e-05,8.25784616342277e-06,-2.49847095147744e-05,5.5236114676145e-05,0.5128886263656328,s,3.1857783299956734e-08,-0.0042237882628919,3.1857783299956734e-08,-1.253743004000444e-07,0.0042237882628919,-1.0658035250004066e-07,1.0124389489989984e-07,0.0018007841717248,2.9700064700026278e-08,-0.0043511570513742,2.9700064700026278e-08,-1.2500839709998074e-07,0.0043511570513742,-1.0712606860006219e-07,1.0132727419989197e-07,0.0016350766438326001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7,127,34,0.0004359218591673,-0.0014119838565641,0.0004359218591673,0.0003636616249887,0.0014119838565641,-0.0009196827185293,-0.0008573948871087,0.0006016694783455,0.0003791808951907,-0.001454454226323,0.0003791808951907,0.0003115316741262,0.001454454226323,-0.00093915696823,-0.0008751090018328,0.0005464095387754,5.67409639765257e-05,4.24703697588697e-05,5.67409639765257e-05,5.21299508624907e-05,-4.24703697588697e-05,1.9474249700657e-05,1.77141147240922e-05,5.52599395700619e-05,-0.0005329364089986,-0.001411953162384,-0.0005329364089986,0.0001956635934014,0.001411953162384,0.0012023187604522,-0.0003677535920379,0.0006016569586032,-0.0004594212453662,-0.0014544232902586,-0.0004594212453662,0.0001725897096732,0.0014544232902586,0.0012273963666837,-0.0003757616086747,0.0005463982597095,-7.35151636323671e-05,4.24701278746095e-05,-7.35151636323671e-05,2.30738837281477e-05,-4.24701278746095e-05,-2.50776062314705e-05,8.00801663682161e-06,5.52586988937485e-05,9.69974065930233e-05,-0.0014120375078226,9.69974065930232e-05,-0.0005594135368843,0.0014120375078226,-0.0002826937173115,0.0012251968632464,0.0006016866085834,8.02215464564607e-05,-0.001454508382747,8.02215464564606e-05,-0.0004842095413871,0.001454508382747,-0.000288297468291,0.0012509191024932,0.0005464272700252,1.67758601365635e-05,4.24708749244218e-05,1.67758601365635e-05,-7.52039954972011e-05,-4.24708749244218e-05,5.60375097949888e-06,-2.57222392467981e-05,5.52593385581845e-05,0.5983700640932383,s,-1.7143238276691518e-08,-0.0042359745267707,-1.7143238276786385e-08,-8.831849419995656e-08,0.0042359745267707,-5.767538859989454e-08,4.838409979981452e-08,0.0018050130455321,-1.8803719039305056e-08,-0.0043633858993286,-1.8803719039413476e-08,-8.815758770002683e-08,0.0043633858993286,-5.8069837299942924e-08,4.8491985700114745e-08,0.0016392350685101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8,128,34,0.0004738769434628,-0.0014150071725204,0.0004738769434628,0.0003174592438905,0.0014150071725204,-0.0010054953941019,-0.000757533248849,0.0006026197139082,0.0004119955210918,-0.0014574791589384,0.0004119955210918,0.0002715335285404,0.0014574791589384,-0.0010267205039344,-0.000773119516069,0.0005473434575536,6.18814223709472e-05,4.24719864179806e-05,6.18814223709472e-05,4.59257153500656e-05,-4.24719864179806e-05,2.12251098324348e-05,1.55862672199556e-05,5.52762563546057e-05,-0.0005119392567053,-0.0014150427283048,-0.0005119392567053,0.0002516594254435,0.0014150427283048,0.0011587831973533,-0.0004920129567619,0.0006026284671469,-0.0004412264419985,-0.0014575145392158,-0.0004412264419985,0.0002210314844174,0.0014575145392158,0.0011828935936105,-0.0005026011945268,0.0005473529564563,-7.0712814706811e-05,4.2471810911066e-05,-7.0712814706811e-05,3.06279410261661e-05,-4.2471810911066e-05,-2.41103962571507e-05,1.0588237764947e-05,5.52755106906777e-05,3.80030632255541e-05,-0.0014150014656691,3.8003063225554e-05,-0.0005691449889046,0.0014150014656691,-0.0001532959718836,0.0012495375373097,0.0006026161275215,2.91706316961882e-05,-0.0014574738031224,2.91706316961881e-05,-0.000492591689847,0.0014574738031224,-0.0001561815162234,0.0012757120576739,0.0005473407580275,8.83243152936573e-06,4.24723374532928e-05,8.83243152936573e-06,-7.65532990575548e-05,-4.24723374532928e-05,2.88554433975525e-06,-2.6174520364158e-05,5.52753694940516e-05,0.6838515018208438,s,-5.925001694592866e-08,-0.0042450513664943,-5.92500169460303e-08,-2.6319570599992945e-08,0.0042450513664943,-8.168632199936953e-09,-8.668301200095985e-09,0.0018078643085766002,-6.02892105118075e-08,-0.0043724675012766,-6.028921051190914e-08,-2.6676889199940025e-08,0.0043724675012766,-8.426547299994133e-09,-8.652921900048974e-09,0.0016420371720374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +9,129,34,0.000505978414216,-0.0014171705615023,0.000505978414216,0.0002668308255468,0.0014171705615023,-0.0010802354620213,-0.0006489281415198,0.0006032942238561,0.0004396367045732,-0.0014596381229817,0.0004396367045732,0.0002276213026415,0.0014596381229817,-0.0011029774124571,-0.0006622130270022,0.000548006907589,6.6341709642783e-05,4.2467561479417e-05,6.6341709642783e-05,3.92095229053485e-05,-4.2467561479417e-05,2.27419504358862e-05,1.3284885482337e-05,5.52873162670836e-05,-0.0004841693078133,-0.0014172756076671,-0.0004841693078133,0.0003048091958412,0.0014172756076671,0.0011021399296588,-0.0006110659348764,0.000603325644912,-0.0004170423632242,-0.0014597430395955,-0.0004170423632242,0.0002669602318864,0.0014597430395955,0.0011250157852909,-0.0006241185022584,0.0005480386571912,-6.71269445890947e-05,4.24674319284662e-05,-6.71269445890947e-05,3.78489639547697e-05,-4.24674319284662e-05,-2.28758556320921e-05,1.30525673819183e-05,5.52869877207886e-05,-2.18905088054401e-05,-0.0014171603919724,-2.18905088054402e-05,-0.0005716195502014,0.0014171603919724,-2.18716646229041e-05,0.0012599558349938,0.0006032881130117,-2.26762147812005e-05,-0.00145962798157,-2.26762147812006e-05,-0.0004945621422634,0.00145962798157,-2.20057429774968e-05,0.0012862930959214,0.0005480020277991,7.85705975760062e-07,4.24675895976145e-05,7.85705975760064e-07,-7.70574079380493e-05,-4.24675895976145e-05,1.34078354592663e-07,-2.6337260927617e-05,5.52860852125691e-05,0.7693329395484492,s,-8.140240274011516e-08,-0.0042516065611417995,-8.140240274021342e-08,2.0471186600035107e-08,0.0042516065611417995,3.280301459591145e-08,-3.8241402400187446e-08,0.0018099079817798,-8.187343220052254e-08,-0.0043790091441472,-8.187343220062419e-08,1.9392264500044283e-08,0.0043790091441472,3.262985630332271e-08,-3.8433339200191416e-08,0.0016440475925793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +10,130,34,0.0005320822567332,-0.001418892478036,0.0005320822567332,0.0002127320523736,0.001418892478036,-0.0011432046301705,-0.0005329337374908,0.0006038675256596,0.0004620075925201,-0.0014613551549858,0.0004620075925201,0.0001806702567491,0.0014613551549858,-0.0011672133972565,-0.0005437701254823,0.0005485721915746,7.00746642130376e-05,4.24626769498186e-05,7.00746642130376e-05,3.2061795624498e-05,-4.24626769498186e-05,2.40087670860213e-05,1.08363879915383e-05,5.52953340849831e-05,-0.0004503713709171,-0.0014190430560392,-0.0004503713709171,0.0003544990272275,0.0014190430560392,0.0010331971881466,-0.0007236213659697,0.0006039141269119,-0.0003875677678682,-0.001461505636373,-0.0003875677678682,0.0003098431948633,0.001461505636373,0.0010545860669205,-0.0007389953064582,0.0005486187752619,-6.28036030489344e-05,4.2462580333854e-05,-6.28036030489344e-05,4.46558323641993e-05,-4.2462580333854e-05,-2.13888787739368e-05,1.537394048845e-05,5.5295351649991e-05,-8.17945019116269e-05,-0.0014189304378196,-8.17945019116269e-05,-0.000567195317797,0.0014189304378196,0.0001100690782537,0.0012565241103244,0.0006038762975492,-7.45236007791984e-05,-0.0014613927738563,-7.45236007791985e-05,-0.0004904792683652,0.0014613927738563,0.0001126888224288,0.0012827340106411,0.0005485823275932,-7.27090113242865e-06,4.24623360367381e-05,-7.27090113242864e-06,-7.67160494318059e-05,-4.24623360367381e-05,-2.61974417507453e-06,-2.62099003167075e-05,5.52939699560459e-05,0.8548143772760547,s,-8.361609552686887e-08,-0.0042568659718948,-8.361609552686887e-08,3.576180410006305e-08,0.0042568659718948,6.163622980001626e-08,-3.0993136100089524e-08,0.0018116579501207,-8.377612729842184e-08,-0.0043842535652151,-8.377612729853026e-08,3.418324719995942e-08,0.0043842535652151,6.149209280000554e-08,-3.142129939982634e-08,0.0016457732944297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +11,131,34,0.0005522001145827,-0.00142050495113,0.0005522001145827,0.0001560352717703,0.00142050495113,-0.0011937730645592,-0.0004108851543743,0.000604421600317,0.0004791598830615,-0.0014629643901171,0.0004791598830615,0.0001314708604422,0.0014629643901171,-0.0012187852238263,-0.0004191534318204,0.000549119888984,7.30402315211844e-05,4.24594389870722e-05,7.30402315211844e-05,2.45644113280944e-05,-4.24594389870722e-05,2.5012159267121e-05,8.26827744607696e-06,5.53017113330631e-05,-0.0004113065753994,-0.0014206571294492,-0.0004113065753994,0.0004002859941524,0.0014206571294492,0.0009527874357204,-0.0008284534515431,0.0006044694064997,-0.0003535128779431,-0.0014631164966971,-0.0003535128779431,0.000349313196506,0.0014631164966971,0.0009724540129279,-0.0008459804434704,0.0005491674644845,-5.77936974563248e-05,4.24593672479249e-05,-5.77936974563248e-05,5.09727976463993e-05,-4.24593672479249e-05,-1.96665772075851e-05,1.75269919273598e-05,5.53019420152039e-05,-0.0001409654041383,-0.0014205929104005,-0.0001409654041383,-0.0005562880341424,0.0014205929104005,0.0002410607863862,0.0012393316118141,0.0006044456851146,-0.0001257188481977,-0.001463051893523,-0.0001257188481977,-0.0004807522841001,0.001463051893523,0.0002464062182249,0.0012651263697957,0.0005491451312785,-1.52465559406007e-05,4.24589831224814e-05,-1.52465559406007e-05,-7.55357500422649e-05,-4.24589831224814e-05,-5.34543183872971e-06,-2.57947579815768e-05,5.53005538361493e-05,0.9402958150036602,s,-7.186495500004588e-08,-0.0042617549909797,-7.186495500004588e-08,3.323178030000852e-08,0.0042617549909797,7.51575474000816e-08,-6.99410329998984e-09,0.0018133366919313,-7.184307929998263e-08,-0.004389132780337201,-7.184307929998263e-08,3.177284810002446e-08,0.004389132780337201,7.500732650012618e-08,-7.505495099990184e-09,0.001647432484747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +12,132,34,0.0005662306116675,-0.0014220434205817,0.0005662306116675,9.74684128292092e-05,0.0014220434205817,-0.001231298353676,-0.0002841004291509,0.0006049347944294,0.0004910246843812,-0.0014645009328694,0.0004910246843812,8.06682830367319e-05,0.0014645009328694,-0.0012570395123157,-0.0002897093642903,0.0005496281633276,7.52059272862542e-05,4.24575122876935e-05,7.52059272862542e-05,1.68001297924785e-05,-4.24575122876935e-05,2.57411586397211e-05,5.60893513940344e-06,5.53066311018323e-05,-0.0003675683297785,-0.0014221560366882,-0.0003675683297785,0.0004417122710751,0.0014221560366882,0.0008617360549867,-0.0009243401632105,0.0006049717332738,-0.0003154156076661,-0.0014646136010518,-0.0003154156076661,0.0003849816450168,0.0014646136010518,0.0008794641663351,-0.0009438282567223,0.0005496645926327,-5.2152722112436e-05,4.24575643636412e-05,-5.2152722112436e-05,5.67306260582939e-05,-4.24575643636412e-05,-1.77281113484442e-05,1.94880935118732e-05,5.53071406411059e-05,-0.0001987128896323,-0.0014221481723181,-0.0001987128896323,-0.0005391578045195,0.0014221481723181,0.000369634600053,0.0012084572196222,0.000604965466505,-0.000175659204692,-0.0014646056051847,-0.000175659204692,-0.0004656278338403,0.0014646056051847,0.0003776476193024,0.0012335539114389,0.0005496592457163,-2.30536849402796e-05,4.24574328666227e-05,-2.30536849402796e-05,-7.35299706791748e-05,-4.24574328666226e-05,-8.0130192493189e-06,-2.5096691816759e-05,5.53062207886885e-05,1.0257772527312656,s,-5.060774329999516e-08,-0.004266347629588,-5.060774329999516e-08,2.2879384809133298e-08,0.004266347629588,7.230136369999491e-08,1.662726079997706e-08,0.0018148719942081997,-5.012797689999326e-08,-0.0043937201391059,-5.012797689999326e-08,2.2094213231909406e-08,0.0043937201391059,7.227332180002963e-08,1.6290426300014788e-08,0.0016489520016766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +13,133,34,0.0005739131295912,-0.0014233348685368,0.0005739131295912,3.76922577299662e-05,0.0014233348685368,-0.001255218919148,-0.0001539575538291,0.0006053465095928,0.0004973655165402,-0.0014657906220918,0.0004973655165402,2.88393998125279e-05,0.0014657906220918,-0.0012814065879521,-0.000156845223277,0.0005500365148847,7.65476130509593e-05,4.24557535550211e-05,7.65476130509593e-05,8.85285791743766e-06,-4.24557535550211e-05,2.61876688040488e-05,2.88766944787402e-06,5.53099947081255e-05,-0.0003196094772904,-0.0014233753703516,-0.0003196094772904,0.0004782288412362,0.0014233753703516,0.0007609596641443,-0.0010100986958837,0.0006053622396231,-0.0002736681635847,-0.0014658313910353,-0.0002736681635847,0.0004163624172738,0.0014658313910353,0.0007765544570597,-0.0010313342823936,0.0005500513893261,-4.59413137057649e-05,4.24560206837381e-05,-4.59413137057649e-05,6.18664239624019e-05,-4.24560206837382e-05,-1.55947929153335e-05,2.12355865099037e-05,5.53108502969394e-05,-0.0002543308853075,-0.0014234019784619,-0.0002543308853075,-0.0005159034171138,0.0014234019784619,0.0004943013622904,0.0011640815880636,0.0006053666000645,-0.0002237234740104,-0.0014658582859085,-0.0002237234740104,-0.0004451840749942,0.0014658582859085,0.0005048944613373,0.0011882047226637,0.0005500561160177,-3.06074112970232e-05,4.24563074466119e-05,-3.06074112970232e-05,-7.07193421196062e-05,-4.24563074466119e-05,-1.05930990468315e-05,-2.41231346000222e-05,5.53104840469041e-05,1.111258690458871,s,-2.7233006700026156e-08,-0.0042701122173503005,-2.7233006700026156e-08,1.7681852366069513e-08,0.0042701122173503005,4.210728670004261e-08,2.5338350800136952e-08,0.0018160753492804,-2.612105490002077e-08,-0.004397480299035601,-2.612105490002077e-08,1.774209212792449e-08,0.004397480299035601,4.233044490018628e-08,2.5216993099989177e-08,0.0016501440202285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +14,134,34,0.0005750346824641,-0.0014242216348808,0.0005750346824641,-2.25948591851535e-05,0.0014242216348808,-0.0012651603608827,-2.19238094063624e-05,0.0006056179573061,0.0004979847428118,-0.0014666749535895,0.0004979847428118,-2.34037232837828e-05,0.0014666749535895,-0.0012915071388265,-2.20582968500584e-05,0.0005503061002752,7.70499396523115e-05,4.24533187087368e-05,7.70499396523115e-05,8.08864098628214e-07,-4.24533187087368e-05,2.63467779438041e-05,1.34487443695841e-07,5.53118570309441e-05,-0.0002679397679182,-0.001424190890211,-0.0002679397679182,0.0005093193960769,0.001424190890211,0.0006515579328603,-0.0010846823042595,0.0006056120601036,-0.0002287133729754,-0.0014666446984204,-0.0002287133729754,0.0004429956710844,0.0014666446984204,0.0006648480324736,-0.0011074324667956,0.0005502990541657,-3.92263949428052e-05,4.24538082093562e-05,-3.92263949428052e-05,6.63237249924752e-05,-4.24538082093562e-05,-1.32900996133192e-05,2.27501625361182e-05,5.53130059379769e-05,-0.0003071075686842,-0.0014242284130993,-0.0003071075686842,-0.0004867061552622,0.0014242284130993,0.0006135998763548,0.0011066337216644,0.0006056201655951,-0.0002692821945212,-0.001466682973455,-0.0002692821945212,-0.000419572769442,0.001466682973455,0.000626657083661,0.0011295184313141,0.0005503069902512,-3.78253741630297e-05,4.24545603557379e-05,-3.78253741630297e-05,-6.71333858201965e-05,-4.24545603557379e-05,-1.30572073062551e-05,-2.28847096496863e-05,5.5313175343929e-05,1.1967401281864767,s,-1.2654138299976903e-08,-0.004272640938191101,-1.2654138299976903e-08,1.838162954644453e-08,0.004272640938191101,-2.5516676000880006e-09,2.7607998537683767e-08,0.0018168501830048,-1.0824684800044785e-08,-0.0044000026254649004,-1.0824684800044785e-08,1.917835861712895e-08,0.0044000026254649004,-2.0226919001482477e-09,2.7667668441684265e-08,0.0016509121446921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +15,135,34,0.0005695604602323,-0.0014246529910869,0.0005695604602323,-8.26579516420535e-05,0.0014246529910869,-0.001260961790261,0.0001104751265183,0.0006057419802092,0.0004928530503785,-0.0014671030791694,0.0004928530503785,-7.5414141450727e-05,0.0014671030791694,-0.0012871786705006,0.0001130954137959,0.0005504293852853,7.67074098537788e-05,4.24500880824522e-05,7.67074098537788e-05,-7.24381019132221e-06,-4.24500880824522e-05,2.62168802395825e-05,-2.62028727764157e-06,5.53125949239399e-05,-0.0002131839488236,-0.0014245977202935,-0.0002131839488236,0.0005346078504632,0.0014245977202935,0.0005347895297942,-0.0011472208590243,0.0006057291480554,-0.0001811027138122,-0.0014670484879675,-0.0001811027138122,0.0004645541921566,0.0014670484879675,0.0005456289887635,-0.0011712360569763,0.00055041534461,-3.20812350113947e-05,4.24507676739874e-05,-3.20812350113947e-05,7.00536583067065e-05,-4.24507676739874e-05,-1.0839458969329e-05,2.40151979520358e-05,5.53138034453747e-05,-0.0003563970252158,-0.0014246325585357,-0.0003563970252158,-0.000451923570949,0.0014246325585357,0.0007261474134681,0.0010367766731979,0.0006057374649562,-0.0003117685292492,-0.0014670843975846,-0.0003117685292492,-0.000389112618203,0.0014670843975846,0.0007415256121945,0.0010581717323147,0.0005504230580716,-4.46284959665784e-05,4.24518390489046e-05,-4.46284959665784e-05,-6.2810952746024e-05,-4.24518390489046e-05,-1.53781987264657e-05,-2.13950591167995e-05,5.53144068846552e-05,1.282221565914082,s,-2.05138071000463e-08,-0.0042738832699161,-2.05138071000463e-08,2.6327872146454916e-08,0.0042738832699161,-2.4846998699962382e-08,3.0940691900065154e-08,0.0018172085932208,-1.8192682900029702e-08,-0.0044012359647215005,-1.8192682900029702e-08,2.7432502872971106e-08,0.0044012359647215005,-2.4069542600029838e-08,3.108913430014716e-08,0.0016512677879669002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +16,136,34,0.0005575992093797,-0.0014246430500002,0.0005575992093797,-0.0001417723132858,0.0014246430500002,-0.0012426562524309,0.0002416973811849,0.0006057246480117,0.0004820747732677,-0.0014670896924435,0.0004820747732677,-0.0001265552380731,0.0014670896924435,-0.0012684559489348,0.0002470438028208,0.0005504119429163,7.552443611206e-05,4.24466424433134e-05,7.552443611206e-05,-1.52170752127122e-05,-4.24466424433134e-05,2.57996965038262e-05,-5.34642163597436e-06,5.53127050954263e-05,-0.0001560210433781,-0.0014246395459018,-0.0001560210433781,0.0005538388697024,0.0014246395459018,0.0004120083057766,-0.0011970018730871,0.0006057291417383,-0.0001314366555453,-0.001467086848796,-0.0001314366555453,0.0004808230773934,0.001467086848796,0.0004202782028048,-0.0012220188270551,0.0005504154469501,-2.45843878327751e-05,4.24473028942037e-05,-2.45843878327751e-05,7.30157923090428e-05,-4.24473028942037e-05,-8.26989702826835e-06,2.5016953968023e-05,5.53136947881177e-05,-0.0004016324649638,-0.001424663488723,-0.0004016324649638,-0.0004120251872645,0.001424663488723,0.0008306490223098,0.0009553291649083,0.0006057353592907,-0.0003506901417536,-0.0014671119247494,-0.0003506901417536,-0.0003542253826132,0.0014671119247494,0.0008481796283341,0.000974999838823,0.0005504208354739,-5.09423232101942e-05,4.24484360263743e-05,-5.09423232101942e-05,-5.77998046512287e-05,-4.24484360263743e-05,-1.75306060242514e-05,-1.9670673914691e-05,5.53145238167758e-05,1.3677030036416875,s,-5.4298962200030956e-08,-0.004273946084625,-5.4298962200030956e-08,4.136915209999653e-08,0.004273946084625,1.075655500001188e-09,2.4673006099903798e-08,0.0018171891490407002,-5.202403119999562e-08,-0.0044012884659889,-5.202403119999562e-08,4.245670709999202e-08,0.0044012884659889,1.8822040999356623e-09,2.4814588700039844e-08,0.0016512482253403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +17,137,34,0.0005393653801836,-0.0014242470068711,0.0005393653801836,-0.0001992341249148,0.0014242470068711,-0.0012104651508936,0.000370216243539,0.0006055807497048,0.0004658507284364,-0.0014666905044639,0.0004658507284364,-0.000176210612809,0.0014666905044639,-0.0012355651319565,0.0003782303436611,0.0005502682097108,7.35146517472516e-05,4.24434975927896e-05,7.35146517472516e-05,-2.30235121058306e-05,-4.24434975927896e-05,2.50999810629674e-05,-8.01410012213175e-06,5.53125399940542e-05,-9.71453895404191e-05,-0.0014243248129742,-9.71453895404191e-05,0.000566821765211,0.0014243248129742,0.0002846244242506,-0.001233430306418,0.0006056102221998,-8.0326725168148e-05,-0.0014667686154435,-8.03267251681481e-05,0.0004916438903316,0.0014667686154435,0.0002902340659903,-0.0012591748433721,0.0005502973456468,-1.68186643722705e-05,4.24438024693207e-05,-1.68186643722705e-05,7.51778748794819e-05,-4.24438024693207e-05,-5.60964173973369e-06,2.57445369540379e-05,5.53128765529792e-05,-0.0004423050150634,-0.0014243381972843,-0.0004423050150634,-0.0003675263433182,0.0014243381972843,0.0009258871872057,0.0008632207769433,0.0006056150402624,-0.0003856072160259,-0.0014667830688259,-0.0003856072160259,-0.0003153707516239,0.0014667830688259,0.0009453781030173,0.0008809514090574,0.0005503011186255,-5.6697799037594e-05,4.24448715415557e-05,-5.6697799037594e-05,-5.21555916942554e-05,-4.24448715415557e-05,-1.94909158116477e-05,-1.77306321141535e-05,5.53139216368541e-05,1.453184441369293,s,-8.502442021913938e-08,-0.0042729100171296,-8.502442021913938e-08,6.129697800001058e-08,0.0042729100171296,4.646056270003057e-08,6.714064300079696e-09,0.0018168060121669998,-8.32127576480394e-08,-0.0044002421887333,-8.321275764814782e-08,6.25258987000765e-08,0.0044002421887333,4.703705109979951e-08,6.9093463999237575e-09,0.0016508666739831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +18,138,34,0.0005151236239725,-0.0014235082857356,0.0005151236239725,-0.0002543765624812,0.0014235082857356,-0.0011647728978258,0.0004945422005341,0.000605320303006,0.0004444233678043,-0.0014659489488455,0.0004444233678043,-0.0002237992589892,0.0014659489488455,-0.0011888981920386,0.0005051363155649,0.0005500082521506,7.07002561682315e-05,4.2440663109839e-05,7.07002561682315e-05,-3.05773034919613e-05,-4.2440663109839e-05,2.41252942127713e-05,-1.05941150308375e-05,5.53120508553402e-05,-3.72680907514392e-05,-0.0014236489905975,-3.72680907514393e-05,0.0005734248667178,0.0014236489905975,0.0001541099969127,-0.0012560648168301,0.0006053682507614,-2.83985455441113e-05,-0.0014660894800084,-2.83985455441114e-05,0.0004969082967016,0.0014660894800084,0.0001569978721757,-0.0012822549042661,0.0005500566321693,-8.869545207328e-06,4.24404894108611e-05,-8.869545207328e-06,7.6516570016171e-05,-4.24404894108611e-05,-2.88787526296192e-06,2.61900874360642e-05,5.53116185921082e-05,-0.0004779530324178,-0.0014236528872786,-0.0004779530324178,-0.0003189735655086,0.0014236528872786,0.0010107431755916,0.0007615049711987,0.000605371588514,-0.0004161210570185,-0.0014660943889515,-0.0004161210570185,-0.0002730327735328,0.0014660943889515,0.0010319809350826,0.0007771012775324,0.0005500586568116,-6.18319753993086e-05,4.24415016729618e-05,-6.18319753993085e-05,-4.59407919757258e-05,-4.24415016729618e-05,-2.12377594909975e-05,-1.55963063337338e-05,5.53129317024416e-05,1.5386658790968983,s,-9.749919673918486e-08,-0.0042708101636117005,-9.749919673929328e-08,7.473872799996801e-08,0.0042708101636117005,8.027467849995584e-08,-1.7645097299956447e-08,0.0018160601422814002,-9.623475831130844e-08,-0.0043981328178054,-9.623475831141686e-08,7.626417960002055e-08,0.0043981328178054,8.061521970001255e-08,-1.731116879987067e-08,0.0016501235411315002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +19,139,34,0.0004851898066865,-0.0014224800135428,0.0004851898066865,-0.0003065704104312,0.0014224800135428,-0.0011061472621182,0.0006132534317006,0.0006049616874119,0.0004180775297007,-0.0014649181379008,0.0004180775297007,-0.0002687747988429,0.0014649181379008,-0.0011290335955098,0.0006263116709923,0.000549650252662,6.71122769857915e-05,4.243812435793e-05,6.71122769857914e-05,-3.77956115883175e-05,-4.24381243579299e-05,2.28863333915242e-05,-1.30582392916676e-05,5.53114347498469e-05,2.29031136954292e-05,-0.0014226344473758,2.29031136954291e-05,0.0005735964690535,0.0014226344473758,2.19826955770903e-05,-0.0012646607247204,0.0006050119829057,2.37274775436752e-05,-0.0014650718747305,2.37274775436752e-05,0.0004965789400656,0.0014650718747305,2.21171037576916e-05,-0.0012910095615958,0.0005497017120376,-8.24363848245157e-07,4.24374273546046e-05,-8.24363848245154e-07,7.7017528987875e-05,-4.24374273546046e-05,-1.34408180601643e-07,2.63488368754004e-05,5.53102708681122e-05,-0.0005081798772426,-0.0014226298246418,-0.0005081798772426,-0.0002669496475813,0.0014226298246418,0.0010842467574557,0.00065137356944,0.0006050134237921,-0.000441891147896,-0.0014650683006125,-0.000441891147896,-0.0002277257768754,0.0014650683006125,0.0011069988582168,0.0006646646903239,0.0005497015957822,-6.62887293465659e-05,4.24384759706938e-05,-6.62887293465659e-05,-3.92238707058263e-05,-4.24384759706938e-05,-2.27521007610627e-05,-1.32911208838948e-05,5.53118280099396e-05,1.624147316824504,s,-8.695686067072047e-08,-0.0042677442855604,-8.695686067082889e-08,7.641104100001477e-08,0.0042677442855604,8.219091459033337e-08,-3.3723579799895854e-08,0.0018149870941097002,-8.614065162478599e-08,-0.0043950583132438,-8.614065162478599e-08,7.836434730006006e-08,0.0043950583132438,8.236646469148186e-08,-3.3200279599956625e-08,0.0016490535604818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +20,140,34,0.0004499368303383,-0.0014212297641719,0.0004499368303383,-0.000355239687102,0.0014212297641719,-0.0010353205966988,0.0007250215102572,0.000604529801844,0.0003871467584924,-0.001463665523718,0.0003871467584924,-0.0003106402909138,0.001463665523718,-0.0010567172541365,0.000740401019437,0.0005492189337698,6.27900718459146e-05,4.24357595460907e-05,6.27900718459146e-05,-4.45993961882672e-05,-4.24357595460907e-05,2.13966574377538e-05,-1.53795091798378e-05,5.5310868074123e-05,8.26805295351814e-05,-0.0014213504305683,8.26805295351813e-05,0.000567376621307,0.0014213504305683,-0.0001102310983341,-0.0012591859799347,0.0006045675527649,7.54518163863624e-05,-0.0014637850412073,7.54518163863623e-05,0.0004907009846591,0.0014637850412073,-0.0001128517395085,-0.0012854051127173,0.0005492582950946,7.22871314881985e-06,4.24346106389925e-05,7.22871314881986e-06,7.66756366478969e-05,-4.24346106389924e-05,2.62064117439592e-06,2.62191327825375e-05,5.53092576702895e-05,-0.0005326796004081,-0.0014213428783822,-0.0005326796004081,-0.0002120710349217,0.0014213428783822,0.0011456107540961,0.0005341341026109,0.0006045682538682,-0.0004626601845328,-0.0014637787210813,-0.0004626601845328,-0.0001799925414889,0.0014637787210813,0.0011696281692056,0.0005449744143153,0.0005492574162364,-7.00194158753555e-05,4.24358426990976e-05,-7.00194158753555e-05,-3.20784934327996e-05,-4.24358426990976e-05,-2.40174151095199e-05,-1.08403117043908e-05,5.5310837631731e-05,1.7096287545521094,s,-6.224053461848216e-08,-0.0042639230731224,-6.224053461859058e-08,6.589928329994678e-08,0.0042639230731224,5.905906320003047e-08,-3.036706659991905e-08,0.0018136656084771002,-6.160965403757867e-08,-0.0043912292860066,-6.160965403768709e-08,6.815225639999274e-08,0.0043912292860066,5.9175560600081833e-08,-2.9678965000022595e-08,0.0016477346451008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +21,141,34,0.0004098038655698,-0.0014198500708621,0.0004098038655698,-0.0003998729410842,0.0014198500708621,-0.0009531703453333,0.0008286327421456,0.000604057006808,0.0003520229510607,-0.0014622835128819,0.0003520229510607,-0.0003489586409014,0.0014622835128819,-0.0009728428892238,0.0008461652489572,0.0005487465167069,5.77809145090091e-05,4.24334420197288e-05,5.77809145090091e-05,-5.09143001827764e-05,-4.24334420197288e-05,1.96725438905208e-05,-1.75325068116542e-05,5.53104901011247e-05,0.0001414035768053,-0.0014199082231945,0.0001414035768053,0.0005548967583704,0.0014199082231945,-0.0002410348411374,-0.0012398075744195,0.0006040735311869,0.0001262016146339,-0.0014623404168293,0.0001262016146339,0.0004794018382606,0.0014623404168293,-0.0002463820159084,-0.0012656100762697,0.0005487646295875,1.52019621714172e-05,4.24321936347625e-05,1.52019621714172e-05,7.54949201097546e-05,-4.24321936347625e-05,5.34717477091711e-06,2.58025018502124e-05,5.53089015993691e-05,-0.0005512438512114,-0.0014199146093027,-0.0005512438512114,-0.0001549813466293,0.0014199146093027,0.0011942390937044,0.0004111681065184,0.0006040791837333,-0.0004782603911296,-0.0014623481971658,-0.0004782603911296,-0.00013039857527,0.0014623481971658,0.0012192589691542,0.0004194387834363,0.0005487689731369,-7.29834600817161e-05,4.24335878630738e-05,-7.29834600817161e-05,-2.45827713592878e-05,-4.24335878630738e-05,-2.50198754498629e-05,-8.27067691785446e-06,5.53102105963899e-05,1.7951101922797148,s,-3.640883629990859e-08,-0.0042596729033593005,-3.640883629990859e-08,4.247065690004734e-08,0.0042596729033593005,3.3907233700034706e-08,-6.725755499900014e-09,0.0018122097217282,-3.582543500003704e-08,-0.004386972126877,-3.582543500003704e-08,4.4622089199992465e-08,0.004386972126877,3.406402200004273e-08,-6.0438762001309605e-09,0.0016462801194312999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +22,142,34,0.0003652861303754,-0.0014184443615139,0.0003652861303754,-0.0004400252679888,0.0014184443615139,-0.0008606856898936,0.000922993800589,0.0006035766085494,0.0003131465865831,-0.0014608754242764,0.0003131465865831,-0.0003833539720368,0.0014608754242764,-0.0008784185055353,0.000942487427113,0.0005482662438199,5.2139543792298e-05,4.24310627625099e-05,5.2139543792298e-05,-5.66712959519537e-05,-4.24310627625099e-05,1.77328156416666e-05,-1.94936265240122e-05,5.53103647294228e-05,0.0001984384720785,-0.0014184555822322,0.0001984384720785,0.00053638743987,0.0014184555822322,-0.0003689899740356,-0.0012068659794089,0.000603577995632,0.0001754300653893,-0.0014608857158473,0.0001754300653893,0.0004628991509263,0.0014608857158473,-0.0003770053883112,-0.0012319694252735,0.0005482687434433,2.3008406689165e-05,4.24301336151297e-05,2.3008406689165e-05,7.34882889436914e-05,-4.24301336151297e-05,8.01541427557673e-06,2.51034458646495e-05,5.5309252188721e-05,-0.0005637435829982,-0.0014184702488599,-0.0005637435829982,-9.63353635030396e-05,0.0014184702488599,0.0012296910429024,0.0002838836510024,0.0006035854389643,-0.0004885953362037,-0.0014609016737431,-0.0004885953362037,-7.95166453224652e-05,0.0014609016737431,0.0012554394046128,0.0002894939139234,0.0005482756062448,-7.51482467944739e-05,4.24314248832201e-05,-7.51482467944739e-05,-1.6818718180575e-05,-4.24314248832201e-05,-2.57483617104402e-05,-5.61026292098447e-06,5.53098327194734e-05,1.8805916300073204,s,-1.8980544300010484e-08,-0.004255370192606,-1.8980544300010484e-08,2.6808378160325555e-08,0.004255370192606,1.537897319995457e-08,1.1472182500033099e-08,0.0018107400431457,-1.868423129994072e-08,-0.0043826628138668,-1.868423129994072e-08,2.853356703478693e-08,0.0043826628138668,1.5510766300042347e-08,1.1915762899929357e-08,0.001644810593508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +23,143,34,0.0003169119508857,-0.0014171080775236,0.0003169119508857,-0.0004753129861477,0.0014171080775236,-0.0007589421751903,0.001007130669647,0.0006031177946957,0.0002709843031794,-0.0014595365819403,0.0002709843031794,-0.0004135055970805,0.0014595365819403,-0.0007745408228937,0.0010283719972258,0.0005478073077271,4.59276477063267e-05,4.24285044166842e-05,4.59276477063267e-05,-6.18073890672572e-05,-4.24285044166842e-05,1.55986477033724e-05,-2.12413275787496e-05,5.53104869686222e-05,0.0002531912339696,-0.0014170989907968,0.0002531912339696,0.0005121200697917,0.0014170989907968,-0.0004927210409705,-0.0011608107301304,0.0006031124567626,0.000222628727677,-0.0014595270139829,0.000222628727677,0.0004414427912112,0.0014595270139829,-0.0005033171430956,-0.0011849400206891,0.0005478025585573,3.05625062925476e-05,4.24280231860839e-05,3.05625062925476e-05,7.06772785804579e-05,-4.24280231860839e-05,1.05961021250972e-05,2.41292905586376e-05,5.53098982053092e-05,-0.0005701106473223,-0.001417114234244,-0.0005701106473223,-3.67887297517733e-05,0.001417114234244,0.0012516685188721,0.0001536991151798,0.0006031192590349,-0.0004936206027,-0.0014595432590278,-0.0004936206027,-2.79175990246804e-05,0.0014595432590278,0.0012778632782194,0.000156587283646,0.0005478096027569,-7.64900446223828e-05,4.24290247837746e-05,-7.64900446223828e-05,-8.87113072709331e-06,-4.24290247837746e-05,-2.6194759347281e-05,-2.8881684661975e-06,5.53096562780134e-05,1.9660730677349258,s,-7.462467000026937e-09,-0.0042513213025643995,-7.462467000026937e-09,1.835389222671317e-08,0.0042513213025643995,5.302711300224014e-09,1.9054696400025222e-08,0.0018093495104931998,-7.571843600034933e-09,-0.004378606854951,-7.571843600034933e-09,1.9595106019626202e-08,0.004378606854951,5.312230099818044e-09,1.926018269995727e-08,0.0016434194690413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +24,144,34,0.0002652215482545,-0.0014159061497524,0.0002652215482545,-0.0005053988841829,0.0014159061497524,-0.000649083587684,0.0010801835333707,0.0006027005332701,0.0002260083558725,-0.0014583318023562,0.0002260083558725,-0.0004391326388469,0.0014583318023562,-0.0006623769546429,0.0011029399191747,0.0005473897377146,3.92131923820663e-05,4.24256526038242e-05,3.92131923820662e-05,-6.62662453359448e-05,-4.24256526038242e-05,1.32933669589198e-05,-2.27563858040183e-05,5.53107955554527e-05,0.0003050948704815,-0.0014158963269837,0.0003050948704815,0.0004823922683728,0.0014158963269837,-0.0006109141300243,-0.0011021972239295,0.0006026945035223,0.0002673134044502,-0.0014583219579576,0.0002673134044502,0.0004152998337182,0.0014583219579576,-0.0006239750334558,-0.0011250877986813,0.0005473838339796,3.77814660313122e-05,4.24256309738164e-05,3.77814660313122e-05,6.70924346546326e-05,-4.24256309738164e-05,1.30609034314466e-05,2.28905747518197e-05,5.53106695427229e-05,-0.0005703175358396,-0.0014159049630477,-0.0005703175358396,2.30205024772843e-05,0.0014159049630477,0.0012599977803934,2.20320819430124e-05,0.0006026988991922,-0.0004933234569028,-0.0014583311098675,-0.0004933234569028,2.38474759529815e-05,0.0014583311098675,0.0012863518671671,2.21663009813635e-05,0.0005473892007352,-7.69940789368189e-05,4.24261468198167e-05,-7.69940789368189e-05,-8.2697347569751e-07,-4.24261468198167e-05,-2.6354086773766e-05,-1.34219038350872e-07,5.53096984570049e-05,2.0515545054625313,s,-1.117103599944727e-09,-0.0042477074397837995,-1.117103599944727e-09,1.3886667184333858e-08,0.0042477074397837995,6.268509994931948e-11,1.8391384212388203e-08,0.0018080939359846,-1.6965801000407357e-09,-0.0043749848701813,-1.6965801000407357e-09,1.4670824281516571e-08,0.0043749848701813,-1.2093159980353096e-10,1.8421474763434477e-08,0.0016421627724294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +25,145,34,0.0002107623030601,-0.0014148623853856,0.0002107623030601,-0.000529982894594,0.0014148623853856,-0.0005323124317237,0.0011414016981978,0.0006023328347073,0.0001786926342238,-0.0014572848685982,0.0001786926342238,-0.0004599840178911,0.0014572848685982,-0.0005431546465569,0.0011654238264349,0.0005470216437446,3.2069668836322e-05,4.24224832126185e-05,3.2069668836322e-05,-6.99988767029369e-05,-4.24224832126185e-05,1.0842214833167e-05,-2.40221282370461e-05,5.53111909627363e-05,0.000353612417649,-0.0014148565626456,0.000353612417649,0.0004475220998808,0.0014148565626456,-0.000722316028382,-0.0010316826997502,0.0006023280981223,0.0003090263725609,-0.0014572792593236,0.0003090263725609,0.0003847493400997,0.0014572792593236,-0.0007376987532818,-0.0010530834902873,0.000547016680595,4.45860450881228e-05,4.24226966780442e-05,4.45860450881228e-05,6.27727597811439e-05,-4.24226966780442e-05,1.53827248998219e-05,2.14007905370572e-05,5.53114175272964e-05,-0.0005643714497215,-0.001414854566912,-0.0005643714497215,8.24717442760118e-05,0.001414854566912,0.0012546240548413,-0.0001097027683211,0.0006023289034743,-0.000487716660496,-0.0014572772653605,-0.000487716660496,7.524614876854e-05,0.0014572772653605,0.0012808486199296,-0.0001123241490962,0.0005470188579551,-7.66547892254745e-05,4.24226984485135e-05,-7.66547892254745e-05,7.22559550747245e-06,-4.24226984485135e-05,-2.62245650882708e-05,2.62138077510649e-06,5.5310045519129e-05,2.1370359431901367,s,3.2709876000283286e-09,-0.0042445735149432,3.2709876000283286e-09,1.0949562811744047e-08,0.0042445735149432,-4.405264399792719e-09,1.6230126499963064e-08,0.0018069898363039,2.3462887000576423e-09,-0.0043718413932823,2.3462887000576423e-09,1.1470977140029667e-08,0.0043718413932823,-4.779909100038199e-09,1.6187051400038928e-08,0.0016410571822947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +26,146,34,0.0001541032875689,-0.0014139744263842,0.0001541032875689,-0.0005488098490611,0.0014139744263842,-0.0004098896051911,0.0011901491223583,0.0006020155055171,0.0001295280279114,-0.001456393428511,0.0001295280279114,-0.0004758454913281,0.001456393428511,-0.000418161673383,0.0012151737716732,0.0005467038526593,2.45752596574995e-05,4.24190021268392e-05,2.45752596574995e-05,-7.29643577329575e-05,-4.24190021268392e-05,8.27206819186415e-06,-2.50246493149028e-05,5.53116528578071e-05,0.0003982393899667,-0.0014139671203871,0.0003982393899667,0.0004078695435367,0.0014139671203871,-0.0008257410887466,-0.0009500345394622,0.000602010524535,0.0003473378452545,-0.0014563862186296,0.0003473378452545,0.0003501041475423,0.0014563862186296,-0.0008432771325683,-0.0009697107870632,0.0005466984750715,5.09015447121503e-05,4.24190982423917e-05,5.09015447121503e-05,5.77653959944876e-05,-4.24190982423916e-05,1.75360438216284e-05,1.96762476010238e-05,5.53120494635817e-05,-0.0005523303180273,-0.0014139497561557,-0.0005523303180273,0.0001409494380629,0.0014139497561557,0.0012356182690435,-0.0002400947938752,0.0006020057070135,-0.0004768544251985,-0.0014563686426577,-0.0004768544251985,0.0001257508451624,0.0014563686426577,0.001261425970921,-0.0002454432147685,0.0005466949548571,-7.54758928287674e-05,4.24188865019722e-05,-7.54758928287674e-05,1.5198592900519e-05,-4.24188865019722e-05,-2.58077018774881e-05,5.34842089332184e-06,5.53107521564282e-05,2.222517380917742,s,1.2359508300054806e-08,-0.004241891302927,1.2359508300054806e-08,9.132538500010879e-09,0.004241891302927,-1.2424894200091172e-08,1.9789020900022256e-08,0.0018060317370656,1.1447967399947408e-08,-0.0043691482897983,1.1447967399947408e-08,9.501376599965706e-09,0.0043691482897983,-1.2835030300086328e-08,1.97698414998752e-08,0.0016400972825879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +27,147,34,9.5837431490053e-05,-0.0014132158394834,9.58374314900529e-05,-0.0005616786704487,0.0014132158394834,-0.0002831264774826,0.0012258973028456,0.0006017393173607,7.90252390766044e-05,-0.0014556308715717,7.90252390766043e-05,-0.0004865488302648,0.0014556308715717,-0.0002887375672385,0.0012516501403594,0.0005464274028216,1.68121924134479e-05,4.24150320883283e-05,1.68121924134479e-05,-7.51298401839538e-05,-4.24150320883283e-05,5.61108975590528e-06,-2.57528375138351e-05,5.53119145391196e-05,0.0004385120759344,-0.0014132131619756,0.0004385120759344,0.0003638501058268,0.0014132131619756,-0.0009200828216569,-0.0008581330698509,0.0006017369571933,0.000381853405946,-0.001455628050112,0.000381853405946,0.0003117249204846,0.001455628050112,-0.0009395800242179,-0.0008758689411188,0.0005464244467003,5.66586699884297e-05,4.24148881363667e-05,5.66586699884297e-05,5.21251853421976e-05,-4.24148881363667e-05,1.94972025609523e-05,1.77358712679052e-05,5.53125104930439e-05,-0.0005343356562993,-0.0014131907136939,-0.0005343356562993,0.0001978397258143,0.0014131907136939,0.0012031975849924,-0.0003677468444036,0.0006017298075705,-0.0004608654050363,-0.0014556055578691,-0.0004608654050363,0.0001748350251987,0.0014556055578691,0.0012283056582281,-0.000375763873034,0.0005464180850345,-7.34702512629963e-05,4.24148441751941e-05,-7.34702512629963e-05,2.30047006155945e-05,-4.24148441751941e-05,-2.5108073235613e-05,8.01702863039026e-06,5.53117225359828e-05,2.3079988186453475,s,1.3851125152983083e-08,-0.0042396197151529,1.3851125152874663e-08,1.1161192400041629e-08,0.0042396197151529,-1.1714147099810973e-08,1.7388591100049675e-08,0.0018052060821245,1.3239986304417004e-08,-0.0043668644795528,1.3239986304308584e-08,1.1115418499990431e-08,0.0043668644795528,-1.193322830004076e-08,1.7326206600085797e-08,0.0016392699345564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +28,148,34,3.65843536111308e-05,-0.0014125680257984,3.65843536111307e-05,-0.0005684548514747,0.0014125680257984,-0.0001533884358416,0.0012482573102587,0.0006014981149019,2.77188509300871e-05,-0.0014549784981925,2.7718850930087e-05,-0.0004919832791112,0.0014549784981925,-0.0001562769266649,0.0012744559697001,0.0005461862004881,8.86550268104467e-06,4.24104723941012e-05,8.86550268104468e-06,-7.64715723635601e-05,-4.24104723941012e-05,2.8884908232212e-06,-2.6198659441433e-05,5.5311914413807e-05,0.0004740078703417,-0.001412574044882,0.0004740078703417,0.0003159268301478,0.001412574044882,-0.0010043223171727,-0.0007569639883998,0.0006014999042648,0.0004122135681404,-0.0014549842352759,0.0004122135681404,0.0002700128124007,0.0014549842352759,-0.0010255669890102,-0.0007725649581414,0.0005461871148939,6.17943022013063e-05,4.24101903939083e-05,6.17943022013063e-05,4.59140177471e-05,-4.24101903939083e-05,2.12446718375191e-05,1.56009697415914e-05,5.53127893709033e-05,-0.000510583011002,-0.001412559414527,-0.000510583011002,0.0002525451720373,0.001412559414527,0.0011577049458708,-0.0004912850983611,0.0006014938319514,-0.0004399234237297,-0.0014549698501575,-0.0004399234237297,0.0002219870210827,0.0014549698501575,0.0011818380828936,-0.0005018829921327,0.0005461812910545,-7.06595872723122e-05,4.24104356304652e-05,-7.06595872723122e-05,3.05581509545394e-05,-4.24104356304652e-05,-2.4133137022828e-05,1.05978937716107e-05,5.53125408969647e-05,2.3934802563729534,s,9.212950830830499e-09,-0.0042377014852074,9.212950830722079e-09,1.7150710399994103e-08,0.0042377014852074,-5.80714350001052e-09,8.223497800037213e-09,0.0018044918511181,8.995340787130643e-09,-0.0043649325836258995,8.995340787022223e-09,1.655437220006331e-08,0.0043649325836258995,-5.832781500196907e-09,8.019425999997165e-09,0.0016385546064365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +29,149,34,-2.30273126867472e-05,-0.0014120168412433,-2.30273126867473e-05,-0.0005690664320464,0.0014120168412433,-2.20779736818423e-05,0.0012569881774674,0.0006012879025826,-2.38496505790357e-05,-0.0014544221786163,-2.38496505790358e-05,-0.0004920914781308,0.0014544221786163,-2.22121477718599e-05,0.0012833454265788,0.0005459761391164,8.22337892288761e-07,4.24053373730054e-05,8.22337892288764e-07,-7.69749539155787e-05,-4.24053373730054e-05,1.34174090017444e-07,-2.63572491114797e-05,5.53117634661499e-05,0.0005043467731644,-0.0014120269030891,0.0005043467731644,0.0002646047506254,0.0014120269030891,-0.0010775440413821,-0.0006476158560717,0.0006012918793606,0.0004380946075793,-0.0014544320839623,0.0004380946075793,0.0002254046325784,0.0014544320839623,-0.0011003033364909,-0.0006609108513845,0.0005459789713302,6.62521655851761e-05,4.24051808731888e-05,6.62521655851761e-05,3.92001180470459e-05,-4.24051808731888e-05,2.27592951088277e-05,1.32949953128477e-05,5.53129080304686e-05,-0.0004813182374312,-0.0014120293904178,-0.0004813182374312,0.0003044816699626,0.0014120293904178,0.001099623991969,-0.0006093736208314,0.0006012898542797,-0.0004142435236384,-0.0014544350988676,-0.0004142435236384,0.0002667055963621,0.0014544350988676,0.001122517569328,-0.0006224362985243,0.0005459767169542,-6.70747137928155e-05,4.24057084497846e-05,-6.70747137928155e-05,3.77760736005545e-05,-4.24057084497846e-05,-2.28935773590435e-05,1.30626776929068e-05,5.53131373255881e-05,2.4789616941005588,s,1.2230464528509635e-09,-0.0042360731347502005,1.2230464527967534e-09,1.9988541600005592e-08,0.0042360731347502005,1.976905057840192e-09,-1.2994356999923226e-09,0.0018038696362229,1.4333618643131568e-09,-0.0043632893614462005,1.4333618642047366e-09,1.8750809700014606e-08,0.0043632893614462005,2.085065240256534e-09,-1.7233299999704077e-09,0.0016379318274008002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +30,150,34,-8.23674307077283e-05,-0.0014115402382793,-8.23674307077283e-05,-0.0005634970586347,0.0014115402382793,0.0001093827780661,0.001251992999741,0.0006011026738022,-7.51384042066181e-05,-0.0014539399794955,-7.51384042066182e-05,-0.0004868623586943,0.0014539399794955,0.0001120044040545,0.0012782199479157,0.0005457909754094,-7.22902650110979e-06,4.23997412161902e-05,-7.22902650110979e-06,-7.66346999403369e-05,-4.23997412161902e-05,-2.62162598839934e-06,-2.62269481747313e-05,5.53116983927838e-05,0.0005291958938624,-0.0014115488713828,0.0005291958938624,0.0002104244688987,0.0014115488713828,-0.0011389513626682,-0.0005312717820352,0.0006011066760036,0.0004592124299839,-0.0014539489348934,0.0004592124299839,0.0001783672597801,0.0014539489348934,-0.0011629758556585,-0.0005421150558473,0.0005457937763472,6.9983463878526e-05,4.24000635106169e-05,6.9983463878526e-05,3.2057209118591e-05,-4.24000635106169e-05,2.40244929903273e-05,1.08432738120841e-05,5.53128996564863e-05,-0.0004468363118923,-0.0014115682544332,-0.0004468363118923,0.0003530905238577,0.0014115682544332,0.0010295766278214,-0.0007207298777576,0.0006011092226291,-0.000384081397375,-0.0014539689246978,-0.000384081397375,0.0003085112686567,0.0014539689246978,0.0010509796339102,-0.0007361142013537,0.0005457957286242,-6.27549145172771e-05,4.24006702645408e-05,-6.2754914517277e-05,4.45792552010064e-05,-4.24006702645408e-05,-2.14030060888322e-05,1.53843235960915e-05,5.53134940048738e-05,2.564443131828164,s,-7.848737628303026e-09,-0.0042346573640953,-7.848737628303026e-09,1.7934121700018384e-08,0.0042346573640953,8.043219300009688e-09,-8.660051800018012e-09,0.0018033185724348998,-7.371597718092843e-09,-0.0043618578390867,-7.371597718201263e-09,1.616974249993037e-08,0.0043618578390867,8.18230620020996e-09,-9.30928529998664e-09,0.0016373804803808002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +31,151,34,-0.0001408037241442,-0.0014111130323524,-0.0001408037241442,-0.0005517897179769,0.0014111130323524,0.0002395664429351,0.0012333239855109,0.0006009355455873,-0.0001256031871264,-0.0014535070790564,-0.0001256031871264,-0.0004763349127915,0.0014535070790564,0.0002449151540311,0.0012591333481242,0.0005456236328499,-1.52005370177984e-05,4.23940467038829e-05,-1.52005370177984e-05,-7.54548051854399e-05,-4.23940467038829e-05,-5.348711095978e-06,-2.58093626132314e-05,5.531191273739e-05,0.0005482781964532,-0.0014111217757917,0.0005482781964532,0.0001539623051581,0.0014111217757917,-0.0011878785443823,-0.000409196474426,0.0006009404982736,0.0004753306951764,-0.0014535167533711,0.0004753306951764,0.0001293986644253,0.0014535167533711,-0.0012129049982631,-0.0004174691930571,0.0005456276151909,7.29475012768658e-05,4.23949775793678e-05,7.29475012768658e-05,2.45636407327721e-05,-4.23949775793678e-05,2.50264538808378e-05,8.27271863107946e-06,5.53128830826964e-05,-0.0004074918751557,-0.0014111542245111,-0.0004074918751557,0.0003978464420942,0.0014111542245111,0.0009483236783705,-0.0008241440506096,0.0006009468318669,-0.0003497442693184,-0.0014535496552616,-0.0003497442693184,0.0003469533043929,0.0014535496552616,0.000968001490956,-0.0008416814207509,0.0005456331796625,-5.77476058372433e-05,4.23954307505434e-05,-5.77476058372433e-05,5.08931377013489e-05,-4.23954307505434e-05,-1.96778125855647e-05,1.75373701412488e-05,5.53136522043697e-05,2.6499245695557696,s,-1.7402846700005376e-08,-0.0042333890326552,-1.7402846700005376e-08,1.9029275400003418e-08,0.0042333890326552,1.1576923300104895e-08,-1.6539524700016385e-08,0.0018028228757277999,-1.6761268400024114e-08,-0.0043605734876891004,-1.6761268400024114e-08,1.7056026699986074e-08,0.0043605734876891004,1.164672400015554e-08,-1.7265683799989537e-08,0.0016368844277033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +32,152,34,-0.0001977032212927,-0.0014107319658656,-0.0001977032212927,-0.0005340706763549,0.0014107319658656,0.0003670581176404,0.0012011925012454,0.0006007867257588,-0.0001746983543899,-0.0014531205517413,-0.0001746983543899,-0.0004606222905406,0.0014531205517413,0.0003750753649587,0.0012263016442717,0.0005454743125387,-2.30048669027471e-05,4.23885858756737e-05,-2.30048669027471e-05,-7.34483858143127e-05,-4.23885858756737e-05,-8.01724731828354e-06,-2.51091430263211e-05,5.53124132201719e-05,0.0005613758222821,-0.0014107232911992,0.0005613758222821,9.58220399235452e-05,0.0014107232911992,-0.0012237870237438,-0.0002827166981658,0.0006007859829773,0.0004862641979694,-0.0014531131360895,0.0004862641979694,7.90203030334008e-05,0.0014531131360895,-0.0012495411576183,-0.0002883281853981,0.0005454732987806,7.51116243127103e-05,4.23898448902777e-05,7.51116243127103e-05,1.68017368901425e-05,-4.23898448902777e-05,2.57541338744997e-05,5.61148723231437e-06,5.53126841967794e-05,-0.0003636985235791,-0.0014107743070964,-0.0003636985235791,0.0004382625227266,0.0014107743070964,0.0008567519021841,-0.0009184930055704,0.0006007993116553,-0.0003115907176606,-0.0014531645256207,-0.0003115907176606,0.0003816139286753,0.0014531645256207,0.0008744888622931,-0.000937991234762,0.0005454856499211,-5.21078059185797e-05,4.23902185243119e-05,-5.21078059185797e-05,5.66485940512566e-05,-4.23902185243119e-05,-1.77369601089879e-05,1.94982291915816e-05,5.53136617341386e-05,2.735406007283375,s,-2.5922589700071597e-08,-0.0042322295641612,-2.5922589700071597e-08,1.3886295245190555e-08,0.0042322295641612,2.2996080700039487e-08,-1.7202490800003085e-08,0.0018023720203914,-2.4874081099978546e-08,-0.0043593982134515,-2.4874081099978546e-08,1.1941168100821579e-08,0.0043593982134515,2.3069633499957914e-08,-1.7775888400020472e-08,0.0016364332612404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +33,153,34,-0.000252450215197,-0.0014103810061348,-0.000252450215197,-0.0005105205424269,0.0014103810061348,0.000490468761861,0.0011559437474571,0.0006006498274012,-0.0002218938947681,-0.0014527644805227,-0.0002218938947681,-0.0004398831931233,0.0014527644805227,0.0005010667378958,0.0011800775382937,0.0005453369943783,-3.05563204289142e-05,4.23834743878659e-05,-3.05563204289142e-05,-7.06373493035841e-05,-4.23834743878659e-05,-1.05979760348269e-05,-2.4133790836547e-05,5.53128330229403e-05,0.0005683368888031,-0.0014103450791827,0.0005683368888031,3.66322345539251e-05,0.0014103450791827,-0.0012462897019781,-0.0001532136231424,0.0006006409762962,0.0004918846778101,-0.0014527297576848,0.0004918846778101,2.77756865303699e-05,0.0014527297576848,-0.0012724892408379,-0.0001561023890902,0.0005453286963393,7.64522109929967e-05,4.23846785021259e-05,7.64522109929967e-05,8.85654802355545e-06,-4.23846785021259e-05,2.61995388597993e-05,2.88876594780696e-06,5.53122799568859e-05,-0.0003159203787641,-0.0014104156011438,-0.0003159203787641,0.0004738941099722,0.0014104156011438,0.0007558586801938,-0.0010027483344645,0.0006006620416058,-0.0002700229311977,-0.0014528008399078,-0.0002700229311977,0.0004121114723971,0.0014528008399078,0.0007714604335067,-0.0010239937607852,0.0005453484811782,-4.58974475663774e-05,4.23852387639818e-05,-4.58974475663774e-05,6.17826375750551e-05,-4.23852387639818e-05,-1.56017533128204e-05,2.1245426320771e-05,5.53135604276169e-05,2.8208874450109804,s,-3.370515800000303e-08,-0.0042311416864613,-3.370515800000303e-08,5.802099225062692e-09,0.0042311416864613,3.7740076700050473e-08,-1.821014979997218e-08,0.0018019528453032002,-3.2148155700018055e-08,-0.0043582950781153,-3.2148155700018055e-08,3.9658041699219305e-09,0.0043582950781153,3.793056459991829e-08,-1.8611581699846252e-08,0.0016360141718958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +34,154,34,-0.0003044471024876,-0.0014100449681903,-0.0003044471024876,-0.0004813782066944,0.0014100449681903,0.0006084523537753,0.0010980710566984,0.0006005208245759,-0.0002666749188718,-0.0014524239461183,-0.0002666749188718,-0.0004143255731575,0.0014524239461183,0.0006215149665082,0.0011209650565782,0.000545207709055,-3.77721836158215e-05,4.23789779280597e-05,-3.77721836158215e-05,-6.70526335369635e-05,-4.23789779280597e-05,-1.30626127328592e-05,-2.28939998798356e-05,5.53131155208611e-05,0.0005690740084921,-0.0014099825279811,0.0005690740084921,-2.29715314155902e-05,0.0014099825279811,-0.0012551493559158,-2.21014691128738e-05,0.0006005046201512,0.000492119252598,-0.0014523621964154,0.000492119252598,-2.37867077894904e-05,0.0014523621964154,-0.0012815071863011,-2.22358964012416e-05,0.0005451928314717,7.69547558940351e-05,4.23796684343461e-05,7.69547558940351e-05,8.15176373900301e-07,-4.23796684343461e-05,2.6357830385356e-05,1.3442728836757e-07,5.53117886795311e-05,-0.0002646684640989,-0.0014100694930363,-0.0002646684640989,0.0005043463883451,0.0014100694930363,0.0006467458153348,-0.0010759918029711,0.0006005318861113,-0.0002254837359338,-0.0014524501912147,-0.0002254837359338,0.0004381072782862,0.0014524501912147,0.0006600414317585,-0.0010987516434446,0.0005452185078833,-3.91847281650792e-05,4.23806981784804e-05,-3.91847281650792e-05,6.62391100588685e-05,-4.23806981784804e-05,-1.32956164236399e-05,2.27598404735243e-05,5.53133782280075e-05,2.906368882738586,s,-4.1558094400061685e-08,-0.0042300969892077,-4.1558094400061685e-08,-3.3497648901665428e-09,0.0042300969892077,4.88131942999806e-08,-2.2215385573872218e-08,0.0018015573308383997,-3.940220760000686e-08,-0.0043572363337484,-3.940220760000686e-08,-5.0026607903951026e-09,0.0043572363337484,4.92119655999242e-08,-2.2483267641528956e-08,0.0016356190484099998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +35,155,34,-0.0003531245461143,-0.0014097105170258,-0.0003531245461143,-0.0004469478053462,0.0014097105170258,0.0007197199369921,0.0010282065974885,0.0006003963898794,-0.0003085510964735,-0.0014520856920624,-0.0003085510964735,-0.000384214213207,0.0014520856920624,0.0007351040876521,0.0010496099615535,0.0005450831391244,-4.45734496408586e-05,4.23751750365597e-05,-4.45734496408586e-05,-6.27335921391859e-05,-4.23751750365597e-05,-1.53841506600585e-05,-2.14033640649242e-05,5.53132507550642e-05,0.0005635668500319,-0.0014096260864841,0.0005635668500319,-8.23462166756272e-05,0.0014096260864841,-0.0012502719382309,0.0001091887672715,0.0006003741907146,0.0004869527757533,-0.0014520011616994,0.0004869527757533,-7.51120239766437e-05,0.0014520011616994,-0.0012764993042891,0.0001118100989798,0.0005450627489566,7.661407427864e-05,4.23750752153122e-05,7.661407427864e-05,-7.23419269898487e-06,-4.23750752153122e-05,2.62273660581779e-05,-2.6213317082842e-06,5.53114417580078e-05,-0.0002104968606336,-0.0014097267114673,-0.0002104968606336,0.0005292785892694,0.0014097267114673,0.0005306056749456,-0.0011374234841208,0.0006004061354898,-0.0001784535250655,-0.0014521035169336,-0.0001784535250655,0.0004593092435409,0.0014521035169336,0.0005414495144839,-0.0011614484027848,0.0005450929894678,-3.20433355681111e-05,4.23768054662638e-05,-3.20433355681111e-05,6.99693457284663e-05,-4.23768054662638e-05,-1.08438395382957e-05,2.40249186640616e-05,5.53131460219693e-05,2.9918503204661913,s,-5.4556716000051225e-08,-0.0042290633149772005,-5.4556716000051225e-08,-1.543275242722828e-08,0.0042290633149772005,5.367370680005833e-08,-2.8119360800113805e-08,0.0018011767160838001,-5.1845785699984256e-08,-0.0043561903706954,-5.1845785699984256e-08,-1.6993642743695376e-08,0.0043561903706954,5.429784690001282e-08,-2.834225149993437e-08,0.0016352388775488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +36,156,34,-0.0003979464469124,-0.0014093792168546,-0.0003979464469124,-0.0004076106568527,0.0014093792168546,0.0008230569794528,0.0009471195043762,0.0006002768367218,-0.0003470606976464,-0.0014517512604903,-0.0003470606976464,-0.0003498830096968,0.0014517512604903,0.0008405941449159,0.0009667977314893,0.0005449635580837,-5.08857492659849e-05,4.23720436357633e-05,-5.08857492659849e-05,-5.7727647155849e-05,-4.23720436357633e-05,-1.75371654631367e-05,-1.96782271131397e-05,5.53132786381491e-05,0.0005518795617507,-0.001409273925503,0.0005518795617507,-0.0001408349626447,0.001409273925503,-0.0012317132901266,0.0002392218895952,0.0006002486384373,0.0004764452755393,-0.0014516451383469,0.0004764452755393,-0.0001256313395913,0.0014516451383469,-0.0012575230389523,0.0002445702505312,0.0005449372015642,7.54342862114287e-05,4.23712128438755e-05,7.54342862114287e-05,-1.52036230534478e-05,-4.23712128438755e-05,2.5809748825756e-05,-5.34836093596912e-06,5.53114368730961e-05,-0.0001540067287354,-0.001409389193504,-0.0001540067287354,0.0005484151765215,0.001409389193504,0.0004087119138404,-0.0011863773884886,0.000600285599496,-0.0001294551519623,-0.0014517628729685,-0.0001294551519623,0.000475482374103,0.0014517628729685,0.0004169852067479,-0.0012114042542216,0.0005449726199861,-2.45515767730659e-05,4.23736794644213e-05,-2.45515767730659e-05,7.29328024185328e-05,-4.23736794644213e-05,-8.27329290748092e-06,2.50268657330116e-05,5.53129795099375e-05,3.0773317581937967,s,-7.361389709996803e-08,-0.004228042335861599,-7.361389709996803e-08,-3.044297590003211e-08,0.004228042335861599,5.560316659999811e-08,-3.599451719993839e-08,0.0018008110746551,-7.05740693999991e-08,-0.0043551592718057,-7.05740693999991e-08,-3.197518509998965e-08,0.0043551592718057,5.631271150004658e-08,-3.627220109990101e-08,0.0016348733796340002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +37,157,34,-0.0004384159275487,-0.0014090559604051,-0.0004384159275487,-0.0003638093885364,0.0014090559604051,0.0009173358163982,0.0008557019199875,0.0006001625178044,-0.0003817757894219,-0.0014514255304005,-0.0003817757894219,-0.0003117195918012,0.0014514255304005,0.0009368339072217,0.0008734394136585,0.0005448492725778,-5.66401381267301e-05,4.23695699953787e-05,-5.66401381267301e-05,-5.20897967352024e-05,-4.23695699953787e-05,-1.94980908234933e-05,-1.77374936710099e-05,5.53132452265617e-05,0.0005341800067492,-0.0014089562796668,0.0005341800067492,-0.0001977799396146,0.0014089562796668,-0.0011996913556614,0.0003665771598445,0.0006001358638647,0.0004607513235821,-0.0014513244087356,0.0004607513235821,-0.0001747739937354,0.0014513244087356,-0.0012248009530251,0.0003745940387972,0.0005448240598605,7.34286831671216e-05,4.23681290687997e-05,7.34286831671216e-05,-2.30059458792275e-05,-4.23681290687997e-05,2.51095973637274e-05,-8.01687895267689e-06,5.53118040041301e-05,-9.58302730102674e-05,-0.0014090541634222,-9.58302730102675e-05,0.0005615453207985,0.0014090541634222,0.0002823983036215,-0.0012223150508118,0.0006001673100158,-7.90385561013114e-05,-0.0014514253150747,-7.90385561013115e-05,0.000486448301515,0.0014514253150747,0.0002880103887087,-0.0012480696972967,0.0005448545890957,-1.67917169089571e-05,4.2371151652546e-05,-1.67917169089571e-05,7.50970192834863e-05,-4.2371151652546e-05,-5.61208508721341e-06,2.57546464849197e-05,5.53127209201046e-05,3.1628131959214025,s,-6.619380976737054e-08,-0.0042270664034941,-6.619380976747896e-08,-4.4007352500053006e-08,0.0042270664034941,4.27643583000804e-08,-3.597097980004467e-08,0.0018004656916848997,-6.302194111143305e-08,-0.0043541752542108,-6.302194111152792e-08,-4.528402160002519e-08,0.0043541752542108,4.334290529988457e-08,-3.624484100003822e-08,0.001634527921534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +38,158,34,-0.0004740773097099,-0.0014087372653247,-0.0004740773097099,-0.0003160185600939,0.0014087372653247,0.0010015269873678,0.0007549565222633,0.0006000503858297,-0.0004123034198331,-0.0014511051334437,-0.0004123034198331,-0.0002701365944602,0.0014511051334437,0.0010227724534868,0.0007705589406964,0.0005447371910619,-6.17738898767861e-05,4.23678681189798e-05,-6.17738898767861e-05,-4.58819656337707e-05,-4.23678681189798e-05,-2.12454661190732e-05,-1.56024184331214e-05,5.53131947678196e-05,0.0005106645286246,-0.0014086735931065,0.0005106645286246,-0.0002525538677733,0.0014086735931065,-0.0011545547043386,0.0004898630837137,0.0006000328871278,0.0004400451301118,-0.0014510393760767,0.0004400451301118,-0.0002219981612521,0.0014510393760767,-0.0011786890849577,0.0005004607544546,0.0005447206767419,7.0619398512772e-05,4.23657829701336e-05,7.0619398512772e-05,-3.05557065212029e-05,-4.23657829701336e-05,2.41343806190818e-05,-1.05976707409607e-05,5.53122103859311e-05,-3.66122264213245e-05,-0.0014087204999848,-3.66122264213246e-05,0.0005685153871104,0.0014087204999848,0.0001530502202902,-0.0012448474587687,0.0006000497263164,-2.7763538898115e-05,-0.0014510896561079,-2.77635388981151e-05,0.0004920767846498,0.0014510896561079,0.0001559395730219,-0.0012710477226774,0.0005447373590571,-8.84868752320965e-06,4.23691561231722e-05,-8.84868752320965e-06,7.64386024605763e-05,-4.23691561231722e-05,-2.88935273171556e-06,2.62002639086826e-05,5.53123672592804e-05,3.248294633649008,s,-2.5007506624459466e-08,-0.004226131358415999,-2.500750662456111e-08,-5.7040756800091734e-08,0.004226131358415999,2.2503319399959712e-08,-2.7852791699986904e-08,0.0018001329992739,-2.1828619415031848e-08,-0.0043532341656283,-2.1828619415130104e-08,-5.7971062499971755e-08,0.0043532341656283,2.294155099981268e-08,-2.802752640000336e-08,0.0016341952268609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +39,159,34,-0.0005045190784161,-0.0014084070737669,-0.0005045190784161,-0.0002647303830263,0.0014084070737669,0.0010747129933648,0.0006459876300619,0.000599935492665,-0.0004382879233448,-0.0014507744325553,-0.0004382879233448,-0.0002255581576526,0.0014507744325553,0.0010974731796095,0.0006592840295636,0.0005446223238135,-6.62311550713784e-05,4.23673587884308e-05,-6.62311550713784e-05,-3.91722253736905e-05,-4.23673587884308e-05,-2.2760186244725e-05,-1.32963995016635e-05,5.53131688515991e-05,0.0004815255327084,-0.0014083938085903,0.0004815255327084,-0.0003045619874013,0.0014083938085903,-0.0010967965883171,0.0006077349179384,0.0005999313910227,0.0004144880159386,-0.0014507586926197,0.0004144880159386,-0.0002667913954488,0.0014507586926197,-0.0011196913890412,0.0006207974037317,0.0005446187627891,6.70375167698474e-05,4.2364884029401e-05,6.70375167698474e-05,-3.77705919525077e-05,-4.2364884029401e-05,2.28948007240674e-05,-1.30624857932692e-05,5.53126282336429e-05,2.30170019822538e-05,-0.0014083766258054,2.30170019822537e-05,0.0005692194788541,0.0014083766258054,2.20843588093016e-05,-0.0012537368341971,0.000599930158519,2.38263505487037e-05,-0.0014507446507034,2.38263505487036e-05,0.0004922762178454,0.0014507446507034,2.22192894681836e-05,-0.0012800957125526,0.0005446181065166,-8.09348566450024e-07,4.23680248980095e-05,-8.09348566450022e-07,7.6943261008643e-05,-4.23680248980095e-05,-1.34930658881762e-07,2.6358878355547e-05,5.53120520023547e-05,3.3337760713766134,s,2.345627455378364e-08,-0.0042251775081626,2.3456274553681995e-08,-7.289157349997348e-08,0.0042251775081626,7.638570015023488e-10,-1.4286196799986536e-08,0.0017997970422066998,2.6443142503696063e-08,-0.0043522777758784,2.644314250359442e-08,-7.333525600000147e-08,0.0043522777758784,1.08003648368872e-09,-1.4279257300013615e-08,0.0016338591931192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +40,160,34,-0.0005293827565219,-0.0014080443151566,-0.0005293827565219,-0.0002104761143925,0.0014080443151566,0.001136097213031,0.000529989508076,0.0005998135627421,-0.0004594192954466,-0.0014504128014899,-0.0004594192954466,-0.0001784422077936,0.0014504128014899,0.0011601229176139,0.0005408342130745,0.0005445003605121,-6.99634610752359e-05,4.2368486333319e-05,-6.99634610752359e-05,-3.20339065989194e-05,-4.2368486333319e-05,-2.40257045828419e-05,-1.08447049985362e-05,5.53132022299329e-05,0.0004469997560555,-0.0014080706002144,0.0004469997560555,-0.0003532342915809,0.0014080706002144,-0.0010270469533323,0.0007189055825459,0.0005998208870798,0.0003842775737155,-0.0014504366293556,0.0003842775737155,-0.0003086622656167,0.0014504366293556,-0.0010484514073487,0.0007342899266623,0.0005445078468191,6.27221823399842e-05,4.23660291411992e-05,6.27221823399842e-05,-4.45720259642034e-05,-4.23660291411992e-05,2.14044540164249e-05,-1.53843441164412e-05,5.5313040260672e-05,8.2423258868388e-05,-0.0014080048081609,8.24232588683879e-05,0.0005636167299733,0.0014080048081609,-0.0001090668533214,-0.0012488921416626,0.0005998053701725,7.51847712180837e-05,-0.0014503730425883,7.51847712180836e-05,0.0004870108764241,0.0014503730425883,-0.0001116878658862,-0.0012751209820928,0.0005444933620173,7.23848765030331e-06,4.23682344273656e-05,7.23848765030331e-06,7.66058535491871e-05,-4.23682344273656e-05,2.62101256480236e-06,2.62288404301894e-05,5.53120081551966e-05,3.4192575091042188,s,4.025840198796445e-08,-0.0042241197235319,4.025840198786958e-08,-9.367600010002763e-08,0.0042241197235319,-1.6593622700103146e-08,2.948959300060408e-09,0.0017994398199944,4.30494869837106e-08,-0.0043512224734338,4.304948698360218e-08,-9.359698620000408e-08,0.0043512224734338,-1.6355621000076464e-08,3.1576440002231004e-09,0.0016335015693485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +41,161,34,-0.0005483958355096,-0.0014076602308473,-0.0005483958355096,-0.000153876492038,0.0014076602308473,0.0011850189658379,0.0004082389435986,0.0005996898126528,-0.0004754657015523,-0.0014500313710105,-0.0004754657015523,-0.0001293316653859,0.0014500313710105,0.0012100471613286,0.0004165131083067,0.0005443764182304,-7.2930133957307e-05,4.23711401631711e-05,-7.2930133957307e-05,-2.45448266521129e-05,-4.23711401631711e-05,-2.50281954907742e-05,-8.27416470816202e-06,5.53133944224668e-05,0.0004074780302241,-0.0014077020952893,0.0004074780302241,-0.0003980169757633,0.0014077020952893,-0.0009460762324731,0.0008221603616786,0.0005997028022379,0.00034975777171,-0.0014500711215766,0.00034975777171,-0.0003471311731801,0.0014500711215766,-0.0009657558626804,0.0008396981866004,0.0005443893527027,5.77202585141047e-05,4.2369026287355e-05,5.77202585141047e-05,-5.08858025831764e-05,-4.2369026287355e-05,1.96796302072538e-05,-1.75378249217033e-05,5.53134495352141e-05,0.0001409360231925,-0.0014076107924475,0.0001409360231925,0.0005517789743802,0.0014076107924475,-0.0002389669678376,-0.0012303747032403,0.0005996777445232,0.0001257287645651,-0.0014499807450978,0.0001257287645651,0.0004763487713606,0.0014499807450978,-0.0002443153168629,-0.0012561864078591,0.0005443653389751,1.52072586273591e-05,4.23699526503425e-05,1.52072586273591e-05,7.54302030196211e-05,-4.23699526503425e-05,5.34834902525714e-06,2.58117046187859e-05,5.53124055481969e-05,3.504738946831824,s,1.8217906999992315e-08,-0.0042229731185841005,1.8217906999992315e-08,-1.1449342110004569e-07,0.0042229731185841005,-2.423447280000676e-08,2.4602036899877555e-08,0.0017990703594139,2.0834722800038962e-08,-0.0043500832376849,2.0834722800038962e-08,-1.1406720540005095e-07,0.0043500832376849,-2.401821470009169e-08,2.4887047999884795e-08,0.0016331311099082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +42,162,34,-0.0005613848471764,-0.0014072922847238,-0.0005613848471764,-9.56300629719847e-05,0.0014072922847238,0.0012209473005777,0.000282073539144,0.0005995711827053,-0.0004862865772273,-0.0014496665794947,-0.0004862865772273,-7.88431978281235e-05,0.0014496665794947,0.0012467038331177,0.0002876863701577,0.0005442576360554,-7.50982699491424e-05,4.23742947708696e-05,-7.50982699491424e-05,-1.6786865143865e-05,-4.23742947708696e-05,-2.57565325400367e-05,-5.61283101364724e-06,5.53135466499563e-05,0.0003635271597067,-0.0014073468741756,0.0003635271597067,-0.0004384061334007,0.0014073468741756,-0.0008547837753144,0.0009163702105328,0.0005995903534122,0.0003114410456812,-0.0014497193686056,0.0003114410456812,-0.0003817633908447,0.0014497193686056,-0.0008725228647769,0.0009358695122395,0.0005442765073207,5.20861140255401e-05,4.23724944299879e-05,5.20861140255401e-05,-5.66427425560029e-05,-4.23724944299879e-05,1.7739089462473e-05,-1.94993017066872e-05,5.53138460915096e-05,0.0001978635950301,-0.0014072542472183,0.0001978635950301,0.0005339228608204,0.0014072542472183,-0.0003661948358535,-0.001198410646758,0.0005995631003205,0.0001748536341326,-0.0014496267416667,0.0001748536341326,0.0004604938140609,0.0014496267416667,-0.0003742121361982,-0.0012235226326239,0.0005442498758185,2.30099608974762e-05,4.23724944484684e-05,2.30099608974762e-05,7.34290467595182e-05,-4.23724944484684e-05,8.01730034472478e-06,2.51119858658642e-05,5.53132245019455e-05,3.5902203845594296,s,5.9075603999576495e-09,-0.0042218934061177,5.9075603999576495e-09,-1.1333555228467893e-07,0.0042218934061177,-3.1310590199935037e-08,3.310291879997894e-08,0.001798724636438,8.102586500022008e-09,-0.004349012689767,8.102586500022008e-09,-1.1277461192351528e-07,0.004349012689767,-3.116785739985502e-08,3.324977330011053e-08,0.0016327840191945999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +43,163,34,-0.0005682324109734,-0.0014069688761156,-0.0005682324109734,-3.64278908710983e-05,0.0014069688761156,0.0012434970809506,0.0001528775564403,0.0005994622826526,-0.0004917884430509,-0.0014493458827052,-0.0004917884430509,-2.75830944375585e-05,0.0014493458827052,0.0012696996910459,0.000155767375044,0.000544148667982,-7.64439679224982e-05,4.23770065896263e-05,-7.64439679224982e-05,-8.84479643353963e-06,-4.23770065896263e-05,-2.62026100953852e-05,-2.88981860374434e-06,5.53136146706046e-05,0.0003157335802069,-0.0014070620491498,0.0003157335802069,-0.0004739675752845,0.0014070620491498,-0.0007541782278386,0.0010005076791209,0.0005994927602073,0.0002698522742461,-0.0014494372520629,0.0002698522742461,-0.0004121878663726,0.0014494372520629,-0.0007697822040792,0.0010217548860724,0.0005441785254891,4.58813059608004e-05,4.23752029131825e-05,4.58813059608004e-05,-6.17797089119098e-05,-4.23752029131825e-05,1.56039762405825e-05,-2.12472069515588e-05,5.53142347181903e-05,0.0002525591537243,-0.0014069611927314,0.0002525591537243,0.0005102904027731,0.0014069611927314,-0.0004893615576663,-0.0011533537313298,0.0005994637575868,0.0002219980897987,-0.0014493362022663,0.0002219980897987,0.0004396664572441,0.0014493362022663,-0.0004999601731891,-0.0011774907798853,0.0005441496752089,3.05610639256437e-05,4.23750095349447e-05,3.05610639256437e-05,7.06239455289909e-05,-4.23750095349447e-05,1.05986155228593e-05,2.41370485553951e-05,5.53140823778782e-05,3.675701822287035,s,6.032295780006606e-08,-0.0042209921179968005,6.032295780006606e-08,-1.0506338249827857e-07,0.0042209921179968005,-4.2704554299895225e-08,3.150423139985231e-08,0.0017984188004466998,6.192099390005257e-08,-0.0043481193370344,6.192099390005257e-08,-1.045035660584919e-07,0.0043481193370344,-4.268622240009498e-08,3.1481231100053894e-08,0.0016324768686799998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +44,164,34,-0.0005688032938215,-0.0014066477234916,-0.0005688032938215,2.31329275056337e-05,0.0014066477234916,0.0012524253207534,2.20588963715071e-05,0.000599352771256,-0.0004918508650562,-0.0014490274266351,-0.0004918508650562,2.39384187838738e-05,0.0014490274266351,0.0012787868799322,2.21939136291945e-05,0.0005440390873027,-7.69524287653189e-05,4.23797031434208e-05,-7.69524287653189e-05,-8.05491278241471e-07,-4.23797031434208e-05,-2.63615591787593e-05,-1.35017257687295e-07,5.53136839533589e-05,0.0002645046434092,-0.0014067893413206,0.0002645046434092,-0.0005042787944352,0.0014067893413206,-0.0006453533379442,0.0010736571345524,0.0005993946012472,0.000225330979058,-0.0014491673645573,0.000225330979058,-0.0004380383714297,0.0014491673645573,-0.0006586510954344,0.0010964195184492,0.00054407998371,3.91736643511923e-05,4.23780232366726e-05,3.91736643511923e-05,-6.62404230054564e-05,-4.23780232366726e-05,1.32977574902522e-05,-2.27623838968114e-05,5.53146175372062e-05,0.0003044362645118,-0.0014066772588704,0.0003044362645118,0.0004810455334102,0.0014066772588704,-0.000607126493783,-0.0010956902321873,0.0005993652342317,0.0002666582713801,-0.001449055397243,0.0002666582713801,0.0004140000779893,0.001449055397243,-0.0006201904712485,-0.001118587811163,0.0005440503378826,3.77779931317148e-05,4.23781383725703e-05,3.77779931317148e-05,6.70454554209642e-05,-4.23781383725702e-05,1.30639774654372e-05,2.28975789756092e-05,5.53148963491504e-05,3.761183260014641,s,1.376140994999728e-07,-0.0042201143236826,1.376140994999728e-07,-1.0033351936626113e-07,0.0042201143236826,-5.451097380003867e-08,2.5798736607088313e-08,0.0017981126067348999,1.3838538189995349e-07,-0.0043472501884354,1.3838538189995349e-07,-9.987465652622944e-08,0.0043472501884354,-5.468675069991019e-08,2.5620915394472532e-08,0.0016321694088952997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +45,165,34,-0.000562984355583,-0.0014062490792971,-0.000562984355583,8.24775083788548e-05,0.0014062490792971,0.001247631516331,-0.0001089592036242,0.0005992262140952,-0.0004863664637921,-0.001448632303794,-0.0004863664637921,7.52344294094569e-05,0.001448632303794,0.0012738632593875,-0.0001115805364977,0.0005439122890928,-7.66178917908273e-05,4.23832244969673e-05,-7.66178917908273e-05,7.24307896939719e-06,-4.23832244969673e-05,-2.62317430565059e-05,2.62133287350741e-06,5.53139250024052e-05,0.0002101856596619,-0.0014063962920717,0.0002101856596619,-0.000528912232683,0.0014063962920717,-0.0005294860390127,0.0011350198257707,0.0005992684338316,0.0001781494614096,-0.001448778536915,0.0001781494614096,-0.000458936518661,0.001448778536915,-0.0005403318526763,0.0011590481033307,0.0005439534799596,3.20361982523161e-05,4.23822448432522e-05,3.20361982523161e-05,-6.99757140220239e-05,-4.23822448432521e-05,1.08458136635926e-05,-2.40282775599782e-05,5.53149538719768e-05,0.0003529378371347,-0.0014063083865409,0.0003529378371347,0.0004463587968117,0.0014063083865409,-0.0007182050321289,-0.0010260393336932,0.0005992475580503,0.0003083561474922,-0.0014486909317952,0.0003083561474922,0.0003836265808079,0.0014486909317952,-0.0007335913750051,-0.001047446532826,0.0005439319640303,4.4581689642516e-05,4.23825452542726e-05,4.4581689642516e-05,6.27322160037386e-05,-4.23825452542726e-05,1.53863428762749e-05,2.14071991328505e-05,5.53155940199756e-05,3.8466646977422463,s,1.3914121359996992e-07,-0.0042189537579097,1.3914121359996992e-07,-7.59274924451935e-08,0.0042189537579097,-5.955481059997589e-08,2.1288453299879787e-08,0.0017977422059771,1.391451097000466e-07,-0.0043461017725042,1.391451097000466e-07,-7.550844364307904e-08,0.0043461017725042,-5.996829389998386e-08,2.103400700012928e-08,0.0016317977330827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +46,166,34,-0.0005508571779119,-0.0014057681290877,-0.0005508571779119,0.0001409331542766,0.0014057681290877,0.0012291700184716,-0.0002387407763142,0.0005990843814317,-0.0004754134011487,-0.0014481558236426,-0.0004754134011487,0.0001257201876662,0.0014481558236426,0.0012549847424008,-0.0002440898404431,0.0005437699084477,-7.54437767632454e-05,4.23876945549014e-05,-7.54437767632454e-05,1.5212966610426e-05,-4.23876945549014e-05,-2.58147239292905e-05,5.34906412899037e-06,5.53144729840604e-05,0.0001533900736163,-0.0014058699823781,0.0001533900736163,-0.0005475866932974,0.0014058699823781,-0.0004078500572752,0.001183930570876,0.0005991175044667,0.000128843241792,-0.0014482579572484,0.000128843241792,-0.0004746424227175,0.0014482579572484,-0.0004161250863908,0.0012089616412759,0.0005438022101741,2.45468318243115e-05,4.23879748702581e-05,2.45468318243115e-05,-7.29442705798543e-05,-4.23879748702581e-05,8.27502911561256e-06,-2.5031070399953e-05,5.53152942925915e-05,0.0003975161150898,-0.0014058447278254,0.0003975161150898,0.0004066321680303,0.0014058447278254,-0.0008213796602258,-0.0009451656946021,0.0005991120843372,0.000346618768267,-0.0014482326621134,0.000346618768267,0.0003489011988133,0.0014482326621134,-0.0008389199131528,-0.0009648479217762,0.0005437959324021,5.0897346822841e-05,4.23879342879879e-05,5.0897346822841e-05,5.77309692170025e-05,-4.23879342879879e-05,1.75402529270144e-05,1.96822271740811e-05,5.53161519351374e-05,3.9321461354698517,s,4.9010794199964847e-08,-0.004217482839291201,4.9010794199964847e-08,-2.1370990500044554e-08,0.004217482839291201,-5.96990293999641e-08,2.4099959700075134e-08,0.0017973139702356002,4.8608910300053983e-08,-0.004344646443004399,4.8608910300053983e-08,-2.1036238000019317e-08,0.004344646443004399,-6.025714280007751e-08,2.387905660000949e-08,0.0016313680510239002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +47,167,34,-0.0005327831939125,-0.001405338891971,-0.0005327831939125,0.0001977562601514,0.001405338891971,0.0011972689043824,-0.0003658565015976,0.0005989592939121,-0.0004593402261673,-0.0014477306055107,-0.0004593402261673,0.0001747396010924,0.0014477306055107,0.0012223838741798,-0.0003738748947919,0.0005436439724904,-7.34429677451531e-05,4.23917135397662e-05,-7.34429677451531e-05,2.30166590589373e-05,-4.23917135397662e-05,-2.51149697974243e-05,8.01839319420969e-06,5.5315321421745e-05,9.50444424180035e-05,-0.0014053839085851,9.50444424180034e-05,-0.000560294062885,0.0014053839085851,-0.0002817998579085,0.0012198583947629,0.0005989796474819,7.82564168948144e-05,-0.0014477767380754,7.82564168948143e-05,-0.0004851809884866,0.0014477767380754,-0.0002874132455582,0.0012456179599456,0.0005436641864144,1.67880255231896e-05,4.23928294903702e-05,1.67880255231896e-05,-7.51130743984002e-05,-4.23928294903702e-05,5.61338764970002e-06,-2.57595651826735e-05,5.53154610675226e-05,0.0004376985345788,-0.0014054136245302,0.0004376985345788,0.0003625568671957,0.0014054136245302,-0.0009155197937841,-0.0008539767418275,0.0005989873671773,0.0003810431328771,-0.001447806118704,0.0003810431328771,0.0003104603776518,0.001447806118704,-0.0009350218485574,-0.000871718155921,0.0005436707940468,5.66554017017303e-05,4.2392494173886e-05,5.66554017017303e-05,5.20964895438296e-05,-4.2392494173886e-05,1.95020547732574e-05,1.77414140935311e-05,5.53165731305186e-05,4.017627573197457,s,-4.0216915696484386e-08,-0.0042161364250863,-4.0216915696592807e-08,1.9064462100019768e-08,0.0042161364250863,-5.074731020007859e-08,2.5151337799999077e-08,0.0017969263085713,-4.067639538553585e-08,-0.0043433134622901,-4.067639538564427e-08,1.8990257599999037e-08,0.0043433134622901,-5.121993579997649e-08,2.4909232700033763e-08,0.0016309789529516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +48,168,34,-0.0005091731486692,-0.0014050889162696,-0.0005091731486692,0.0002522818201049,0.0014050889162696,0.0011522916339259,-0.0004889113459984,0.0005988725452041,-0.0004385354889447,-0.0014474829771689,-0.0004385354889447,0.0002217135130353,0.0014474829771689,0.001176431453773,-0.000499511401128,0.0005435564067626,-7.06376597245187e-05,4.23940608992565e-05,-7.06376597245187e-05,3.05683070695535e-05,-4.23940608992565e-05,-2.41398198470968e-05,1.06000551296503e-05,5.53161384415137e-05,3.60585945698534e-05,-0.001405173068611,3.60585945698533e-05,-0.0005671852738817,0.001405173068611,-0.0001527402652946,0.0012424308483176,0.0005988993850069,2.72132127362048e-05,-0.0014475679759323,2.72132127362047e-05,-0.0004907263089085,0.0014475679759323,-0.0001556302225092,0.0012686364388001,0.0005435838773257,8.8453818336488e-06,4.2394907321309e-05,8.8453818336488e-06,-7.64589649732048e-05,-4.2394907321309e-05,2.88995721460411e-06,-2.62055904824545e-05,5.53155076811674e-05,0.0004731087071518,-0.0014051551785815,0.0004731087071518,0.0003148467672389,0.0014051551785815,-0.0009995981319876,-0.0007534895603149,0.0005988979263788,0.000411315927319,-0.0014475501201087,0.000411315927319,0.0002689557504603,0.0014475501201087,-0.0010208483027275,-0.0007690954771638,0.0005435810154257,6.17927798328582e-05,4.23949415272208e-05,6.17927798328582e-05,4.58910167785879e-05,-4.23949415272208e-05,2.12501707399109e-05,1.56059168489143e-05,5.53169109530675e-05,4.1031090109250625,s,-5.846947546625254e-09,-0.0042154171634621,-5.846947546733674e-09,-5.668653790000342e-08,0.0042154171634621,-4.676335630011963e-08,2.994200429999941e-08,0.0017966698565898,-6.348889495188213e-09,-0.0043426010732099,-6.3488894952966335e-09,-5.70454129000331e-08,0.0043426010732099,-4.707146369995613e-08,2.956050830006142e-08,0.001630721299514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +49,169,34,-0.000480112667007,-0.0014049310792043,-0.000480112667007,0.0003039655003101,0.0014049310792043,0.0010947211610101,-0.0006065715060019,0.0005988011718047,-0.0004130540053249,-0.0014473272666222,-0.0004130540053249,0.000266180218099,0.0014473272666222,0.001117621206376,-0.000619637200692,0.0005434843146437,-6.70586616820702e-05,4.23961874178598e-05,-6.70586616820702e-05,3.77852822110671e-05,-4.23961874178598e-05,-2.29000453659199e-05,1.30656946900994e-05,5.53168571610315e-05,-2.31091153370787e-05,-0.0014051407793635,-2.31091153370787e-05,-0.0005680423431913,0.0014051407793635,-2.20642370563564e-05,0.0012514075932617,0.0005988520296579,-2.39150869948137e-05,-0.001447536988932,-2.39150869948138e-05,-0.0004910747836889,0.001447536988932,-2.219897686127e-05,0.0012777719787887,0.0005435364726555,8.05971657734009e-07,4.23962095684519e-05,8.05971657734011e-07,-7.69675595023968e-05,-4.23962095684519e-05,1.34739804913529e-07,-2.63643855269932e-05,5.53155570023806e-05,0.0005033339043042,-0.001404990973774,0.0005033339043042,0.0002638531199393,0.001404990973774,-0.0010727022197221,-0.0006447929269128,0.000598822881248,0.0004370806317937,-0.0014473877527924,0.0004370806317937,0.0002246704481086,0.0014473877527924,-0.0010954676753184,-0.0006580922035453,0.0005435056980835,6.62532725104538e-05,4.23967790183917e-05,6.62532725104538e-05,3.91826718307383e-05,-4.23967790183917e-05,2.27654555962267e-05,1.32992766324838e-05,5.53171831644871e-05,4.188590448652668,s,1.1212196012128431e-07,-0.0042150628323418,1.1212196012128431e-07,-2.2372294189996252e-07,0.0042150628323418,-4.529576835615376e-08,4.31603469999188e-08,0.0017964760827106,1.1153947398627505e-07,-0.0043422520083466,1.1153947398616663e-07,-2.2411748130000075e-07,0.0043422520083466,-4.544580367018755e-08,4.257455140006545e-08,0.0016305264853827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +50,170,34,-0.0004455188262362,-0.0014046350843753,-0.0004455188262362,0.0003523044144158,0.0014046350843753,0.0010251635596596,-0.000717563472654,0.0005986984776604,-0.0003827745112447,-0.0014470344385043,-0.0003827745112447,0.0003077159553464,0.0014470344385043,0.0010465728960465,-0.0007329517041105,0.0005433811137648,-6.27443149914631e-05,4.23993541290487e-05,-6.27443149914631e-05,4.45884590693601e-05,-4.23993541290487e-05,-2.14093363869422e-05,1.53882314565116e-05,5.53173638956485e-05,-8.22387666361263e-05,-0.001404899572506,-8.22387666361264e-05,-0.00056230654544,0.001404899572506,0.0001088402228786,0.0012466684532193,0.0005987582825217,-7.49960585682577e-05,-0.0014472981112269,-7.49960585682577e-05,-0.0004856740857186,0.0014472981112269,0.0001114621529279,0.0012729028233097,0.0005434425839668,-7.24270806787034e-06,4.23985387209529e-05,-7.24270806787034e-06,-7.66324597214328e-05,-4.23985387209529e-05,-2.62193004928926e-06,-2.62343700904357e-05,5.53156985548204e-05,0.000527887139971,-0.0014046796834926,0.000527887139971,0.0002097224660171,0.0014046796834926,-0.0011340364860051,-0.0005290497071131,0.0005987139237749,0.0004578995257033,-0.001447079314309,0.0004578995257033,0.0001776780909878,0.001447079314309,-0.0011580678382338,-0.0005398966329559,0.0005433965956736,6.99876142677813e-05,4.2399630816348e-05,6.99876142677813e-05,3.20443750292856e-05,-4.2399630816348e-05,2.4031352228712e-05,1.08469258427632e-05,5.53173281013267e-05,4.274071886380273,s,1.2954709867362725e-07,-0.0042142143403739,1.2954709867351883e-07,-2.79665007099926e-07,0.0042142143403739,-3.270346690003624e-08,5.5273452200009857e-08,0.001796170683957,1.2895589034231294e-07,-0.0043414118640402,1.2895589034231294e-07,-2.8003938440000157e-07,0.0043414118640402,-3.278925939987666e-08,5.448624329994732e-08,0.0016302202934052002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +51,171,34,-0.0004057226266464,-0.0014041529433653,-0.0004057226266464,0.000396758907417,0.0014041529433653,0.0009443826880078,-0.0008206745564287,0.0005985620900558,-0.0003479811999098,-0.0014465564336769,-0.0003479811999098,0.0003458558187644,0.0014465564336769,0.00096406673815,-0.0008382167650869,0.0005432444417595,-5.77414267365417e-05,4.24034903114982e-05,-5.77414267365417e-05,5.09030886526125e-05,-4.24034903114982e-05,-1.96840501422327e-05,1.75422086581016e-05,5.53176482963499e-05,-0.0001407194531391,-0.0014043382399006,-0.0001407194531391,-0.0005499066653912,0.0014043382399006,0.0002385433205647,0.0012282580019049,0.0005986020792914,-0.0001255066171868,-0.0014467408291943,-0.0001255066171868,-0.0004744497258926,0.0014467408291943,0.0002438931796724,0.0012540751763545,0.0005432860256324,-1.52128359522214e-05,4.24025892936824e-05,-1.52128359522214e-05,-7.54569394985906e-05,-4.24025892936824e-05,-5.34985910773686e-06,-2.58171744496167e-05,5.53160536589575e-05,0.0005464565345214,-0.0014041643982312,0.0005464565345214,0.0001529944778955,0.0014041643982312,-0.0011829342743338,-0.0004075274757369,0.0005985676905081,0.0004735018651074,-0.0014465681733149,0.0004735018651074,0.0001284404048026,0.0014465681733149,-0.0012079683321399,-0.0004158032507974,0.0005432502750178,7.29546694139254e-05,4.24037750837264e-05,7.29546694139254e-05,2.4554073092868e-05,-4.24037750837264e-05,2.50340578061445e-05,8.27577506046456e-06,5.53174154902299e-05,4.359553324107879,s,1.4454735899980392e-08,-0.0042126555814971,1.4454735899980392e-08,-1.5328007870002935e-07,0.0042126555814971,-8.265761300028582e-09,5.5969739299981374e-08,0.0017957318598552999,1.4048010799983315e-08,-0.0043398654361861,1.4048010799983315e-08,-1.5350232560000358e-07,0.0043398654361861,-8.414317500139018e-09,5.516047019989796e-08,0.0016297807424097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +52,172,34,-0.0003616222543303,-0.0014037331649416,-0.0003616222543303,0.000436882844012,0.0014037331649416,0.0008533002917109,-0.0009147744355968,0.0005984479316918,-0.0003095170112697,-0.0014461394901324,-0.0003095170112697,0.0003802229264828,0.0014461394901324,0.0008710431983915,-0.0009342784260449,0.0005431301391934,-5.21052430605718e-05,4.24063251908207e-05,-5.21052430605718e-05,5.6659917529141e-05,-4.24063251908207e-05,-1.7742906680666e-05,1.95039904481033e-05,5.53177924984709e-05,-0.0001975916825876,-0.0014038068579789,-0.0001975916825876,-0.0005315643316582,0.0014038068579789,0.0003655955830578,0.0011964202352367,0.0005984633192849,-0.0001745747131931,-0.0014462129392798,-0.0001745747131931,-0.0004581099138282,0.0014462129392798,0.0003736149101939,0.0012215374535674,0.0005431466322438,-2.30169693945099e-05,4.24060813008612e-05,-2.30169693945099e-05,-7.34544178300561e-05,-4.24060813008612e-05,-8.01932713610853e-06,-2.51172183306336e-05,5.53166870410904e-05,0.0005591113607989,-0.0014036964667679,0.0005591113607989,9.46975853406499e-05,0.0014036964667679,-0.0012188683830674,-0.0002815884546093,0.0005984392165835,0.0004839894669121,-0.0014461033365675,0.0004839894669121,7.79031886724244e-05,0.0014461033365675,-0.0012446307780471,-0.0002872022594121,0.0005431218962987,7.512189388672e-05,4.2406869799673e-05,7.512189388672e-05,1.67943966682242e-05,-4.2406869799673e-05,2.57623949796525e-05,5.61380480280193e-06,5.53173202848346e-05,4.445034761835484,s,-1.0257611900003384e-07,-0.0042112364896884,-1.0257611900003384e-07,1.6097694449841455e-08,0.0042112364896884,2.7491701300001725e-08,5.734503060004104e-08,0.0017953504675602,-1.0225755069998487e-07,-0.0043384557659797,-1.0225755069998487e-07,1.6201327024354946e-08,0.0043384557659797,2.7330538299955714e-08,5.676811040000599e-08,0.0016293986677358998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +53,173,34,-0.0003141836536013,-0.0014036848075137,-0.0003141836536013,0.0004723897171988,0.0014036848075137,0.0007529487277695,-0.0009988383766328,0.0005984128404281,-0.0002682849841105,-0.0014460912986167,-0.0002682849841105,0.0004105934586763,0.0014460912986167,0.0007685557853124,-0.0010200904050102,0.0005430948981188,-4.589866949081e-05,4.24064911030556e-05,-4.589866949081e-05,6.1796258522547e-05,-4.24064911030556e-05,-1.56070575429922e-05,2.12520283773683e-05,5.53179423093671e-05,-0.0002520928080512,-0.0014037882778399,-0.0002520928080512,-0.0005082687682242,0.0014037882778399,0.0004885820403323,0.0011515522567212,0.0005984329570435,-0.0002215236923661,-0.0014461953647297,-0.0002215236923661,-0.0004376205230496,0.0014461953647297,0.0004991831695535,0.0011756940459934,0.0005431155617913,-3.05691156851152e-05,4.24070868898098e-05,-3.05691156851152e-05,-7.06482451746128e-05,-4.24070868898098e-05,-1.06011292211814e-05,-2.41417892721353e-05,5.5317395252224e-05,0.000566135927009,-0.0014036260723413,0.000566135927009,3.5858008309853e-05,0.0014036260723413,-0.0012414750011842,-0.0001526465771328,0.000598395459247,0.0004896694170995,-0.0014460333031568,0.0004896694170995,2.70068185861297e-05,0.0014460333031568,-0.0012676832322934,-0.0001555366635366,0.0005430783131062,7.64665099095122e-05,4.24072308154834e-05,7.64665099095122e-05,8.85118972372362e-06,-4.24072308154834e-05,2.62082311092207e-05,2.89008640384774e-06,5.53171461408105e-05,4.53051619956309,s,-1.4053464349997238e-07,-0.0042110991576949,-1.4053464349997238e-07,-2.1042715547054042e-08,0.0042110991576949,5.576691759984556e-08,6.730295560000341e-08,0.0017952412567185999,-1.3925937710000495e-07,-0.0043383199665032,-1.3925937710000495e-07,-2.0245787170282848e-08,0.0043383199665032,5.572257249998776e-08,6.697744659993235e-08,0.0016292887730163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +54,174,34,-0.0002636420083324,-0.0014038683773583,-0.0002636420083324,0.0005028185852738,0.0014038683773583,0.0006443992545248,-0.0010719557843635,0.0005984207171962,-0.0002244521814835,-0.0014462743952122,-0.0002244521814835,0.0004365626745347,0.0014462743952122,0.0006576993497509,-0.0010947229914577,0.0005431026102315,-3.91898268489104e-05,4.24060178539826e-05,-3.91898268489104e-05,6.62559107391229e-05,-4.24060178539826e-05,-1.33000952260583e-05,2.27672070942619e-05,5.53181069647291e-05,-0.000303721991825,-0.0014041571258562,-0.000303721991825,-0.0004800114611989,0.0014041571258562,0.0006061795984465,0.0010941256352714,0.000598477526674,-0.0002659356615652,-0.0014465647620872,-0.0002659356615652,-0.0004129420649386,0.0014465647620872,0.0006192465149813,0.0011170273657772,0.0005431594071275,-3.77863302597721e-05,4.24076362309174e-05,-3.77863302597721e-05,-6.70693962603105e-05,-4.24076362309174e-05,-1.30669165348338e-05,-2.29017305057461e-05,5.53181195465035e-05,0.0005672566846619,-0.0014038249917138,0.0005672566846619,-2.30905063822221e-05,0.0014038249917138,-0.0012505097551788,-2.20858560818017e-05,0.000598403886094,0.0004902826370313,-0.0014462317054865,0.0004902826370313,-2.39020539423902e-05,0.0014462317054865,-0.0012768765658417,-2.222047271858e-05,0.0005430868754296,7.69740476305768e-05,4.24067137726804e-05,7.69740476305768e-05,8.11547560168162e-07,-4.24067137726804e-05,2.63668106629241e-05,1.34616636778325e-07,5.5317010664424e-05,4.615997637290695,s,-1.0731549550000927e-07,-0.0042118504949283,-1.0731549550000927e-07,-2.8338230732215627e-07,0.0042118504949283,6.909779249990311e-08,8.399482609826518e-08,0.0017953021299642001,-1.0520601739999816e-07,-0.0043390708627859004,-1.0520601739999816e-07,-2.8144434629018004e-07,0.0043390708627859004,6.929889049991748e-08,8.390160091999301e-08,0.0016293488927886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +55,175,34,-0.0002097558043175,-0.0014037819338554,-0.0002097558043175,0.0005274891551685,0.0014037819338554,0.000528776282304,-0.0011333197353457,0.0005983694813057,-0.0001777047417661,-0.0014461887770538,-0.0001777047417661,0.0004574997081452,0.0014461887770538,0.0005396237630791,-0.0011573527015384,0.000543051331342,-3.20510625513958e-05,4.24068431984594e-05,-3.20510625513958e-05,6.99894470232424e-05,-4.24068431984594e-05,-1.0847480775095e-05,2.40329661926975e-05,5.53181499637304e-05,-0.000352010750622,-0.0014041680778015,-0.000352010750622,-0.0004458380934191,0.0014041680778015,0.0007171382206571,0.0010246816855389,0.0005984457533107,-0.0003074209749792,-0.0014465778822507,-0.0003074209749792,-0.0003830827604318,0.0014465778822507,0.0007325277966918,0.0010460924727379,0.0005431271136683,-4.45897756428209e-05,4.24098044492175e-05,-4.45897756428209e-05,-6.27553329873159e-05,-4.24098044492175e-05,-1.5389576034738e-05,-2.14107871989558e-05,5.53186396423877e-05,0.0005617022145649,-0.0014037506591507,0.0005617022145649,-8.20651669376847e-05,0.0014037506591507,-0.0012458360613156,0.0001087230715803,0.0005983537207139,0.0004850642839287,-0.0014461578894462,0.0004850642839287,-7.48278995309449e-05,0.0014461578894462,-0.0012720726171569,0.0001113453297639,0.0005430367497873,7.66379306362083e-05,4.2407230295467e-05,7.66379306362083e-05,-7.23726740673973e-06,-4.2407230295467e-05,2.62365558412507e-05,-2.62225818366872e-06,5.53169709265601e-05,4.701479075018301,s,-6.434037459995649e-08,-0.0042117006708076,-6.434037459995649e-08,-4.1410518828465025e-07,0.0042117006708076,7.844164550004605e-08,8.502177349995117e-08,0.0017951689553303,-6.143281660003601e-08,-0.0043389245487506995,-6.143281660003601e-08,-4.109518175448971e-07,0.0043389245487506995,7.894261400001948e-08,8.510096340000415e-08,0.0016292151947976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +56,176,34,-0.0001529852068746,-0.0014032940460461,-0.0001529852068746,0.0005460236933697,0.0014032940460461,0.0004073405251392,-0.0011822504549915,0.0005982411444379,-0.0001284252088538,-0.0014457034724526,-0.0001284252088538,0.0004730680038499,0.0014457034724526,0.0004156166629476,-0.0012072859625908,0.00054292304372,-2.45599980208779e-05,4.24094264064634e-05,-2.45599980208779e-05,7.29556895198238e-05,-4.24094264064634e-05,-8.27613780840577e-06,2.50355075993285e-05,5.53181007178966e-05,-0.0003964020911761,-0.0014036004713207,-0.0003964020911761,-0.0004058071370875,0.0014036004713207,0.0008202350626569,0.0009439624322691,0.0005982991616,-0.0003454971410944,-0.0014460142381183,-0.0003454971410944,-0.0003480549960353,0.0014460142381183,0.0008377786879164,0.0009636477506214,0.000542980296019,-5.0904950081746e-05,4.24137667976021e-05,-5.0904950081746e-05,-5.77521410522032e-05,-4.24137667976021e-05,-1.75436252595362e-05,-1.96853183523107e-05,5.53188655809593e-05,0.0005493520685686,-0.0014032515865301,0.0005493520685686,-0.0001404940037416,0.0014032515865301,-0.0012274878625507,0.000238350607128,0.0005982207727762,0.0004738907664518,-0.0014456610596594,0.0004738907664518,-0.0001252863306164,0.0014456610596594,-0.0012533069539262,0.0002437009419543,0.0005429036437671,7.54613021167282e-05,4.24094731293492e-05,7.54613021167282e-05,-1.52076731252698e-05,-4.24094731293492e-05,2.58190913754251e-05,-5.35033482638239e-06,5.5317129009103e-05,4.786960512745907,s,-3.522948209999828e-08,-0.0042101461038968994,-3.522948209999828e-08,-2.774474594000422e-07,0.0042101461038968994,8.772524539993679e-08,6.258440560005774e-08,0.0017947610788141002,-3.158349639996059e-08,-0.0043373787702303,-3.158349639996059e-08,-2.7332280180003576e-07,0.0043373787702303,8.839693779998797e-08,6.27299848999477e-08,0.0016288069835061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +57,177,34,-9.45949432277467e-05,-0.0014028030360947,-9.45949432277468e-05,0.0005586134470287,0.0014028030360947,0.000281472857527,-0.0012182188316746,0.0005981200362728,-7.77957827351441e-05,-0.0014452140341641,-7.77957827351441e-05,0.0004834912968467,0.0014452140341641,0.0002870868720968,-0.0012439824715179,0.0005428021914634,-1.67991604926042e-05,4.24109980694363e-05,-1.67991604926042e-05,7.5122150182017e-05,-4.24109980694363e-05,-5.6140145698071e-06,2.57636398433619e-05,5.53178448094902e-05,-0.0004363980050403,-0.0014029360717056,-0.0004363980050403,-0.0003612562622029,0.0014029360717056,0.0009143211770635,0.000852915362229,0.0005981408591757,-0.000379735306203,-0.0014453533049662,-0.000379735306203,-0.0003091414185717,0.0014453533049662,0.0009338266246252,0.0008706594070947,0.0005428219866722,-5.66626988373774e-05,4.24172332606186e-05,-5.66626988373774e-05,-5.21148436312037e-05,-4.24172332606186e-05,-1.95054475616451e-05,-1.77440448656823e-05,5.53188725034557e-05,0.0005310264318855,-0.0014027503610345,0.0005310264318855,-0.0001973587590236,0.0014027503610345,-0.0011957106866137,0.0003653388636923,0.0005980982762204,0.0004575688865681,-0.0014451615144111,0.0004575688865681,-0.0001743464523859,0.0014451615144111,-0.001220829528528,0.0003733587533307,0.0005427807252301,7.34575453174387e-05,4.24111533765694e-05,7.34575453174387e-05,-2.3012306637777e-05,-4.24111533765694e-05,2.51188419143776e-05,-8.0198896384474e-06,5.53175509903039e-05,4.872441950473512,s,3.3483617453353154e-08,-0.0042084894688348,3.3483617453244734e-08,-1.5741978000001836e-09,0.0042084894688348,8.334797680004981e-08,3.5394246700128e-08,0.0017943591716689002,3.779762995593985e-08,-0.0043357288535413995,3.779762995593985e-08,3.4258890999939746e-09,0.0043357288535413995,8.396819400013043e-08,3.56889075000112e-08,0.0016284049033657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +58,178,34,-3.58064514457362e-05,-0.0014028473218661,-3.58064514457363e-05,0.0005657691322665,0.0014028473218661,0.0001526070616583,-0.0012408689367858,0.0005981086393163,-2.69517157306222e-05,-0.0014452569896234,-2.69517157306222e-05,0.000489302860468,0.0014452569896234,0.0001554972265611,-0.0012670781773381,0.000542791097287,-8.8547357151146e-06,4.2409667757338e-05,-8.85473571511459e-06,7.6466271798489e-05,-4.2409667757338e-05,-2.89016490281282e-06,2.62092405522733e-05,5.53175420292658e-05,-0.0004718708845042,-0.0014028347545845,-0.0004718708845042,-0.0003137050187791,0.0014028347545845,0.0009983726580486,0.0007526190662292,0.0005980985331505,-0.0004100705080559,-0.0014452525414479,-0.0004100705080559,-0.0002677982922093,0.0014452525414479,0.001019626143361,0.0007682270921308,0.0005427796651948,-6.1800376448293e-05,4.24177868633465e-05,-6.1800376448293e-05,-4.59067265698411e-05,-4.24177868633465e-05,-2.12534853123739e-05,-1.56080259016163e-05,5.53188679556977e-05,0.0005078114524965,-0.0014027983269576,0.0005078114524965,-0.0002518612221117,0.0014027983269576,-0.0011509061905667,0.0004882675678101,0.0005980898385357,0.0004371613328617,-0.0014452087046019,0.0004371613328617,-0.0002212961812024,0.0014452087046019,-0.001175049309365,0.0004988692910512,0.000542771780324,7.06501196348102e-05,4.24103776442479e-05,7.06501196348102e-05,-3.05650409093613e-05,-4.24103776442479e-05,2.4143118798236e-05,-1.06017232411003e-05,5.5318058211796e-05,4.9579233882011176,s,1.3411654656368243e-07,-0.0042084804034082,1.3411654656368243e-07,2.0289137569995917e-07,0.0042084804034082,7.352914019992905e-08,1.7697253500050924e-08,0.0017942970110025,1.391090751777838e-07,-0.0043357182356732,1.391090751777838e-07,2.0838705629992933e-07,0.0043357182356732,7.406055709999713e-08,1.8205843900043032e-08,0.0016283425428058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +59,179,34,2.29720379739048e-05,-0.0014032754914381,2.29720379739047e-05,0.0005671871130472,0.0014032754914381,2.21234388023878e-05,-0.0012499522928618,0.0005981701117669,2.37864791133836e-05,-0.001445683271991,2.37864791133835e-05,0.0004902135139199,0.001445683271991,2.22580346799431e-05,-0.00127631993149,0.0005428527661267,-8.14441139479148e-07,4.24077805529778e-05,-8.14441139479146e-07,7.69735991272678e-05,-4.24077805529778e-05,-1.34595877554917e-07,2.63676386282183e-05,5.53173456401371e-05,-0.0005025251922138,-0.0014033070692932,-0.0005025251922138,-0.0002635914637311,0.0014033070692932,0.0010714853982173,0.0006441640828549,0.0005981683561566,-0.0004362638601,-0.0014457240788929,-0.0004362638601,-0.0002243942806681,0.0014457240788929,0.0010942540684136,0.0006574649210475,0.0005428493881376,-6.6261332113732e-05,4.24170095997359e-05,-6.6261332113732e-05,-3.91971830630439e-05,-4.24170095997359e-05,-2.27686701962897e-05,-1.3300838192595e-05,5.53189680189211e-05,0.0004796989024998,-0.0014032684018257,0.0004796989024998,-0.0003034882576806,0.0014032684018257,-0.001093546264577,0.0006058135786892,0.0005981622664368,0.0004126285849416,-0.0014456777745612,0.0004126285849416,-0.0002657056482043,0.0014456777745612,-0.0011164490719365,0.0006188810951405,0.0005428436399297,6.70703175581568e-05,4.2409372735527e-05,6.70703175581568e-05,-3.77826094762333e-05,-4.2409372735527e-05,2.29028073595206e-05,-1.30675164513184e-05,5.53186265070775e-05,5.0434048259287225,s,1.457482599048353e-07,-0.0042098509625570005,1.4574825990472688e-07,1.0739163550002161e-07,0.0042098509625570005,6.257244268776177e-08,2.5368682300035486e-08,0.0017945007343603,1.5120395498359083e-07,-0.0043370851254451,1.512039549834824e-07,1.1358504749996515e-07,0.0043370851254451,6.303115704332438e-08,2.6084697999891396e-08,0.001628545794194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +60,180,34,8.18340465642965e-05,-0.0014033068002037,8.18340465642964e-05,0.0005617584075368,0.0014033068002037,-0.0001086272185882,-0.0012453132126508,0.0005981479113959,7.45993886439378e-05,-0.0014457144979944,7.45993886439377e-05,0.0004851206575075,0.0014457144979944,-0.0001112495783564,-0.0012715505061073,0.0005428306014461,7.23465792035973e-06,4.24076977906298e-05,7.23465792035973e-06,7.66377500292581e-05,-4.24076977906298e-05,2.6223597681926e-06,2.62372934565002e-05,5.53173099498283e-05,-0.0005273589204739,-0.001403466828105,-0.0005273589204739,-0.0002101469667951,0.001403466828105,0.0011328475610871,0.0005286255644435,0.0005981741986506,-0.0004573625831493,-0.0014458848579566,-0.0004573625831493,-0.0001780880793712,0.0014458848579566,0.0011568820893167,0.0005394735824623,0.0005428551330357,-6.9996337324607e-05,4.24180298515803e-05,-6.9996337324607e-05,-3.20588874238457e-05,-4.24180298515803e-05,-2.40345282295396e-05,-1.08480180187935e-05,5.53190656149127e-05,0.0004456365635414,-0.0014033481162516,0.0004456365635414,-0.0003517466039213,0.0014033481162516,-0.0010241650704575,0.0007167291535879,0.0005981517525369,0.0003828807313636,-0.0014457585788892,0.0003828807313636,-0.0003071603312185,0.0014457585788892,-0.0010455767392952,0.0007321193387531,0.0005428327014371,6.27558321777351e-05,4.24104626375676e-05,6.27558321777351e-05,-4.45862727027921e-05,-4.24104626375676e-05,2.14116688377392e-05,-1.53901851651735e-05,5.53190510998203e-05,5.128886263656328,s,1.1168963179645185e-07,-0.0042101217445602995,1.1168963179634343e-07,-1.3516317960005205e-07,0.0042101217445602995,5.5272041399930666e-08,4.150538059999407e-08,0.0017944738625834,1.1753685823776873e-07,-0.0043373579348402,1.1753685823771452e-07,-1.2775308220000113e-07,0.0043373579348402,5.577166509998163e-08,4.241510810013959e-08,0.0016285184359188997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +61,181,34,0.0001402554284392,-0.0014027423656191,0.0001402554284392,0.0005492914486845,0.0014027423656191,-0.0002382118819798,-0.001226981656985,0.0005980066599878,0.0001250499318943,-0.0014451520939487,0.0001250499318943,0.0004738298801899,0.0014451520939487,-0.0002435623933557,-0.0012528014154661,0.0005426891747864,1.52054965449067e-05,4.24097283296309e-05,1.52054965449067e-05,7.54615684946272e-05,-4.24097283296309e-05,5.35051137592926e-06,2.58197584811752e-05,5.53174852014696e-05,-0.000545740594376,-0.0014029166257088,-0.000545740594376,-0.0001534313721468,0.0014029166257088,0.0011817667107403,0.0004072367231324,0.0005980383073999,-0.0004727763247006,-0.0014453375503366,-0.0004727763247006,-0.0001288632740496,0.0014453375503366,0.0012068038619788,0.0004155131686951,0.0005427192274415,-7.29642696753554e-05,4.24209246278211e-05,-7.29642696753554e-05,-2.45680980972432e-05,-4.24209246278211e-05,-2.50371512384969e-05,-8.27644556271621e-06,5.53190799583365e-05,0.0004056403909029,-0.0014027958359032,0.0004056403909029,-0.0003960897794445,0.0014027958359032,-0.0009435038533107,0.0008197914447743,0.0005980149098429,0.0003478879820664,-0.001445209372794,0.0003478879820664,-0.0003451880252337,0.001445209372794,-0.0009631898708551,0.0008373356756208,0.0005426957002364,5.77524088365654e-05,4.24135368908752e-05,5.77524088365654e-05,-5.0901754210887e-05,-4.24135368908752e-05,1.96860175443825e-05,-1.75442308465123e-05,5.5319209606459e-05,5.214367701383933,s,1.5522496609994899e-07,-0.0042084548272311,1.5522496609994899e-07,-2.2970290680006736e-07,0.0042084548272311,5.0975449799955073e-08,4.6510921699878353e-08,0.0017940598772306,1.6158926010001158e-07,-0.0043356990170793,1.6158926010001158e-07,-2.2141909340002213e-07,0.0043356990170793,5.159776799996529e-08,4.7428849800053643e-08,0.0016281041024643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +62,182,34,0.0001971398657516,-0.0014021111962339,0.0001971398657516,0.0005307563602167,0.0014021111962339,-0.0003651615606003,-0.0011952158479094,0.0005978613300412,0.000174129020371,-0.0014445232826012,0.000174129020371,0.0004572982656555,0.0014445232826012,-0.0003731816801135,-0.0012203353538119,0.0005425434168008,2.30108453806324e-05,4.24120863672565e-05,2.30108453806324e-05,7.34580945612531e-05,-4.24120863672565e-05,8.02011951324917e-06,2.5119505902519e-05,5.5317913240346e-05,-0.0005579231171075,-0.0014021262096292,-0.0005579231171075,-9.47832238161408e-05,0.0014021262096292,0.0012177124166569,0.0002813916245228,0.0005978575668339,-0.0004827909906618,-0.0014445504868265,-0.0004827909906618,-7.79766629910571e-05,0.0014445504868265,0.0012434778269154,0.000287005810225,0.0005425387483742,-7.51321264456869e-05,4.24242771972516e-05,-7.51321264456869e-05,-1.68065608250837e-05,-4.24242771972517e-05,-2.57654102585204e-05,-5.61418570221092e-06,5.53188184596312e-05,0.0003610738031267,-0.0014021191886723,0.0003610738031267,-0.0004360512671295,0.0014021191886723,-0.0008525139599987,0.0009138508963374,0.0005978603550008,0.0003089589941949,-0.0014445358112272,0.0003089589941949,-0.0003793914368371,0.0014445358112272,-0.0008702585708769,0.0009333569360108,0.0005425411996584,5.21148089317193e-05,4.24166225548048e-05,5.21148089317193e-05,-5.66598302924077e-05,-4.24166225548048e-05,1.77446108782361e-05,-1.95060396733337e-05,5.53191553424268e-05,5.299849139111539,s,2.905517708000154e-07,-0.0042063565945354,2.905517708000154e-07,-7.813072894083742e-08,0.0042063565945354,3.6896057900104653e-08,2.667295080009506e-08,0.0017935792518759,2.970239040999594e-07,-0.0043336095806549004,2.970239040999594e-07,-6.983417265705831e-08,0.0043336095806549004,3.757592500011359e-08,2.7392423900007325e-08,0.0016276233648334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +63,183,34,0.0002516288638823,-0.0014020567020393,0.0002516288638823,0.0005073769731348,0.0014020567020393,-0.0004880529814403,-0.0011504318032938,0.0005978355974882,0.0002210643540158,-0.0014444686839302,0.0002210643540158,0.0004367264706401,0.0014444686839302,-0.0004986549776393,-0.0011745755745692,0.0005425171966043,3.05645098665189e-05,4.24119818909408e-05,3.05645098665189e-05,7.06505024946549e-05,-4.24119818909408e-05,1.06019961989781e-05,2.4143771275418e-05,5.53184008839561e-05,-0.0005645555775126,-0.0014017862081667,-0.0005645555775126,-3.5678361062404e-05,0.0014017862081667,0.0012403396128433,0.0001525420801179,0.0005977705888233,-0.0004880790512992,-0.0014442112409791,-0.0004880790512992,-2.68182248431356e-05,0.0014442112409791,0.0012665507205574,0.0001554323284737,0.0005424522069395,-7.6476526213462e-05,4.2425032812387e-05,-7.6476526213462e-05,-8.860136219268e-06,-4.2425032812387e-05,-2.62111077141246e-05,-2.89024835580406e-06,5.53183818838647e-05,0.0003134861514697,-0.001401995757508,0.0003134861514697,-0.0004714926763393,0.001401995757508,-0.0007522760576782,0.0009978853537914,0.0005978210149303,0.0002675799462572,-0.0014444126466685,0.0002675799462572,-0.0004096950093453,0.0014444126466685,-0.0007678845441145,0.0010191394021492,0.0005425019270494,4.59062052124932e-05,4.24168891605905e-05,4.59062052124932e-05,-6.17976669939728e-05,-4.24168891605905e-05,1.56084864362918e-05,-2.12540483577066e-05,5.5319087880938e-05,5.385330576839144,s,5.594378393999552e-07,-0.004205838667714,5.594378393999552e-07,2.0593573309596368e-07,0.004205838667714,1.057372480003059e-08,-4.3693844998301395e-09,0.0017934272012418,5.652489737999699e-07,-0.0043330925715778,5.652489737999699e-07,2.1323645166439328e-07,0.0043330925715778,1.1198803599949195e-08,-3.8439462999358825e-09,0.0016274713305931996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +64,184,34,0.0003032379350849,-0.0014025615227157,0.0003032379350849,0.000479337264579,0.0014025615227157,-0.0006055591392369,-0.0010931139610227,0.0005979183953758,0.0002654550457181,-0.0014449727530806,0.0002654550457181,0.0004122664434254,0.0014449727530806,-0.0006186269949956,-0.0011160173772825,0.0005425993965074,3.77828893667433e-05,4.24112303648386e-05,3.77828893667433e-05,6.70708211536418e-05,-4.24112303648386e-05,1.30678557586995e-05,2.29034162597367e-05,5.53189988683769e-05,-0.0005659479909462,-0.0014021588376444,-0.0005659479909462,2.31210199588122e-05,0.0014021588376444,0.0012494343084294,2.2112147513112e-05,0.0005978246655789,-0.0004889639045278,-0.0014445820017825,-0.0004889639045278,2.39387258758166e-05,0.0014445820017825,0.0012758037385978,2.22466415644043e-05,0.0005425065743153,-7.69840864183256e-05,4.24231641380488e-05,-7.69840864183256e-05,-8.17705917004094e-07,-4.24231641380488e-05,-2.63694301684064e-05,-1.3449405129246e-07,5.531809126367e-05,0.0002633841938897,-0.0014024837578045,0.0002633841938897,-0.0005021442433758,0.0014024837578045,-0.0006438847243336,0.0010709926027782,0.0005979017970761,0.000224187889372,-0.0014448995005987,0.000224187889372,-0.0004358854152655,0.0014448995005987,-0.0006571859238074,0.0010937618043151,0.000542582632145,3.91963045177093e-05,4.24157427941555e-05,3.91963045177093e-05,-6.62588281102478e-05,-4.24157427941555e-05,1.33011994737468e-05,-2.27692015368543e-05,5.53191649310394e-05,5.47081201456675,s,6.741380284000032e-07,-0.0042072041181646005,6.741380284000032e-07,3.140411620122319e-07,0.0042072041181646005,-9.555141099897892e-09,-9.210731387885099e-09,0.0017936448580308001,6.790305622999626e-07,-0.0043344542554618,6.790305622999626e-07,3.1975403571660524e-07,0.0043344542554618,-9.180205199970856e-09,-8.931402995654425e-09,0.0016276886029676998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +65,185,34,0.0003514729667489,-0.0014027532474836,0.0003514729667489,0.0004454873606604,0.0014027532474836,-0.0007164363901022,-0.0010237858520726,0.000597934068212,0.0003068858770922,-0.0014451660230239,0.0003068858770922,0.0003827301320416,0.0014451660230239,-0.0007318270373142,-0.0010451981176977,0.0005426145262916,4.45870896567539e-05,4.2412775540318e-05,4.45870896567539e-05,6.27572286188246e-05,-4.2412775540318e-05,1.53906472119456e-05,2.14122656250979e-05,5.53195419204328e-05,-0.0005610566014823,-0.0014025158986546,-0.0005610566014823,8.16441457236405e-05,0.0014025158986546,0.0012448428450082,-0.0001085539472092,0.0005978738528323,-0.0004844072892909,-0.0014449383133922,-0.0004844072892909,7.44119688995863e-05,0.0014449383133922,0.0012710818642711,-0.0001111766658618,0.000542555723385,-7.66493121913515e-05,4.24224147375772e-05,-7.66493121913515e-05,7.23217682405242e-06,-4.24224147375773e-05,-2.62390192629035e-05,2.62271865259352e-06,5.53181294473201e-05,0.000210023783173,-0.0014027204634979,0.000210023783173,-0.000527023771393,0.0014027204634979,-0.0005284151646782,0.0011323616344225,0.0005979297592953,0.0001779657582715,-0.0014451370092159,0.0001779657582715,-0.0004570296274163,0.0014451370092159,-0.000539263459562,0.0011563966856106,0.000542610464466,3.20580249014603e-05,4.24165457179904e-05,3.20580249014604e-05,-6.999414397673e-05,-4.24165457179904e-05,1.08482948838727e-05,-2.40350511880428e-05,5.53192948293068e-05,5.556293452294356,s,4.4014843959992917e-07,-0.0042079896096361,4.4014843959992917e-07,1.0773499104052738e-07,0.0042079896096361,-8.70977219990729e-09,2.183514070009003e-08,0.0017937376803395999,4.443460727999722e-07,-0.004335241345632,4.443460727999722e-07,1.1247352488632286e-07,0.004335241345632,-8.632605099940377e-09,2.1902051100053735e-08,0.0016277807141426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +66,186,34,0.0003957564504449,-0.0014022428061636,0.0003957564504449,0.0004055871874505,0.0014022428061636,-0.0008194646310138,-0.0009431681302764,0.0005978060642379,0.0003448531258483,-0.0014446591764884,0.0003448531258483,0.000347832206913,0.0014446591764884,-0.0008370094761138,-0.0009628547157901,0.0005424862048456,5.09033245966016e-05,4.24163703247783e-05,5.09033245966016e-05,5.77549805374865e-05,-4.24163703247783e-05,1.75448451000503e-05,1.96865855136366e-05,5.53198593923206e-05,-0.0005489423893201,-0.0014021757229058,-0.0005489423893201,0.0001397252385732,0.0014021757229058,0.0012265524577521,-0.0002380723949083,0.0005977820677293,-0.0004734676350547,-0.0014445996785616,-0.0004734676350547,0.0001245218495768,0.0014445996785616,0.001252373893645,-0.0002434235505679,0.0005424636160854,-7.54747542653639e-05,4.24239556557755e-05,-7.54747542653639e-05,1.52033889963892e-05,-4.24239556557755e-05,-2.58214358928814e-05,5.35115565966591e-06,5.53184516439087e-05,0.0001533931935625,-0.0014022543511932,0.0001533931935625,-0.0005454473770583,0.0014022543511932,-0.0004070917448444,0.0011812972325036,0.0005978153303063,0.0001288257185025,-0.0014446737915169,0.0001288257185025,-0.0004724847580415,0.0014446737915169,-0.0004153683868353,0.0012063349161225,0.0005424959518265,2.45674750599997e-05,4.24194403236827e-05,2.45674750599997e-05,-7.29626190167923e-05,-4.24194403236827e-05,8.27664199088136e-06,-2.50376836188686e-05,5.53193784798171e-05,5.641774890021961,s,2.0725468730001077e-07,-0.0042066728802626,2.0725468730001077e-07,-1.3495103459997167e-07,0.0042066728802626,-3.9181061000357655e-09,5.6707318899862705e-08,0.0017934034622735001,2.1120929609999778e-07,-0.0043339326465669,2.1120929609999778e-07,-1.3070155170007494e-07,0.0043339326465669,-3.969304099976905e-09,5.664976450003162e-08,0.0016274457727575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +67,187,34,0.0004356474192458,-0.0014014991436415,0.0004356474192458,0.0003609177984137,0.0014014991436415,-0.0009134934128435,-0.0008522091942036,0.0005976353017981,0.0003789850023903,-0.0014439199837173,0.0003789850023903,0.0003087994812665,0.0014439199837173,-0.0009330002431957,-0.0008699543909951,0.0005423153465297,5.66624168554827e-05,4.24208400757494e-05,5.66624168554827e-05,5.21183171472799e-05,-4.24208400757494e-05,1.95068303522254e-05,1.77451967914338e-05,5.53199552684367e-05,-0.0005302076335167,-0.0014014297756412,-0.0005302076335167,0.0001965010445241,0.0014014297756412,0.0011947942791579,-0.0003649841759254,0.0005976118003013,-0.0004567351889813,-0.0014438570003961,-0.0004567351889813,0.0001734915428408,0.0014438570003961,0.0012199154844424,-0.000373005174328,0.0005422928333378,-7.34724445354103e-05,4.24272247548425e-05,-7.34724445354103e-05,2.30095016832893e-05,-4.24272247548425e-05,-2.51212052845172e-05,8.02099840258833e-06,5.53189669634906e-05,9.47701427506193e-05,-0.0014015146963367,9.47701427506192e-05,-0.0005576467377013,0.0014015146963367,-0.0002813024084954,0.0012172618694699,0.0005976475047713,7.79639313639172e-05,-0.0014439380141839,7.79639313639171e-05,-0.0004825155126294,0.0014439380141839,-0.0002869167292041,0.0012430278558498,0.0005423282994362,1.6806211386702e-05,4.24233178471756e-05,1.6806211386702e-05,-7.51312250719129e-05,-4.24233178471756e-05,5.6143207087601e-06,-2.57659863799372e-05,5.53192053351114e-05,5.727256327749567,s,2.099284797192944e-07,-0.0042044436156194,2.0992847971919954e-07,-2.2789476349994228e-07,0.0042044436156194,-1.5421809999274956e-09,6.849934089999538e-08,0.0017928946068707001,2.1374477291719984e-07,-0.0043317149982973,2.1374477291710497e-07,-2.244885221000005e-07,0.0043317149982973,-1.487957399979277e-09,6.829052669990628e-08,0.0016269364793037003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +68,188,34,0.0004709474549626,-0.0014011959162235,0.0004709474549626,0.0003130791587747,0.0014011959162235,-0.0009974967400925,-0.000751989352045,0.0005975583094214,0.0004091463577897,-0.0014436191191586,0.0004091463577897,0.0002671693984602,0.0014436191191586,-0.0010187517683768,-0.0007675984848779,0.0005422383536665,6.18010971729717e-05,4.24232029350791e-05,6.18010971729717e-05,4.5909760314546e-05,-4.24232029350791e-05,2.12550282843813e-05,1.56091328329211e-05,5.53199557548973e-05,-0.0005061163310166,-0.0014009311061206,-0.0005061163310166,0.0002509967201017,0.0014009311061206,0.0011499833306609,-0.0004878557636763,0.0005974958379511,-0.0004354522386103,-0.0014433603495627,-0.0004354522386103,0.0002204323409113,0.0014433603495627,0.0011741288910021,-0.0004984587870278,0.0005421764871801,-7.06640924062843e-05,4.24292434421535e-05,-7.06640924062843e-05,3.05643791904387e-05,-4.24292434421535e-05,-2.41455603411467e-05,1.0603023351504e-05,5.53193507710027e-05,3.56429707216426e-05,-0.0014011779532502,3.56429707216425e-05,-0.0005642521764358,0.0014011779532502,-0.0001524982719966,0.0012399058267831,0.0005975646979983,2.67831098849252e-05,-0.0014436030282754,2.67831098849251e-05,-0.0004877758868773,0.0014436030282754,-0.0001553886107625,0.001266117590752,0.0005422458537768,8.85986083671721e-06,4.24250750252059e-05,8.85986083671722e-06,-7.64762895584477e-05,-4.24250750252059e-05,2.89033876593236e-06,-2.62117639688229e-05,5.5318844221453e-05,5.812737765477172,s,4.740946676426173e-07,-0.0042033049755942995,4.7409466764251565e-07,-1.762975593999237e-07,0.0042033049755942995,-1.1681428199982998e-08,6.071106180001277e-08,0.0017926188453708,4.772290643251885e-07,-0.0043305824969967,4.772290643250902e-07,-1.7414750579997562e-07,0.0043305824969967,-1.1488137199942416e-08,6.031884630013432e-08,0.0016266606946233999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +69,189,34,0.0005015188285232,-0.0014015883511912,0.0005015188285232,0.0002629023639645,0.0014015883511912,-0.0010705731173455,-0.0006436315378709,0.0005976198672804,0.0004352556495902,-0.0014440114318308,0.0004352556495902,0.0002237029887268,0.0014440114318308,-0.0010933434257512,-0.0006569333292064,0.0005422998017292,6.62631789329957e-05,4.24230806396333e-05,6.62631789329957e-05,3.91993752376839e-05,-4.24230806396333e-05,2.27703084056835e-05,1.3301791335457e-05,5.53200655512174e-05,-0.000477643242832,-0.0014011278708767,-0.000477643242832,0.0003025985573208,0.0014011278708767,0.0010926642637739,-0.0006053323088054,0.0005975190277346,-0.0004105608311461,-0.0014435560178466,-0.0004105608311461,0.0002648141271559,0.0014435560178466,0.0011155692886785,-0.0006184012666109,0.0005421992751103,-6.70824116858852e-05,4.24281469699228e-05,-6.70824116858852e-05,3.77844301649235e-05,-4.24281469699229e-05,-2.29050249045978e-05,1.30689578054912e-05,5.53197526243722e-05,-2.3147549050331e-05,-0.0014015583820549,-2.31475490503311e-05,-0.0005656293949974,0.0014015583820549,-2.2110522734591e-05,0.0012490194112242,0.0005976252807584,-2.39647732825811e-05,-0.001443982410022,-2.39647732825812e-05,-0.0004886449533894,0.001443982410022,-2.22450430462893e-05,0.0012753895554704,0.000542306662974,8.17224232250195e-07,4.24240279671568e-05,8.17224232250198e-07,-7.69844416079936e-05,-4.24240279671568e-05,1.34520311697895e-07,-2.63701442461859e-05,5.53186177843487e-05,5.8982192032047775,s,7.280366408689893e-07,-0.0042042746041227996,7.28036640868891e-07,-1.284737120999923e-07,0.0042042746041227996,-1.937630619108682e-08,5.55645479000718e-08,0.0017927641757734003,7.300451615189013e-07,-0.0043315498596994,7.300451615187997e-07,-1.2783750669999837e-07,0.0043315498596994,-1.9180118989304672e-08,5.495965310002397e-08,0.0016268057398135002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +70,190,34,0.0005265063442659,-0.0014019525190861,0.0005265063442659,0.0002098165116737,0.0014019525190861,-0.001131918572227,-0.0005282253365286,0.0005976737942578,0.0004565069456561,-0.0014443765415098,0.0004565069456561,0.0001777554343396,0.0014443765415098,-0.0011559548319721,-0.000539074079517,0.0005423535263192,6.99993986097981e-05,4.2424022423799e-05,6.99993986097981e-05,3.20610773340908e-05,-4.2424022423799e-05,2.40362597450808e-05,1.08487429883957e-05,5.53202679385874e-05,-0.0004443763633223,-0.0014016056973067,-0.0004443763633223,0.0003508255753241,0.0014016056973067,0.0010234100319259,-0.0007161607141637,0.0005975950631462,-0.0003816086978452,-0.0014440329039397,-0.0003816086978452,0.0003062358162213,0.0014440329039397,0.0010448235529205,-0.0007315525222041,0.0005422748498867,-6.2767665477091e-05,4.24272066330296e-05,-6.2767665477091e-05,4.45897591028381e-05,-4.24272066330296e-05,-2.14135209945495e-05,1.53918080403483e-05,5.53202132595705e-05,-8.16031885680227e-05,-0.0014019838115418,-8.16031885680228e-05,-0.0005608171942768,0.0014019838115418,0.000108511016332,0.0012444534630449,0.0005976927262475,-7.43703628905824e-05,-0.0014444075896782,-7.43703628905825e-05,-0.0004841668408474,0.0014444075896782,0.0001111338029713,0.0012706932268155,0.0005423739869884,-7.23282567743879e-06,4.24237781363732e-05,-7.23282567743879e-06,-7.66503534294147e-05,-4.24237781363732e-05,-2.6227866393822e-06,-2.62397637705716e-05,5.53187392591211e-05,5.9837006409323825,s,5.267923755773171e-07,-0.0042055420279345996,5.267923755772222e-07,-1.751072789999645e-07,0.0042055420279345996,2.476030900127571e-09,6.741235259984449e-08,0.0017929615836515,5.278849203175958e-07,-0.0043328170351277,5.27884920317501e-07,-1.7559028650006303e-07,0.0043328170351277,2.5239197000409943e-09,6.662509440002497e-08,0.0016270023631943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +71,191,34,0.0005450003503673,-0.0014016028169787,0.0005450003503673,0.0001534698818462,0.0014016028169787,-0.0011808359479707,-0.000406963633156,0.0005975833725232,0.000472031591617,-0.0014440298214458,0.000472031591617,0.0001288990190124,0.0014440298214458,-0.0012058749433302,-0.0004152405570651,0.0005422629279984,7.29687587503369e-05,4.24270044671065e-05,7.29687587503369e-05,2.45708628338071e-05,-4.24270044671065e-05,2.50389953595615e-05,8.27692390913444e-06,5.53204445248155e-05,-0.0004052863072147,-0.001401516255037,-0.0004052863072147,0.0003950629969137,0.001401516255037,0.000942882609952,-0.0008191535330454,0.000597557891775,-0.0003475207928284,-0.0014439449228248,-0.0003475207928284,0.0003441566078362,0.0014439449228248,0.0009625701676081,-0.0008366996292104,0.0005422373262095,-5.77655143862678e-05,4.24286677877874e-05,-5.77655143862678e-05,5.090638907749e-05,-4.24286677877874e-05,-1.96875576561109e-05,1.75460961649754e-05,5.53205655654971e-05,-0.0001396086011941,-0.0014017070992051,-0.0001396086011941,-0.0005487699355634,0.0014017070992051,0.000237989823069,0.0012261917422901,0.0005976168159095,-0.0001244045060552,-0.0014441328722397,-0.0001244045060552,-0.0004732933626947,0.0014441328722397,0.000243341155648,0.0012520139411938,0.0005422976628533,-1.52040951388545e-05,4.24257730345405e-05,-1.52040951388545e-05,-7.54765728686891e-05,-4.24257730345405e-05,-5.35133257902589e-06,-2.58221989037082e-05,5.53191530561694e-05,6.069182078659988,s,1.0544195849996186e-07,-0.0042048261712208,1.0544195849996186e-07,-2.3705680350010003e-07,0.0042048261712208,3.64850502998905e-08,7.457608870004538e-08,0.0017927580802077,1.062927333999816e-07,-0.004332107616510299,1.062927333999816e-07,-2.3773584609997284e-07,0.004332107616510299,3.637992589998278e-08,7.375491829992101e-08,0.0016267979170612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +72,192,34,0.0005570648615596,-0.0014008070569688,0.0005570648615596,9.49048777575731e-05,0.0014008070569688,-0.0012167806012345,-0.0002812181386415,0.0005974024487896,0.0004819268262343,-0.0014432381294907,0.0004819268262343,7.80951454458661e-05,0.0014432381294907,-0.0012425479636537,-0.0002868325754564,0.0005420821303942,7.51380353252908e-05,4.24310725219423e-05,7.51380353252908e-05,1.68097323117053e-05,-4.24310725219423e-05,2.57673624192079e-05,5.61443681497638e-06,5.53203183954455e-05,-0.0003608172477805,-0.0014008428643049,-0.0003608172477805,0.0004347953290332,0.0014008428643049,0.0008519714512402,-0.0009131653080111,0.0005974055014861,-0.0003086882894577,-0.0014432746596369,-0.0003086882894577,0.000378129678042,0.0014432746596369,0.0008697173997491,-0.0009326734523146,0.0005420848236241,-5.21289583228107e-05,4.2431795332037e-05,-5.21289583228107e-05,5.66656509912347e-05,-4.2431795332037e-05,-1.77459485089303e-05,1.95081443035057e-05,5.53206778620036e-05,-0.0001963391633541,-0.0014009637487465,-0.0001963391633541,-0.0005299997269923,0.0014009637487465,0.0003648710498241,0.0011944595861079,0.0005974484579601,-0.0001733288912487,-0.0014433931965049,-0.0001733288912487,-0.0004565247296463,0.0014433931965049,0.0003728923345181,0.0012195815478646,0.0005421287159301,-2.30102721053692e-05,4.24294477583057e-05,-2.30102721053692e-05,-7.34749973459688e-05,-4.24294477583057e-05,-8.02128469401933e-06,-2.51219617567823e-05,5.53197420300354e-05,6.154663516387593,s,-9.154957499992529e-08,-0.0042026136700202,-9.154957499992529e-08,-2.995202015268657e-07,0.0042026136700202,6.189982979990351e-08,7.613945530006785e-08,0.0017922564082358,-9.035447210000921e-08,-0.0043299059856325,-9.035447210000921e-08,-2.999061584339248e-07,0.0043299059856325,6.1770613500134e-08,7.552009360011977e-08,0.0016262956699484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +73,193,34,0.0005633325823179,-0.0014002355272209,0.0005633325823179,3.5618136330712e-05,0.001400235527221,-0.0012394018051707,-0.0001524418094865,0.0005972720440117,0.0004868493816724,-0.0014426693722559,0.0004868493816724,2.67551450330252e-05,0.0014426693722559,-0.0012656150232526,-0.0001553321615161,0.0005419521295824,7.64832006454595e-05,4.24338450349499e-05,7.64832006454595e-05,8.86299129768744e-06,-4.24338450349499e-05,2.62132180818988e-05,2.89035202966599e-06,5.53199144292323e-05,-0.0003124821956284,-0.0014001898864956,-0.0003124821956284,0.0004697940820876,0.0014001898864956,0.0007517482494621,-0.0009971550264154,0.0005972618630564,-0.0002665627894405,-0.0014426244457039,-0.0002665627894405,0.0004079899368809,0.0014426244457039,0.0007673580764393,-0.0010184114144301,0.0005419412888906,-4.59194061878915e-05,4.2434559208325e-05,-4.59194061878915e-05,6.18041452067407e-05,-4.2434559208325e-05,-1.56098269771959e-05,2.12563880146887e-05,5.53205741658363e-05,-0.0002508259719818,-0.0014004031544338,-0.0002508259719818,-0.0005057772947754,0.0014004031544338,0.0004877199217134,0.0011496692100279,0.0005973220765234,-0.0002202606140671,-0.0014428356225561,-0.0002202606140671,-0.0004351100639672,0.0014428356225561,0.0004983233339943,0.0011738155616564,0.0005420019023273,-3.05653579146447e-05,4.24324681223227e-05,-3.05653579146447e-05,-7.06672308081959e-05,-4.24324681223227e-05,-1.06034122808586e-05,-2.41463516285125e-05,5.53201741961036e-05,6.240144954115199,s,2.441470770003654e-08,-0.0042008285681503,2.441470770003654e-08,-3.6507635708797094e-07,0.0042008285681504,6.636600479988184e-08,7.237412599997786e-08,0.0017918559835915,2.5978164800013548e-08,-0.0043281294405159,2.5978164800013548e-08,-3.649820532748401e-07,0.0043281294405159,6.638718099999819e-08,7.198571020002043e-08,0.0016258953208003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +74,194,34,0.0005644082342776,-0.0014003919188908,0.0005644082342776,-2.33162435879153e-05,0.0014003919188908,-0.0012485045973204,-2.20858986663327e-05,0.0005972904379133,0.0004874174640681,-0.0014428250615819,0.0004874174640681,-2.41354772105278e-05,0.0014428250615819,-0.0012748761640283,-2.22203305234534e-05,0.0005419708859109,7.6990770209469e-05,4.24331426911698e-05,7.6990770209469e-05,8.19233622612063e-07,-4.24331426911698e-05,2.63715667078751e-05,1.34431857120597e-07,5.5319552002396e-05,-0.0002617159640039,-0.0014001593548289,-0.0002617159640039,0.0005000479097999,0.0014001593548289,0.0006433823784128,-0.0010702196941828,0.0005972440781511,-0.0002225096704086,-0.0014425932592517,-0.0002225096704086,0.0004337823590604,0.0014425932592517,0.0006566847623628,-0.0010929912547846,0.0005419236561645,-3.92062935953328e-05,4.24339044228342e-05,-3.92062935953328e-05,6.62655507395004e-05,-4.24339044228342e-05,-1.3302383949951e-05,2.27715606017999e-05,5.53204219866644e-05,-0.000302419468168,-0.0014005316130729,-0.000302419468168,-0.000477180716712,0.0014005316130729,0.0006051776380746,0.0010923717835951,0.0005973360957701,-0.0002646336343242,-0.0014429640433048,-0.0002646336343242,-0.0004100950098812,0.0014429640433048,0.0006182470799651,0.0011152776244143,0.0005420155152934,-3.77858338437263e-05,4.24324302318739e-05,-3.77858338437263e-05,-6.70857068307718e-05,-4.24324302318739e-05,-1.30694418905056e-05,-2.29058408191629e-05,5.53205804767117e-05,6.325626391842805,s,2.728021057000021e-07,-0.0042010828867925995,2.728021057000021e-07,-4.490505000152704e-07,0.0042010828867925995,5.541916699993658e-08,6.619074596715332e-08,0.0017918706118345003,2.7415933529997697e-07,-0.0043283823641384,2.7415933529997697e-07,-4.481280313277879e-07,0.0043283823641384,5.5678299600079965e-08,6.603910624662472e-08,0.0016259100573688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +75,195,34,0.0005598133666467,-0.0014009372299562,0.0005598133666467,-8.16447007333011e-05,0.0014009372299562,-0.0012439649081985,0.000108472193158,0.0005973845711055,0.0004831571709159,-0.0014433688969288,0.0004831571709159,-7.44128677782921e-05,0.0014433688969288,-0.0012702059170858,0.0001110952124114,0.0005420650058223,7.66561957308067e-05,4.24316669725824e-05,7.66561957308067e-05,-7.23183295500814e-06,-4.24316669725824e-05,2.62410088873018e-05,-2.62301925341213e-06,5.53195652832806e-05,-0.000208907363552,-0.0014006973359409,-0.000208907363552,0.000525250685702,0.0014006973359409,0.0005280418360019,-0.0011315691554675,0.0005973354256806,-0.0001768419735169,-0.0014431289488541,-0.0001768419735169,0.0004552493400134,0.0014431289488541,0.0005388908974227,-0.0011556063839176,0.0005420150022791,-3.206539003509e-05,4.24316129131679e-05,-3.206539003509e-05,7.000134568864e-05,-4.2431612913168e-05,-1.08490614207325e-05,2.40372284501021e-05,5.53204234014234e-05,-0.0003506465715355,-0.0014010653721317,-0.0003506465715355,-0.0004440150826783,0.0014010653721317,0.0007159841469692,0.0010231545030724,0.0005974278881347,-0.0003060548850738,-0.0014434970825486,-0.0003060548850738,-0.0003812440497078,0.0014434970825486,0.0007313765283252,0.0010445687785814,0.0005421068411955,-4.45916864616534e-05,4.24317104168174e-05,-4.45916864616534e-05,-6.27710329705058e-05,-4.24317104168174e-05,-1.53923813559978e-05,-2.14142755089976e-05,5.53210469392692e-05,6.41110782957041,s,2.594315592000093e-07,-0.0042026999380287994,2.594315592000093e-07,-4.0909770960114106e-07,0.0042026999380287994,6.107477259988028e-08,5.754076290009208e-08,0.0017921478849207998,2.6031232519996457e-07,-0.0043299949283315,2.6031232519996457e-07,-4.0757747269207223e-07,0.0043299949283315,6.150866210005539e-08,5.760707519992733e-08,0.0016261868492969001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +76,196,34,0.0005482244259009,-0.0014009436013613,0.0005482244259009,-0.0001393908444054,0.0014009436013613,-0.0012257478881168,0.0002378823224692,0.0005973686009848,0.0004727420207926,-0.0014433761304008,0.0004727420207926,-0.0001241875434887,0.0014433761304008,-0.0012515712007165,0.0002432340318659,0.0005420486465844,7.54824051083275e-05,4.24325290394267e-05,7.54824051083275e-05,-1.52033009166918e-05,-4.24325290394267e-05,2.58233125997006e-05,-5.35170939677218e-06,5.53199544004487e-05,-0.0001533841269552,-0.0014009162995605,-0.0001533841269552,0.0005443359671768,0.0014009162995605,0.0004068814021924,-0.0011805099429621,0.0005973626863665,-0.0001288095724674,-0.0014433481303089,-0.0001288095724674,0.0004713654806296,0.0014433481303089,0.0004151584335205,-0.0012055497384153,0.0005420421062437,-2.45745544877765e-05,4.24318307483275e-05,-2.45745544877765e-05,7.29704865471957e-05,-4.24318307483275e-05,-8.27703132812206e-06,2.5039795453175e-05,5.5320580122763e-05,-0.0003948757725239,-0.0014010958528289,-0.0003948757725239,-0.0004051438761846,0.0014010958528289,0.000818955074947,0.0009426684171348,0.0005974170074835,-0.0003439671190411,-0.0014435290035719,-0.0003439671190411,-0.0003473747044517,0.0014435290035719,0.0008365018396932,0.0009623566482459,0.0005420955837616,-5.09086534827475e-05,4.24331507430313e-05,-5.09086534827475e-05,-5.77691717329103e-05,-4.24331507430313e-05,-1.75467647462535e-05,-1.96882311111392e-05,5.53214237218878e-05,6.496589267298016,s,-3.547357819999337e-08,-0.0042029557537507,-3.547357819999337e-08,-1.98753413199965e-07,0.0042029557537507,8.858902259998528e-08,4.079664189999589e-08,0.0017921482948348,-3.467071589996788e-08,-0.0043302532642816,-3.467071589996788e-08,-1.9676731080001814e-07,0.0043302532642816,8.90724971999669e-08,4.094169650005475e-08,0.0016261863365897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +77,197,34,0.0005296244267463,-0.0014003057068409,0.0005296244267463,-0.0001959401502528,0.0014003057068409,-0.0011940454731268,0.0003647147794976,0.0005972236627274,0.000456143498289,-0.0014427411429865,0.000456143498289,-0.0001729307375902,0.0014427411429865,-0.0012191684479545,0.0003727365675945,0.0005419031311962,7.34809284573015e-05,4.24354361455679e-05,7.34809284573015e-05,-2.30094126626114e-05,-4.24354361455678e-05,2.51229748276656e-05,-8.0217880969533e-06,5.53205315311741e-05,-9.52986394589365e-05,-0.0014004138361232,-9.52986394589365e-05,0.0005566728748837,0.0014004138361232,0.0002811971551032,-0.0012164717359328,0.000597244990526,-7.84848010360317e-05,-0.0014428482607896,-7.84848010360318e-05,0.0004815329553335,0.0014428482607896,0.0002868115599673,-0.0012422398519411,0.0005419244714457,-1.6813838422905e-05,4.24344246664181e-05,-1.6813838422905e-05,7.51399195502362e-05,-4.24344246664181e-05,-5.61440486403066e-06,2.57681160082745e-05,5.53205190803255e-05,-0.0004345501501534,-0.0014004563645906,-0.0004345501501534,-0.0003607661766365,0.0014004563645906,0.0009129464143974,0.0008517852222951,0.000597271081458,-0.0003778820375226,-0.0014428925667727,-0.0003778820375226,-0.0003086332974398,0.0014428925667727,0.0009324553080576,0.0008695317506609,0.0005419495450338,-5.66681126308064e-05,4.24362021820519e-05,-5.66681126308064e-05,-5.21328791967171e-05,-4.24362021820519e-05,-1.95088936602462e-05,-1.77465283657962e-05,5.53215364242132e-05,6.582070705025621,s,-2.2436286603648393e-07,-0.0042011759075546995,-2.2436286603648393e-07,-3.3452005600027174e-08,0.0042011759075546995,9.809637379991614e-08,2.8265859900074297e-08,0.0017917397347113999,-2.2334026963168616e-07,-0.0043284819705488005,-2.2334026963179458e-07,-3.1079696499996395e-08,0.0043284819705488005,9.842007040014762e-08,2.846631430011501e-08,0.0016257771476757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +78,198,34,0.0005051877286554,-0.0013996066670932,0.0005051877286554,-0.0002503616336094,0.0013996066670932,-0.0011492592494102,0.0004875300322928,0.0005970705251542,0.0004345147624385,-0.0014420452941093,0.0004345147624385,-0.0002197970936855,0.0014420452941093,-0.001173406582638,0.0004981340364696,0.0005417496102998,7.06729662169567e-05,4.2438627016087e-05,7.06729662169567e-05,-3.05645399238212e-05,-4.2438627016087e-05,2.41473332278544e-05,-1.06040041768443e-05,5.53209148544474e-05,-3.591679355103e-05,-0.0013996634638417,-3.59167935510301e-05,0.000562661540165,0.0013996634638417,0.0001524316486392,-0.0012390788803299,0.0005970796142959,-2.70494210989195e-05,-0.001442101236964,-2.70494210989196e-05,0.0004861761967899,0.001442101236964,0.0001553219316805,-0.0012652929324469,0.0005417594592945,-8.86737245211054e-06,4.24377731222902e-05,-8.86737245211053e-06,7.64853433750872e-05,-4.24377731222902e-05,-2.89028304135677e-06,2.62140521169373e-05,5.53201550014279e-05,-0.0004694467105457,-0.0013997249897653,-0.0004694467105457,-0.0003123445805341,0.0013997249897653,0.0009969166588971,0.0007515774160442,0.0005971106747642,-0.0004076399576996,-0.0014421642584305,-0.0004076399576996,-0.0002664211758005,0.0014421642584305,0.0010181738649034,0.0007671877507366,0.000541789283957,-6.18067528461538e-05,4.24392686652189e-05,-6.18067528461538e-05,-4.59234047335588e-05,-4.24392686652189e-05,-2.12572060063306e-05,-1.56103346924009e-05,5.53213908072594e-05,6.667552142753227,s,-1.7577544133006188e-07,-0.0041989951207002,-1.757754413301703e-07,-4.467397850005947e-08,0.0041989951207002,8.905812609984534e-08,2.856800710012916e-08,0.0017912608142143,-1.7461636001947587e-07,-0.0043263107895038,-1.746163600195843e-07,-4.207269609996433e-08,0.0043263107895038,8.921394590005044e-08,2.8854759300022195e-08,0.0016252983535512998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +79,199,34,0.00047618695903,-0.0013994696747443,0.00047618695903,-0.0003019232968885,0.0013994696747443,-0.0010919550530579,0.0006049599298817,0.0005970341962707,0.0004090967523338,-0.0014419084538803,0.0004090967523338,-0.0002641380859601,0.0014419084538803,-0.0011148618287308,0.0006180299929718,0.0005417130241416,6.70902066961779e-05,4.24387791360052e-05,6.70902066961778e-05,-3.77852109284345e-05,-4.24387791360052e-05,2.290677567286e-05,-1.3070063090079e-05,5.53211721290573e-05,2.33919671517756e-05,-0.0013993310209881,2.33919671517755e-05,0.000563068070109,0.0013993310209881,2.20608335658578e-05,-0.0012481413985461,0.0005970020354048,2.42147859038217e-05,-0.001441769151629,2.42147859038216e-05,0.0004860763365532,0.001441769151629,2.21952297669331e-05,-0.001274513862304,0.0005416823906213,-8.22818752045053e-07,4.24381306408685e-05,-8.22818752045051e-07,7.69917335557801e-05,-4.24381306408685e-05,-1.34396201075385e-07,2.63724637579018e-05,5.53196447835367e-05,-0.0004995738648632,-0.0013995547213736,-0.0004995738648632,-0.0002613959035579,0.0013995547213736,0.001069965365718,0.0006432225317782,0.0005970663050507,-0.0004333056993414,-0.0014419939030853,-0.0004333056993414,-0.0002221860303793,0.0014419939030853,0.0010927377896336,0.0006565253705922,0.0005417451657369,-6.6268165521808e-05,4.24391817118097e-05,-6.62681655218079e-05,-3.92098731786561e-05,-4.24391817118097e-05,-2.27724239156406e-05,-1.3302838813991e-05,5.53211393137486e-05,6.753033580480832,s,5.061318575729813e-09,-0.004198355417106,5.061318575621393e-09,-2.5113033739999294e-07,0.004198355417106,7.114622595769983e-08,4.106311380009699e-08,0.0017911025367261999,5.838896221718997e-09,-0.0043256715085946,5.838896221610577e-09,-2.4777978619997996e-07,0.0043256715085946,7.119066973296576e-08,4.150125999997402e-08,0.0016251405804997999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +80,200,34,0.000443017140259,-0.0013999759453614,0.000443017140259,-0.0003501621928687,0.0013999759453614,-0.0010227682379981,0.0007157324668647,0.0005971235798295,0.0003802431608566,-0.001442412533658,0.0003802431608566,-0.0003055706662997,0.001442412533658,-0.0010441832315569,0.0007311254325487,0.0005418021037732,6.27739794024054e-05,4.24365882966157e-05,6.27739794024054e-05,-4.45915265689935e-05,-4.24365882966157e-05,2.14149935587208e-05,-1.5392965683997e-05,5.5321476056299e-05,8.18426388710907e-05,-0.0013997176502545,8.18426388710906e-05,0.0005583222187595,0.0013997176502545,-0.0001084740521467,-0.0012435943490875,0.0005970662138797,7.46127043060026e-05,-0.0014421524400268,7.46127043060025e-05,0.0004816667214278,0.0014421524400268,-0.0001110971335163,-0.0012698360074437,0.0005417467672466,7.22993456508525e-06,4.2434789772272e-05,7.22993456508525e-06,7.66554973317219e-05,-4.2434789772272e-05,2.62308136961242e-06,2.62416583561525e-05,5.53194466331049e-05,-0.0005247675988735,-0.0014000669802779,-0.0005247675988735,-0.000208556180799,0.0014000669802779,0.0011313094025898,0.00052791100469,0.0005971554423256,-0.0004547636008618,-0.0014425035561034,-0.0004547636008618,-0.0001764879543464,0.0014425035561034,0.0011553474582646,0.0005387604046236,0.0005418344093762,-7.00039980117523e-05,4.24365758255098e-05,-7.00039980117523e-05,-3.20682264526003e-05,-4.24365758255098e-05,-2.40380556747748e-05,-1.08493999336031e-05,5.53210329493594e-05,6.8385150182084375,s,9.218025659061754e-08,-0.0041997605758938,9.218025659050912e-08,-3.9615490820003787e-07,0.0041997605758938,6.711244500000497e-08,4.9122467199913707e-08,0.0017913452360348,9.226430080258282e-08,-0.0043270685297882,9.22643008025286e-08,-3.9189921830000375e-07,0.0043270685297882,6.709319140020542e-08,4.9829728599967184e-08,0.0016253832803959998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +81,201,34,0.0004046456097902,-0.0014002940008254,0.0004046456097902,-0.0003944576565943,0.0014002940008254,-0.0009423542489008,0.0008186712234908,0.0005971730193101,0.0003468742511194,-0.0014427302344975,0.0003468742511194,-0.0003435490271113,0.0014427302344975,-0.0009620429796735,0.0008362185342201,0.0005418512393901,5.77713586708433e-05,4.24362336720338e-05,5.77713586708433e-05,-5.09086294829994e-05,-4.24362336720338e-05,1.96887307727124e-05,-1.75473107292618e-05,5.5321779920082e-05,0.0001393336503644,-0.0014001727096883,0.0001393336503644,0.0005474978816679,0.0014001727096883,-0.0002378146510645,-0.0012254284919676,0.0005971403189865,0.0001241314998625,-0.0014426054169726,0.0001241314998625,0.000472016799771,0.0014426054169726,-0.0002431664802498,-0.0012512521524593,0.0005418205438121,1.52021505019559e-05,4.24327072843395e-05,1.52021505019559e-05,7.54810818968991e-05,-4.24327072843395e-05,5.35182918532155e-06,2.58236604917673e-05,5.53197751744345e-05,-0.0005439960123309,-0.0014004306206533,-0.0005439960123309,-0.0001532380627074,0.0014004306206533,0.001180256899546,0.0004067981285503,0.0005972139599655,-0.0004710228078463,-0.0014428666655711,-0.0004710228078463,-0.0001286610927364,0.0014428666655711,0.0012052974669902,0.0004150753657547,0.0005418928231864,-7.29732044845904e-05,4.2436044917732e-05,-7.29732044845904e-05,-2.45769699710127e-05,-4.2436044917732e-05,-2.50405674442048e-05,-8.27723720436966e-06,5.53211367790759e-05,6.923996455936043,s,-1.675217630001287e-08,-0.0042008973311669995,-1.675217630001287e-08,-1.9783763379997992e-07,0.0042008973311669995,8.799958069985632e-08,4.086007349986655e-08,0.0017915272982621,-1.7056864399958398e-08,-0.0043282023170412,-1.7056864399958398e-08,-1.9332007669998368e-07,0.0043282023170412,8.800706689988426e-08,4.1747515500069245e-08,0.0016255646063885998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +82,202,34,0.0003606777260021,-0.0013998966837042,0.0003606777260021,-0.0004341663247287,0.0013998966837042,-0.0008515382779082,0.0009126451204976,0.0005970791568154,0.0003085426819427,-0.0014423348275195,0.0003085426819427,-0.0003774983177197,0.0014423348275195,-0.0008692851634119,0.0009321545525824,0.0005417572715377,5.21350440593584e-05,4.2438143815252e-05,5.21350440593584e-05,-5.66680070090558e-05,-4.2438143815252e-05,1.77468855036854e-05,-1.9509432084844e-05,5.53218852776559e-05,0.00019562594127,-0.0013999722338676,0.00019562594127,0.0005296045358605,0.0013999722338676,-0.000364592483431,-0.0011937815790224,0.0005970851959399,0.0001726179250752,-0.001442406016104,0.0001726179250752,0.000456124418027,0.001442406016104,-0.000372614449102,-0.0012189047509481,0.0005417647728818,2.30080161948002e-05,4.24337822364707e-05,2.30080161948002e-05,7.34801178335247e-05,-4.24337822364707e-05,8.02196567103433e-06,2.51231719257292e-05,5.53204230580208e-05,-0.0005564424940956,-0.0014000573784816,-0.0005564424940956,-9.53459128966251e-05,0.0014000573784816,0.001216230495698,0.0002811551644936,0.0005971238410967,-0.0004812998119868,-0.0014424954958232,-0.0004812998119868,-7.8529719185931e-05,0.0014424954958232,0.0012419993560682,0.0002867696690129,0.0005418027812566,-7.51426821087434e-05,4.24381173415738e-05,-7.51426821087434e-05,-1.68161937106934e-05,-4.24381173415738e-05,-2.57688603701866e-05,-5.61450451938038e-06,5.53210598400262e-05,7.009477893663648,s,-1.3882682349997035e-07,-0.0041999262960534,-1.3882682349997035e-07,9.229823517491696e-08,0.0041999262960534,9.973435880004759e-08,1.8705968799978545e-08,0.0017912881938519998,-1.3920496890000014e-07,-0.0043272363394467,-1.3920496890000014e-07,9.638112136899557e-08,0.0043272363394467,9.974355429987793e-08,1.9470647200060202e-08,0.0016253248256761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +83,203,34,0.0003122865284059,-0.0013991800307326,0.0003122865284059,-0.0004689998447809,0.0013991800307326,-0.0007513704614946,0.0009966066315925,0.0005969248402596,0.0002663608114281,-0.0014416210577728,0.0002663608114281,-0.0004071932207034,0.0014416210577728,-0.0007669810863609,0.0010178643939201,0.0005416030953151,4.59257169778023e-05,4.24410270402793e-05,4.59257169778023e-05,-6.18066240774891e-05,-4.24410270402793e-05,1.56106248662849e-05,-2.12577623275812e-05,5.53217449443939e-05,0.0002499637203722,-0.0013993040669497,0.0002499637203722,0.0005051765533357,0.0013993040669497,-0.0004873856833931,-0.0011490125830343,0.0005969379046065,0.0002194008971178,-0.0014417409524095,0.0002194008971178,0.0004345034050331,0.0014417409524095,-0.0004979899135117,-0.0011731601049106,0.0005416170053198,3.05628232544386e-05,4.24368854597694e-05,3.05628232544386e-05,7.06731483025973e-05,-4.24368854597694e-05,1.0604230118605e-05,2.41475218762802e-05,5.53208992867059e-05,-0.0005623987520896,-0.0013993174407031,-0.0005623987520896,-3.60178131138864e-05,0.0013993174407031,0.0012388454872003,0.0001524155099662,0.0005969617862632,-0.0004859106031819,-0.0014417587230217,-0.0004859106031819,-2.7148104462244e-05,0.0014417587230217,0.0012650602720683,0.0001553058083428,0.0005416411035177,-7.64881489077156e-05,4.24412823186159e-05,-7.64881489077155e-05,-8.86970865164239e-06,-4.24412823186159e-05,-2.62147848680296e-05,-2.89029837658745e-06,5.53206827454855e-05,7.094959331391254,s,-1.4850331150006134e-07,-0.0041978015383854,-1.4850331150006134e-07,1.5889544091362483e-07,0.0041978015383854,8.934231259991564e-08,9.558524400102558e-09,0.0017908245311293002,-1.4889463599999236e-07,-0.004325120733204,-1.4889463599999236e-07,1.6207986745600487e-07,0.004325120733204,8.927219570021606e-08,1.009735229985458e-08,0.0016248612041525998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +84,204,34,0.0002610717102016,-0.0013988262267057,0.0002610717102016,-0.0004989535109346,0.0013988262267057,-0.0006430314674554,0.0010696475884839,0.0005968488425582,0.0002218599769585,-0.0014412676561297,0.0002218599769585,-0.0004326857887484,0.0014412676561297,-0.0006563345936126,0.0010924205867838,0.0005415274082697,3.92117332431171e-05,4.24414294239654e-05,3.92117332431171e-05,-6.62677221862709e-05,-4.24414294239654e-05,1.33031261572299e-05,-2.27729982998925e-05,5.5321434288502e-05,0.0003015207107896,-0.0013988112010875,0.0003015207107896,0.0004755563264201,0.0013988112010875,-0.0006048112123473,-0.0010916827140955,0.0005968299443602,0.0002637371912685,-0.0014412504045016,0.0002637371912685,0.0004084658876941,0.0014412504045016,-0.0006178815265847,-0.0011145898532319,0.0005415088090625,3.77835195211784e-05,4.24392034141541e-05,3.77835195211784e-05,6.70904387259837e-05,-4.24392034141541e-05,1.30703142373823e-05,2.29071391364512e-05,5.53211352976453e-05,-0.000562648991396,-0.0013988861642893,-0.000562648991396,2.33565445073993e-05,0.0013988861642893,0.0012479084296485,2.20585773159496e-05,0.0005968670519591,-0.0004856546081415,-0.0014413281149686,-0.0004856546081415,2.41814585335701e-05,0.0014413281149686,0.0012742816390783,2.21929385077801e-05,0.0005415469195119,-7.69943832545932e-05,4.24419506793496e-05,-7.69943832545932e-05,-8.24914026170038e-07,-4.24419506793496e-05,-2.6373209429774e-05,-1.34361191830537e-07,5.53201324471962e-05,7.180440769118859,s,-5.657040480001353e-08,-0.0041965235920825,-5.657040480001353e-08,-4.064000710065721e-08,0.0041965235920825,6.574984579986627e-08,2.345170434959337e-08,0.0017905458388774997,-5.7439914500040205e-08,-0.0043238461755999,-5.7439914500040205e-08,-3.844252072994123e-08,0.0043238461755999,6.551888100006335e-08,2.3672059679919968e-08,0.0016245831368441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +85,205,34,0.000208054754279,-0.0013992178997991,0.000208054754279,-0.0005240559488259,0.0013992178997991,-0.000527745894043,0.0011309916863509,0.0005969206002878,0.0001759858050091,-0.0014416560951357,0.0001759858050091,-0.0004540528171183,0.0014416560951357,-0.0005385955091127,0.0011550302235697,0.0005415993817374,3.20689492698137e-05,4.24381953366637e-05,3.20689492698137e-05,-7.00031317076622e-05,-4.24381953366637e-05,1.08496150697658e-05,-2.40385372187433e-05,5.53212185504375e-05,0.0003497555637177,-0.0013990099624949,0.0003497555637177,0.0004418978801879,0.0013990099624949,-0.0007155739671265,-0.0010224825255808,0.0005968603983802,0.0003051652258249,-0.0014414477276918,0.0003051652258249,0.0003791250919563,0.0014414477276918,-0.0007309671375279,-0.0010438978966915,0.0005415391081783,4.45903378927946e-05,4.24377651969779e-05,4.45903378927946e-05,6.27727882316163e-05,-4.24377651969779e-05,1.53931704014602e-05,2.1415371110768e-05,5.53212902019648e-05,-0.0005577760694575,-0.0013991807904629,-0.0005577760694575,8.1875274960481e-05,0.0013991807904629,0.0012433652981404,-0.000108462027653,0.0005969169437275,-0.0004811184319002,-0.0014416191496305,-0.0004811184319002,7.46468579306302e-05,0.0014416191496305,0.001269607644781,-0.0001110851918562,0.0005415970873115,-7.66576375572684e-05,4.24383591676408e-05,-7.66576375572684e-05,7.22841702985048e-06,-4.24383591676408e-05,-2.62423466405879e-05,2.62316420325311e-06,5.53198564160675e-05,7.265922206846465,s,3.424853919995613e-08,-0.0041974086527569,3.424853919995613e-08,-2.82793677518938e-07,0.0041974086527569,4.543697089995184e-08,4.713311710004698e-08,0.0017906979423955001,3.2598933799978316e-08,-0.004324722972458,3.2598933799978316e-08,-2.8086723136976923e-07,0.004324722972458,4.4998140399802114e-08,4.7135021999963715e-08,0.0016247355772272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +86,206,34,0.0001529691220804,-0.0013997788481057,0.0001529691220804,-0.0005435095291896,0.0013997788481057,-0.0004066936030659,0.0011799576444028,0.0005970233774779,0.0001283922385392,-0.0014422148759704,0.0001283922385392,-0.0004705373841334,0.0014422148759704,-0.0004149709271091,0.0012049985318933,0.0005417021132107,2.45768835412486e-05,4.2436027864683e-05,2.45768835412486e-05,-7.29721450562386e-05,-4.2436027864683e-05,8.27732404320776e-06,-2.50408874904541e-05,5.53212642671875e-05,0.0003941785604734,-0.0013996042515248,0.0003941785604734,0.0004040266839187,0.0013996042515248,-0.0008184858466152,-0.0009421282052213,0.0005969665376159,0.0003432704819254,-0.0014420400025703,0.0003432704819254,0.000346257423987,0.0014420400025703,-0.0008360332848322,-0.000961817117588,0.0005416449986386,5.09080785479885e-05,4.24357510454572e-05,5.09080785479885e-05,5.77692599317169e-05,-4.24357510454572e-05,1.75474382169701e-05,1.96889123666743e-05,5.53215389773521e-05,-0.0005470720250634,-0.0013997052549092,-0.0005470720250634,0.0001393257892823,0.0013997052549092,0.0012252198053576,-0.0002377764742746,0.0005970075096879,-0.0004715892185286,-0.0014421406004315,-0.0004715892185286,0.0001241246122849,0.0014421406004315,0.001251044036997,-0.0002431284417186,0.0005416873733347,-7.54828065348577e-05,4.24353455223137e-05,-7.54828065348577e-05,1.52011769974421e-05,-4.24353455223137e-05,-2.582423163936e-05,5.35196744393131e-06,5.53201363531801e-05,7.35140364457407,s,7.56574904000034e-08,-0.0041990883545397,7.56574904000034e-08,-1.5705598859999215e-07,0.0041990883545397,4.035567650016725e-08,5.296490689993749e-08,0.0017909974247817002,7.35019359999361e-08,-0.0043263954789722,7.35019359999361e-08,-1.553478614999687e-07,0.0043263954789722,3.982505570004728e-08,5.297258669990294e-08,0.0016250344851839998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +87,207,34,9.54032383737218e-05,-0.0013996829381788,9.54032383737217e-05,-0.0005562564796431,0.0013996829381788,-0.0002811109516585,0.0012159579618629,0.0005969927264463,7.85871071801406e-05,-0.0014421198964427,7.85871071801405e-05,-0.0004811148619951,0.0014421198964427,-0.0002867254601942,0.0012417270470085,0.0005416715250118,1.6816131193577e-05,4.24369582638494e-05,1.6816131193577e-05,-7.51416176480935e-05,-4.24369582638494e-05,5.61450853568027e-06,-2.57690851456178e-05,5.5321201434554e-05,0.000434073336999,-0.0013996888756398,0.000434073336999,0.0003608807923068,0.0013996888756398,-0.0009124390273917,-0.0008513922193044,0.0005969717972664,0.0003774056493979,-0.0014421253762482,0.0003774056493979,0.0003087471682691,0.0014421253762482,-0.0009319486000639,-0.0008691391768936,0.000541650042275,5.66676876010346e-05,4.24365006083386e-05,5.66676876010346e-05,5.21336240376964e-05,-4.24365006083386e-05,1.95095726722698e-05,1.77469575891788e-05,5.53217549913275e-05,-0.0005293974330543,-0.0013996416279639,-0.0005293974330543,0.0001955246825987,0.0013996416279639,0.0011935980834991,-0.0003645271708962,0.0005969800792178,-0.0004559157359703,-0.0014420772679195,-0.0004559157359703,0.0001725174704109,0.0014420772679195,0.001218721744737,-0.0003725493270696,0.0005416592969002,-7.34816970839675e-05,4.24356399555549e-05,-7.34816970839675e-05,2.30072121877738e-05,-4.24356399555549e-05,-2.51236612379536e-05,8.02215617344502e-06,5.53207823175874e-05,7.436885082301676,s,7.914231842174723e-08,-0.0041990134417825,7.914231842163881e-08,1.4899526240002713e-07,0.0041990134417825,4.810444889993826e-08,3.857166230001891e-08,0.0017909446029304998,7.702060774063138e-08,-0.0043263225406104,7.702060774052296e-08,1.4977668489997626e-07,0.0043263225406104,4.7684478899972724e-08,3.854304529991902e-08,0.001624980864187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +88,208,34,3.61924208667866e-05,-0.0013990395189593,3.61924208667865e-05,-0.0005622845670583,0.0013990395189593,-0.0001524059153613,0.0012385885628795,0.0005968515618946,2.73224074875891e-05,-0.0014414792502677,2.7322407487589e-05,-0.0004857972385552,0.0014414792502677,-0.0001552961708044,0.001264803541581,0.0005415306947919,8.87001337919695e-06,4.2439731308485e-05,8.87001337919695e-06,-7.64873285031818e-05,-4.2439731308485e-05,2.89025544309173e-06,-2.62149787014476e-05,5.53208671026793e-05,0.0004688934356088,-0.0013991097007096,0.0004688934356088,0.0003127406397522,0.0013991097007096,-0.0009963845169151,-0.0007512583009225,0.0005968445377602,0.0004070867870976,-0.0014415489426378,0.0004070867870976,0.0002668149587023,0.0014415489426378,-0.0010176425029353,-0.0007668689592496,0.0005415227538519,6.18066485112263e-05,4.24392419281959e-05,6.18066485112263e-05,4.59256810498844e-05,-4.24392419281959e-05,2.1257986020155e-05,1.56106583270953e-05,5.5321783908299e-05,-0.0005050532465825,-0.001399026857379,-0.0005050532465825,0.0002497960196909,0.001399026857379,0.0011488441935501,-0.0004873008097139,0.0005968423889505,-0.0004343785151634,-0.0014414651573266,-0.0004343785151634,0.0002192340276238,0.0014414651573266,0.0011729921569764,-0.0004979052791535,0.0005415211192543,-7.06747314190941e-05,4.24382999475966e-05,-7.06747314190941e-05,3.05619920671173e-05,-4.24382999475966e-05,-2.41479634262527e-05,1.06044694395617e-05,5.53212696962815e-05,7.522366520029282,s,3.26098930866249e-08,-0.0041971760770479,3.260989308651648e-08,2.5209238480001584e-07,0.0041971760770479,5.3761273699970066e-08,2.9452243100033717e-08,0.0017905384886053,3.067942178910455e-08,-0.0043244933502321,3.067942178899613e-08,2.5174777089999106e-07,0.0043244933502321,5.348323670007968e-08,2.9303177900017255e-08,0.0016245745678981002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +89,209,34,-2.32809749955903e-05,-0.0013984974628819,-2.32809749955904e-05,-0.0005623468891053,0.0013984974628819,-2.2061745269241e-05,0.0012476498760864,0.0005967357957322,-2.41063770420754e-05,-0.0014409388583585,-2.41063770420755e-05,-0.0004853530637855,0.0014409388583585,-2.2196074477329e-05,0.0012740233544799,0.0005414154541211,8.254020464856e-07,4.24413954765562e-05,8.25402046485602e-07,-7.69938253197752e-05,-4.24413954765562e-05,1.3432920808793e-07,-2.63734783935457e-05,5.53203416110534e-05,0.0004985543304282,-0.0013984408354987,0.0004985543304282,0.0002610748194713,0.0013984408354987,-0.0010693978138407,-0.0006428988292724,0.0005967025940442,0.0004322860003869,-0.0014408829894049,0.0004322860003869,0.0002218620245292,0.0014408829894049,-0.001092171249328,-0.0006562021289218,0.0005413809877859,6.62683300412602e-05,4.24421539061202e-05,6.62683300412602e-05,3.92127949420539e-05,-4.24421539061202e-05,2.27734354872743e-05,1.33032996494178e-05,5.53216062582466e-05,-0.0004753472514276,-0.0013984796650683,-0.0004753472514276,0.0003013272124024,0.0013984796650683,0.0010915174775548,-0.0006047122018868,0.0005967231422139,-0.0004082552534522,-0.0014409203860552,-0.0004082552534522,0.0002635445146757,0.0014409203860552,0.0011144250531827,-0.000617782798172,0.0005414016326261,-6.70919979753732e-05,4.24407209869184e-05,-6.70919979753732e-05,3.77826977267026e-05,-4.24407209869184e-05,-2.29075756278983e-05,1.30705962852009e-05,5.53215095878138e-05,7.607847957756887,s,-7.389599499028985e-08,-0.0041954179634489,-7.389599499034406e-08,5.5142768399965396e-08,0.0041954179634489,5.791844485893323e-08,3.884492719998488e-08,0.0017901615319903,-7.56301073753362e-08,-0.0043227422338186,-7.563010737544461e-08,5.347541940004972e-08,0.0043227422338186,5.7729377371138965e-08,3.842738609998245e-08,0.0016241980745331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +90,210,34,-8.19277672144644e-05,-0.001398617413316,-8.19277672144645e-05,-0.0005572160248662,0.001398617413316,0.0001084503347888,0.0012430998792299,0.0005967543647922,-7.4699502631556e-05,-0.0014410559383395,-7.46995026315561e-05,-0.0004805593826363,0.0014410559383395,0.0001110735092326,0.0012693425241432,0.0005414343576307,-7.22826458291165e-06,4.24385250234622e-05,-7.22826458291165e-06,-7.66566422298022e-05,-4.24385250234622e-05,-2.62317444377024e-06,-2.62426449133625e-05,5.53200071615401e-05,0.0005232049697526,-0.0013983266739767,0.0005232049697526,0.0002073873653136,0.0013983266739767,-0.0011307067270744,-0.0005275778134693,0.0005966745191147,0.0004532013905093,-0.0014407683123724,0.0004532013905093,0.0001753180154948,0.0014407683123724,-0.0011547458716555,-0.0005384277527787,0.0005413531879879,7.00035792432591e-05,4.24416383957477e-05,7.0003579243259e-05,3.20693498188318e-05,-4.24416383957477e-05,2.40391445812042e-05,1.08499393093653e-05,5.53213311268246e-05,-0.0004415400706114,-0.001398581638378,-0.0004415400706114,0.0003495508790387,0.001398581638378,0.0010223182441956,-0.0007154635358815,0.0005967362852861,-0.0003787661577161,-0.0014410209598217,-0.0003787661577161,0.0003049612922794,0.0014410209598217,0.0010437340287241,-0.0007308570045694,0.000541414662356,-6.27739128953334e-05,4.24393214436307e-05,-6.27739128953334e-05,4.45895867593894e-05,-4.24393214436307e-05,-2.14157845285102e-05,1.53934686879507e-05,5.53216229300986e-05,7.693329395484493,s,-2.6286807326437187e-07,-0.0041955257256707,-2.628680732644803e-07,-2.777805138999556e-07,0.0041955257256707,6.185190999999368e-08,5.8529879099844875e-08,0.0017901651691930001,-2.6426983835601495e-07,-0.0043228452105336,-2.6426983835606916e-07,-2.8007486210004364e-07,0.0043228452105336,6.166630120017953e-08,5.776679510010197e-08,0.0016242022079746002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +91,211,34,-0.0001393629602607,-0.0013992034108298,-0.0001393629602607,-0.0005466318925562,0.0013992034108298,0.0002377360509095,0.0012249743699407,0.0005968609979696,-0.0001241614326981,-0.0014416381518412,-0.0001241614326981,-0.0004711505064437,0.0014416381518412,0.000243088039596,0.0012507987829016,0.0005415407666091,-1.52015275626342e-05,4.24347410113555e-05,-1.52015275626342e-05,-7.54813861125755e-05,-4.24347410113555e-05,-5.35198868643425e-06,-2.58244129609649e-05,5.53202313605382e-05,0.0005427468402877,-0.0013988894744061,0.0005427468402877,0.0001523212669249,0.0013988894744061,-0.0011796609496018,-0.0004065611962249,0.0005967793977016,0.000469774297164,-0.0014413279845707,0.000469774297164,0.0001277453433254,0.0014413279845707,-0.0012047023386691,-0.0004148387319674,0.0005414581037682,7.29725431237174e-05,4.24385101646228e-05,7.29725431237174e-05,2.45759235994779e-05,-4.24385101646228e-05,2.50413890671909e-05,8.27753574245719e-06,5.5321293933384e-05,-0.0004036969205617,-0.0013991905237827,-0.0004036969205617,0.0003939929423951,0.0013991905237827,0.0009419835662289,-0.0008183655557204,0.0005968481430327,-0.000345927083813,-0.0014416271928455,-0.000345927083813,0.0003430854296308,0.0014416271928455,0.0009616727968127,-0.0008359132721453,0.0005415263221985,-5.77698367487012e-05,4.24366690627827e-05,-5.77698367487012e-05,5.09075127642918e-05,-4.24366690627827e-05,-1.96892305837871e-05,1.75477164248659e-05,5.53218208342751e-05,7.7788108332120975,s,-3.130405347000491e-07,-0.0041972834090186,-3.130405347000491e-07,-3.1768323619993377e-07,0.0041972834090186,5.8667536599935587e-08,4.7617995400060786e-08,0.0017904885387038999,-3.142193470999561e-07,-0.0043245933292574,-3.142193470999561e-07,-3.1973348749999393e-07,0.0043245933292574,5.8497739600124436e-08,4.677878889997912e-08,0.0016245251925757999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +92,212,34,-0.0001954621533669,-0.0013993801858525,-0.0001954621533669,-0.0005293427605933,0.0013993801858525,0.000364452077526,0.0011933944458045,0.0005968849131494,-0.0001724545836041,-0.0014418143892078,-0.0001724545836041,-0.0004558623803273,0.0014418143892078,0.0003724742760515,0.0012185181917543,0.0005415640216841,-2.30075697628146e-05,4.24342033553378e-05,-2.30075697628146e-05,-7.3480380265901e-05,-4.24342033553378e-05,-8.02219852550267e-06,-2.51237459497473e-05,5.53208914652739e-05,0.0005561210410594,-0.0013993008542239,0.0005561210410594,9.53875027540807e-05,0.0013993008542239,-0.0012156834883696,-0.0002810663251502,0.0005968516655307,0.0004809786929354,-0.0014417383089851,0.0004809786929354,7.85723792071112e-05,0.0014417383089851,-0.0012414529436782,-0.0002866808736049,0.0005415303818143,7.51423481239813e-05,4.2437454761247e-05,7.51423481239813e-05,1.68151235469716e-05,-4.2437454761247e-05,2.5769455308539e-05,5.61454845465405e-06,5.53212837164907e-05,-0.000360748986767,-0.0013994007400238,-0.000360748986767,0.0004339319527083,0.0013994007400238,0.0008512817487892,-0.0009123134593183,0.0005968803859642,-0.0003086149880271,-0.0014418375067664,-0.0003086149880271,0.0003772647523472,0.0014418375067664,0.0008690289381343,-0.0009318232927247,0.0005415583619005,-5.21339987399383e-05,4.24367667426672e-05,-5.21339987399383e-05,5.66672003610369e-05,-4.24367667426672e-05,-1.77471893451468e-05,1.95098334063929e-05,5.53220240636376e-05,7.864292270939703,s,-9.0099074499968e-08,-0.0041980817801002,-9.0099074499968e-08,-2.3305130919266254e-08,0.0041980817801002,5.033794560013478e-08,1.4661336000072397e-08,0.0017906169646442999,-9.087869579999441e-08,-0.0043253902049593,-9.087869579999441e-08,-2.524877298882254e-08,0.0043253902049593,5.027050760018047e-08,1.4025424700000837e-08,0.0016246527653989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +93,213,34,-0.0002496593064882,-0.0013988964821143,-0.0002496593064882,-0.0005051844140318,0.0013988964821143,0.0004872055628849,0.0011486730246319,0.0005967754118636,-0.0002190971950152,-0.0014413329294078,-0.0002190971950152,-0.0004345105225431,0.0014413329294078,0.0004978101001758,0.0011728210250079,0.0005414539822674,-3.05621114729446e-05,4.24364472934142e-05,-3.05621114729446e-05,-7.0673891488639e-05,-4.24364472934142e-05,-1.06045372909065e-05,-2.41480003759397e-05,5.5321429596192e-05,0.0005624996888282,-0.0013989796717928,0.0005624996888282,3.65934497692859e-05,0.0013989796717928,-0.0012383389262534,-0.0001524198825146,0.0005967776994768,0.0004860109939111,-0.0014414188141494,0.0004860109939111,2.77235526823949e-05,0.0014414188141494,-0.0012645542361022,-0.0001553100549034,0.0005414566307536,7.64886949170499e-05,4.24391423566368e-05,7.64886949170499e-05,8.86989708689034e-06,-4.24391423566368e-05,2.62153098487913e-05,2.89017238879005e-06,5.53210687231672e-05,-0.0003127481124059,-0.0013989116660598,-0.0003127481124059,0.0004687710806025,0.0013989116660598,0.0007511758413585,-0.0009962580114412,0.0005967720024336,-0.00026682194653,-0.0014413508521358,-0.00026682194653,0.0004069649013229,0.0014413508521358,0.0007667866785191,-0.0010175162615528,0.0005414499346176,-4.59261658759228e-05,4.24391860759833e-05,-4.59261658759228e-05,6.18061792796326e-05,-4.24391860759833e-05,-1.56108371605267e-05,2.12582501115501e-05,5.5322067816074e-05,7.949773708667308,s,9.226993410001378e-08,-0.0041967878199669,9.226993410001378e-08,1.8011633998583736e-07,0.0041967878199669,4.247799000002203e-08,-4.8693239000380945e-09,0.001790325113774,9.185236589999857e-08,-0.004324102595693,9.185236589999857e-08,1.7793146219494084e-07,0.004324102595693,4.254259269994773e-08,-5.2914483001428175e-09,0.0016243605476386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +94,214,34,-0.0003011688667559,-0.001398277454702,-0.0003011688667559,-0.0004753220995578,0.001398277454702,0.0006046096229285,0.0010913560775126,0.000596642135315,-0.0002633861727724,-0.0014407171185675,-0.0002633861727724,-0.0004082302744721,0.0014407171185675,0.000617680323808,0.0011142637481572,0.000541320406474,-3.7782693983465e-05,4.24396638655743e-05,-3.7782693983465e-05,-6.70918250857401e-05,-4.24396638655743e-05,-1.30707008794651e-05,-2.29076706446765e-05,5.53217288409363e-05,0.0005622718913858,-0.0013982955391944,0.0005622718913858,-2.29559608138621e-05,0.0013982955391944,-0.0012473972235183,-2.20855791162366e-05,0.000596633061895,0.0004852756284714,-0.0014407375719694,0.0004852756284714,-2.37821226526727e-05,0.0014407375719694,-0.0012737711579826,-2.22197810148399e-05,0.0005413123948406,7.69962629143644e-05,4.24420327750387e-05,7.69962629143644e-05,8.26161838811928e-07,-4.24420327750387e-05,2.63739344643351e-05,1.34201898603035e-07,5.53206670544752e-05,-0.0002610769030949,-0.0013982402665252,-0.0002610769030949,0.0004984039915668,0.0013982402665252,0.0006428312643078,-0.001069269461743,0.0005966296171398,-0.0002218633920732,-0.0014406824897643,-0.0002218633920732,0.0004321360146042,0.0014406824897643,0.0006561347190902,-0.0010920431875345,0.0005413077039315,-3.92135110217071e-05,4.24422232391226e-05,-3.92135110217071e-05,6.62679769625677e-05,-4.24422232391226e-05,-1.33034547824672e-05,2.27737257914889e-05,5.53219132083643e-05,8.035255146394913,s,2.6121534999975788e-08,-0.0041948132604216,2.6121534999975788e-08,1.259311951379424e-07,0.0041948132604216,4.3663718000074535e-08,1.0366533634113828e-09,0.0017899048143498,2.6063625799971086e-08,-0.0043221371803012,2.6063625799971086e-08,1.2361747942732934e-07,0.0043221371803012,4.388491559991631e-08,7.79607860039444e-10,0.0016239405052461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +95,215,34,-0.0003493624305529,-0.0013981657715423,-0.0003493624305529,-0.0004411479295578,0.0013981657715423,0.0007153577883314,0.0010221486590032,0.0005966146311516,-0.0003047728695552,-0.0014406055466761,-0.0003047728695552,-0.0003783742345218,0.0014406055466761,0.0007307513969169,0.0010435646582426,0.000541292799438,-4.45895609977031e-05,4.2439775133805e-05,-4.45895609977031e-05,-6.27736950360441e-05,-4.2439775133805e-05,-1.53936085854424e-05,-2.1415999239355e-05,5.532183171363e-05,0.0005563656845123,-0.0013979242755387,0.0005563656845123,-8.19558032418102e-05,0.0013979242755387,-0.0012428161693036,0.0001084464842522,0.0005965548880352,0.0004797065894092,-0.0014403669337941,0.0004797065894092,-7.47282275179505e-05,0.0014403669337941,-0.0012690595515015,0.0001110697381736,0.0005412345806313,7.66590951031498e-05,4.24426582554173e-05,7.66590951031498e-05,-7.22757572385755e-06,-4.24426582554173e-05,2.62433821978464e-05,-2.62325392141042e-06,5.53203074038848e-05,-0.0002072805488663,-0.0013980441776527,-0.0002072805488663,0.0005229806871677,0.0013980441776527,0.0005275138192819,-0.0011305701538368,0.0005965862084854,-0.0001752104934004,-0.0014404863540148,-0.0001752104934004,0.0004529774279296,0.0014404863540148,0.0005383639159479,-0.0011546096294095,0.0005412645784399,-3.20700554658085e-05,4.24421763621477e-05,-3.20700554658085e-05,7.00032592381103e-05,-4.24421763621477e-05,-1.08500966660377e-05,2.40394755727129e-05,5.53216300455578e-05,8.12073658412252,s,-2.772949069000045e-07,-0.0041941342247337,-2.772949069000045e-07,-1.230456319102364e-07,0.0041941342247337,5.5438309699840094e-08,2.498941859994594e-08,0.0017897557276722,-2.7677354640001216e-07,-0.0043214588344850004,-2.7677354640001216e-07,-1.2503411015048465e-07,0.0043214588344850004,5.5761363300095394e-08,2.4767006700067776e-08,0.0016237919585092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +96,216,34,-0.0003938173648368,-0.0013987166805638,-0.0003938173648368,-0.0004032264911796,0.0013987166805638,0.0008182498687504,0.0009418262072998,0.000596717599256,-0.0003429096544353,-0.0014411537988568,-0.0003429096544353,-0.0003454573871672,0.0014411537988568,0.0008357977135712,0.0009615156214699,0.0005413956155562,-5.09077104016001e-05,4.24371182930697e-05,-5.09077104016001e-05,-5.77691040124626e-05,-4.24371182930698e-05,-1.75478448208397e-05,-1.96894141700904e-05,5.53219836998267e-05,0.0005454682225403,-0.0013982826040957,0.0005454682225403,-0.0001395560973443,0.0013982826040957,-0.0012246902472773,0.0002377241158324,0.0005966204470984,0.0004699854562055,-0.0014407219109856,0.0004699854562055,-0.0001243541448655,0.0014407219109856,-0.0012505153520415,0.0002430761882933,0.0005413000596462,7.54827663348176e-05,4.24393068899842e-05,7.54827663348176e-05,-1.52019524787812e-05,-4.24393068899842e-05,2.58251047641537e-05,-5.35207246087637e-06,5.53203874522127e-05,-0.000152156242097,-0.0013985529045808,-0.000152156242097,0.0005424877812178,0.0013985529045808,0.0004065054130381,-0.0011795149902626,0.0005966818387282,-0.0001275799192401,-0.0014409919354545,-0.0001275799192401,0.0004695155655969,0.0014409919354545,0.0004147830761497,-0.0012045567064247,0.0005413602824213,-2.45763228569752e-05,4.24390308736757e-05,-2.45763228569752e-05,7.29722156209458e-05,-4.24390308736757e-05,-8.27766311160322e-06,2.50417161621387e-05,5.53215563069249e-05,8.206218021850125,s,-5.053843935000043e-07,-0.0041955521892403,-5.053843935000043e-07,-2.9480730609997546e-07,0.0041955521892403,6.50345111999893e-08,3.533286959994837e-08,0.0017900198850826,-5.041174699000391e-07,-0.0043228676452969,-5.041174699000391e-07,-2.959664358000223e-07,0.0043228676452969,6.543767940004035e-08,3.510333849987557e-08,0.0016240559576236999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +97,217,34,-0.0004338575333904,-0.0013991348535342,-0.0004338575333904,-0.0003606390599481,0.0013991348535342,0.0009121834444579,0.0008511657498526,0.0005967922276341,-0.0003771899680824,-0.0014415712619925,-0.0003771899680824,-0.0003085058198706,0.0014415712619925,0.0009316933879839,0.000868913027909,0.0005414700411252,-5.66675653080514e-05,4.24364084582859e-05,-5.66675653080514e-05,-5.21332400775553e-05,-4.24364084582859e-05,-1.95099435260136e-05,-1.77472780563642e-05,5.53221865088768e-05,0.0005289236262195,-0.0013988884287332,0.0005289236262195,-0.0001954908113148,0.0013988884287332,-0.0011931753082678,0.0003643871023213,0.0005967333483621,0.0004554421532787,-0.0014413251896147,0.0004554421532787,-0.0001724822046583,0.0014413251896147,-0.0012182995046001,0.0003724094503685,0.0005414123296256,7.34814729408217e-05,4.2436760881518e-05,7.34814729408217e-05,-2.30086066564734e-05,-4.2436760881518e-05,2.51241963322944e-05,-8.02234804720929e-06,5.53210187364744e-05,-9.53123597987769e-05,-0.0013990226518853,-9.5312359798777e-05,0.0005559440018109,0.0013990226518853,0.000281032530568,-0.0012155334671988,0.0005967654382455,-7.84970377415417e-05,-0.0014414602241059,-7.84970377415418e-05,0.0004808018888853,0.0014414602241059,0.0002866471521529,-0.0012413032238711,0.0005414439056232,-1.68153220572352e-05,4.24375722205809e-05,-1.68153220572352e-05,7.51421129255183e-05,-4.24375722205809e-05,-5.61462158492972e-06,2.57697566722887e-05,5.53215326222406e-05,8.29169945957773,s,-2.462669696768721e-07,-0.0041970459341527,-2.462669696769805e-07,-1.858694519999652e-07,0.0041970459341527,4.066675809988318e-08,1.9384975099949464e-08,0.0017902910142417,-2.4485254524171196e-07,-0.0043243566757131,-2.448525452418204e-07,-1.861356435999776e-07,0.0043243566757131,4.103553670009672e-08,1.9254406400000257e-08,0.0016243262763740002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +98,218,34,-0.0004687631797628,-0.0013988226782545,-0.0004687631797628,-0.0003129400824681,0.0013988226782545,0.0009961189466478,0.0007510949915569,0.0005967194730218,-0.0004069566100247,-0.0014412610566087,-0.0004069566100247,-0.0002670142003911,0.0014412610566087,0.0010173773149299,0.0007667058607591,0.000541397218433,-6.18065697381559e-05,4.24383783541554e-05,-6.18065697381559e-05,-4.59258820770719e-05,-4.24383783541554e-05,-2.12583682820601e-05,-1.56108692021493e-05,5.53222545887924e-05,0.0005055625614985,-0.001398879705309,0.0005055625614985,-0.0002494842361953,0.001398879705309,-0.001148519754068,0.0004870974783454,0.0005967233343926,0.0004348868159295,-0.0014413172997545,0.0004348868159295,-0.000218921433327,0.0014413172997545,-0.0011726680774819,0.0004977022532283,0.0005414016862367,7.06757455689516e-05,4.2437594445562e-05,7.06757455689516e-05,-3.05628028682807e-05,-4.2437594445562e-05,2.41483234138249e-05,-1.06047748828385e-05,5.53216481559124e-05,-3.66311307492996e-05,-0.0013987712335441,-3.66311307492997e-05,0.0005624067546554,0.0013987712335441,0.0001524089092681,-0.0012381854529146,0.0005967028292785,-2.77609591958396e-05,-0.0014412102358353,-2.77609591958397e-05,0.0004859181328187,0.0014412102358353,0.0001552991075147,-0.0012644010612987,0.0005413814967906,-8.87017155345995e-06,4.2439002291297e-05,-8.87017155345995e-06,7.64886218366531e-05,-4.2439002291297e-05,-2.89019824652696e-06,2.621560838412e-05,5.53213324878234e-05,8.377180897305337,s,1.6825098640042764e-07,-0.0041964736171076,1.68250986400326e-07,-1.756400799996817e-08,0.0041964736171076,8.101847899841643e-09,7.016987699877061e-09,0.0017901456366929,1.6924670896040453e-07,-0.0043237885921985,1.6924670896030288e-07,-1.7500899400025097e-08,0.0043237885921985,8.344962699942957e-09,7.052688700192808e-09,0.0016241804014603001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +99,219,34,-0.0004983175941988,-0.0013981270118869,-0.0004983175941988,-0.0002612471399023,0.0013981270118869,0.0010691221646192,0.0006427616750198,0.0005965702390456,-0.0004320491033996,-0.0014405686043375,-0.0004320491033996,-0.0002220333036944,0.0014405686043375,0.0010918960355873,0.0006560651395898,0.0005412481211993,-6.62684907992733e-05,4.24415924506036e-05,-6.62684907992733e-05,-3.92138362079265e-05,-4.24415924506036e-05,-2.27738709681079e-05,-1.33034645700173e-05,5.53221178463344e-05,0.0004757175997361,-0.0013982825405525,0.0004757175997361,-0.0003008718242487,0.0013982825405525,-0.0010912147344379,0.0006044851465504,0.0005965954502644,0.0004086227637092,-0.0014407232399319,0.0004086227637092,-0.0002630888854619,0.0014407232399319,-0.001114122708564,0.0006175561826271,0.0005412733986025,6.70948360269277e-05,4.24406993793187e-05,6.70948360269277e-05,-3.77829387868204e-05,-4.24406993793187e-05,2.290797412616e-05,-1.307103607671e-05,5.5322051661937e-05,2.28788428329008e-05,-0.0013980816176143,2.28788428329007e-05,0.0005621625623941,0.0013980816176143,2.20910709031362e-05,-0.0012472339240408,0.0005965527894328,2.37054526528573e-05,-0.001440523501581,2.37054526528573e-05,0.0004851661246646,0.001440523501581,2.2225255753317e-05,-0.0012736081723822,0.0005412318350449,-8.26609819956845e-07,4.24418839666136e-05,-8.26609819956842e-07,7.69964377294235e-05,-4.24418839666136e-05,-1.34184850180701e-07,2.6374248341345e-05,5.5320954387905e-05,8.462662335032942,s,2.788483702007397e-07,-0.0041944911700537,2.7884837020064146e-07,4.3598243099941814e-08,0.0041944911700537,-1.4989155636532987e-09,1.2897529399948787e-08,0.0017897184787428002,2.791129624573019e-07,-0.0043218153458504,2.791129624573019e-07,4.393550829997605e-08,0.0043218153458504,-1.4172233829469905e-09,1.3149834699865276e-08,0.0016237533548467001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +100,220,34,-0.0005226707774835,-0.0013977158841717,-0.0005226707774835,-0.0002071516096211,0.0013977158841717,0.0011304110529619,0.0005274346899935,0.0005964829958974,-0.000452666922289,-0.0014401589671749,-0.000452666922289,-0.0001750809841053,0.0014401589671749,0.0011544507640639,0.0005382848677231,0.0005411611822313,-7.00038551945487e-05,4.24430830031855e-05,-7.00038551945487e-05,-3.20706255157616e-05,-4.24430830031855e-05,-2.40397111020218e-05,-1.08501777296121e-05,5.53218136660591e-05,0.000440770561558,-0.0013977192286967,0.000440770561558,-0.0003489724543371,0.0013977192286967,-0.0010219629264163,0.0007152304371754,0.0005964775746966,0.0003779933476129,-0.0014401628448103,0.0003779933476129,-0.0003043827431571,0.0014401628448103,-0.0010433794509095,0.0007306244963884,0.0005411554026215,6.27772139450826e-05,4.24436161135762e-05,6.27772139450826e-05,-4.45897111800409e-05,-4.24436161135762e-05,2.14165244932195e-05,-1.53940592129889e-05,5.53221720751138e-05,8.19158620951834e-05,-0.0013976308370799,8.19158620951833e-05,0.0005561488014438,0.0013976308370799,-0.0001084287920114,-0.0012426373093136,0.0005964560115454,7.46887913080246e-05,-0.0014400739942426,7.46887913080245e-05,0.0004794892466723,0.0014400739942426,-0.0001110520906917,-0.0012688810717153,0.0005411353983522,7.22707078716014e-06,4.24431571626907e-05,7.22707078716014e-06,7.66595547715383e-05,-4.24431571626907e-05,2.62329868027226e-06,2.62437624017033e-05,5.53206131932842e-05,8.548143772760547,s,1.5646169683385743e-08,-0.0041930659499483,1.5646169683290875e-08,2.4737485599985072e-08,0.0041930659499483,1.933453420009299e-08,2.7817855300076716e-08,0.0017894165821393999,1.5216631924617097e-08,-0.0043203958062278,1.521663192452223e-08,2.5519409899978866e-08,0.0043203958062278,1.9222462700104197e-08,2.8292396199924505e-08,0.0016234519832050002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +101,221,34,-0.0005420066439542,-0.0013980424512082,-0.0005420066439542,-0.0001517927446302,0.0013980424512082,0.0011793481834252,0.000406425013719,0.0005965448328566,-0.0004690340549404,-0.0014404831661749,-0.0004690340549404,-0.0001272163838721,0.0014404831661749,0.0012043901501121,0.0004147027846524,0.0005412231757789,-7.29725890137557e-05,4.24407149666957e-05,-7.29725890137557e-05,-2.45763607581244e-05,-4.24407149666957e-05,-2.50419666869694e-05,-8.27777093347217e-06,5.53216570777725e-05,0.0004020709977154,-0.0013977917197393,0.0004020709977154,-0.0003933387537852,0.0013977917197393,-0.0009416025991276,0.0008181183022454,0.0005964887680593,0.0003442998438957,-0.0014402342378119,0.0003442998438957,-0.000342430779154,0.0014402342378119,-0.0009612926168354,0.0008356666101007,0.0005411666119048,5.77711538197004e-05,4.24425180724971e-05,5.77711538197004e-05,-5.09079746312116e-05,-4.24425180724971e-05,1.96900177078117e-05,-1.75483078553746e-05,5.53221561545002e-05,0.0001395586334463,-0.0013979051019095,0.0001395586334463,0.0005451463112531,0.0013979051019095,-0.0002376925241212,-0.00122449955395,0.0005965054074325,0.0001243569728052,-0.0014403454899501,0.0001243569728052,0.0004696630636298,0.0014403454899501,-0.0002430446694216,-0.001250325084228,0.0005411847271399,1.52016606411433e-05,4.24403880406043e-05,1.52016606411433e-05,7.54832476232867e-05,-4.24403880406043e-05,5.35214530038939e-06,2.58255302779933e-05,5.5320680292557e-05,8.633625210488152,s,-3.7701279249999654e-07,-0.004193739272857,-3.7701279249999654e-07,1.4812837700038141e-08,0.004193739272857,5.306017639993585e-08,4.376201439984864e-08,0.0017895390083483998,-3.772382394999865e-07,-0.004321062893936901,-3.772382394999865e-07,1.5900603699979445e-08,0.004321062893936901,5.286385509987177e-08,4.431052509981659e-08,0.0016235745148236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +102,222,34,-0.0005556645414344,-0.0013986557271035,-0.0005556645414344,-9.51174541495052e-05,0.0013986557271035,0.0012153783300879,0.0002809885588968,0.0005966594398515,-0.0004805220817875,-0.0014410941888607,-0.0004805220817875,-7.8302537147854e-05,0.0014410941888607,0.0012411482472507,0.0002866032189751,0.0005413378478597,-7.51424596469283e-05,4.24384617572675e-05,-7.51424596469283e-05,-1.68149170016495e-05,-4.24384617572675e-05,-2.57699171627863e-05,-5.61466007831915e-06,5.5321591991884e-05,0.0003598448255794,-0.0013984229302392,0.0003598448255794,-0.0004335498615399,0.0013984229302392,-0.0008509976651993,0.0009120419498004,0.0005966085554046,0.0003077110331752,-0.0014408625206896,0.0003077110331752,-0.000376881618432,0.0014408625206896,-0.0008687452833414,0.0009315522272692,0.0005412863310914,5.21337924042444e-05,4.2439590450384e-05,5.21337924042444e-05,-5.66682431078886e-05,-4.2439590450384e-05,1.77476181420955e-05,-1.95102774688326e-05,5.5322224313152e-05,0.000195478009006,-0.0013985441229022,0.000195478009006,0.0005286773486691,0.0013985441229022,-0.0003643331282227,-0.0011929920394795,0.0005966265825865,0.0001724693608064,-0.0014409818759915,0.0001724693608064,0.0004551953779106,0.0014409818759915,-0.0003723555918251,-0.0012181166327162,0.0005413052798858,2.30086481995608e-05,4.24377530893366e-05,2.30086481995608e-05,7.34819707585242e-05,-4.24377530893366e-05,8.02246360237126e-06,2.51245932367437e-05,5.53213027006667e-05,8.719106648215758,s,-3.4170684900001547e-07,-0.0041956227802448995,-3.4170684900001547e-07,1.0032979694762044e-08,0.0041956227802448995,4.7536665900014315e-08,3.846921770001531e-08,0.0017898945778426,-3.4168780589999216e-07,-0.0043229385855418,-3.4168780589999216e-07,1.1222330745946658e-08,0.0043229385855418,4.7372084200020606e-08,3.8813528100084885e-08,0.0016239294588369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +103,223,34,-0.0005624598559937,-0.0013986691804206,-0.0005624598559937,-3.67314601861512e-05,0.0013986691804206,0.0012380537919035,0.0001524074340889,0.0005966521630028,-0.0004859707087232,-0.0014411083085344,-0.0004859707087232,-2.78614624250943e-05,0.0014411083085344,0.0012642695070476,0.0001552976087329,0.0005413307449143,-7.64891472705092e-05,4.24391281137815e-05,-7.64891472705092e-05,-8.86999776105631e-06,-4.24391281137815e-05,-2.62157151440998e-05,-2.89017464401855e-06,5.53214180885405e-05,0.0003131071793162,-0.0013987161192129,0.0003131071793162,-0.0004688030114952,0.0013987161192129,-0.0007510243508462,0.0009959822084762,0.0005966611248488,0.0002671806062742,-0.0014411553022116,0.0002671806062742,-0.0004069957427889,0.0014411553022116,-0.000766635333769,0.001017240825857,0.0005413388087189,4.59265730420824e-05,4.2439182998697e-05,4.59265730420824e-05,-6.18072687062813e-05,-4.2439182998697e-05,1.56109829227579e-05,-2.12586173807821e-05,5.53223161299181e-05,0.000249422781776,-0.0013986373022472,0.000249422781776,0.0005054829554467,0.0013986373022472,-0.000487021671985,-0.0011483581883808,0.0005966377615999,0.0002188597955905,-0.0014410757186473,0.0002188597955905,0.0004348065154463,0.0014410757186473,-0.0004976266112471,-0.0011725068724164,0.0005413158132862,3.05629861855778e-05,4.24384164000893e-05,3.05629861855778e-05,7.06764400003608e-05,-4.24384164000893e-05,1.06049392621433e-05,2.41486840355839e-05,5.53219483136393e-05,8.804588085943363,s,7.010509849996209e-08,-0.0041960226018807,7.010509849996209e-08,-5.15162346512079e-08,0.0041960226018807,7.769072300095083e-09,3.1454184299924484e-08,0.0017899510494514999,6.969314150000942e-08,-0.0043233393293933,6.969314150000942e-08,-5.0689767694324806e-08,0.0043233393293933,7.562031500117639e-09,3.156217349997194e-08,0.0016239853669194001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +104,224,34,-0.0005622831815337,-0.0013980607713551,-0.0005622831815337,2.2661954404039e-05,0.0013980607713551,0.0012471143185352,2.2109204508097e-05,0.0005965194390273,-0.0004852859102008,-0.0014405024270756,-0.0004852859102008,2.34888361085197e-05,0.0014405024270756,0.0012734886556677,2.22433207216495e-05,0.0005411983581204,-7.69972713328999e-05,4.24416557204323e-05,-7.69972713328999e-05,-8.26881704480655e-07,-4.24416557204323e-05,-2.63743371325105e-05,-1.34116213552454e-07,5.53210809068973e-05,0.0002618474302211,-0.001398296888094,0.0002618474302211,-0.0004984576967968,0.001398296888094,-0.000642741075477,0.0010689988052089,0.0005965720231707,0.0002226319129332,-0.0014407381411476,0.0002226319129332,-0.0004321885142248,0.0014407381411476,-0.0006560445396196,0.001091772919606,0.0005412497532963,3.92155172879238e-05,4.24412530536512e-05,3.92155172879238e-05,-6.6269182571967e-05,-4.24412530536512e-05,1.33034641425903e-05,-2.27741143970824e-05,5.5322269874417e-05,0.0003007623538391,-0.0013980845648614,0.0003007623538391,0.0004757000785548,0.0013980845648614,-0.000604394664984,-0.0010910714711067,0.0005965180883617,0.0002629791946194,-0.0014405260103204,0.0002629791946194,0.0004086042866714,0.0014405260103204,-0.0006174659115074,-0.0011139797702144,0.0005411957197386,3.77831592197307e-05,4.24414454590234e-05,3.77831592197307e-05,6.70957918833918e-05,-4.24414454590234e-05,1.30712465233364e-05,2.29082991076988e-05,5.53223686230645e-05,8.890069523670968,s,3.2660252650003026e-07,-0.0041944422243105,3.2660252650003026e-07,-9.566383796097899e-08,0.0041944422243105,-2.1421925799967705e-08,3.653861029712102e-08,0.0017896095505597,3.251973518000168e-07,-0.0043217665785436,3.251973518000168e-07,-9.539144488028561e-08,0.0043217665785436,-2.179545930010556e-08,3.647011324946041e-08,0.0016236438311552997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +105,225,34,-0.0005560034080775,-0.0013974536623187,-0.0005560034080775,8.17902549034756e-05,0.0013974536623187,0.0012425081768414,-0.000108412103155,0.0005963909616428,-0.000479342631074,-0.0014398975889472,-0.000479342631074,7.4563723941166e-05,0.0014398975889472,0.0012687521151044,-0.0001110354724772,0.0005410701932126,-7.66607770035385e-05,4.24439266284939e-05,-7.66607770035385e-05,7.22653096231082e-06,-4.24439266284939e-05,-2.6243938262972e-05,2.62336932215293e-06,5.53207684302354e-05,0.000207399593045,-0.0013976445012865,0.000207399593045,-0.0005225065094239,0.0013976445012865,-0.0005273994212413,0.0011302874087559,0.0005964387133797,0.0001753263626865,-0.0014400887289421,0.0001753263626865,-0.0004525015864892,0.0014400887289421,-0.0005382496565129,0.0011543274931367,0.0005411166616971,3.20732303584941e-05,4.2444227655615e-05,3.20732303584942e-05,-7.00049229346604e-05,-4.2444227655615e-05,1.08502352715552e-05,-2.40400843807538e-05,5.53220516825915e-05,0.0003488312741583,-0.0013974770253029,0.0003488312741583,0.0004406712609311,0.0013974770253029,-0.0007151297413638,-0.0010218278875738,0.0005963908129612,0.0003042412434684,-0.0014399217955983,0.0003042412434684,0.0003778928022325,0.0014399217955983,-0.0007305240619768,-0.0010432447386433,0.0005410683049142,4.45900306899041e-05,4.24447702954312e-05,4.45900306899041e-05,6.27784586986275e-05,-4.24447702954312e-05,1.53943206129963e-05,2.14168510695296e-05,5.53225080469827e-05,8.975550961398575,s,2.2745912579998345e-07,-0.0041925751889081,2.2745912579998345e-07,-4.499358932446521e-08,0.0041925751889081,-2.098576369993256e-08,4.7418027100112545e-08,0.0017892204879837001,2.2497508090003242e-07,-0.0043199081134876,2.2497508090003242e-07,-4.50603155339839e-08,0.0043199081134876,-2.1603385300062936e-08,4.728201620008733e-08,0.0016232551598239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +106,226,34,-0.0005445929496725,-0.0013974623310058,-0.0005445929496725,0.0001395795482302,0.0013974623310058,0.0012243492050105,-0.0002376831306417,0.0005963886029973,-0.0004691088872489,-0.0014399048107238,-0.0004691088872489,0.0001243782167201,0.0014399048107238,0.0012501750112059,-0.0002430353211425,0.0005410678259731,-7.54840624236226e-05,4.24424797180005e-05,-7.54840624236226e-05,1.52013315101151e-05,-4.24424797180005e-05,-2.5825806195403e-05,5.35219050077498e-06,5.53207770241968e-05,0.0001513087746184,-0.001397430624765,0.0001513087746184,-0.0005412621440872,0.001397430624765,-0.0004063419034487,0.0011792106959491,0.0005963973027385,0.000126730480633,-0.0014398751177855,0.000126730480633,-0.0004682889897481,0.0014398751177855,-0.0004146198817533,0.0012042531797478,0.000541075507616,2.45782939853827e-05,4.24444930205698e-05,2.45782939853827e-05,-7.29731543391142e-05,-4.24444930205697e-05,8.27797830461088e-06,-2.50424837986574e-05,5.5321795122551e-05,0.000393168308375,-0.0013974463466552,0.000393168308375,0.0004018092767262,0.0013974463466552,-0.0008180077350577,-0.0009414676291493,0.0005963834516235,0.0003422598490227,-0.0014398908052646,0.0003422598490227,0.0003440369051328,0.0014398908052646,-0.0008355563617148,-0.0009611580098768,0.0005410609558631,5.09084593523133e-05,4.24444586094176e-05,5.09084593523133e-05,5.77723715933311e-05,-4.24444586094176e-05,1.75486266570831e-05,1.96903807275304e-05,5.53224957603729e-05,9.06103239912618,s,-1.1586667910003625e-07,-0.004192339302426,-1.1586667910003625e-07,1.2668086919997426e-07,0.004192339302426,-4.334959000920277e-10,5.993615809999492e-08,0.0017891693573592999,-1.1855759319998006e-07,-0.0043196707337739,-1.1855759319998006e-07,1.2613210480000477e-07,0.0043196707337739,-1.2322622000484479e-09,5.984872849986844e-08,0.0016232042894522001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +107,227,34,-0.0005281475696462,-0.0013980879717953,-0.0005281475696462,0.0001955281372393,0.0013980879717953,0.0011928462268713,-0.0003643080991505,0.0005965081433047,-0.0004546653916944,-0.0014405272937285,-0.0004546653916944,0.0001725192700919,0.0014405272937285,0.0012179710134378,-0.000372330605781,0.000541186814717,-7.34821779518254e-05,4.243932193315e-05,-7.34821779518254e-05,2.30088671473838e-05,-4.243932193315e-05,-2.51247865664666e-05,8.02250663051883e-06,5.53213285876929e-05,9.44557005765057e-05,-0.0013979398980421,9.44557005765056e-05,-0.0005548757009031,0.0013979398980421,-0.0002809135141424,0.0012152499406552,0.0005964960579634,7.76406290037689e-05,-0.0014403811392552,7.76406290037688e-05,-0.0004797334295027,0.0014403811392552,-0.0002865283248025,0.0012410202025316,0.0005411745017667,1.68150715727365e-05,4.24412412130121e-05,1.68150715727365e-05,-7.51422714004246e-05,-4.24412412130121e-05,5.61481066012186e-06,-2.57702618763958e-05,5.53215561967298e-05,0.0004333902856849,-0.0013980564019601,0.0004333902856849,0.0003595626686205,0.0013980564019601,-0.0009119207321359,-0.0008508751049108,0.0005965023035376,0.0003767212699261,-0.0014404980063669,0.0003767212699261,0.0003074279190138,0.0014404980063669,-0.0009314313623981,-0.0008686230566433,0.0005411797315552,5.66690157587672e-05,4.24416044068743e-05,5.66690157587672e-05,5.2134749606743e-05,-4.24416044068743e-05,1.95106302621246e-05,1.774795173241e-05,5.5322571982436e-05,9.146513836853785,s,-3.0158338479427177e-07,-0.0041940842717975,-3.015833847943802e-07,2.151049566999851e-07,0.0041940842717975,1.198059299998503e-08,6.67365939000875e-08,0.0017895065048057,-3.034927645310568e-07,-0.0043214064393506,-3.034927645311652e-07,2.137596030000132e-07,0.0043214064393506,1.1326237199971341e-08,6.654010730009364e-08,0.0016235410480389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +108,228,34,-0.0005054093900034,-0.0013984387930833,-0.0005054093900034,0.0002494015588735,0.0013984387930833,0.0011482433764744,-0.0004869663500526,0.00059657029856,-0.0004347327788314,-0.0014408777151551,-0.0004347327788314,0.0002188382551493,0.0014408777151551,0.0011723921498141,-0.000497571350357,0.0005412483223027,-7.06766111720022e-05,4.24389220718164e-05,-7.06766111720022e-05,3.05633037242215e-05,-4.24389220718164e-05,-2.41487733397545e-05,1.0605000304453e-05,5.53219762572876e-05,3.66192557531555e-05,-0.0013984968143012,3.66192557531554e-05,-0.0005624183706482,0.0013984968143012,-0.0001524018087839,0.0012379721570103,0.0005966000271956,2.77496723391489e-05,-0.0014409360985052,2.77496723391488e-05,-0.0004859295648628,0.0014409360985052,-0.0001552919990636,0.0012641879750699,0.0005412786718214,8.86958341400633e-06,4.24392842040272e-05,8.86958341400633e-06,-7.64888057853694e-05,-4.24392842040272e-05,2.89019027974463e-06,-2.62158180596574e-05,5.53213553742082e-05,0.0004686997186968,-0.0013984495382287,0.0004686997186968,0.0003130007687734,0.0013984495382287,-0.0009958501211367,-0.0007509281010176,0.0005965757257089,0.0004068914139957,-0.0014408904168956,0.0004068914139957,0.0002670732874807,0.0014408904168956,-0.0010171091238033,-0.0007665393574536,0.0005412530190737,6.18083047011368e-05,4.24408786669204e-05,6.18083047011368e-05,4.59274812926832e-05,-4.24408786669204e-05,2.1259002666576e-05,1.56112564360044e-05,5.53227066352242e-05,9.23199527458139,s,-9.041555344447292e-08,-0.0041953851456132,-9.041555344458134e-08,-1.604300130003851e-08,0.0041953851456132,-8.553446200019327e-09,7.770594010012444e-08,0.0017897460514644998,-9.169249655106545e-08,-0.0043227042305559,-9.169249655117387e-08,-1.8022232799977563e-08,0.0043227042305559,-8.973052800136452e-09,7.726725929999706e-08,0.0016237800131978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +109,229,34,-0.0004759175584,-0.0013980540258016,-0.0004759175584,0.0003006686897378,0.0013980540258016,0.0010909776960805,-0.0006043187228589,0.0005964836312983,-0.0004088212266165,-0.001440495364237,-0.0004088212266165,0.000262885454592,0.001440495364237,0.0011138860394591,-0.0006173900582,0.0005411611962422,-6.70963317835416e-05,4.24413384354303e-05,-6.70963317835416e-05,3.77832351458477e-05,-4.24413384354303e-05,-2.29083433786412e-05,1.307133534109e-05,5.53224350561272e-05,-2.2310127059744e-05,-0.0013983507698959,-2.23101270597441e-05,-0.0005628487432513,0.0013983507698959,-2.21507114536465e-05,0.0012470763069523,0.0005965638058278,-2.31373058945089e-05,-0.0014407910530894,-2.31373058945089e-05,-0.0004858513921473,0.0014407910530894,-2.22847589849118e-05,0.0012734506581261,0.0005412427004384,8.2717883476679e-07,4.24402831935204e-05,8.27178834766792e-07,-7.69973511039727e-05,-4.24402831935204e-05,1.34047531265171e-07,-2.6374351173824e-05,5.53211053893291e-05,0.0004983766852058,-0.0013981052324088,0.0004983766852058,0.0002618853501799,0.0013981052324088,-0.0010688555981677,-0.00064266643929,0.000596500094133,0.0004321063050579,-0.0014405479750576,0.0004321063050579,0.0002226687816402,0.0014405479750576,-0.0010916301414559,-0.0006559701256713,0.000541177381432,6.62703801479404e-05,4.24427426488086e-05,6.62703801479404e-05,3.92165685396987e-05,-4.24427426488086e-05,2.27745432882077e-05,1.33036863811961e-05,5.53227127010316e-05,9.317476712308997,s,1.4899974605606797e-07,-0.0041945100281063,1.4899974605595955e-07,-2.947033336000407e-07,0.0041945100281063,-2.8613540846390492e-08,9.114480339997982e-08,0.0017895475312591001,1.4777254689108017e-07,-0.0043218343923839995,1.4777254689108017e-07,-2.9715591510004534e-07,0.0043218343923839995,-2.886098171193084e-08,9.04742547999356e-08,0.0016235812781126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +110,230,34,-0.0004407756018675,-0.0013973788067218,-0.0004407756018675,0.0003486749958162,0.0013973788067218,0.0010217291096122,-0.0007150422104594,0.0005963407055328,-0.0003779961381545,-0.0014398236943478,-0.0003779961381545,0.0003040850884133,0.0014398236943478,0.0010431460194519,-0.0007304366519558,0.0005410181059138,-6.27794637130312e-05,4.24448876260739e-05,-6.27794637130312e-05,4.45899074028243e-05,-4.24448876260739e-05,-2.14169098397545e-05,1.53944414964094e-05,5.53225996190476e-05,-8.14169772818193e-05,-0.0013977077129966,-8.14169772818194e-05,-0.0005564411611172,0.0013977077129966,0.0001083722704814,0.00124246940177,0.0005964286418315,-7.41916118555541e-05,-0.0014401505490468,-7.41916118555542e-05,-0.0004797794197898,0.0014401505490468,0.0001109957482704,0.0012687134110461,0.0005411077385722,-7.22536542626576e-06,4.24428360502067e-05,-7.22536542626576e-06,-7.66617413273736e-05,-4.24428360502067e-05,-2.62347778904316e-06,-2.62440092760654e-05,5.53209032593729e-05,0.0005223717808054,-0.0013974315564903,0.0005223717808054,0.0002074402454772,0.0013974315564903,-0.0011301307993662,-0.0005273359491307,0.0005963600231635,0.0004523655155043,-0.0014398773232379,0.0004523655155043,0.0001753658044018,0.0014398773232379,-0.0011541713598616,-0.0005381863626289,0.0005410374924741,7.00062653011767e-05,4.2445766747622e-05,7.00062653011767e-05,3.20744410753887e-05,-4.2445766747622e-05,2.40405604954306e-05,1.08504134982786e-05,5.53225306893809e-05,9.402958150036602,s,1.7920165608072223e-07,-0.0041925180762087,1.792016560806138e-07,-3.2591982379996686e-07,0.0041925180762087,-2.941927260005986e-08,9.124217990007233e-08,0.0017891293705278,1.777654942458672e-07,-0.0043198515666325,1.7776549424575877e-07,-3.2852697469997545e-07,0.0043198515666325,-2.9592139299964085e-08,9.039646140006699e-08,0.0016231633369601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +111,231,34,-0.0004014951267033,-0.0013970910750394,-0.0004014951267033,0.0003929234665105,0.0013970910750394,0.0009413446280708,-0.0008179126516385,0.0005962819876476,-0.000343721892443,-0.0014395369460357,-0.000343721892443,0.0003420153034549,0.0014395369460357,0.000961035166797,-0.0008354614296083,0.0005409594523781,-5.77732342602709e-05,4.24458709962716e-05,-5.77732342602709e-05,5.09081630556259e-05,-4.24458709962716e-05,-1.96905387262904e-05,1.75487779697432e-05,5.53225352695444e-05,-0.0001394964300864,-0.0013972281267834,-0.0001394964300864,-0.0005442325117371,0.0013972281267834,0.0002376773539641,0.0012242639690872,0.0005963296585992,-0.000124296450035,-0.0014396724389511,-0.000124296450035,-0.0004687473889298,0.0014396724389511,0.0002430296115605,0.0012500901092761,0.0005410087532882,-1.51999800514184e-05,4.24443121677336e-05,-1.51999800514184e-05,-7.54851228073637e-05,-4.24443121677336e-05,-5.35225759631319e-06,-2.58261401888909e-05,5.53209053110259e-05,0.0005410120576937,-0.0013971125729992,0.0005410120576937,0.0001512321380067,0.0013971125729992,-0.001179037790753,-0.0004062819092662,0.0005962972580294,0.0004680374666507,-0.0014395592335992,0.0004680374666507,0.0001266526740025,0.0014395592335992,-0.0012040808213427,-0.0004145600537565,0.0005409749751786,7.29745910430066e-05,4.24466606000466e-05,7.29745910430066e-05,2.45794640042071e-05,-4.24466606000466e-05,2.50430305896721e-05,8.27814449032627e-06,5.53222828508224e-05,9.488439587764207,s,2.050090399990847e-08,-0.004191431774822,2.050090399990847e-08,-7.690721990003782e-08,0.004191431774822,-1.58087180999935e-08,6.940818250000943e-08,0.0017889089042762,1.912417269998249e-08,-0.004318768618586,1.912417269998249e-08,-7.941147239995936e-08,0.004318768618586,-1.604298520006993e-08,6.862591129998957e-08,0.0016229431808449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +112,232,34,-0.0003590121001925,-0.0013975473519266,-0.0003590121001925,0.0004331155833659,0.0013975473519266,0.0008507479010813,-0.0009118179682764,0.0005963727146484,-0.0003068773859578,-0.0014399903386665,-0.0003068773859578,0.0003764469173466,0.0014399903386665,0.0008684959840657,-0.0009313287002822,0.0005410502173961,-5.21347142346666e-05,4.24429867398896e-05,-5.21347142346666e-05,5.66686660193767e-05,-4.24429867398896e-05,-1.774808298443e-05,1.95107320058442e-05,5.53224972522784e-05,-0.000195674960652,-0.0013974544721722,-0.000195674960652,-0.0005271742789095,0.0013974544721722,0.0003643228666253,0.0011927299827613,0.0005963737689893,-0.0001726666747811,-0.0014398963508731,-0.0001726666747811,-0.0004536925095603,0.0014398963508731,0.00037234538225,0.0012178551134862,0.000541052482195,-2.30082858708711e-05,4.24418787009209e-05,-2.30082858708711e-05,-7.34817693491777e-05,-4.24418787009209e-05,-8.02251562471356e-06,-2.51251307248459e-05,5.53212867942969e-05,0.0005545490277698,-0.001397539865619,0.0005545490277698,9.42841378782055e-05,0.001397539865619,-0.0012150670171597,-0.0002808629696064,0.0005963822045156,0.0004794053937948,-0.0014399835210529,0.0004794053937948,7.74683174854628e-05,0.0014399835210529,-0.0012408378436507,-0.0002864779111275,0.0005410601905779,7.51436339750163e-05,4.24436554338288e-05,7.51436339750163e-05,1.68158203927429e-05,-4.24436554338288e-05,2.57708264909719e-05,5.61494152108381e-06,5.53220139376628e-05,9.573921025491813,s,-1.380330746999928e-07,-0.0041925416897177995,-1.380330746999928e-07,2.2544233460545919e-07,0.0041925416897177995,3.750546899959628e-09,4.904487850007156e-08,0.0017891286881533,-1.386669440999952e-07,-0.0043198702105925,-1.386669440999952e-07,2.2272527176281191e-07,0.0043198702105925,3.522664999977554e-09,4.850207649994675e-08,0.0016231628901690002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +113,233,34,-0.0003127614464607,-0.0013981323128824,-0.0003127614464607,0.0004685719307852,0.0013981323128824,0.0007508399465592,-0.0009957410002171,0.0005964857119502,-0.0002668345149424,-0.001440573308788,-0.0002668345149424,0.0004067639337654,0.001440573308788,0.00076645121516,-0.0010170000150188,0.0005411631347492,-4.59269315183016e-05,4.24409959055698e-05,-4.59269315183016e-05,6.18079970197861e-05,-4.24409959055698e-05,-1.56112686007913e-05,2.12590148016681e-05,5.53225772010513e-05,-0.0002495544812929,-0.0013981116658207,-0.0002495544812929,-0.0005049849238486,0.0013981116658207,0.0004869575811671,0.0011481755597303,0.0005964994435008,-0.0002189909951177,-0.0014405506869668,-0.0002189909951177,-0.0004343096791624,0.0014405506869668,0.0004975625555491,0.0011723243977531,0.0005411775980883,-3.05634861751881e-05,4.24390211461054e-05,-3.05634861751881e-05,-7.06752446862069e-05,-4.24390211461054e-05,-1.06049743819763e-05,-2.41488380228763e-05,5.53218454125703e-05,0.0005621950561297,-0.0013981683222152,0.0005621950561297,3.65212515647337e-05,0.0013981683222152,-0.0012377965792217,-0.0001523783022978,0.0005965030560438,0.0004857048950574,-0.0014406095633197,0.0004857048950574,2.76513132059906e-05,0.0014406095633197,-0.0012640129144443,-0.0001552685487907,0.0005411812625872,7.64901610722906e-05,4.24412411044382e-05,7.64901610722906e-05,8.86993835874258e-06,-4.24412411044382e-05,2.62163352225822e-05,2.89024649285001e-06,5.53217934565535e-05,9.659402463219418,s,-1.2087162389994716e-07,-0.0041944123009183,-1.2087162389994716e-07,1.0825850133364671e-07,0.0041944123009183,9.485046001660863e-10,5.625721540000804e-08,0.0017894882114947999,-1.20615002700017e-07,-0.0043217335590745,-1.20615002700017e-07,1.0556780899059444e-07,0.0043217335590745,8.562647999497963e-10,5.5833943600074086e-08,0.0016235219954247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +114,234,34,-0.0002620443422779,-0.001398043005695,-0.0002620443422779,0.0004984209783083,0.001398043005695,0.0006426204738938,-0.0010687457720543,0.0005964618240112,-0.0002228280692502,-0.0014404849703783,-0.0002228280692502,0.0004321509812309,0.0014404849703783,0.0006559241079382,-0.0010915202881883,0.0005411392256592,-3.92162730277551e-05,4.24419646832526e-05,-3.92162730277551e-05,6.62699970773737e-05,-4.24419646832526e-05,-1.33036340444154e-05,2.27745161340417e-05,5.53225983519575e-05,-0.0003007660019193,-0.0013982878315714,-0.0003007660019193,-0.0004764280222341,0.0013982878315714,0.0006042874694076,0.0010909835625368,0.0005965278177629,-0.0002629827928289,-0.0014407272051592,-0.0002629827928289,-0.000409332615862,0.0014407272051592,0.0006173587809101,0.001113891799069,0.0005412054454036,-3.77832090903701e-05,4.24393735877583e-05,-3.77832090903701e-05,-6.70954063721157e-05,-4.24393735877583e-05,-1.30713115025295e-05,-2.29082365321689e-05,5.53223723593326e-05,0.0005627806836768,-0.001398149368157,0.0005627806836768,-2.22746401379118e-05,0.001398149368157,-0.0012469195179609,-2.21559604601681e-05,0.0005964938729268,0.0004857819088035,-0.0014405911940139,0.0004857819088035,-2.31021292127179e-05,0.0014405911940139,-0.0012732943475231,-2.22899941393522e-05,0.0005411723245833,7.69987748732712e-05,4.24418258569186e-05,7.69987748732712e-05,8.27489074806429e-07,-4.24418258569186e-05,2.63748295622088e-05,1.34033679184247e-07,5.53215483435015e-05,9.744883900947023,s,-2.9660520400008605e-08,-0.0041944802054234,-2.9660520400008605e-08,-2.816840637118165e-07,0.0041944802054234,-1.1574659500171794e-08,8.18300223319239e-08,0.0017894835147009,-2.895327560001196e-08,-0.0043218033695514,-2.895327560001196e-08,-2.8376384381791954e-07,0.0043218033695514,-1.1458674800029003e-08,8.151674134793788e-08,0.0016235169956461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +115,235,34,-0.0002076885995408,-0.0013974122874073,-0.0002076885995408,0.0005224027863295,0.0013974122874073,0.0005273037842954,-0.0011300130839766,0.0005963283817743,-0.0001756139227526,-0.0014398570106995,-0.0001756139227526,0.0004523968980557,0.0014398570106995,0.000538154125489,-0.0011540536226648,0.0005410059331367,-3.20746767881845e-05,4.24447232922924e-05,-3.20746767881845e-05,7.00058882738554e-05,-4.24447232922924e-05,-1.08503411935393e-05,2.40405386882533e-05,5.53224486375583e-05,-0.0003487023846852,-0.0013977831290768,-0.0003487023846852,-0.0004415368464757,0.0013977831290768,0.0007150106261594,0.0010217580025355,0.000596419400226,-0.0003041129480967,-0.0014402252580814,-0.0003041129480967,-0.0003787572076718,0.0014402252580814,0.0007304050783461,0.0010431747621031,0.0005410967465177,-4.45894365884756e-05,4.24421290045528e-05,-4.45894365884756e-05,-6.27796388039653e-05,-4.24421290045529e-05,-1.53944521866765e-05,-2.14167595675846e-05,5.53226537083044e-05,0.0005564070060153,-0.0013975544854991,0.0005564070060153,-8.13144215026664e-05,0.0013975544854991,-0.0012423290942293,0.0001083495037832,0.0005963688605167,0.0004797437344787,-0.0014399986524484,0.0004797437344787,-7.40894791589424e-05,0.0014399986524484,-0.0012685735527459,0.0001109730558111,0.0005410475098138,7.66632715365325e-05,4.24441669493113e-05,7.66632715365325e-05,-7.22494234372419e-06,-4.24441669493113e-05,2.62444585165408e-05,-2.62355202791456e-06,5.53213507028591e-05,9.830365338674628,s,1.6021789300000103e-08,-0.0041927499019832,1.6021789300000103e-08,-4.484816488663592e-07,0.0041927499019832,-1.468377450013214e-08,9.442234210001621e-08,0.001789116642517,1.686362940001712e-08,-0.0043200809212293,1.686362940001712e-08,-4.497887750424287e-07,0.0043200809212293,-1.4348910799995285e-08,9.4195249399957e-08,0.0016231501894682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +116,236,34,-0.0001512491233932,-0.0013968955443261,-0.0001512491233932,0.0005408142275037,0.0013968955443261,0.00040623732896,-0.0011788970658181,0.0005962231466284,-0.0001266690833881,-0.0014393422728952,-0.0001266690833881,0.0004678399489865,0.0014393422728952,0.0004145154666906,-0.0012039401658364,0.00054090093746,-2.45800400050226e-05,4.24467285691298e-05,-2.45800400050226e-05,7.29742785172482e-05,-4.24467285691298e-05,-8.27813773055778e-06,2.50431000182383e-05,5.53222091684191e-05,-0.0003928247472548,-0.0013971611264412,-0.0003928247472548,-0.0004016642898414,0.0013971611264412,0.0008178859173158,0.0009413299224424,0.0005962909953041,-0.0003419171275593,-0.0014396064123758,-0.0003419171275593,-0.0003438899286887,0.0014396064123758,0.00083543480753,0.0009610205137388,0.0005409683223242,-5.09076196954073e-05,4.24452859346038e-05,-5.09076196954073e-05,-5.7774361152713e-05,-4.24452859346038e-05,-1.75488902142368e-05,-1.96905912964681e-05,5.53226729798969e-05,0.0005440933193259,-0.0013970224721356,0.0005440933193259,-0.0001394109886891,0.0013970224721356,-0.0012241298964504,0.0002376469369863,0.0005962601343462,0.0004686065342177,-0.0014394684765042,0.0004686065342177,-0.0001242114733002,0.0014394684765042,-0.0012499564987305,0.0002429993117856,0.0005409387838164,7.54867851082301e-05,4.24460043685486e-05,7.54867851082301e-05,-1.51995153888796e-05,-4.24460043685486e-05,2.58266022800448e-05,-5.3523747992397e-06,5.53213505298157e-05,9.915846776402235,s,1.9448677899928934e-08,-0.0041910791429029,1.9448677899928934e-08,-2.610510267999624e-07,0.0041910791429029,-6.650174600017142e-09,7.979361059997627e-08,0.0017887742762787,2.032327030005842e-08,-0.0043184171617752,2.032327030005842e-08,-2.614530023999854e-07,0.0043184171617752,-6.224509899914812e-09,7.965968799994298e-08,0.0016228080436006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +117,237,34,-9.40151956913599e-05,-0.0013970577317368,-9.401519569136e-05,0.000554064156021,0.0013970577317368,0.0002808044108843,-0.0012148982863941,0.000596254722772,-7.71992312396496e-05,-0.0014395023367601,-7.71992312396497e-05,0.0004789212889744,0.0014395023367601,0.0002864194093742,-0.001240669232981,0.0005409328591699,-1.68159644517129e-05,4.24446050233313e-05,-1.68159644517129e-05,7.51428670465689e-05,-4.24446050233313e-05,-5.61499848990725e-06,2.5770946586851e-05,5.53218636021236e-05,-0.0004328128668683,-0.0013970785569161,-0.0004328128668683,-0.0003583079506322,0.0013970785569161,0.0009117881616409,0.0008506654358225,0.0005962738355778,-0.0003761448916655,-0.0014395234897311,-0.0003761448916655,-0.0003061730384192,0.0014395234897311,0.0009312990643158,0.000868413788328,0.0005409513098597,-5.66679752027679e-05,4.24449328150283e-05,-5.66679752027679e-05,-5.21349122129758e-05,-4.24449328150283e-05,-1.95109026749128e-05,-1.7748352505552e-05,5.53225257180983e-05,0.0005268767252566,-0.0013971508030037,0.0005268767252566,-0.0001956362798479,0.0013971508030037,-0.0011925958046811,0.0003642882297931,0.0005962874406643,0.000453393521081,-0.0014395948158989,0.000453393521081,-0.0001726282960604,0.0014395948158989,-0.0012177214088967,0.0003723108897885,0.0005409657475168,7.34832041755903e-05,4.24440128952009e-05,7.34832041755903e-05,-2.30079837874889e-05,-4.24440128952009e-05,2.51256042156534e-05,-8.02265999535129e-06,5.5321693147543e-05,10.00132821412984,s,4.866269694007216e-08,-0.0041912870916566,4.866269694007216e-08,1.1992554090000068e-07,0.0041912870916566,-3.2321559001284583e-09,5.5379221500066484e-08,0.0017888159990141,4.939817585043098e-08,-0.0043186206423901,4.939817585032256e-08,1.199544948000421e-07,0.0043186206423901,-2.9352067000901205e-09,5.544513549996487e-08,0.0016228499165464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +118,238,34,-3.62890040778351e-05,-0.0013977114813214,-3.62890040778352e-05,0.0005618014914112,0.0013977114813214,0.0001523428499487,-0.0012376191730064,0.0005963793776384,-2.74195785123095e-05,-0.0014401527727054,-2.74195785123096e-05,0.0004853124530892,0.0014401527727054,0.0001552331235827,-0.0012638355333047,0.0005410577963778,-8.86942556552623e-06,4.2441291383944e-05,-8.86942556552622e-06,7.64890383220046e-05,-4.2441291383944e-05,-2.89027363397754e-06,2.62163602982694e-05,5.53215812606281e-05,-0.0004683780666863,-0.0013976731784751,-0.0004683780666863,-0.0003120795420212,0.0013976731784751,0.0009957046901402,0.0007507672271084,0.0005963883290008,-0.0004065705770635,-0.0014401148921749,-0.0004065705770635,-0.0002661539821823,0.0014401148921749,0.0010169637483108,0.0007663786426753,0.0005410658674952,-6.18074896228141e-05,4.24417136998369e-05,-6.18074896228141e-05,-4.59255598388446e-05,-4.24417136998369e-05,-2.12590581706699e-05,-1.56114155669183e-05,5.53224615056347e-05,0.0005047075101434,-0.0013978114003049,0.0005047075101434,-0.0002495335860151,0.0013978114003049,-0.0011480509696208,0.0004869113087042,0.0005964167292226,0.0004340311562091,-0.0014402522207129,0.0004340311562091,-0.0002189700792847,0.0014402522207129,-0.0011722002159607,0.000497516452309,0.0005410945153439,7.06763539343042e-05,4.24408204079895e-05,7.06763539343042e-05,-3.05635067303921e-05,-4.24408204079895e-05,2.41492463399004e-05,-1.06051436047491e-05,5.53222138787154e-05,10.086809651857445,s,4.043937926493865e-08,-0.0041931960601014,4.043937926483023e-08,1.883633749000268e-07,0.0041931960601014,-3.429531900004182e-09,5.9362806200020674e-08,0.0017891844358617999,4.100063329050708e-08,-0.0043205198855931996,4.100063329039866e-08,1.8839162220000657e-07,0.0043205198855931996,-3.3440672002338356e-09,5.9561679600027805e-08,0.0016232181792169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +119,239,34,2.22544436763156e-05,-0.0013979388721217,2.22544436763155e-05,0.0005627573565119,0.0013979388721217,2.21633450218085e-05,-0.0012467510228009,0.0005964170042227,2.30814571493639e-05,-0.0014403796694717,2.30814571493638e-05,0.0004857597081571,0.0014403796694717,2.22973663632236e-05,-0.0012731258037211,0.0005410956491573,-8.27013473048219e-07,4.24407973499994e-05,-8.27013473048217e-07,7.69976483547876e-05,-4.24407973499994e-05,-1.34021341415265e-07,2.63747809202159e-05,5.53213550653555e-05,-0.0004986765590723,-0.0013981310629623,-0.0004986765590723,-0.0002621923111479,0.0013981310629623,0.001068716558173,0.0006426197911525,0.0005964735838387,-0.0004324069542986,-0.0014405716350959,-0.0004324069542986,-0.0002229774610689,0.0014405716350959,0.0010914910026054,0.0006559234027015,0.0005411511030707,-6.62696047737005e-05,4.24405721336038e-05,-6.62696047737005e-05,-3.92148500789391e-05,-4.24405721336038e-05,-2.27744444324443e-05,-1.33036115489568e-05,5.53224807680033e-05,0.0004763452396709,-0.0013981002010253,0.0004763452396709,-0.0003007272586567,0.0013981002010253,-0.0010908791140361,0.0006042252045736,0.0005964685985713,0.0004092487993963,-0.0014405408457967,0.0004092487993963,-0.0002629438794192,0.0014405408457967,-0.0011137876887802,0.00061729671527,0.0005411458585256,6.7096440274537e-05,4.24406447714328e-05,6.7096440274537e-05,-3.77833792375452e-05,-4.24406447714328e-05,2.29085747440782e-05,-1.30715106964026e-05,5.53227400457247e-05,10.17229108958505,s,-7.68757250844119e-08,-0.0041941701361093,-7.687572508452032e-08,-1.6221329270001963e-07,0.0041941701361093,7.891587086496926e-10,9.397292520009481e-08,0.0017893591866327,-7.669775293605435e-08,-0.0043214921503643,-7.669775293616277e-08,-1.616323310000482e-07,0.0043214921503643,6.80188423597336e-10,9.431425039986129e-08,0.0016233926107536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/tests/data/case-70489f25-d6b7-4a0b-81e1-2fa2e82fc57b/simulation.json b/tests/data/case-70489f25-d6b7-4a0b-81e1-2fa2e82fc57b/simulation.json new file mode 100644 index 000000000..6434f5678 --- /dev/null +++ b/tests/data/case-70489f25-d6b7-4a0b-81e1-2fa2e82fc57b/simulation.json @@ -0,0 +1,602 @@ +{ + "meshing": null, + "models": [ + { + "initial_condition": { + "constants": null, + "p": "p", + "rho": "rho", + "type_name": "NavierStokesInitialCondition", + "u": "u", + "v": "v", + "w": "w" + }, + "material": { + "dynamic_viscosity": { + "effective_temperature": { + "units": "K", + "value": 110.4 + }, + "reference_temperature": { + "units": "K", + "value": 273.15 + }, + "reference_viscosity": { + "units": "Pa*s", + "value": 1.716e-05 + } + }, + "name": "air", + "type": "air" + }, + "navier_stokes_solver": { + "CFL_multiplier": 1.0, + "absolute_tolerance": 1e-09, + "equation_evaluation_frequency": 1, + "kappa_MUSCL": -1.0, + "limit_pressure_density": false, + "limit_velocity": false, + "linear_solver": { + "absolute_tolerance": null, + "max_iterations": 35, + "relative_tolerance": null + }, + "low_mach_preconditioner": false, + "low_mach_preconditioner_threshold": null, + "max_force_jac_update_physical_steps": 0, + "numerical_dissipation_factor": 1.0, + "order_of_accuracy": 2, + "private_attribute_dict": null, + "relative_tolerance": 0.0, + "type_name": "Compressible", + "update_jacobian_frequency": 1 + }, + "transition_model_solver": { + "type_name": "None" + }, + "turbulence_model_solver": { + "CFL_multiplier": 2.0, + "absolute_tolerance": 1e-08, + "equation_evaluation_frequency": 1, + "hybrid_model": { + "grid_size_for_LES": "maxEdgeLength", + "shielding_function": "DDES" + }, + "linear_solver": { + "absolute_tolerance": null, + "max_iterations": 35, + "relative_tolerance": null + }, + "max_force_jac_update_physical_steps": 0, + "modeling_constants": { + "C_DES": 0.72, + "C_cb1": 0.1355, + "C_cb2": 0.622, + "C_d": 8.0, + "C_min_rd": 10.0, + "C_sigma": 0.6666666666666666, + "C_t3": 1.2, + "C_t4": 0.5, + "C_v1": 7.1, + "C_vonKarman": 0.41, + "C_w2": 0.3, + "type_name": "SpalartAllmarasConsts" + }, + "order_of_accuracy": 2, + "private_attribute_dict": null, + "quadratic_constitutive_relation": false, + "reconstruction_gradient_limiter": 0.5, + "relative_tolerance": 0.0, + "rotation_correction": true, + "type_name": "SpalartAllmaras", + "update_jacobian_frequency": 1 + }, + "type": "Fluid" + }, + { + "entities": { + "stored_entities": [ + { + "axes": null, + "axis": [ + 0.0, + 0.0, + -1.0 + ], + "center": { + "units": "m", + "value": [ + 0.0, + 0.0, + 0.0 + ] + }, + "name": "rotationField", + "private_attribute_entity_type_name": "GenericVolume", + "private_attribute_full_name": "rotationField", + "private_attribute_id": "rotationField", + "private_attribute_registry_bucket_name": "VolumetricEntityType", + "private_attribute_zone_boundary_names": { + "items": [ + "rotationField/blade", + "rotationField/blade_2", + "rotationField/blade_3", + "rotationField/rotBnd" + ] + } + } + ] + }, + "name": "Rotation", + "parent_volume": null, + "rotating_reference_frame_model": false, + "spec": { + "type_name": "AngularVelocity", + "value": { + "units": "rad/s", + "value": 1.225058420909566 + } + }, + "type": "Rotation" + }, + { + "entities": { + "stored_entities": [ + { + "name": "rotationField/blade", + "private_attribute_color": null, + "private_attribute_entity_type_name": "Surface", + "private_attribute_full_name": "rotationField/blade", + "private_attribute_id": "rotationField/blade", + "private_attribute_is_interface": false, + "private_attribute_potential_issues": [], + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_sub_components": [], + "private_attribute_tag_key": null + }, + { + "name": "rotationField/blade_3", + "private_attribute_color": null, + "private_attribute_entity_type_name": "Surface", + "private_attribute_full_name": "rotationField/blade_3", + "private_attribute_id": "rotationField/blade_3", + "private_attribute_is_interface": false, + "private_attribute_potential_issues": [], + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_sub_components": [], + "private_attribute_tag_key": null + }, + { + "name": "rotationField/blade_2", + "private_attribute_color": null, + "private_attribute_entity_type_name": "Surface", + "private_attribute_full_name": "rotationField/blade_2", + "private_attribute_id": "rotationField/blade_2", + "private_attribute_is_interface": false, + "private_attribute_potential_issues": [], + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_sub_components": [], + "private_attribute_tag_key": null + } + ] + }, + "heat_spec": { + "type_name": "HeatFlux", + "value": { + "units": "W/m**2", + "value": 0.0 + } + }, + "name": "Wall", + "roughness_height": { + "units": "m", + "value": 0.0 + }, + "type": "Wall", + "use_wall_function": false, + "velocity": null + }, + { + "entities": { + "stored_entities": [ + { + "name": "stationaryField/farfield", + "private_attribute_color": null, + "private_attribute_entity_type_name": "Surface", + "private_attribute_full_name": "stationaryField/farfield", + "private_attribute_id": "stationaryField/farfield", + "private_attribute_is_interface": false, + "private_attribute_potential_issues": [], + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_sub_components": [], + "private_attribute_tag_key": null + } + ] + }, + "name": "Freestream", + "turbulence_quantities": null, + "type": "Freestream", + "velocity": null + } + ], + "operating_condition": { + "alpha": { + "units": "degree", + "value": -90.0 + }, + "beta": { + "units": "degree", + "value": 0.0 + }, + "private_attribute_constructor": "from_mach", + "private_attribute_input_cache": { + "alpha": { + "units": "degree", + "value": -90.0 + }, + "beta": { + "units": "degree", + "value": 0.0 + }, + "mach": 0.182, + "project_length_unit": null, + "reference_mach": 0.54, + "reynolds": null, + "temperature": null, + "thermal_state": { + "density": { + "units": "kg/m**3", + "value": 0.03129817430094321 + }, + "material": { + "dynamic_viscosity": { + "effective_temperature": { + "units": "K", + "value": 110.4 + }, + "reference_temperature": { + "units": "K", + "value": 273.15 + }, + "reference_viscosity": { + "units": "Pa*s", + "value": 1.716e-05 + } + }, + "name": "air", + "type": "air" + }, + "private_attribute_constructor": "default", + "private_attribute_input_cache": { + "altitude": null, + "temperature_offset": null + }, + "temperature": { + "units": "K", + "value": 288.15 + }, + "type_name": "ThermalState" + } + }, + "reference_velocity_magnitude": { + "units": "m/s", + "value": 183.75876313643494 + }, + "thermal_state": { + "density": { + "units": "kg/m**3", + "value": 0.03129817430094321 + }, + "material": { + "dynamic_viscosity": { + "effective_temperature": { + "units": "K", + "value": 110.4 + }, + "reference_temperature": { + "units": "K", + "value": 273.15 + }, + "reference_viscosity": { + "units": "Pa*s", + "value": 1.716e-05 + } + }, + "name": "air", + "type": "air" + }, + "private_attribute_constructor": "default", + "private_attribute_input_cache": { + "altitude": null, + "temperature_offset": null + }, + "temperature": { + "units": "K", + "value": 288.15 + }, + "type_name": "ThermalState" + }, + "type_name": "AerospaceCondition", + "velocity_magnitude": { + "units": "m/s", + "value": 61.93350905709473 + } + }, + "outputs": [ + { + "frequency": -1, + "frequency_offset": 0, + "name": "Volume output", + "output_fields": { + "items": [ + "primitiveVars", + "Mach", + "qcriterion" + ] + }, + "output_format": "paraview", + "output_type": "VolumeOutput" + }, + { + "entities": { + "stored_entities": [ + { + "name": "rotationField/blade", + "private_attribute_color": null, + "private_attribute_entity_type_name": "Surface", + "private_attribute_full_name": "rotationField/blade", + "private_attribute_id": "rotationField/blade", + "private_attribute_is_interface": false, + "private_attribute_potential_issues": [], + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_sub_components": [], + "private_attribute_tag_key": null + }, + { + "name": "stationaryField/rotationInterface_static", + "private_attribute_color": null, + "private_attribute_entity_type_name": "Surface", + "private_attribute_full_name": "stationaryField/rotationInterface_static", + "private_attribute_id": "stationaryField/rotationInterface_static", + "private_attribute_is_interface": true, + "private_attribute_potential_issues": [], + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_sub_components": [], + "private_attribute_tag_key": null + }, + { + "name": "stationaryField/farfield", + "private_attribute_color": null, + "private_attribute_entity_type_name": "Surface", + "private_attribute_full_name": "stationaryField/farfield", + "private_attribute_id": "stationaryField/farfield", + "private_attribute_is_interface": false, + "private_attribute_potential_issues": [], + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_sub_components": [], + "private_attribute_tag_key": null + }, + { + "name": "rotationField/rotBnd", + "private_attribute_color": null, + "private_attribute_entity_type_name": "Surface", + "private_attribute_full_name": "rotationField/rotBnd", + "private_attribute_id": "rotationField/rotBnd", + "private_attribute_is_interface": true, + "private_attribute_potential_issues": [], + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_sub_components": [], + "private_attribute_tag_key": null + }, + { + "name": "rotationField/blade_3", + "private_attribute_color": null, + "private_attribute_entity_type_name": "Surface", + "private_attribute_full_name": "rotationField/blade_3", + "private_attribute_id": "rotationField/blade_3", + "private_attribute_is_interface": false, + "private_attribute_potential_issues": [], + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_sub_components": [], + "private_attribute_tag_key": null + }, + { + "name": "rotationField/blade_2", + "private_attribute_color": null, + "private_attribute_entity_type_name": "Surface", + "private_attribute_full_name": "rotationField/blade_2", + "private_attribute_id": "rotationField/blade_2", + "private_attribute_is_interface": false, + "private_attribute_potential_issues": [], + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_sub_components": [], + "private_attribute_tag_key": null + } + ] + }, + "frequency": -1, + "frequency_offset": 0, + "name": "Surface output", + "output_fields": { + "items": [ + "primitiveVars", + "Cp", + "Cf", + "CfVec", + "yPlus", + "nodeForcesPerUnitArea" + ] + }, + "output_format": "both", + "output_type": "SurfaceOutput", + "write_single_file": false + } + ], + "private_attribute_asset_cache": { + "project_entity_info": { + "boundaries": [ + { + "name": "rotationField/blade", + "private_attribute_color": null, + "private_attribute_entity_type_name": "Surface", + "private_attribute_full_name": "rotationField/blade", + "private_attribute_id": "rotationField/blade", + "private_attribute_is_interface": false, + "private_attribute_potential_issues": [], + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_sub_components": [], + "private_attribute_tag_key": null + }, + { + "name": "stationaryField/rotationInterface_static", + "private_attribute_color": null, + "private_attribute_entity_type_name": "Surface", + "private_attribute_full_name": "stationaryField/rotationInterface_static", + "private_attribute_id": "stationaryField/rotationInterface_static", + "private_attribute_is_interface": true, + "private_attribute_potential_issues": [], + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_sub_components": [], + "private_attribute_tag_key": null + }, + { + "name": "stationaryField/farfield", + "private_attribute_color": null, + "private_attribute_entity_type_name": "Surface", + "private_attribute_full_name": "stationaryField/farfield", + "private_attribute_id": "stationaryField/farfield", + "private_attribute_is_interface": false, + "private_attribute_potential_issues": [], + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_sub_components": [], + "private_attribute_tag_key": null + }, + { + "name": "rotationField/rotBnd", + "private_attribute_color": null, + "private_attribute_entity_type_name": "Surface", + "private_attribute_full_name": "rotationField/rotBnd", + "private_attribute_id": "rotationField/rotBnd", + "private_attribute_is_interface": true, + "private_attribute_potential_issues": [], + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_sub_components": [], + "private_attribute_tag_key": null + }, + { + "name": "rotationField/blade_3", + "private_attribute_color": null, + "private_attribute_entity_type_name": "Surface", + "private_attribute_full_name": "rotationField/blade_3", + "private_attribute_id": "rotationField/blade_3", + "private_attribute_is_interface": false, + "private_attribute_potential_issues": [], + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_sub_components": [], + "private_attribute_tag_key": null + }, + { + "name": "rotationField/blade_2", + "private_attribute_color": null, + "private_attribute_entity_type_name": "Surface", + "private_attribute_full_name": "rotationField/blade_2", + "private_attribute_id": "rotationField/blade_2", + "private_attribute_is_interface": false, + "private_attribute_potential_issues": [], + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_sub_components": [], + "private_attribute_tag_key": null + } + ], + "draft_entities": [], + "ghost_entities": [], + "type_name": "VolumeMeshEntityInfo", + "zones": [ + { + "axes": null, + "axis": null, + "center": null, + "name": "rotationField", + "private_attribute_entity_type_name": "GenericVolume", + "private_attribute_full_name": "rotationField", + "private_attribute_id": "rotationField", + "private_attribute_registry_bucket_name": "VolumetricEntityType", + "private_attribute_zone_boundary_names": { + "items": [ + "rotationField/blade", + "rotationField/blade_2", + "rotationField/blade_3", + "rotationField/rotBnd" + ] + } + }, + { + "axes": null, + "axis": null, + "center": null, + "name": "stationaryField", + "private_attribute_entity_type_name": "GenericVolume", + "private_attribute_full_name": "stationaryField", + "private_attribute_id": "stationaryField", + "private_attribute_registry_bucket_name": "VolumetricEntityType", + "private_attribute_zone_boundary_names": { + "items": [ + "stationaryField/farfield", + "stationaryField/rotationInterface_static" + ] + } + } + ] + }, + "project_length_unit": { + "units": "m", + "value": 1.0 + }, + "use_geometry_AI": false, + "use_inhouse_mesher": false + }, + "reference_geometry": { + "area": { + "units": "m**2", + "value": 70685.83470577035 + }, + "moment_center": { + "units": "m", + "value": [ + 0.0, + 0.0, + 0.0 + ] + }, + "moment_length": { + "units": "m", + "value": [ + 150.0, + 150.0, + 150.0 + ] + } + }, + "time_stepping": { + "CFL": { + "final": 10000000.0, + "initial": 1.0, + "ramp_steps": 33, + "type": "ramp" + }, + "max_pseudo_steps": 35, + "order_of_accuracy": 2, + "step_size": { + "units": "s", + "value": 0.08548143772760547 + }, + "steps": 120, + "type_name": "Unsteady" + }, + "unit_system": { + "name": "SI" + }, + "user_defined_dynamics": null, + "user_defined_fields": [], + "version": "25.2.0b1" +} \ No newline at end of file diff --git a/tests/test_results.py b/tests/test_results.py index 74459d980..a57a6a2f8 100644 --- a/tests/test_results.py +++ b/tests/test_results.py @@ -10,7 +10,14 @@ import flow360.component.v1.units as u1 import flow360.v1 as fl from flow360 import log +from flow360.component.results.case_results import ( + _PHYSICAL_STEP, + _PSEUDO_STEP, + _TIME, + _TIME_UNITS, +) from flow360.component.simulation import units as u2 +from flow360.component.simulation.framework.updater_utils import compare_values from flow360.component.simulation.operating_condition.operating_condition import ( AerospaceCondition, ) @@ -367,3 +374,17 @@ def test_y_sectional_results(mock_id, mock_response): ) assert set(y_slicing.values.keys()) == set(all_headers) assert y_slicing.as_dataframe().shape[0] == 140 + + +@pytest.mark.usefixtures("s3_download_override") +def test_average(mock_id, mock_response): + case = fl.Case(id="case-70489f25-d6b7-4a0b-81e1-2fa2e82fc57b") + surface_forces = case.results.surface_forces + data_df = surface_forces.as_dataframe() + data_avg_dict = surface_forces.averages + + for key in [_PSEUDO_STEP, _PHYSICAL_STEP, _TIME, _TIME_UNITS]: + assert key not in data_avg_dict.keys() + + for col in data_avg_dict.keys(): + assert compare_values(data_avg_dict[col], data_df[col].tail(int(len(data_df) * 0.1)).mean())