#! /usr/bin/perl # # Script to make TF binding calls from tables of chip-chip p-values # # To regenerate the numbers shown in Figure 2 of the main manuscript # use this command: # # tpm_counts.pl -o counts -t 0.001001 -ids SGD_features.20050416.orfs BLA_YPD_pvalues.tab BLA_MMS_pvalues.tab # # To get the genes bound by each TF in either the absence of MMS, # presence of MMS, or in both experimental conditions: # # tpm_counts.pl -t 0.001001 -ids SGD_features.20050416.orfs BLA_YPD_pvalues.tab BLA_MMS_pvalues.tab # # $t_strict = 1e-3; $method = "TPM"; $output = "ORFlists"; $comp = "same"; $IDs_list = "No_Filter"; $usage =< -t (DEFAULT = $t_strict) -m (DEFAULT = \"$method\") {\"TPM\"|\"strict\"|\"top\"} -c (DEFAULT = \"$comp\") {\"all\", \"same\", \"diff\"} -ids (DEFAULT = $IDs_list) {file containing ORF ids used to filter rows} -o (DEFAULT = \"$output\") {\"counts\"|\"ORFlists\"} USAGE die $usage if(@ARGV<2); while(@ARGV) { $arg = shift; if($arg eq "-t") { $t_strict = shift; } elsif($arg eq "-m") { $method = shift; } elsif($arg eq "-c") { $comp = shift; } elsif($arg eq "-ids") { $IDs_list = shift; } elsif($arg eq "-o") { $output = shift; } else { push @argv, $arg; } } die $usage if(@argv < 2); $c1_file = shift(@argv); $c2_file = shift(@argv); # precomputed values for the TPM method @t_stricts = ( 2.74878500791020e-45,7.47234101918862e-45,1.99204320218597e-44,5.21090772071724e-44,1.33825077855613e-43,3.37597353934102e-43,8.36984260253371e-43,2.04034404470577e-42,4.89283636123649e-42, 1.15474213228226e-41,2.68327455480597e-41,6.14162000611273e-41,1.38520470943910e-40,3.0798347571154e-40,6.75284265675353e-40,1.460660373426e-39,3.11793802580818e-39,6.57034747682682e-39,1.36726866466779e-38, 2.81061468780234e-38,5.70904392672303e-38,1.14622108120878e-37,2.27530929903753e-37,4.46683192637212e-37,8.67485268459604e-37,1.66701851937784e-36,3.17061481705561e-36,5.97003375775047e-36,1.11312140647458e-35, 2.05560548040118e-35,3.7606635210373e-35,6.81725803542658e-35,1.22480170182482e-34,2.1813239156624e-34,3.85174741027960e-34,6.74467627829653e-34,1.17141312348320e-33,2.01828449912095e-33,3.45027268152291e-33, 5.8532413621142e-33,9.85558885640944e-33,1.64733145489719e-32,2.73375042963097e-32,4.50486220750541e-32,7.37246016838881e-32,1.19843197146113e-31,1.93528276505337e-31,3.10501707096056e-31,4.95027047764261e-31, 7.84322308023024e-31,1.23513595034786e-30,1.93349006121875e-30,3.0090344738081e-30,4.65607684617042e-30,7.16422639310833e-30,1.09628085418004e-29,1.66849033995903e-29,2.525920660464e-29,3.8041140178163e-29, 5.69990647074751e-29,8.49774759948656e-29,1.26067255782288e-28,1.86124106666356e-28,2.73491178469833e-28,4.00001816989667e-28,5.8236493405438e-28,8.44070777586894e-28,1.21800153594041e-27,1.74999266142778e-27, 2.50367141516111e-27,3.56700448647502e-27,5.06112368926969e-27,7.15217661427201e-27,1.00671789678953e-26,1.41151412714753e-26,1.97151222846351e-26,2.74333469595960e-26,3.80321452663959e-26,5.25342536991595e-26, 7.23070154524208e-26,9.91722695313872e-26,1.35549296450400e-25,1.84640165726507e-25,2.50669302002691e-25,3.39192166469218e-25,4.57491776589983e-25,6.15086527087499e-25,8.24378630035361e-25,1.10147970367094e-24, 1.46725889806386e-24,1.94866979749847e-24,2.5804255972904e-24,3.40710820768583e-24,4.48581657164585e-24,5.88948328532954e-24,7.71101739250822e-24,1.0068465943455e-23,1.3111428688259e-23,1.70290104299330e-23, 2.20596556322567e-23,2.85032816548187e-23,3.6736212560561e-23,4.72295172327379e-23,6.05714763564709e-23,7.74950459110634e-23,9.89113539278741e-23,1.25950466706516e-22,1.60010895403129e-22,2.02819589589135e-22, 2.56504487527735e-22,3.23682070953775e-22,4.07562813535346e-22,5.1207792657408e-22,6.4203140380555e-22,8.03282061793286e-22,1.00296107740434e-21,1.24973145506624e-21,1.55409693181186e-21,1.92876906764945e-21, 2.38910269516539e-21,2.953611540858e-21,3.64457770993575e-21,4.48877087797827e-21,5.51829549244989e-21,6.7715870941263e-21,8.29458206708945e-21,1.01420887649855e-20,1.23793920950305e-20,1.50841283299399e-20, 1.83484722281076e-20,2.22816845474836e-20,2.70130748198058e-20,3.26954418984634e-20,3.95090634035906e-20,4.76663148699443e-20,5.74170102751857e-20,6.9054567818031e-20,8.29231184693968e-20,9.9425690090184e-20, 1.19033616966010e-19,1.42297343636456e-19,1.69858813095102e-19,2.02465653024929e-19,2.40987399948794e-19,2.86434030273417e-19,3.39977099466419e-19,4.02973826330213e-19,4.76994498849986e-19,5.63853621746582e-19, 6.65645274037855e-19,7.84783198012005e-19,9.24046199482194e-19,1.08662950349545e-18,1.27620278031616e-18,1.49697563403858e-18,1.75377143118521e-18,2.05211043973977e-18,2.3983033509119e-18,2.79955636724252e-18, 3.2640891621945e-18,3.80126714893815e-18,4.42174964049331e-18,5.13765564064758e-18,5.96274917609611e-18,6.91264626608397e-18,8.00504582755876e-18,9.25998703262208e-18,1.07001358721353e-17,1.2351103935964e-17, 1.42418026979322e-17,1.64048368935228e-17,1.88769409022406e-17,2.16994623959577e-17,2.49188978911626e-17,2.85874852486339e-17,3.27638586004972e-17,3.75137716539008e-17,4.29108958246678e-17,4.90377001954564e-17, 5.59864208734274e-17,6.3860127944503e-17,7.27738988875794e-17,8.28561080249693e-17,9.42498423477196e-17,1.07114454869037e-16,1.21627267528738e-16,1.37985436599622e-16,1.56407994535915e-16,1.77138083257953e-16, 2.00445394989382e-16,2.26628837956898e-16,2.56019445531760e-16,2.88983548740609e-16,3.25926233504724e-16,3.67295105485676e-16,4.13584387025590e-16,4.65339372376713e-16,5.2316126922156e-16,5.87712456396872e-16, 6.59722189756596e-16,7.39992790245675e-16,8.29406350513678e-16,9.2893199877916e-16,1.03963376116904e-15,1.16267906640634e-15,1.29934793951121e-15,1.45104293411940e-15,1.61929985611594e-15,1.80579933453460e-15, 2.01237929909436e-15,2.24104842733626e-15,2.49400062809662e-15,2.77363063201075e-15,3.08255076389393e-15,3.42360897619681e-15,3.79990822729318e-15,4.21482729313121e-15,4.67204310577484e-15,5.17555471758951e-15, 5.72970899528725e-15,6.33922815375672e-15,7.00923924556348e-15,7.74530572823008e-15,8.55346123789698e-15,9.44024570473483e-15,1.04127439525358e-14,1.14786269322603e-14,1.26461957469718e-14,1.39244286335544e-14, 1.53230310748967e-14,1.68524892248398e-14,1.85241268371390e-14,2.03501658989952e-14,2.234379117936e-14,2.451921891225e-14,2.68917698456971e-14,2.94779468977413e-14,3.22955176720520e-14,3.53636020973291e-14, 3.87027654666275e-14,4.23351171651583e-14,4.62844153879428e-14,5.05761781619868e-14,5.52378010013516e-14,6.02986815376866e-14,6.57903514834316e-14,7.1746616300013e-14,7.8203702958979e-14,8.52004162000911e-14, 9.27783037070307e-14,1.00981830638443e-13,1.09858563969716e-13,1.19459367119026e-13,1.29838605349888e-13,1.41054362461693e-13,1.53168669299501e-13,1.66247744634736e-13,1.80362248989332e-13,1.9558755199739e-13, 2.12004013920527e-13,2.29697281955729e-13,2.48758601997841e-13,2.69285146542701e-13,2.91380359441438e-13,3.15154318241562e-13,3.40724114876245e-13,3.68214255489552e-13,3.97757080212457e-13,4.29493203732043e-13, 4.63571977524754e-13,5.00151974653392e-13,5.39401498057301e-13,5.81499113295405e-13,6.26634206732774e-13,6.75007570193101e-13,7.26832013131571e-13,7.82333003415945e-13,8.41749337837023e-13,9.05333843504343e-13, 9.73354111317721e-13,1.04609326274123e-12,1.12385075114269e-12,1.20694319899847e-12,1.29570527230194e-12,1.39049059355175e-12,1.49167269473575e-12,1.59964601176622e-12,1.71482692186263e-12,1.83765482541948e-12, 1.96859327393889e-12,2.10813114565004e-12,2.25678387048147e-12,2.41509470609555e-12,2.58363606674014e-12,2.76301090671686e-12,2.95385416031257e-12,3.15683424008664e-12,3.37265459545428e-12,3.60205533355486e-12, 3.84581490444167e-12,4.10475185268075e-12,4.37972663749481e-12,4.67164352363995e-12,4.98145254525429e-12,5.31015154496887e-12,5.65878829062455e-12,6.02846267199134e-12,6.42032897994057e-12,6.83559827057486e-12, 7.27554081687523e-12,7.74148865048113e-12,8.23483819627442e-12,8.75705300249514e-12,9.30966656917502e-12,9.89428527773048e-12,1.05125914246174e-11,1.11663463620064e-11,1.18573937484985e-11,1.2587662912959e-11, 1.33591723346092e-11,1.41740332425750e-11,1.5034453338152e-11,1.59427406431102e-11,1.69013074774215e-11,1.79126745698542e-11,1.89794753049461e-11,2.0104460109924e-11,2.12905009852064e-11,2.25405961821867e-11, 2.38578750320593e-11,2.52456029295139e-11,2.67071864751888e-11,2.82461787808394e-11,2.98662849412407e-11,3.1571367676909e-11,3.33654531517948e-11,3.525273697016e-11,3.72375903569238e-11,3.9324566525823e-11, 4.15184072397991e-11,4.38240495680934e-11,4.62466328445919e-11,4.87915058320345e-11,5.14642340967624e-11,5.42706075987485e-11,5.72166485017205e-11,6.03086192082493e-11,6.35530306247462e-11,6.6956650661376e-11, 7.05265129719558e-11,7.42699259389813e-11,7.81944819089811e-11,8.23080666834728e-11,8.66188692708493e-11,9.11353919045952e-11,9.58664603333074e-11,1.00821234388028e-10,1.06009218832501e-10,1.11440274502001e-10, 1.17124629736445e-10,1.23072892113589e-10,1.29296060488134e-10,1.35805537342664e-10,1.42613141456376e-10,1.49731120897643e-10,1.57172166346480e-10,1.64949424753097e-10,1.73076513338727e-10,1.81567533945003e-10, 1.90437087738230e-10,1.99700290274916e-10,2.09372786935031e-10,2.1947076872949e-10,2.30010988488407e-10,2.41010777436752e-10,2.52488062164076e-10,2.64461381995029e-10,2.76949906767429e-10,2.89973455024761e-10, 3.03552512629933e-10,3.17708251807258e-10,3.32462550619641e-10,3.47838012887984e-10,3.63857988559926e-10,3.80546594535016e-10,3.97928735953513e-10,4.16030127956026e-10,4.34877317921279e-10,4.54497708189282e-10, 4.74919579277297e-10,4.9617211359597e-10,5.18285419673073e-10,5.41290556892341e-10,5.65219560754913e-10,5.90105468670921e-10,6.15982346288848e-10,6.4288531437025e-10,6.70850576217501e-10,6.99915445662288e-10, 7.30118375622553e-10,7.61498987235632e-10,7.9409809957542e-10,8.2795775996131e-10,8.63121274866825e-10,8.99633241435737e-10,9.37539579613614e-10,9.76887564902725e-10,1.01772586174814e-09,1.06010455756315e-09, 1.10407519740184e-09,1.14969081928682e-09,1.19700599020033e-09,1.24607684274642e-09,1.29696111249251e-09,1.34971817599829e-09,1.40440908954003e-09,1.46109662853840e-09,1.51984532769787e-09,1.58072152186576e-09, 1.64379338761908e-09,1.70913098558733e-09,1.77680630351917e-09,1.84689330010126e-09,1.91946794953737e-09,1.99460828689565e-09,2.07239445423250e-09,2.15290874750092e-09,2.23623566425137e-09,2.32246195213353e-09, 2.41167665820676e-09,2.50397117906742e-09,2.59943931180113e-09,2.69817730576806e-09,2.80028391522916e-09,2.90586045282141e-09,3.01501084389019e-09,3.12784168168647e-09,3.24446228343724e-09,3.36498474729644e-09, 3.48952401018517e-09,3.61819790652821e-09,3.75112722789529e-09,3.88843578355480e-09,4.03025046194753e-09,4.17670129308861e-09,4.32792151190492e-09,4.48404762251617e-09,4.64521946346701e-09,4.81158027391772e-09, 4.98327676080154e-09,5.16045916695555e-09,5.34328134023333e-09,5.53190080360627e-09,5.72647882626111e-09,5.92718049570159e-09,6.13417479086072e-09,6.34763465623167e-09,6.567737077024e-09,6.7946631553529e-09, 7.0285981874682e-09,7.26973174203037e-09,7.51825773944052e-09,7.7743745322315e-09,8.03828498652661e-09,8.31019656457359e-09,8.5903214083595e-09,8.87887642431442e-09,9.17608336910973e-09,9.48216893655807e-09, 9.79736484562149e-09,1.01219079295339e-08,1.04560402260447e-08,1.08000090687894e-08,1.11540671797941e-08,1.15184727631197e-08,1.1893489599651e-08,1.22793871430397e-08,1.26764406168027e-08,1.30849311125862e-08, 1.35051456895984e-08,1.39373774752169e-08,1.43819257667784e-08,1.48390961345539e-08,1.53092005259153e-08,1.57925573707012e-08,1.62894916877830e-08,1.68003351928409e-08,1.73254264073511e-08,1.78651107687931e-08, 1.84197407420775e-08,1.89896759322039e-08,1.95752831981504e-08,2.01769367680001e-08,2.07950183553105e-08,2.14299172767284e-08,2.20820305708561e-08,2.27517631183725e-08,2.34395277634137e-08,2.41457454362167e-08, 2.48708452770308e-08,2.5615264761301e-08,2.63794498261241e-08,2.71638549979875e-08,2.79689435217866e-08,2.87951874911308e-08,2.96430679799378e-08,3.05130751753208e-08,3.14057085117712e-08,3.23214768066407e-08, 3.32608983969252e-08,3.42245012773531e-08,3.52128232397814e-08,3.62264120139026e-08,3.72658254092627e-08,3.83316314585963e-08,3.94244085624781e-08,4.05447456352935e-08,4.16932422525333e-08,4.2870508799409e-08, 4.40771666207967e-08,4.53138481725066e-08,4.65811971738827e-08,4.78798687617322e-08,4.92105296455869e-08,5.05738582642995e-08,5.1970544943973e-08,5.34012920572259e-08,5.48668141837948e-08,5.63678382724724e-08, 5.79051038043881e-08,5.94793629576214e-08,6.10913807731592e-08,6.27419353221916e-08,6.44318178747465e-08,6.61618330696664e-08,6.79327990859222e-08,6.9745547815271e-08,7.16009250362498e-08,7.34997905895119e-08, 7.5443018554502e-08,7.74314974274664e-08,7.94661303008051e-08,8.15478350437599e-08,8.3677544484437e-08,8.58562065931683e-08,8.80847846672008e-08,9.03642575167252e-08,9.26956196522311e-08,9.50798814731947e-08, 9.75180694580949e-08,1.00011226355752e-07,1.02560411377995e-07,1.05166700393653e-07,1.07831186123858e-07,1.10554978338681e-07,1.13339204055069e-07,1.16185007736103e-07,1.19093551491571e-07,1.22066015279839e-07, 1.25103597111036e-07,1.28207513251538e-07,1.31378998429752e-07,1.34619306043199e-07,1.37929708366884e-07,1.41311496762964e-07,1.44765981891698e-07,1.48294493923677e-07,1.51898382753338e-07,1.55579018213754e-07, 1.59337790292687e-07,1.63176109349923e-07,1.67095406335849e-07,1.71097133011312e-07,1.75182762168717e-07,1.79353787854378e-07,1.8361172559212e-07,1.87958112608113e-07,1.92394508056947e-07,1.96922493248943e-07, 2.01543671878675e-07,2.06259670254729e-07,2.11072137530665e-07,2.15982745937199e-07,2.20993191015583e-07,2.26105191852185e-07,2.31320491314263e-07,2.36640856286931e-07,2.42068077911298e-07,2.47603971823790e-07, 2.53250378396641e-07,2.59009162979542e-07,2.64882216142451e-07,2.70871453919559e-07,2.76978818054391e-07,2.83206276246044e-07,2.89555822396573e-07,2.96029476859477e-07,3.02629286689324e-07,3.09357325892471e-07, 3.16215695678894e-07,3.23206524715117e-07,3.30331969378223e-07,3.37594214010956e-07,3.4499547117788e-07,3.52537981922631e-07,3.60224016026199e-07,3.68055872266288e-07,3.76035878677698e-07,3.84166392813756e-07, 3.9244980200877e-07,4.00888523641503e-07,4.09485005399659e-07,4.18241725545374e-07,4.27161193181692e-07,4.36245948520051e-07,4.45498563148715e-07,4.54921640302205e-07,4.64517815131673e-07,4.74289754976239e-07, 4.84240159635258e-07,4.94371761641538e-07,5.04687326535475e-07,5.15189653140103e-07,5.25881573837056e-07,5.36765954843423e-07,5.47845696489505e-07,5.5912373349744e-07,5.70603035260696e-07,5.82286606124442e-07, 5.94177485666747e-07,6.0627874898065e-07,6.1859350695703e-07,6.31124906568332e-07,6.43876131153074e-07,6.56850400701183e-07,6.7005097214012e-07,6.83481139621766e-07,6.97144234810107e-07,7.11043627169683e-07, 7.25182724254763e-07,7.39564971999294e-07,7.54193855007573e-07,7.69072896845618e-07,7.84205660333293e-07,7.99595747837106e-07,8.15246801563708e-07,8.31162503854068e-07,8.47346577478315e-07,8.63802785931261e-07, 8.8053493372855e-07,8.97546866703449e-07,9.14842472304283e-07,9.32425679892457e-07,9.50300461041121e-07,9.68470829834402e-07,9.86940843167233e-07,1.00571460104575e-06,1.02479624688825e-06,1.04418996782671e-06, 1.06389999500884e-06,1.08393060390067e-06,1.10428611458963e-06,1.12497089208816e-06,1.14598934663787e-06,1.16734593401404e-06,1.18904515583074e-06,1.21109155984632e-06,1.23348974026942e-06,1.25624433806534e-06, 1.27936004126293e-06,1.30284158526177e-06,1.32669375313993e-06,1.35092137596195e-06,1.37552933308729e-06,1.40052255247918e-06,1.42590601101373e-06,1.45168473478949e-06,1.47786379943727e-06,1.50444833043033e-06, 1.53144350339486e-06,1.55885454442078e-06,1.58668673037280e-06,1.61494538920180e-06,1.64363590025642e-06,1.67276369459498e-06,1.70233425529755e-06,1.73235311777834e-06,1.76282587009824e-06,1.79375815327764e-06, 1.82515566160937e-06,1.85702414297183e-06,1.8893693991424e-06,1.92219728611086e-06,1.95551371439309e-06,1.98932464934478e-06,2.02363611147538e-06,2.05845417676211e-06,2.09378497696409e-06,2.12963469993651e-06, 2.16600958994496e-06,2.20291594797977e-06,2.24036013207041e-06,2.27834855759995e-06,2.31688769761955e-06,2.35598408316299e-06,2.39564430356111e-06,2.43587500675639e-06,2.4766828996174e-06,2.51807474825333e-06, 2.56005737832833e-06,2.60263767537594e-06,2.64582258511341e-06,2.68961911375593e-06,2.73403432833081e-06,2.77907535699146e-06,2.82474938933145e-06,2.87106367669827e-06,2.91802553250708e-06,2.9656423325542e-06, 3.01392151533057e-06,3.06287058233497e-06,3.11249709838706e-06,3.16280869194026e-06,3.21381305539443e-06,3.26551794540831e-06,3.31793118321173e-06,3.37106065491768e-06,3.42491431183393e-06,3.47950017077472e-06, 3.53482631437173e-06,3.59090089138526e-06,3.6477321170147e-06,3.70532827320903e-06,3.7636977089767e-06,3.82284884069548e-06,3.88279015242173e-06,3.94353019619944e-06,4.00507759236899e-06,4.06744102987528e-06, 4.13062926657582e-06,4.19465112954809e-06,4.25951551539677e-06,4.32523139056044e-06,4.39180779161778e-06,4.45925382559348e-06,4.52757867026367e-06,4.59679157446078e-06,4.66690185837804e-06,4.73791891387353e-06, 4.80985220477362e-06,4.88271126717602e-06,4.95650570975222e-06,5.03124521404955e-06,5.10693953479252e-06,5.18359850018382e-06,5.26123201220459e-06,5.33985004691428e-06,5.41946265474978e-06,5.5000799608241e-06, 5.58171216522439e-06,5.66436954330937e-06,5.7480624460062e-06,5.83280130010654e-06,5.91859660856222e-06,6.00545895078017e-06,6.09339898291653e-06,6.18242743817042e-06,6.27255512707677e-06,6.36379293779855e-06, 6.45615183641831e-06,6.54964286722906e-06,6.64427715302438e-06,6.74006589538779e-06,6.83702037498143e-06,6.93515195183397e-06,7.03447206562788e-06,7.13499223598571e-06,7.23672406275577e-06,7.33967922629706e-06, 7.44386948776324e-06,7.54930668938602e-06,7.65600275475753e-06,7.76396968911197e-06,7.87321957960651e-06,7.98376459560121e-06,8.09561698893815e-06,8.20878909421985e-06,8.32329332908654e-06,8.43914219449277e-06, 8.55634827498311e-06,8.67492423896701e-06,8.79488283899253e-06,8.91623691201944e-06,9.03899937969128e-06,9.16318324860653e-06,9.28880161058878e-06,9.41586764295605e-06,9.54439460878915e-06,9.67439585719897e-06, 9.805884823593e-06,9.93887502994077e-06,1.00733800850381e-05,1.02094136847711e-05,1.03469896123779e-05,1.04861217387107e-05,1.06268240224963e-05,1.07691105105949e-05,1.09129953382592e-05,1.10584927293915e-05, 1.12056169968000e-05,1.13543825424541e-05,1.15048038577388e-05,1.16568955237078e-05,1.18106722113353e-05,1.19661486817677e-05,1.21233397865726e-05,1.22822604679886e-05,1.24429257591722e-05,1.26053507844452e-05, 1.27695507595396e-05,1.29355409918422e-05,1.31033368806380e-05,1.32729539173522e-05,1.34444076857912e-05,1.36177138623824e-05,1.37928882164131e-05,1.39699466102675e-05,1.41489049996638e-05,1.43297794338889e-05, 1.45125860560322e-05,1.46973411032191e-05,1.48840609068421e-05,1.5072761892791e-05,1.52634605816828e-05,1.54561735890895e-05,1.56509176257642e-05,1.58477094978677e-05,1.60465661071918e-05,1.62475044513835e-05, 1.64505416241659e-05,1.66556948155592e-05,1.68629813121001e-05,1.70724184970598e-05,1.72840238506609e-05,1.74978149502928e-05,1.77138094707262e-05,1.79320251843260e-05,1.81524799612632e-05,1.8375191769725e-05, 1.86001786761241e-05,1.88274588453069e-05,1.90570505407593e-05,1.92889721248127e-05,1.95232420588474e-05,1.97598789034955e-05,1.99989013188417e-05,2.02403280646240e-05,2.04841780004317e-05,2.07304700859029e-05, 2.09792233809204e-05,2.12304570458063e-05,2.14841903415153e-05,2.17404426298263e-05,2.19992333735335e-05,2.22605821366349e-05,2.25245085845206e-05,2.27910324841588e-05,2.30601737042812e-05,2.33319522155665e-05, 2.36063880908229e-05,2.38835015051686e-05,2.41633127362115e-05,2.44458421642275e-05,2.47311102723371e-05,2.50191376466805e-05,2.53099449765919e-05,2.56035530547715e-05,2.58999827774574e-05,2.61992551445943e-05, 2.65013912600025e-05,2.68064123315445e-05,2.71143396712902e-05,2.74251946956813e-05,2.77389989256938e-05,2.80557739869986e-05,2.83755416101219e-05,2.8698323630603e-05,2.90241419891514e-05,2.93530187318021e-05, 2.96849760100693e-05,3.00200360810990e-05,3.03582213078203e-05,3.06995541590947e-05,3.10440572098642e-05,3.13917531412983e-05,3.17426647409383e-05,3.20968149028425e-05,3.24542266277271e-05,3.28149230231079e-05, 3.3178927303439e-05,3.35462627902512e-05,3.3916952912288e-05,3.4291021205641e-05,3.46684913138827e-05,3.5049386988199e-05,3.54337320875194e-05,3.58215505786461e-05,3.62128665363818e-05,3.66077041436551e-05, 3.70060876916456e-05,3.74080415799069e-05,3.78135903164878e-05,3.8222758518053e-05,3.86355709100011e-05,3.90520523265823e-05,3.94722277110133e-05,3.98961221155923e-05,4.03237607018106e-05,4.07551687404648e-05, 4.11903716117656e-05,4.16293948054462e-05,4.20722639208694e-05,4.25190046671319e-05,4.29696428631686e-05,4.34242044378544e-05,4.3882715430105e-05,4.43452019889761e-05,4.48116903737608e-05,4.52822069540856e-05, 4.57567782100059e-05,4.62354307320979e-05,4.67181912215514e-05,4.72050864902587e-05,4.76961434609044e-05,4.81913891670518e-05,4.86908507532286e-05,4.91945554750113e-05,4.97025306991074e-05,5.02148039034368e-05, 5.07314026772112e-05,5.12523547210124e-05,5.17776878468686e-05,5.23074299783299e-05,5.28416091505413e-05,5.33802535103152e-05,5.39233913162021e-05,5.44710509385592e-05,5.50232608596184e-05,5.5580049673552e-05, 5.61414460865376e-05,5.67074789168211e-05,5.72781770947783e-05,5.78535696629745e-05,5.84336857762241e-05,5.90185547016465e-05,5.96082058187227e-05,6.02026686193488e-05,6.08019727078888e-05,6.14061478012254e-05, 6.20152237288104e-05,6.2629230432712e-05,6.32481979676621e-05,6.38721565011005e-05,6.450113631322e-05,6.5135167797007e-05,6.57742814582839e-05,6.64185079157465e-05,6.70678779010032e-05,6.77224222586103e-05, 6.83821719461076e-05,6.90471580340508e-05,6.97174117060443e-05,7.03929642587708e-05,7.10738471020202e-05,7.17600917587174e-05,7.24517298649485e-05,7.31487931699843e-05,7.38513135363038e-05,7.45593229396162e-05, 7.52728534688805e-05,7.59919373263242e-05,7.67166068274603e-05,7.74468944011036e-05,7.81828325893838e-05,7.892445404776e-05,7.96717915450305e-05,8.04248779633437e-05,8.1183746298206e-05,8.19484296584888e-05, 8.27189612664346e-05,8.3495374457661e-05,8.4277702681163e-05,8.50659794993147e-05,8.58602385878684e-05,8.66605137359547e-05,8.74668388460775e-05,8.82792479341106e-05,8.90977751292918e-05,8.99224546742154e-05, 9.0753320924824e-05,9.15904083503977e-05,9.24337515335426e-05,9.32833851701785e-05,9.41393440695248e-05,9.50016631540827e-05,9.58703774596212e-05,9.67455221351558e-05,9.762713244293e-05,9.8515243758394e-05, 9.94098915701816e-05,0.000100311111480086,0.000101218939203034,0.000102133410567060,0.000103054561513278,0.000103982428095852,0.000104917046481961,0.000105858452951775,0.000106806683898411,0.000107761775827908, 0.000108723765359184,0.000109692689223999,0.000110668584266918,0.000111651487445268,0.000112641435829102,0.000113638466601145,0.000114642617056761,0.000115653924603898,0.000116672426763050,0.000117698161167198, 0.000118731165561767,0.000119771477804577,0.000120819135865781,0.000121874177827821,0.000122936641885368,0.000124006566345266,0.000125083989626474,0.000126168950260011,0.000127261486888888,0.000128361638268055, 0.000129469443264330,0.000130584940856343,0.000131708170134461,0.000132839170300732,0.000133977980668807,0.000135124640663879,0.000136279189822605,0.000137441667793039,0.000138612114334559,0.000139790569317789, 0.000140977072724529,0.000142171664647671,0.000143374385291128,0.000144585274969749,0.000145804374109242,0.000147031723246090,0.000148267363027472,0.000149511334211172,0.000150763677665498,0.000152024434369197, 0.000153293645411363,0.000154571351991348,0.000155857595418675,0.000157152417112946,0.000158455858603743,0.000159767961530545,0.000161088767642623,0.000162418318798948,0.000163756656968095,0.000165103824228141, 0.000166459862766566,0.000167824814880154,0.000169198722974889,0.000170581629565852,0.000171973577277117,0.000173374608841645,0.000174784767101178,0.000176204095006129,0.000177632635615476,0.000179070432096648, 0.000180517527725418,0.000181973965885788,0.000183439790069875,0.000184915043877798,0.000186399771017562,0.000187894015304938,0.000189397820663351,0.000190911231123755,0.000192434290824516,0.000193967044011290, 0.000195509535036901,0.000197061808361217,0.000198623908551025,0.000200195880279906,0.00020177776832811,0.000203369617582425,0.000204971473036051,0.000206583379788466,0.000208205383045304,0.000209837528118212, 0.000211479860424724,0.000213132425488125,0.000214795268937318,0.000216468436506682,0.000218151974035944,0.000219845927470031,0.000221550342858939,0.000223265266357589,0.000224990744225686,0.000226726822827578, 0.00022847354863211,0.000230230968212485,0.000231999128246115,0.000233778075514474,0.000235567856902956,0.00023736851940072,0.000239180110100549,0.000241002676198692,0.000242836264994718,0.000244680923891365, 0.00024653670039438,0.000248403642112377,0.000250281796756669,0.000252171212141124,0.000254071936182001,0.000255984016897794,0.000257907502409076,0.000259842440938338,0.000261788880809827,0.000263746870449389, 0.000265716458384303,0.000267697693243118,0.000269690623755495,0.000271695298752033,0.000273711767164112,0.000275740078023720,0.000277780280463291,0.000279832423715533,0.000281896557113256,0.000283972730089215, 0.000286060992175919,0.000288161393005481,0.000290273982309427,0.000292398809918535,0.000294535925762653,0.000296685379870530,0.000298847222369637,0.000301021503485989,0.000303208273543969,0.000305407582966152, 0.000307619482273123,0.000309844022083295,0.000312081253112734,0.000314331226174974,0.000316593992180831,0.000318869602138233,0.000321158107152016,0.000323459558423758,0.000325774007251583,0.000328101505029978, 0.000330442103249606,0.000332795853497118,0.000335162807454964,0.000337543016901205,0.000339936533709321,0.000342343409848022,0.000344763697381058,0.000347197448467023,0.000349644715359162,0.000352105550405185, 0.000354580006047061,0.000357068134820834,0.000359569989356419,0.000362085622377409,0.000364615086700878,0.000367158435237187,0.000369715720989772,0.000372286997054965,0.000374872316621772,0.000377471732971693, 0.000380085299478506,0.000382713069608072,0.000385355096918131,0.000388011435058097,0.000390682137768859,0.000393367258882571,0.000396066852322447,0.000398780972102563,0.000401509672327641,0.000404253007192845, 0.000407011030983578,0.000409783798075264,0.000412571362933152,0.000415373780112094,0.000418191104256344,0.000421023390099339,0.000423870692463498,0.000426733066260001,0.000429610566488579,0.000432503248237304, 0.000435411166682372,0.000438334377087892,0.000441272934805666,0.00044422689527498,0.00044719631402238,0.000450181246661467,0.000453181748892667,0.000456197876503025,0.000459229685365979,0.000462277231441142, 0.00046534057077409,0.000468419759496133,0.000471514853824101,0.000474625910060121,0.000477752984591393,0.000480896133889976,0.000484055414512556,0.000487230883100234,0.000490422596378289,0.000493630611155969, 0.000496854984326254,0.000500095772865642,0.000503353033833914,0.000506626824373918,0.000509917201711334,0.000513224223154453,0.000516547946093948,0.000519888428002643,0.000523245726435296,0.000526619899028355, 0.000530011003499743,0.000533419097648619,0.000536844239355155,0.0005402864865803,0.000543745897365553,0.000547222529832732,0.000550716442183741,0.000554227692700337,0.000557756339743904,0.000561302441755209, 0.00056486605725418,0.000568447244839667,0.000572046063189206,0.000575662571058794,0.00057929682728264,0.000582948890772945,0.000586618820519655,0.00059030667559023,0.00059401251512941,0.000597736398358973, 0.000601478384577501,0.000605238533160144,0.000609016903558379,0.000612813555299776,0.000616628547987755,0.000620461941301353,0.00062431379499498,0.00062818416889818,0.000632073122915397,0.000635980717025724, 0.000639907011282677,0.000643852065813944,0.000647815940821144,0.000651798696579591,0.000655800393438049,0.000659821091818496,0.000663860852215868,0.000667919735197834,0.00067199780140454,0.00067609511154837, 0.000680211726413708,0.000684347706856685,0.000688503113804942,0.000692678008257384,0.000696872451283935,0.000701086504025293,0.000705320227692686,0.00070957368356763,0.000713846933001671,0.00071814003741616, 0.000722453058301987,0.000726786057219346,0.000731139095797487,0.000735512235734467,0.000739905538796904,0.000744319066819733,0.000748752881705951,0.00075320704542638,0.000757681620019412,0.000762176667590759, 0.000766692250313213,0.000771228430426392,0.000775785270236493,0.000780362832116045,0.00078496117850365,0.000789580371903754,0.000794220474886373,0.000798881550086865,0.00080356366020567,0.000808266868008055, 0.000812991236323882,0.000817736828047335,0.000822503706136688,0.000827291933614046,0.000832101573565092,0.000836932689138846,0.000841785343547404,0.000846659600065691,0.000851555522031213,0.000856473172843797, 0.00086141261596535,0.000866373914919597,0.000871357133291839,0.000876362334728694,0.000881389582937847,0.000886438941687798,0.00089151047480761,0.000896604246186659,0.000901720319774376,0.000906858759579998, 0.000912019629672318,0.000917202994179421,0.000922408917288446,0.000927637463245328,0.000932888696354535,0.000938162680978827,0.000943459481538998,0.000948779162513627,0.000954121788438817,0.000959487423907943, 0.000964876133571406,0.000970287982136371,0.000975723034366518,0.00098118135508179,0.00098666300915813,0.000992168061527234,0.000997696577176302,0.00100324862114777,0.00100882425853908,0.00101442355450239, 0.00102004657424435,0.00102569338302584,0.00103136404616172,0.00103705862902055,0.00104277719702438,0.00104851981564846,0.00105428655042099,0.00106007746692288,0.00106589263078751,0.00107173210770041, 0.00107759596339909,0.00108348426367272,0.00108939707436193,0.00109533446135849,0.00110129649060514,0.00110728322809524,0.0011132947398726,0.00111933109203118,0.00112539235071484,0.0011314785821171, 0.00113758985248087,0.00114372622809823,0.00114988777531010,0.00115607456050609,0.00116228665012415,0.00116852411065038,0.00117478700861875,0.00118107541061084,0.0011873893832556,0.00119372899322910, 0.00120009430725427,0.00120648539210062,0.00121290231458404,0.00121934514156650,0.00122581393995580,0.00123230877670537,0.00123882971881394,0.00124537683332534,0.00125195018732821,0.0012585498479558, 0.00126517588238565,0.00127182835783939,0.00127850734158245,0.00128521290092385,0.00129194510321588,0.00129870401585393,0.00130548970627618,0.00131230224196336,0.00131914169043849,0.00132600811926665, 0.00133290159605472,0.00133982218845112,0.00134676996414556,0.00135374499086878,0.00136074733639233,0.00136777706852827,0.00137483425512895,0.00138191896408678,0.00138903126333391,0.00139617122084205, 0.00140333890462217,0.00141053438272428,0.00141775772323716,0.00142500899428812,0.00143228826404274,0.00143959560070463,0.00144693107251517,0.00145429474775326,0.00146168669473509,0.00146910698181386, 0.00147655567737954,0.00148403284985864,0.00149153856771394,0.00149907289944424,0.00150663591358411,0.00151422767870367,0.0015218482634083,0.00152949773633842,0.00153717616616921,0.00154488362161041, 0.00155262017140604,0.00156038588433414,0.00156818082920655,0.00157600507486865,0.00158385869019912,0.00159174174410968,0.00159965430554483,0.00160759644348166,0.00161556822692953,0.00162356972492989, 0.00163160100655598,0.0016396621409126,0.00164775319713589,0.00165587424439306,0.00166402535188215,0.00167220658883175,0.00168041802450084,0.00168865972817846,0.00169693176918349,0.00170523421686445, 0.00171356714059919,0.00172193060979467,0.00173032469388674,0.00173874946233987,0.00174720498464691,0.00175569133032884,0.00176420856893455,0.00177275677004059,0.00178133600325091,0.00178994633819662, 0.00179858784453578,0.00180726059195311,0.00181596465015979,0.00182470008889318,0.00183346697791664,0.00184226538701918,0.00185109538601538,0.00185995704474496,0.00186885043307270,0.00187777562088814, 0.00188673267810528,0.00189572167466246,0.00190474268052201,0.00191379576567009,0.00192288100011640,0.00193199845389398,0.00194114819705894,0.00195033029969022,0.00195954483188939,0.00196879186378038, 0.00197807146550926,0.00198738370724398,0.00199672865917415,0.00200610639151081,0.00201551697448618,0.00202496047835342,0.00203443697338642,0.00204394652987953,0.00205348921814736,0.0020630651085245, 0.00207267427136534,0.00208231677704379,0.00209199269595309,0.0021017020985055,0.00211144505513218,0.00212122163628284,0.00213103191242558,0.00214087595404665,0.00215075383165019,0.00216066561575801, 0.00217061137690937,0.00218059118566073,0.00219060511258555,0.00220065322827400,0.00221073560333281,0.00222085230838496,0.00223100341406951,0.00224118899104133,0.00225140910997088,0.00226166384154402, 0.00227195325646173,0.00228227742543988,0.00229263641920906,0.00230303030851428,0.00231345916411480,0.00232392305678386,0.00233442205730849,0.00234495623648924,0.00235552566514001,0.00236613041408778, 0.00237677055417237,0.00238744615624628,0.00239815729117441,0.00240890402983384,0.00241968644311363,0.00243050460191459,0.00244135857714902,0.00245224843974054,0.00246317426062384,0.00247413611074444, 0.0024851340610585,0.00249616818253258,0.00250723854614344,0.00251834522287776,0.00252948828373199,0.00254066779971209,0.00255188384183331,0.00256313648112,0.00257442578860534,0.00258575183533115, 0.00259711469234769,0.00260851443071339,0.00261995112149469,0.00263142483576576,0.00264293564460835,0.0026544836191115,0.00266606883037138,0.00267769134949106,0.00268935124758027,0.00270104859575520, 0.00271278346513829,0.00272455592685801,0.00273636605204863,0.00274821391185004,0.00276009957740749,0.00277202311987142,0.0027839846103972,0.00279598412014498,0.0028080217202794,0.00282009748196944, 0.00283221147638817,0.00284436377471257,0.00285655444812329,0.00286878356780444,0.00288105120494339,0.00289335743073059,0.00290570231635928,0.00291808593302536,0.00293050835192712,0.00294296964426509, 0.00295546988124177,0.00296800913406148,0.0029805874739301,0.0029932049720549,0.00300586169964431,0.00301855772790772,0.00303129312805528,0.00304406797129769,0.00305688232884598,0.00306973627191133, 0.00308262987170485,0.00309556319943737,0.00310853632631926,0.00312154932356017,0.00313460226236891,0.00314769521395317,0.00316082824951937,0.00317400144027243,0.00318721485741555,0.00320046857215007, 0.0032137626556752,0.00322709717918788,0.00324047221388251,0.00325388783095083,0.00326734410158164,0.00328084109696067,0.00329437888827033,0.00330795754668956,0.00332157714339355,0.00333523774955364, 0.00334893943633707,0.00336268227490678,0.00337646633642123,0.00339029169203418,0.00340415841289453,0.00341806657014611,0.00343201623492745,0.00344600747837164,0.0034600403716061,0.00347411498575239, 0.00348823139192604,0.00350238966123633,0.00351658986478608,0.00353083207367153,0.00354511635898206,0.00355944279180006,0.00357381144320070,0.00358822238425178,0.00360267568601349,0.00361717141953826, 0.00363170965587057,0.00364629046604669,0.00366091392109461,0.00367558009203376,0.00369028904987483,0.00370504086561965,0.00371983561026089,0.003734673354782,0.00374955417015692,0.00376447812734992, 0.0037794452973155,0.00379445575099803,0.00380950955933175,0.00382460679324046,0.00383974752363738,0.00385493182142499,0.00387015975749477,0.00388543140272711,0.00390074682799108,0.00391610610414421, 0.0039315093020324,0.00394695649248967,0.00396244774633796,0.00397798313438705,0.00399356272743425,0.00400918659626433,0.00402485481164928,0.00404056744434814,0.00405632456510682,0.00407212624465796, 0.00408797255372068,0.00410386356300048,0.00411979934318898,0.00413577996496384,0.00415180549898849,0.00416787601591201,0.00418399158636895,0.00420015228097913,0.00421635817034748,0.00423260932506388, 0.00424890581570296,0.00426524771282393,0.00428163508697043,0.00429806800867034,0.00431454654843559,0.00433107077676204,0.00434764076412922,0.00436425658100027,0.00438091829782171,0.00439762598502322, 0.00441437971301757,0.00443117955220039,0.00444802557295002,0.00446491784562731,0.00448185644057551,0.00449884142812003,0.00451587287856835,0.00453295086220979,0.00455007544931536,0.00456724671013763, 0.00458446471491051,0.00460172953384909,0.00461904123714954,0.00463639989498887,0.00465380557752479,0.00467125835489556,0.00468875829721982,0.00470630547459641,0.00472389995710423,0.00474154181480205, 0.00475923111772839,0.00477696793590133,0.00479475233931833,0.00481258439795613,0.00483046418177051,0.0048483917606962,0.00486636720464667,0.00488439058351403,0.00490246196716879,0.00492058142545977, 0.00493874902821393,0.00495696484523615,0.00497522894630919,0.00499354140119342,0.00501190227962672,0.00503031165132431,0.00504876958597862,0.0050672761532591,0.00508583142281207,0.00510443546426055, 0.00512308834720421,0.00514179014121907,0.00516054091585742,0.00517934074064768,0.00519818968509422,0.00521708781867722,0.00523603521085249,0.0052550319310514,0.0052740780486806,0.005293173633122, 0.00531231875373256,0.0053315134798441,0.00535075788076325,0.00537005202577118,0.00538939598412357,0.0054087898250504,0.0054282336177558,0.00544772743141793,0.00546727133518879,0.00548686539819412, 0.00550650968953325,0.00552620427827891,0.00554594923347712,0.0055657446241471,0.00558559051928097,0.00560548698784376,0.0056254340987732,0.00564543192097957,0.00566548052334562,0.0056855799747263, 0.00570573034394878,0.00572593169981219,0.00574618411108751,0.00576648764651744,0.00578684237481625,0.00580724836466968,0.00582770568473471,0.00584821440363952,0.00586877458998331,0.00588938631233611, 0.00591004963923873,0.0059307646392026,0.00595153138070958,0.00597234993221188,0.00599322036213188,0.00601414273886205,0.00603511713076477,0.0060561436061722,0.00607722223338615,0.00609835308067798, 0.00611953621628838,0.00614077170842734,0.00616205962527393,0.00618340003497623,0.00620479300565116,0.00622623860538436,0.00624773690223009,0.00626928796421098,0.00629089185931808,0.0063125486555106, 0.00633425842071581,0.00635602122282893,0.00637783712971295,0.00639970620919861,0.00642162852908413,0.00644360415713517,0.0064656331610847,0.00648771560863285,0.0065098515674468,0.00653204110516061, 0.00655428428937515,0.00657658118765794,0.00659893186754307,0.00662133639653099,0.00664379484208846,0.00666630727164843,0.00668887375260983,0.00671149435233754,0.00673416913816224,0.00675689817738027, 0.00677968153725348,0.00680251928500922,0.00682541148784006,0.00684835821290382,0.00687135952732335,0.00689441549818643,0.0069175261925457,0.00694069167741847,0.00696391201978663,0.00698718728659655, 0.00701051754475895,0.00703390286114876,0.00705734330260503,0.00708083893593079,0.00710438982789296,0.00712799604522221,0.00715165765461285,0.00717537472272275,0.00719914731617312,0.00722297550154855, 0.00724685934539675,0.00727079891422854,0.00729479427451763,0.00731884549270065,0.00734295263517695,0.0073671157683084,0.00739133495841947,0.007415610271797,0.00743994177469006,0.00746432953330996, 0.00748877361383002,0.00751327408238552,0.00753783100507354,0.00756244444795294,0.00758711447704418,0.00761184115832923,0.00763662455775143,0.00766146474121545,0.00768636177458711,0.00771131572369334, 0.00773632665432199,0.00776139463222182,0.00778651972310233,0.00781170199263365,0.00783694150644648,0.00786223833013195,0.0078875925292415,0.00791300416928686,0.0079384733157398,0.00796400003403217, 0.00798958438955572,0.00801522644766203,0.00804092627366238,0.00806668393282761,0.00809249949038819,0.00811837301153384,0.00814430456141372,0.00817029420513613,0.00819634200776845,0.00822244803433713, 0.00824861234982747,0.0082748350191836,0.00830111610730832,0.00832745567906308,0.00835385379926784,0.00838031053270089,0.00840682594409892,0.00843340009815681,0.00846003305952754,0.00848672489282213, 0.00851347566260952,0.00854028543341646,0.00856715426972745,0.00859408223598464,0.00862106939658769,0.00864811581589375,0.0086752215582173,0.00870238668783008,0.00872961126896101,0.00875689536579607, 0.00878423904247825,0.00881164236310738,0.00883910539174015,0.00886662819238991,0.00889421082902664,0.00892185336557683,0.00894955586592344,0.00897731839390576,0.0090051410133193,0.00903302378791577, 0.00906096678140294,0.00908897005744459,0.00911703367966036,0.00914515771162571,0.00917334221687186,0.00920158725888559,0.0092298929011093,0.00925825920694083,0.00928668623973336,0.00931517406279542, 0.00934372273939066,0.00937233233273792,0.00940100290601104,0.00942973452233882,0.0094585272448049,0.00948738113644775,0.00951629626026045,0.0095452726791908,0.009574310456141,0.00960340965396783, 0.00963257033548234,0.0096617925634499,0.00969107640059009,0.00972042190957656,0.00974982915303707,0.00977929819355327,0.00980882909366074,0.00983842191584882,0.00986807672256058,0.00989779357619272, 0.00992757253909556,0.00995741367357278,0.0099873170418816,0.0100172827062325,0.0100473107287891,0.0100774011716684,0.0101075540969403,0.0101377695666280,0.0101680476427072,0.0101983883871068, 0.0102287918617085,0.0102592581283464,0.0102897872488077,0.0103203792848317,0.0103510342981104,0.0103817523502884,0.0104125335029623,0.0104433778176812,0.0104742853559462,0.0105052561792108, 0.0105362903488803,0.0105673879263120,0.0105985489728153,0.0106297735496513,0.0106610617180327,0.0106924135391243,0.0107238290740421,0.0107553083838540,0.010786851529579,0.0108184585721879, 0.0108501295726026,0.0108818645916964,0.0109136636902937,0.0109455269291701,0.0109774543690523,0.0110094460706179,0.0110415020944955,0.0110736225012646,0.0111058073514554,0.0111380567055490, 0.011170370623977,0.0112027491671217,0.0112351923953159,0.0112677003688428,0.0113002731479361,0.0113329107927799,0.0113656133635085,0.0113983809202063,0.0114312135229081,0.0114641112315986, 0.0114970741062127,0.0115301022066349,0.0115631955927000,0.0115963543241925,0.0116295784608466,0.0116628680623462,0.0116962231883251,0.0117296438983663,0.0117631302520027,0.0117966823087165, 0.0118303001279393,0.0118639837690520,0.0118977332913850,0.0119315487542177,0.0119654302167789,0.0119993777382463,0.0120333913777467,0.012067471194356,0.0121016172470991,0.0121358295949495, 0.0121701082968298,0.0122044534116113,0.0122388649981139,0.0122733431151063,0.0123078878213058,0.0123424991753781,0.0123771772359376,0.0124119220615470,0.0124467337107173,0.012481612241908, 0.0125165577135269,0.0125515701839298,0.0125866497114209,0.0126217963542523,0.0126570101706244,0.0126922912186854,0.0127276395565316,0.0127630552422071,0.0127985383337039,0.0128340888889617, 0.0128697069658682,0.0129053926222585,0.0129411459159155,0.0129769669045698,0.0130128556458993,0.0130488121975296,0.0130848366170336,0.0131209289619318,0.0131570892896918,0.0131933176577286, 0.0132296141234046,0.0132659787440292,0.013302411576859,0.0133389126790978,0.0133754821078964,0.0134121199203526,0.0134488261735111,0.0134856009243637,0.0135224442298490,0.0135593561468524, 0.0135963367322061,0.0136333860426889,0.0136705041350265,0.0137076910658913,0.0137449468919019,0.0137822716696240,0.0138196654555694,0.0138571283061966,0.0138946602779103,0.0139322614270619, 0.0139699318099488,0.0140076714828150,0.0140454805018506,0.0140833589231920,0.0141213068029215,0.0141593241970679,0.0141974111616059,0.0142355677524563,0.0142737940254858,0.0143120900365073, 0.0143504558412794,0.0143888914955066,0.0144273970548393,0.0144659725748738,0.0145046181111521,0.0145433337191619,0.0145821194543365,0.014620975372055,0.0146599015276421,0.0146988979763680, 0.0147379647734485,0.0147771019740449,0.0148163096332639,0.0148555878061577,0.0148949365477237,0.0149343559129050,0.0149738459565897,0.0150134067336113,0.0150530382987486,0.0150927407067255, 0.0151325140122112,0.0151723582698198,0.0152122735341108,0.0152522598595886,0.0152923173007027,0.0153324459118475,0.0153726457473625,0.015412916861532,0.0154532593085853,0.0154936731426965, 0.0155341584179847,0.0155747151885135,0.0156153435082916,0.0156560434312721,0.0156968150113531,0.0157376583023773,0.0157785733581320,0.0158195602323489,0.0158606189787048,0.0159017496508206, 0.0159429523022618,0.0159842269865385,0.0160255737571053,0.0160669926673611,0.0161084837706492,0.0161500471202574,0.0161916827694176,0.0162333907713064,0.0162751711790444,0.0163170240456963, 0.0163589494242715,0.0164009473677234,0.0164430179289492,0.0164851611607909,0.0165273771160341,0.0165696658474088,0.0166120274075889,0.0166544618491924,0.0166969692247812,0.0167395495868615, 0.0167822029878831,0.0168249294802400,0.0168677291162699,0.0169106019482546,0.0169535480284196,0.0169965674089342,0.0170396601419117,0.0170828262794091,0.0171260658734272,0.0171693789759104, 0.0172127656387469,0.0172562259137688,0.0172997598527514,0.0173433675074142,0.0173870489294199,0.017430804170375,0.0174746332818296,0.0175185363152772,0.0175625133221550,0.0176065643538438, 0.0176506894616675,0.0176948886968938,0.0177391621107339,0.0177835097543423,0.0178279316788168,0.0178724279351988,0.0179169985744730,0.0179616436475675,0.0180063632053536,0.0180511572986461, 0.0180960259782029,0.0181409692947252,0.0181859872988577,0.0182310800411880,0.0182762475722473,0.0183214899425096,0.0183668072023923,0.0184121994022560,0.0184576665924043,0.0185032088230841, 0.0185488261444854,0.0185945186067411,0.0186402862599274,0.0186861291540634,0.0187320473391115,0.0187780408649768,0.0188241097815077,0.0188702541384955,0.0189164739856744,0.0189627693727217, 0.0190091403492575,0.0190555869648451,0.0191021092689905,0.0191487073111427,0.0191953811406936,0.0192421308069779,0.0192889563592734,0.0193358578468004,0.0193828353187225,0.0194298888241456, 0.0194770184121189,0.0195242241316341,0.0195715060316258,0.0196188641609714,0.0196662985684911,0.0197138093029478,0.0197613964130470,0.0198090599474372,0.0198567999547094,0.0199046164833975, 0.0199525095819780,0.0200004792988701,0.0200485256824356,0.0200966487809791,0.0201448486427478,0.0201931253159316,0.0202414788486628,0.0202899092890167,0.0203384166850109,0.0203870010846058, 0.0204356625357044,0.0204844010861520,0.020533216783737,0.0205821096761898,0.0206310798111839,0.0206801272363349,0.0207292519992012,0.0207784541472838,0.0208277337280259,0.0208770907888137, 0.0209265253769755,0.0209760375397822,0.0210256273244475,0.0210752947781272,0.0211250399479199,0.0211748628808664,0.0212247636239503,0.0212747422240973,0.0213247987281759,0.0213749331829969, 0.0214251456353135,0.0214754361318216,0.0215258047191592,0.0215762514439070,0.021626776352588,0.0216773794916677,0.0217280609075539,0.0217788206465971,0.0218296587550899,0.0218805752792675, 0.0219315702653075,0.0219826437593298,0.0220337958073967,0.0220850264555131,0.0221363357496261,0.0221877237356252,0.0222391904593424,0.0222907359665521,0.0223423603029708,0.0223940635142578, 0.0224458456460145,0.0224977067437847,0.0225496468530547,0.022601666019253,0.0226537642877507,0.0227059417038611,0.0227581983128399,0.0228105341598852,0.0228629492901375,0.0229154437486796, 0.0229680175805367,0.0230206708306764,0.0230734035440085,0.0231262157653855,0.0231791075396018,0.0232320789113947,0.0232851299254435,0.02333826062637,0.0233914710587383,0.0234447612670549, 0.0234981312957688,0.0235515811892711,0.0236051109918956,0.0236587207479182,0.0237124105015574,0.0237661802969738,0.0238200301782708,0.0238739601894938,0.0239279703746307,0.0239820607776118, 0.0240362314423099,0.0240904824125401,0.0241448137320599,0.0241992254445692,0.0242537175937103,0.0243082902230679,0.0243629433761692,0.0244176770964836,0.0244724914274233,0.0245273864123424, 0.024582362094538,0.0246374185172492,0.0246925557236577,0.0247477737568876,0.0248030726600055,0.0248584524760205,0.024913913247884,0.0249694550184899,0.0250250778306748,0.0250807817272173, 0.0251365667508389,0.0251924329442035,0.0252483803499174,0.0253044090105294,0.0253605189685308,0.0254167102663554,0.0254729829463797,0.0255293370509225,0.0255857726222452,0.0256422897025516, 0.0256988883339884,0.0257555685586445,0.0258123304185516,0.0258691739556837,0.0259260992119576,0.0259831062292325,0.0260401950493105,0.0260973657139359,0.0261546182647958,0.02621195274352, 0.0262693691916808,0.026326867650793,0.0263844481623143,0.026442110767645,0.0264998555081279,0.0265576824250486,0.0266155915596352,0.0266735829530588,0.0267316566464329,0.0267898126808138, 0.0268480510972005,0.0269063719365348,0.0269647752397012,0.0270232610475269,0.0270818294007817,0.0271404803401786,0.0271992139063730,0.0272580301399630,0.02731692908149,0.0273759107714377, 0.0274349752502329,0.0274941225582451,0.0275533527357866,0.0276126658231128,0.0276720618604216,0.0277315408878541,0.0277911029454942,0.0278507480733684,0.0279104763114467,0.0279702876996415, 0.0280301822778083,0.0280901600857456,0.0281502211631948,0.0282103655498404,0.0282705932853097,0.0283309044091732,0.0283912989609441,0.028451776980079,0.0285123385059772,0.0285729835779814, 0.0286337122353771,0.0286945245173928,0.0287554204632004,0.0288164001119148,0.0288774635025939,0.0289386106742388,0.0289998416657937,0.0290611565161462,0.0291225552641267,0.0291840379485091, 0.0292456046080104,0.0293072552812907,0.0293689900069537,0.0294308088235459,0.0294927117695572,0.0295546988834211,0.029616770203514,0.0296789257681558,0.0297411656156097,0.0298034897840822, 0.0298658983117232,0.0299283912366261,0.0299909685968274,0.0300536304303073,0.0301163767749892,0.0301792076687401,0.0302421231493703,0.0303051232546338,0.030368208022228,0.0304313774897936, 0.0304946316949151,0.0305579706751204,0.0306213944678811,0.0306849031106121,0.0307484966406722,0.0308121750953636,0.0308759385119323,0.0309397869275677,0.0310037203794031,0.0310677389045154, 0.0311318425399252,0.0311960313225968,0.0312603052894383,0.0313246644773014,0.0313891089229818,0.0314536386632187,0.0315182537346955,0.0315829541740390,0.0316477400178201,0.0317126113025536, 0.0317775680646981,0.0318426103406560,0.0319077381667739,0.0319729515793421,0.0320382506145948,0.0321036353087105,0.0321691056978115,0.0322346618179641,0.0323003037051786,0.0323660313954096, 0.0324318449245556,0.0324977443284591,0.032563729642907,0.0326298009036302,0.0326959581463035,0.0327622014065464,0.0328285307199223,0.0328949461219387,0.0329614476480477,0.0330280353336453, 0.033094709214072,0.0331614693246127,0.0332283157004963,0.0332952483768964,0.0333622673889307,0.0334293727716614,0.0334965645600952,0.0335638427891831,0.0336312074938206,0.0336986587088477, 0.0337661964690489,0.0338338208091532,0.0339015317638341,0.0339693293677099,0.0340372136553430,0.0341051846612410,0.0341732424198558,0.0342413869655839,0.0343096183327667,0.0343779365556902, 0.034446341668585,0.0345148337056266,0.0345834127009353,0.0346520786885761,0.0347208317025588,0.0347896717768381,0.0348585989453136,0.0349276132418296,0.0349967147001756,0.0350659033540858, 0.0351351792372393,0.0352045423832605,0.0352739928257184,0.0353435305981275,0.0354131557339469,0.035482868266581,0.0355526682293792,0.0356225556556363,0.0356925305785917,0.0357625930314307, 0.0358327430472831,0.0359029806592243,0.0359733059002749,0.0360437188034008,0.0361142194015130,0.0361848077274681,0.0362554838140677,0.0363262476940592,0.036397099400135,0.0364680389649332, 0.0365390664210371,0.0366101818009757,0.0366813851372233,0.0367526764621999,0.036824055808271,0.0368955232077476,0.0369670786928862,0.0370387222958892,0.0371104540489045,0.0371822739840257, 0.0372541821332919,0.0373261785286883,0.0373982632021456,0.0374704361855403,0.0375426975106949,0.0376150472093774,0.0376874853133019,0.0377600118541283,0.0378326268634626,0.0379053303728563, 0.0379781224138074,0.0380510030177594,0.0381239722161021,0.0381970300401714,0.0382701765212491,0.0383434116905632,0.0384167355792877,0.038490148218543,0.0385636496393953,0.0386372398728574, 0.0387109189498881,0.0387846869013925,0.0388585437582221,0.0389324895511746,0.0390065243109941,0.0390806480683709,0.0391548608539421,0.0392291626982909,0.0393035536319469,0.0393780336853866, 0.0394526028890324,0.0395272612732539,0.0396020088683667,0.0396768457046334,0.039751771812263,0.0398267872214112,0.0399018919621805,0.0399770860646199,0.0400523695587254,0.0401277424744395, 0.0402032048416517,0.0402787566901981,0.040354398049862,0.0404301289503732,0.0405059494214088,0.0405818594925925,0.040657859193495,0.0407339485536343,0.0408101276024752,0.0408863963694295, 0.0409627548838562,0.0410392031750615,0.0411157412722984,0.0411923692047676,0.0412690870016165,0.04134589469194,0.0414227923047803,0.0414997798691267,0.041576857413916,0.0416540249680322, 0.0417312825603068,0.0418086302195188,0.0418860679743943,0.0419635958536073,0.042041213885779,0.0421189220994782,0.0421967205232213,0.0422746091854723,0.0423525881146428,0.0424306573390921, 0.0425088168871271,0.0425870667870026,0.0426654070669207,0.0427438377550319,0.042822358879434,0.0429009704681728,0.0429796725492422,0.0430584651505836,0.0431373483000867,0.0432163220255888, 0.0432953863548754,0.0433745413156801,0.0434537869356844,0.043533123242518,0.0436125502637585,0.0436920680269319,0.0437716765595122,0.0438513758889218,0.0439311660425312,0.0440110470476592, 0.0440910189315728,0.0441710817214876,0.0442512354445673,0.0443314801279242,0.0444118157986187,0.0444922424836602,0.0445727602100061,0.0446533690045626,0.0447340688941844,0.0448148599056747, 0.0448957420657853,0.0449767154012169,0.0450577799386186,0.0451389357045885,0.0452201827256731,0.045301521028368,0.0453829506391174,0.0454644715843146,0.0455460838903014,0.0456277875833688, 0.0457095826897567,0.0457914692356539,0.0458734472471983,0.0459555167504768,0.0460376777715251,0.0461199303363286,0.0462022744708214,0.0462847102008869,0.0463672375523576,0.0464498565510154, 0.0465325672225913,0.0466153695927658,0.0466982636871685,0.0467812495313786,0.0468643271509246,0.0469474965712843,0.0470307578178852,0.0471141109161043,0.0471975558912678,0.0472810927686519, 0.0473647215734821,0.0474484423309336,0.0475322550661314,0.0476161598041501,0.047700156570014,0.0477842453886971,0.0478684262851234,0.0479526992841667,0.0480370644106504,0.0481215216893483, 0.0482060711449836,0.0482907128022298,0.0483754466857103,0.0484602728199986,0.0485451912296182,0.0486302019390426,0.0487153049726958,0.0488005003549514,0.0488857881101339,0.0489711682625174, 0.0490566408363266,0.0491422058557366,0.0492278633448725,0.0493136133278102,0.0493994558285756,0.0494853908711454,0.0495714184794464,0.0496575386773561,0.0497437514887029,0.0498300569372651, 0.0499164550467722,0.050002945840904,0.050089529343291,0.0501762055775147,0.0502629745671071,0.0503498363355511,0.0504367909062802,0.0505238383026792,0.0506109785480832,0.050698211665779, 0.0507855376790035,0.0508729566109453,0.0509604684847435,0.0510480733234887,0.0511357711502224,0.0512235619879371,0.0513114458595767,0.0513994227880361,0.0514874927961618,0.0515756559067512, 0.0516639121425531,0.0517522615262676,0.0518407040805465,0.0519292398279927,0.0520178687911605,0.052106590992556,0.0521954064546365,0.0522843151998109,0.05237331725044,0.052462412628836, 0.0525516013572626,0.0526408834579355,0.0527302589530219,0.0528197278646408,0.0529092902148634,0.052998946025712,0.0530886953191614,0.053178538117138,0.0532684744415203,0.0533585043141387, 0.0534486277567755,0.0535388447911653,0.0536291554389947,0.0537195597219023,0.0538100576614789,0.0539006492792677,0.0539913345967637,0.0540821136354148,0.0541729864166204,0.0542639529617332, 0.0543550132920572,0.0544461674288497,0.0545374153933199,0.0546287572066298,0.0547201928898938,0.0548117224641787,0.0549033459505041,0.0549950633698422,0.0550868747431178,0.0551787800912085, 0.0552707794349442,0.0553628727951083,0.0554550601924363,0.0555473416476171,0.0556397171812921,0.0557321868140558,0.0558247505664555,0.0559174084589917,0.0560101605121177,0.05610300674624, 0.056195947181718,0.0562889818388646,0.0563821107379455,0.0564753338991798,0.0565686513427398,0.0566620630887509,0.0567555691572923,0.0568491695683958,0.0569428643420472,0.0570366534981857, 0.0571305370567034,0.0572245150374466,0.0573185874602146,0.0574127543447605,0.0575070157107912,0.0576013715779666,0.0576958219659011,0.0577903668941621,0.0578850063822712,0.0579797404497035, 0.0580745691158883,0.0581694924002082,0.0582645103220003,0.0583596229005552,0.0584548301551177,0.0585501321048864,0.0586455287690142,0.0587410201666077,0.0588366063167282,0.0589322872383907, 0.0590280629505643,0.0591239334721728,0.0592198988220938,0.0593159590191595,0.0594121140821563,0.059508364029825,0.0596047088808609,0.0597011486539135,0.0597976833675871,0.0598943130404403, 0.0599910376909865,0.0600878573376931,0.060184771998983,0.0602817816932333,0.0603788864387755,0.0604760862538965,0.0605733811568376,0.0606707711657948,0.0607682562989194,0.0608658365743171, 0.060963512010049,0.0610612826241306,0.061159148434533,0.061257109459182,0.0613551657159585,0.0614533172226986,0.0615515639971935,0.0616499060571896,0.0617483434203885,0.0618468761044472, 0.0619455041269778,0.0620442275055479,0.0621430462576802,0.0622419604008533,0.0623409699525008,0.062440074930012,0.0625392753507318,0.0626385712319603,0.0627379625909536,0.0628374494449233, 0.0629370318110366,0.0630367097064165,0.0631364831481416,0.0632363521532465,0.0633363167387217,0.063436376921513,0.0635365327185227,0.0636367841466088,0.0637371312225853,0.0638375739632221, 0.0639381123852455,0.0640387465053373,0.0641394763401359,0.0642403019062358,0.0643412232201875,0.0644422402984979,0.0645433531576301,0.0646445618140035,0.0647458662839939,0.0648472665839335, 0.0649487627301108,0.0650503547387709,0.0651520426261153,0.0652538264083022,0.0653557061014461,0.0654576817216183,0.0655597532848467,0.0656619208071158,0.0657641843043671,0.0658665437924986, 0.0659689992873652,0.0660715508047785,0.0661741983605071,0.0662769419702766,0.0663797816497693,0.0664827174146247,0.0665857492804392,0.0666888772627664,0.0667921013771168,0.0668954216389581, 0.0669988380637154,0.0671023506667708,0.0672059594634635,0.0673096644690902,0.067413465698905,0.0675173631681192,0.0676213568919015,0.0677254468853781,0.0678296331636328,0.0679339157417065, 0.0680382946345982,0.0681427698572641,0.068247341424618,0.0683520093515317,0.0684567736528344,0.0685616343433133,0.068666591437713,0.0687716449507361,0.0688767948970433,0.0689820412912528, 0.0690873841479411,0.0691928234816422,0.0692983593068485,0.0694039916380103,0.069509720489536,0.0696155458757921,0.0697214678111032,0.0698274863097521,0.06993360138598,0.0700398130539862, 0.0701461213279285,0.0702525262219225,0.0703590277500429,0.0704656259263223,0.070572320764752,0.0706791122792819,0.07078600048382,0.0708929853922332,0.071000067018347,0.0711072453759454, 0.0712145204787713,0.0713218923405261,0.07142936097487,0.071536926395422,0.0716445886157603,0.0717523476494211,0.0718602035099004,0.0719681562106528,0.0720762057650917,0.0721843521865898, 0.0722925954884788,0.0724009356840493,0.0725093727865513,0.0726179068091938,0.0727265377651453,0.0728352656675329,0.0729440905294437,0.0730530123639238,0.0731620311839785,0.0732711470025728, 0.0733803598326311,0.0734896696870373,0.0735990765786343,0.0737085805202252,0.0738181815245725,0.0739278796043981,0.074037674772384,0.0741475670411712,0.0742575564233614,0.074367642931515, 0.0744778265781532,0.0745881073757564,0.0746984853367651,0.0748089604735798,0.0749195327985608,0.0750302023240285,0.0751409690622634,0.0752518330255059,0.0753627942259567,0.0754738526757765, 0.0755850083870864,0.0756962613719676,0.0758076116424613,0.0759190592105695,0.0760306040882541,0.0761422462874378,0.0762539858200035,0.0763658226977943,0.0764777569326143,0.0765897885362276, 0.0767019175203594,0.0768141438966952,0.076926467676881,0.0770388888725239,0.0771514074951913,0.0772640235564116,0.0773767370676739,0.0774895480404282,0.0776024564860851,0.0777154624160168, 0.0778285658415556,0.0779417667739953,0.0780550652245904,0.0781684612045569,0.0782819547250713,0.0783955457972718,0.0785092344322575,0.0786230206410885,0.0787369044347866,0.0788508858243346, 0.0789649648206765,0.079079141434718,0.0791934156773261,0.0793077875593288,0.0794222570915161,0.0795368242846395,0.0796514891494117,0.0797662516965071,0.0798811119365617,0.0799960698801733, 0.0801111255379014,0.080226278920267,0.080341530037753,0.0804568789008043,0.0805723255198273,0.0806878699051904,0.0808035120672241,0.0809192520162205,0.0810350897624341,0.0811510253160812, 0.08126705868734,0.0813831898863513,0.0814994189232174,0.0816157458080035,0.0817321705507363,0.0818486931614053,0.081965313649962,0.0820820320263204,0.0821988483003567,0.0823157624819096, 0.0824327745807801,0.082549884606732,0.0826670925694914,0.0827843984787468,0.0829018023441496,0.0830193041753135,0.0831369039818154,0.0832546017731943,0.0833723975589521,0.0834902913485537, 0.0836082831514267,0.0837263729769616,0.0838445608345115,0.0839628467333926,0.0840812306828843,0.0841997126922288,0.0843182927706314,0.0844369709272601,0.0845557471712465,0.0846746215116852, 0.0847935939576338,0.0849126645181135,0.0850318332021083,0.085151100018566,0.0852704649763972,0.0853899280844761,0.0855094893516407,0.0856291487866917,0.0857489063983938,0.0858687621954751, 0.0859887161866272,0.0861087683805054,0.0862289187857283,0.0863491674108788,0.0864695142645028,0.0865899593551104,0.0867105026911753,0.0868311442811351,0.0869518841333913,0.087072722256309, 0.0871936586582174,0.0873146933474099,0.0874358263321435,0.0875570576206395,0.087678387221083,0.0877998151416237,0.0879213413903749,0.0880429659754144,0.0881646889047841,0.0882865101864902, 0.0884084298285031,0.0885304478387579,0.0886525642251535,0.0887747789955536,0.0888970921577862,0.089019503719644,0.0891420136888835,0.0892646220732268,0.0893873288803597,0.0895101341179332, 0.0896330377935627,0.0897560399148281,0.0898791404892746,0.0900023395244116,0.0901256370277135,0.0902490330066198,0.0903725274685346,0.090496120420827,0.0906198118708307,0.0907436018258451, 0.0908674902931342,0.090991477279927,0.0911155627934177,0.0912397468407656,0.0913640294290953,0.0914884105654964,0.0916128902570242,0.0917374685106986,0.0918621453335052,0.091986920732395, 0.0921117947142843,0.0922367672860548,0.0923618384545537,0.0924870082265939,0.0926122766089531,0.0927376436083757,0.0928631092315707,0.0929886734852134,0.0931143363759444,0.0932400979103701, 0.0933659580950628,0.0934919169365605,0.093617974441367,0.093744130615952,0.093870385466751,0.0939967390001655,0.0941231912225632,0.0942497421402774,0.0943763917596075,0.0945031400868194, 0.0946299871281447,0.0947569328897812,0.0948839773778931,0.0950111205986106,0.0951383625580302,0.0952657032622148,0.0953931427171936,0.095520680928962,0.0956483179034823,0.0957760536466824, 0.0959038881644574,0.0960318214626686,0.096159853547144,0.0962879844236782,0.096416214098032,0.0965445425759332,0.0966729698630765,0.096801495965123,0.0969301208877005,0.097058844636404, 0.0971876672167947,0.0973165886344014,0.0974456088947192,0.0975747280032106,0.0977039459653047,0.097833262786398,0.0979626784718533,0.0980921930270017,0.0982218064571402,0.0983515187675338, 0.0984813299634143,0.0986112400499806,0.0987412490323993,0.098871356915804,0.0990015637052957,0.0991318694059426,0.0992622740227806,0.099392777560813,0.0995233800250103,0.0996540814203108, 0.09978488175162,0.0999157810238116,0.100046779241726,0.100177876410173,0.100309072533927,0.100440367617733,0.100571761666304,0.100703254684317,0.100834846676421,0.100966537647231, 0.101098327601329,0.101230216543268,0.101362204477566,0.101494291408711,0.101626477341156,0.101758762279326,0.101891146227612,0.102023629190373,0.102156211171936,0.102288892176598, 0.102421672208622,0.102554551272242,0.102687529371657,0.102820606511037,0.102953782694519,0.103087057926209,0.103220432210181,0.103353905550478,0.103487477951111,0.103621149416061, 0.103754919949276,0.103888789554672,0.104022758236136,0.104156825997523,0.104290992842655,0.104425258775324,0.104559623799292,0.104694087918288,0.104828651136011,0.104963313456128, 0.105098074882276,0.105232935418060,0.105367895067054,0.105502953832802,0.105638111718817,0.105773368728580,0.105908724865542,0.106044180133123,0.106179734534713,0.106315388073670, 0.106451140753321,0.106586992576965,0.106722943547867,0.106858993669264,0.106995142944361,0.107131391376333,0.107267738968323,0.107404185723447,0.107540731644787,0.107677376735396, 0.107814120998298,0.107950964436484,0.108087907052917,0.108224948850529,0.108362089832220,0.108499330000864,0.108636669359300,0.108774107910339,0.108911645656764,0.109049282601325, 0.109187018746743,0.109324854095709,0.109462788650885,0.109600822414900,0.109738955390357,0.109877187579827,0.110015518985852,0.110153949610943,0.110292479457583,0.110431108528223, 0.110569836825287,0.110708664351168,0.110847591108229,0.110986617098805,0.111125742325198,0.111264966789685,0.111404290494511,0.111543713441891,0.111683235634012,0.111822857073031, 0.111962577761076,0.112102397700247,0.112242316892610,0.112382335340208,0.112522453045050,0.112662670009119,0.112802986234367,0.112943401722716,0.113083916476062,0.113224530496270, 0.113365243785177,0.113506056344588,0.113646968176284,0.113787979282013,0.113929089663496,0.114070299322425,0.114211608260463,0.114353016479244,0.114494523980374,0.114636130765429, 0.114777836835958,0.114919642193480,0.115061546839486,0.115203550775438,0.115345654002771,0.115487856522889,0.115630158337170,0.115772559446961,0.115915059853583,0.116057659558328, 0.116200358562459,0.11634315686721,0.116486054473789,0.116629051383374,0.116772147597116,0.116915343116137,0.117058637941530,0.117202032074362,0.117345525515670,0.117489118266464, 0.117632810327727,0.117776601700412,0.117920492385444,0.118064482383723,0.118208571696118,0.118352760323470,0.118497048266596,0.118641435526282,0.118785922103286,0.118930507998340, 0.119075193212147,0.119219977745384,0.119364861598699,0.119509844772712,0.119654927268018,0.119800109085181,0.119945390224740,0.120090770687205,0.120236250473061,0.120381829582762, 0.120527508016739,0.120673285775392,0.120819162859095,0.120965139268195,0.121111215003011,0.121257390063837,0.121403664450937,0.12155003816455,0.121696511204887,0.121843083572131, 0.121989755266439,0.122136526287943,0.122283396636744,0.122430366312918,0.122577435316516,0.122724603647559,0.122871871306044,0.123019238291937,0.123166704605183,0.123314270245695, 0.123461935213363,0.123609699508048,0.123757563129585,0.123905526077784,0.124053588352426,0.124201749953267,0.124350010880035,0.124498371132434,0.124646830710139,0.124795389612800, 0.124944047840040,0.125092805391457,0.125241662266620,0.125390618465075,0.125539673986339,0.125688828829905,0.125838082995237,0.125987436481776,0.126136889288934,0.126286441416100, 0.126436092862634,0.126585843627871,0.126735693711122,0.126885643111668,0.127035691828768,0.127185839861652,0.127336087209526,0.127486433871571,0.127636879846939,0.127787425134759, 0.127938069734134,0.128088813644139,0.128239656863826,0.128390599392220,0.128541641228321,0.128692782371103,0.128844022819514,0.128995362572478,0.129146801628891,0.129298339987627, 0.129449977647530,0.129601714607424,0.129753550866103,0.129905486422338,0.130057521274874,0.130209655422432,0.130361888863705,0.130514221597363,0.130666653622050,0.130819184936387, 0.130971815538965,0.131124545428355,0.1312773746031,0.131430303061719,0.131583330802706,0.131736457824529,0.131889684125633,0.132043009704436,0.132196434559333,0.132349958688692, 0.132503582090859,0.132657304764152,0.132811126706867,0.132965047917275,0.133119068393619,0.133273188134122,0.133427407136980,0.133581725400363,0.133736142922420,0.133890659701272, 0.134045275735018,0.134199991021731,0.134354805559460,0.134509719346230,0.134664732380041,0.134819844658868,0.134975056180665,0.135130366943357,0.135285776944848,0.135441286183017, 0.135596894655718,0.135752602360782,0.135908409296015,0.136064315459199,0.136220320848092,0.136376425460428,0.136532629293917,0.136688932346245,0.136845334615075,0.137001836098044, 0.137158436792767,0.137315136696834,0.137471935807811,0.137628834123241,0.137785831640643,0.137942928357513,0.138100124271320,0.138257419379515,0.138414813679520,0.138572307168735, 0.138729899844539,0.138887591704283,0.139045382745299,0.139203272964891,0.139361262360343,0.139519350928914,0.139677538667840,0.139835825574334,0.139994211645584,0.140152696878756, 0.140311281270993,0.140469964819414,0.140628747521115,0.140787629373168,0.140946610372624,0.141105690516508,0.141264869801824,0.141424148225553,0.141583525784650,0.141743002476050, 0.141902578296665,0.142062253243382,0.142222027313067,0.142381900502561,0.142541872808685,0.142701944228233,0.142862114757981,0.143022384394679,0.143182753135055,0.143343220975814, 0.143503787913638,0.143664453945189,0.143825219067102,0.143986083275993,0.144147046568453,0.144308108941053,0.144469270390338,0.144630530912833,0.144791890505041,0.14495334916344, 0.145114906884488,0.145276563664619,0.145438319500245,0.145600174387757,0.145762128323522,0.145924181303886,0.14608633332517,0.146248584383677,0.146410934475684,0.146573383597449, 0.146735931745206,0.146898578915167,0.147061325103522,0.147224170306439,0.147387114520064,0.147550157740522,0.147713299963914,0.147876541186321,0.148039881403801,0.148203320612390, 0.148366858808103,0.148530495986933,0.148694232144850,0.148858067277804,0.149022001381722,0.14918603445251,0.149350166486052,0.14951439747821,0.149678727424825,0.149843156321716, 0.150007684164682,0.150172310949496,0.150337036671916,0.150501861327673,0.150666784912478,0.150831807422023,0.150996928851976,0.151162149197984,0.151327468455674,0.151492886620650, 0.151658403688495,0.151824019654773,0.151989734515023,0.152155548264765,0.152321460899499,0.152487472414702,0.152653582805829,0.152819792068316,0.152986100197578,0.153152507189007, 0.153319013037976,0.153485617739836,0.153652321289916,0.153819123683527,0.153986024915956,0.154153024982472,0.154320123878320,0.154487321598726,0.154654618138896,0.154822013494014, 0.154989507659244,0.155157100629728,0.155324792400589,0.155492582966927,0.155660472323825,0.155828460466342,0.155996547389518,0.156164733088373,0.156333017557904,0.156501400793091, 0.156669882788891,0.156838463540241,0.157007143042059,0.157175921289240,0.157344798276661,0.157513773999179,0.157682848451627,0.157852021628823,0.158021293525561,0.158190664136615, 0.158360133456742,0.158529701480674,0.158699368203127,0.158869133618794,0.159038997722350,0.159208960508450,0.159379021971727,0.159549182106796,0.15971944090825,0.159889798370664, 0.160060254488593,0.16023080925657,0.160401462669110,0.160572214720709,0.16074306540584,0.160914014718959,0.161085062654502,0.161256209206884,0.161427454370502,0.161598798139730, 0.161770240508927,0.161941781472429,0.162113421024553,0.162285159159598,0.162456995871842,0.162628931155543,0.162800965004941,0.162973097414255,0.163145328377687,0.163317657889416, 0.163490085943606,0.163662612534398,0.163835237655914,0.164007961302259,0.164180783467517,0.164353704145753,0.164526723331013,0.164699841017323,0.164873057198691,0.165046371869106, 0.165219785022537,0.165393296652934,0.165566906754227,0.165740615320329,0.165914422345134,0.166088327822514,0.166262331746325,0.166436434110404,0.166610634908567,0.166784934134613, 0.166959331782320,0.167133827845451,0.167308422317747,0.167483115192930,0.167657906464705,0.167832796126757,0.168007784172754,0.168182870596344,0.168358055391156,0.168533338550801, 0.168708720068870,0.168884199938939,0.169059778154563,0.169235454709277,0.169411229596599,0.169587102810031,0.169763074343052,0.169939144189126,0.170115312341697,0.170291578794191, 0.170467943540016,0.170644406572561,0.170820967885197,0.170997627471276,0.171174385324135,0.171351241437088,0.171528195803434,0.171705248416453,0.171882399269407,0.172059648355539, 0.172236995668075,0.172414441200223,0.172591984945172,0.172769626896094,0.172947367046142,0.173125205388451,0.173303141916140,0.173481176622307,0.173659309500035,0.173837540542388, 0.174015869742411,0.174194297093134,0.174372822587565,0.174551446218699,0.17473016797951,0.174908987862955,0.175087905861974,0.175266921969488,0.175446036178403,0.175625248481604, 0.175804558871960,0.175983967342324,0.176163473885529,0.176343078494391,0.176522781161709,0.176702581880265,0.176882480642823,0.177062477442128,0.177242572270912,0.177422765121884, 0.177603055987741,0.177783444861158,0.177963931734796,0.178144516601297,0.178325199453287,0.178505980283373,0.178686859084147,0.178867835848183,0.179048910568036,0.179230083236247, 0.179411353845337,0.179592722387813,0.179774188856161,0.179955753242854,0.180137415540346,0.180319175741073,0.180501033837457,0.180682989821900,0.180865043686788,0.181047195424492, 0.181229445027364,0.181411792487739,0.181594237797938,0.181776780950261,0.181959421936996,0.182142160750409,0.182324997382754,0.182507931826265,0.182690964073162,0.182874094115645, 0.183057321945902,0.1832406475561,0.183424070938392,0.183607592084913,0.183791210987783,0.183974927639104,0.184158742030963,0.184342654155428,0.184526664004554,0.184710771570378, 0.184894976844919,0.185079279820183,0.185263680488156,0.185448178840810,0.185632774870101,0.185817468567968,0.186002259926333,0.186187148937102,0.186372135592167,0.186557219883401, 0.186742401802662,0.186927681341792,0.187113058492617,0.187298533246947,0.187484105596575,0.187669775533278,0.187855543048819,0.188041408134943,0.188227370783380,0.188413430985843, 0.188599588734030,0.188785844019623,0.188972196834289,0.189158647169677,0.189345195017421,0.189531840369142,0.18971858321644,0.189905423550904,0.190092361364104,0.190279396647597, 0.190466529392922,0.190653759591603,0.19084108723515,0.191028512315055,0.191216034822795,0.191403654749833,0.191591372087616,0.191779186827572,0.191967098961120,0.192155108479656, 0.192343215374568,0.192531419637222,0.192719721258973,0.192908120231160,0.193096616545104,0.193285210192113,0.193473901163480,0.193662689450482,0.193851575044379,0.194040557936418, 0.194229638117831,0.194418815579833,0.194608090313625,0.194797462310392,0.194986931561305,0.19517649805752,0.195366161790176,0.195555922750399,0.195745780929298,0.195935736317969, 0.196125788907493,0.196315938688933,0.196506185653340,0.19669652979175,0.196886971095182,0.197077509554643,0.197268145161121,0.197458877905595,0.197649707779023,0.197840634772352, 0.198031658876514,0.198222780082425,0.198413998380987,0.198605313763086,0.198796726219596,0.198988235741373,0.199179842319262,0.199371545944090,0.199563346606671,0.199755244297804, 0.199947239008275,0.200139330728853,0.200331519450294,0.200523805163339,0.200716187858715,0.200908667527133,0.201101244159293,0.201293917745876,0.201486688277553,0.201679555744978, 0.201872520138790,0.202065581449617,0.202258739668069,0.202451994784744,0.202645346790226,0.202838795675082,0.203032341429869,0.203225984045126,0.203419723511379,0.203613559819141, 0.20380749295891,0.204001522921170,0.20419564969639,0.204389873275027,0.204584193647522,0.204778610804303,0.204973124735784,0.205167735432364,0.205362442884430,0.205557247082352, 0.205752148016490,0.205947145677187,0.206142240054774,0.206337431139566,0.206532718921866,0.206728103391964,0.206923584540133,0.207119162356636,0.207314836831719,0.207510607955617, 0.207706475718548,0.207902440110721,0.208098501122326,0.208294658743544,0.208490912964539,0.208687263775464,0.208883711166457,0.209080255127642,0.209276895649130,0.20947363272102, 0.209670466333395,0.209867396476326,0.21006442313987,0.210261546314071,0.21045876598896,0.210656082154553,0.210853494800854,0.211051003917853,0.211248609495528,0.211446311523841, 0.211644109992744,0.211842004892173,0.212039996212052,0.212238083942292,0.21243626807279,0.212634548593431,0.212832925494086,0.213031398764612,0.213229968394854,0.213428634374645, 0.213627396693802,0.213826255342132,0.214025210309426,0.214224261585465,0.214423409160016,0.21462265302283,0.214821993163650,0.215021429572202,0.215220962238202,0.215420591151352, 0.215620316301339,0.215820137677842,0.216020055270522,0.21622006906903,0.216420179063004,0.216620385242069,0.216820687595837,0.217021086113907,0.217221580785867,0.217422171601289, 0.217622858549736,0.217823641620755,0.218024520803884,0.218225496088645,0.218426567464550,0.218627734921096,0.218828998447769,0.219030358034042,0.219231813669376,0.21943336534322, 0.219635013045008,0.219836756764164,0.220038596490099,0.220240532212212,0.220442563919887,0.220644691602498,0.220846915249408,0.221049234849964,0.221251650393504,0.221454161869351, 0.221656769266818,0.221859472575204,0.222062271783797,0.222265166881871,0.222468157858691,0.222671244703507,0.222874427405558,0.223077705954070,0.223281080338257,0.223484550547323, 0.223688116570457,0.223891778396837,0.224095536015630,0.224299389415990,0.224503338587059,0.224707383517967,0.224911524197833,0.225115760615762,0.225320092760848,0.225524520622175, 0.225729044188812,0.225933663449819,0.226138378394241,0.226343189011115,0.226548095289463,0.226753097218296,0.226958194786614,0.227163387983405,0.227368676797644,0.227574061218297, 0.227779541234315,0.227985116834639,0.228190788008200,0.228396554743915,0.228602417030689,0.228808374857417,0.229014428212982,0.229220577086255,0.229426821466095,0.229633161341352, 0.229839596700862,0.230046127533448,0.230252753827927,0.230459475573100,0.230666292757757,0.230873205370678,0.231080213400631,0.231287316836372,0.231494515666647,0.23170180988019, 0.231909199465723,0.232116684411958,0.232324264707595,0.232531940341321,0.232739711301816,0.232947577577744,0.233155539157761,0.233363596030511,0.233571748184627,0.23377999560873, 0.23398833829143,0.234196776221327,0.234405309387008,0.234613937777052,0.234822661380023,0.235031480184476,0.235240394178956,0.235449403351996,0.235658507692118,0.235867707187831, 0.236077001827637,0.236286391600025,0.236495876493471,0.236705456496445,0.236915131597401,0.237124901784786,0.237334767047034,0.237544727372569,0.237754782749804,0.237964933167141, 0.238175178612972,0.238385519075676,0.238595954543625,0.238806485005177,0.239017110448681,0.239227830862473,0.239438646234883,0.239649556554226,0.239860561808808,0.240071661986925, 0.24028285707686,0.240494147066888,0.240705531945273,0.240917011700267,0.241128586320113,0.241340255793043,0.241552020107279,0.24176387925103,0.241975833212499,0.242187881979874, 0.242400025541336,0.242612263885053,0.242824596999186,0.243037024871881,0.243249547491279,0.243462164845505,0.243674876922678,0.243887683710905,0.244100585198283,0.244313581372899, 0.244526672222828,0.244739857736139,0.244953137900885,0.245166512705114,0.245379982136861,0.245593546184150,0.245807204834999,0.246020958077411,0.246234805899383,0.246448748288899, 0.246662785233934,0.246876916722453,0.247091142742410,0.247305463281752,0.247519878328412,0.247734387870316,0.247948991895378,0.248163690391504,0.248378483346588,0.248593370748516, 0.248808352585163,0.249023428844394,0.249238599514065,0.249453864582021,0.249669224036098,0.249884677864123,0.250100226053911,0.250315868593268,0.250531605469992,0.25074743667187, 0.250963362186678,0.251179382002184,0.251395496106146,0.251611704486312,0.25182800713042,0.252044404026200,0.252260895161370,0.25247748052364,0.252694160100709,0.25291093388027, 0.253127801850001,0.253344763997575,0.253561820310653,0.253778970776888,0.253996215383922,0.254213554119389,0.254430986970912,0.254648513926106,0.254866134972575,0.255083850097916, 0.255301659289715,0.255519562535547,0.255737559822982,0.255955651139576,0.256173836472879,0.256392115810430,0.256610489139759,0.256828956448386,0.257047517723825,0.257266172953576, 0.257484922125134,0.257703765225981,0.257922702243593,0.258141733165436,0.258360857978965,0.258580076671628,0.258799389230863,0.259018795644099,0.259238295898756,0.259457889982245, 0.259677577881967,0.259897359585315,0.260117235079672,0.260337204352415,0.260557267390907,0.260777424182506,0.260997674714559,0.261218018974406,0.261438456949375,0.261658988626788, 0.261879613993957,0.262100333038184,0.262321145746764,0.262542052106983,0.262763052106116,0.262984145731432,0.263205332970190,0.263426613809638,0.263647988237020,0.263869456239566, 0.264091017804502,0.264312672919041,0.264534421570391,0.264756263745749,0.264978199432304,0.265200228617237,0.265422351287718,0.265644567430911,0.265866877033970,0.266089280084042, 0.266311776568263,0.266534366473761,0.266757049787658,0.266979826497063,0.267202696589082,0.267425660050807,0.267648716869325,0.267871867031713,0.268095110525041,0.268318447336369, 0.268541877452749,0.268765400861224,0.268989017548831,0.269212727502596,0.269436530709537,0.269660427156666,0.269884416830983,0.270108499719483,0.270332675809150,0.270556945086962, 0.270781307539886,0.271005763154885,0.271230311918909,0.271454953818902,0.271679688841801,0.271904516974533,0.272129438204017,0.272354452517165,0.272579559900878,0.272804760342053, 0.273030053827575,0.273255440344323,0.273480919879169,0.273706492418974,0.273932157950592,0.274157916460870,0.274383767936647,0.274609712364752,0.274835749732007,0.275061880025227, 0.275288103231219,0.275514419336780,0.275740828328700,0.275967330193763,0.276193924918742,0.276420612490405,0.276647392895510,0.276874266120807,0.277101232153041,0.277328290978945, 0.277555442585248,0.277782686958668,0.278010024085917,0.2782374539537,0.278464976548713,0.278692591857643,0.278920299867172,0.279148100563972,0.279375993934709,0.279603979966041, 0.279832058644616,0.280060229957077,0.280288493890059,0.280516850430189,0.280745299564085,0.280973841278360,0.281202475559618,0.281431202394454,0.281660021769459,0.281888933671212, 0.282117938086289,0.282347035001255,0.28257622440267,0.282805506277084,0.283034880611041,0.283264347391078,0.283493906603724,0.283723558235500,0.28395330227292,0.284183138702491, 0.284413067510711,0.284643088684074,0.284873202209063,0.285103408072157,0.285333706259823,0.285564096758525,0.285794579554719,0.286025154634852,0.286255821985364,0.28648658159269, 0.286717433443255,0.286948377523478,0.287179413819771,0.287410542318539,0.287641763006177,0.287873075869078,0.288104480893624,0.288335978066189,0.288567567373143,0.288799248800848, 0.289031022335658,0.28926288796392,0.289494845671975,0.289726895446155,0.289959037272787,0.29019127113819,0.290423597028675,0.290656014930549,0.290888524830108,0.291121126713644, 0.291353820567441,0.291586606377777,0.291819484130920,0.292052453813136,0.292285515410679,0.292518668909800,0.29275191429674,0.292985251557736,0.293218680679017,0.293452201646803, 0.293685814447312,0.29391951906675,0.294153315491319,0.294387203707215,0.294621183700624,0.294855255457728,0.295089418964702,0.295323674207714,0.295558021172924,0.295792459846486, 0.296026990214548,0.296261612263251,0.296496325978729,0.29673113134711,0.296966028354514,0.297201016987057,0.297436097230845,0.297671269071979,0.297906532496555,0.298141887490659, 0.298377334040374,0.298612872131773,0.298848501750926,0.299084222883894,0.299320035516732,0.299555939635489,0.299791935226207,0.300028022274922,0.300264200767664,0.300500470690454, 0.30073683202931,0.300973284770241,0.301209828899252,0.301446464402339,0.301683191265493,0.301920009474699,0.302156919015935,0.302393919875173,0.302631012038377,0.302868195491508, 0.303105470220517,0.303342836211353,0.303580293449955,0.303817841922256,0.304055481614186,0.304293212511664,0.304531034600608,0.304768947866925,0.305006952296519,0.305245047875287, 0.305483234589119,0.305721512423899,0.305959881365506,0.306198341399813,0.306436892512684,0.30667553468998,0.306914267917555,0.307153092181257,0.307392007466927,0.307631013760401, 0.307870111047508,0.308109299314073,0.308348578545912,0.308587948728837,0.308827409848655,0.309066961891163,0.309306604842157,0.309546338687423,0.309786163412744,0.310026079003895, 0.310266085446646,0.310506182726761,0.310746370829999,0.310986649742110,0.311227019448843,0.311467479935937,0.311708031189127,0.311948673194142,0.312189405936705,0.312430229402532, 0.312671143577337,0.312912148446823,0.313153243996692,0.313394430212637,0.313635707080346,0.313877074585503,0.314118532713784,0.314360081450861,0.314601720782399,0.314843450694059, 0.315085271171493,0.315327182200351,0.315569183766277,0.315811275854906,0.316053458451871,0.316295731542798,0.316538095113308,0.316780549149015,0.317023093635529,0.317265728558453, 0.317508453903386,0.317751269655920,0.317994175801644,0.318237172326137,0.318480259214978,0.318723436453735,0.318966704027976,0.319210061923259,0.319453510125138,0.319697048619164, 0.319940677390878,0.32018439642582,0.320428205709522,0.320672105227511,0.320916094965309,0.321160174908433,0.321404345042394,0.321648605352698,0.321892955824845,0.322137396444331, 0.322381927196646,0.322626548067273,0.322871259041694,0.323116060105381,0.323360951243804,0.323605932442425,0.323851003686705,0.324096164962095,0.324341416254044,0.324586757547994, 0.324832188829383,0.325077710083643,0.325323321296202,0.325569022452481,0.325814813537898,0.326060694537865,0.326306665437787,0.326552726223067,0.326798876879102,0.327045117391282, 0.327291447744994,0.327537867925619,0.327784377918534,0.328030977709109,0.328277667282712,0.328524446624703,0.328771315720438,0.329018274555268,0.329265323114541,0.329512461383596, 0.329759689347771,0.330007006992397,0.3302544143028,0.330501911264302,0.330749497862219,0.330997174081863,0.331244939908541,0.331492795327555,0.331740740324202,0.331988774883774, 0.332236898991559,0.332485112632839,0.332733415792893,0.332981808456992,0.333230290610406,0.333478862238397,0.333727523326224,0.333976273859142,0.334225113822399,0.334474043201239, 0.334723061980903,0.334972170146624,0.335221367683635,0.335470654577159,0.335720030812418,0.335969496374628,0.336219051249001,0.336468695420743,0.336718428875057,0.33696825159714, 0.337218163572185,0.337468164785381,0.337718255221912,0.337968434866956,0.338218703705689,0.338469061723280,0.338719508904896,0.338970045235696,0.339220670700838,0.339471385285474, 0.33972218897475,0.339973081753810,0.340224063607793,0.340475134521832,0.340726294481058,0.340977543470594,0.341228881475562,0.341480308481078,0.341731824472254,0.341983429434197, 0.342235123352010,0.342486906210792,0.342738777995638,0.342990738691636,0.343242788283872,0.343494926757429,0.343747154097382,0.343999470288804,0.344251875316763,0.344504369166324, 0.344756951822545,0.345009623270482,0.345262383495187,0.345515232481707,0.345768170215082,0.346021196680353,0.346274311862553,0.346527515746712,0.346780808317856,0.347034189561007, 0.347287659461180,0.347541218003391,0.347794865172648,0.348048600953955,0.348302425332313,0.34855633829272,0.348810339820167,0.349064429899642,0.349318608516130,0.349572875654612, 0.349827231300063,0.350081675437454,0.350336208051755,0.350590829127929,0.350845538650936,0.351100336605731,0.351355222977267,0.351610197750491,0.351865260910347,0.352120412441775, 0.352375652329711,0.352630980559087,0.35288639711483,0.353141901981865,0.353397495145111,0.353653176589486,0.3539089462999,0.354164804261263,0.354420750458478,0.354676784876447, 0.354932907500065,0.355189118314227,0.35544541730382,0.355701804453730,0.355958279748837,0.356214843174021,0.356471494714153,0.356728234354105,0.356985062078742,0.357241977872925, 0.357498981721515,0.357756073609365,0.358013253521327,0.358270521442247,0.358527877356970,0.358785321250334,0.359042853107177,0.359300472912330,0.359558180650622,0.359815976306878, 0.360073859865919,0.360331831312564,0.360589890631625,0.360848037807914,0.361106272826237,0.361364595671397,0.361623006328194,0.361881504781424,0.362140091015878,0.362398765016346, 0.362657526767612,0.362916376254459,0.363175313461665,0.363434338374002,0.363693450976244,0.363952651253156,0.364211939189504,0.364471314770047,0.364730777979542,0.364990328802743, 0.365249967224400,0.365509693229258,0.365769506802061,0.366029407927549,0.366289396590458,0.36654947277552,0.366809636467465,0.367069887651018,0.367330226310902,0.367590652431837, 0.367851165998537,0.368111766995715,0.368372455408080,0.368633231220337,0.368894094417189,0.369155044983336,0.369416082903471,0.369677208162288,0.369938420744476,0.37019972063472, 0.370461107817702,0.370722582278103,0.370984144000597,0.371245792969857,0.371507529170553,0.371769352587351,0.372031263204913,0.3722932610079,0.372555345980967,0.372817518108769, 0.373079777375954,0.37334212376717,0.373604557267061,0.373867077860267,0.374129685531426,0.374392380265170,0.374655162046133,0.374918030858942,0.375180986688222,0.375444029518593, 0.375707159334676,0.375970376121085,0.376233679862434,0.376497070543331,0.376760548148382,0.377024112662192,0.377287764069359,0.377551502354482,0.377815327502156,0.378079239496969, 0.378343238323512,0.378607323966369,0.378871496410122,0.37913575563935,0.37940010163863,0.379664534392535,0.379929053885635,0.380193660102497,0.380458353027687,0.380723132645765, 0.380987998941289,0.381252951898816,0.381517991502899,0.381783117738087,0.382048330588927,0.382313630039963,0.382579016075736,0.382844488680785,0.383110047839646,0.383375693536851, 0.38364142575693,0.383907244484410,0.384173149703815,0.384439141399667,0.384705219556483,0.384971384158781,0.385237635191074,0.385503972637870,0.385770396483680,0.386036906713006, 0.38630350331035,0.386570186260213,0.386836955547091,0.387103811155478,0.387370753069864,0.387637781274739,0.387904895754588,0.388172096493895,0.388439383477139,0.388706756688799, 0.38897421611335,0.389241761735264,0.38950939353901,0.389777111509057,0.390044915629869,0.390312805885908,0.390580782261633,0.3908488447415,0.391116993309965,0.391385227951479, 0.39165354865049,0.391921955391446,0.39219044815879,0.392459026936964,0.392727691710407,0.392996442463554,0.39326527918084,0.393534201846696,0.393803210445551,0.394072304961831, 0.39434148537996,0.394610751684359,0.394880103859448,0.395149541889642,0.395419065759356,0.395688675453002,0.395958370954987,0.39622815224972,0.396498019321604,0.396767972155041, 0.397038010734431,0.39730813504417,0.397578345068654,0.397848640792275,0.398119022199422,0.398389489274483,0.398660042001844,0.398930680365887,0.399201404350993,0.39947221394154, 0.399743109121904,0.400014089876459,0.400285156189576,0.400556308045623,0.400827545428969,0.401098868323976,0.401370276715008,0.401641770586424,0.401913349922582,0.402185014707837, 0.402456764926543,0.402728600563050,0.403000521601708,0.403272528026862,0.403544619822857,0.403816796974036,0.404089059464738,0.4043614072793,0.404633840402059,0.404906358817348, 0.405178962509498,0.405451651462839,0.405724425661697,0.405997285090397,0.406270229733261,0.406543259574611,0.406816374598766,0.40708957479004,0.40736286013275,0.407636230611206, 0.407909686209719,0.408183226912598,0.408456852704148,0.408730563568673,0.409004359490475,0.409278240453854,0.409552206443108,0.409826257442532,0.410100393436422,0.410374614409067, 0.410648920344759,0.410923311227785,0.41119778704243,0.411472347772980,0.411746993403715,0.412021723918915,0.412296539302859,0.412571439539823,0.412846424614081,0.413121494509905, 0.413396649211565,0.413671888703329,0.413947212969465,0.414222621994237,0.414498115761907,0.414773694256735,0.415049357462982,0.415325105364904,0.415600937946756,0.415876855192792, 0.416152857087263,0.416428943614419,0.416705114758507,0.416981370503774,0.417257710834464,0.417534135734819,0.41781064518908,0.418087239181485,0.418363917696272,0.418640680717676, 0.41891752822993,0.419194460217267,0.419471476663915,0.419748577554103,0.420025762872059,0.420303032602005,0.420580386728166,0.420857825234763,0.421135348106015,0.421412955326141, 0.421690646879356,0.421968422749874,0.42224628292191,0.422524227379674,0.422802256107375,0.423080369089222,0.423358566309420,0.423636847752174,0.423915213401687,0.42419366324216, 0.424472197257793,0.424750815432785,0.425029517751331,0.425308304197626,0.425587174755864,0.425866129410236,0.426145168144932,0.426424290944141,0.42670349779205,0.426982788672845, 0.427262163570708,0.427541622469823,0.427821165354371,0.428100792208529,0.428380503016478,0.428660297762391,0.428940176430445,0.429220139004812,0.429500185469665,0.429780315809173, 0.430060530007505,0.43034082804883,0.430621209917311,0.430901675597114,0.431182225072402,0.431462858327337,0.431743575346078,0.432024376112783,0.432305260611612,0.432586228826718, 0.432867280742257,0.433148416342381,0.433429635611243,0.433710938532992,0.433992325091777,0.434273795271746,0.434555349057045,0.434836986431818,0.43511870738021,0.435400511886362, 0.435682399934415,0.435964371508508,0.436246426592779,0.436528565171366,0.436810787228404,0.437093092748026,0.437375481714366,0.437657954111556,0.437940509923725,0.438223149135003, 0.438505871729517,0.438788677691394,0.43907156700476,0.439354539653737,0.43963759562245,0.439920734895019,0.440203957455566,0.440487263288207,0.440770652377063,0.44105412470625, 0.441337680259882,0.441621319022075,0.441905040976942,0.442188846108593,0.442472734401140,0.442756705838693,0.443040760405361,0.443324898085249,0.443609118862465,0.443893422721114, 0.444177809645299,0.444462279619123,0.444746832626688,0.445031468652094,0.44531618767944,0.445600989692825,0.445885874676346,0.4461708426141,0.446455893490181,0.446741027288683, 0.4470262439937,0.447311543589322,0.447596926059641,0.447882391388747,0.448167939560728,0.448453570559672,0.448739284369666,0.449025080974794,0.449310960359143,0.449596922506795, 0.449882967401834,0.450169095028339,0.450455305370393,0.450741598412076,0.451027974137465,0.451314432530638,0.451600973575673,0.451887597256644,0.452174303557627,0.452461092462695, 0.452747963955923,0.453034918021381,0.453321954643141,0.453609073805272,0.453896275491845,0.454183559686928,0.454470926374588,0.454758375538891,0.455045907163904,0.455333521233692, 0.455621217732317,0.455908996643844,0.456196857952334,0.456484801641850,0.45677282769645,0.457060936100196,0.457349126837146,0.457637399891358,0.457925755246889,0.458214192887796, 0.458502712798135,0.458791314961959,0.459079999363323,0.45936876598628,0.459657614814883,0.459946545833183,0.460235559025231,0.460524654375078,0.460813831866771,0.461103091484361, 0.461392433211895,0.46168185703342,0.461971362932982,0.462260950894627,0.4625506209024,0.462840372940345,0.463130206992506,0.463420123042925,0.463710121075644,0.464000201074705, 0.464290363024148,0.464580606908014,0.464870932710342,0.465161340415169,0.465451830006536,0.465742401468478,0.466033054785032,0.466323789940236,0.466614606918123,0.466905505702729, 0.467196486278088,0.467487548628233,0.467778692737197,0.468069918589013,0.468361226167713,0.468652615457327,0.468944086441886,0.46923563910542,0.469527273431958,0.46981898940553, 0.470110787010163,0.470402666229884,0.470694627048722,0.470986669450702,0.471278793419851,0.471570998940195,0.471863285995757,0.472155654570562,0.472448104648635,0.472740636213999, 0.473033249250677,0.47332594374269,0.473618719674062,0.473911577028812,0.474204515790963,0.474497535944535,0.474790637473547,0.475083820362018,0.475377084593969,0.475670430153418, 0.475963857024382,0.47625736519088,0.476550954636928,0.476844625346544,0.477138377303743,0.477432210492542,0.477726124896957,0.478020120501002,0.478314197288691,0.478608355244040, 0.478902594351063,0.479196914593773,0.479491315956182,0.479785798422304,0.480080361976151,0.480375006601735,0.480669732283069,0.480964539004163,0.481259426749028,0.481554395501674, 0.481849445246113,0.482144575966354,0.482439787646406,0.48273508027028,0.483030453821983,0.483325908285526,0.483621443644915,0.48391705988416,0.484212756987268,0.484508534938246, 0.484804393721102,0.485100333319844,0.485396353718476,0.485692454901006,0.48598863685144,0.486284899553784,0.486581242992044,0.486877667150224,0.487174172012331,0.487470757562369, 0.487767423784343,0.488064170662256,0.488360998180115,0.488657906321923,0.488954895071682,0.489251964413398,0.489549114331074,0.489846344808713,0.490143655830317,0.490441047379891, 0.490738519441436,0.491036071998956,0.491333705036452,0.491631418537928,0.491929212487384,0.492227086868824,0.492525041666248,0.492823076863658,0.493121192445057,0.493419388394446, 0.493717664695825,0.494016021333196,0.494314458290561,0.494612975551919,0.494911573101273,0.495210250922622,0.495509008999968,0.495807847317311,0.496106765858651,0.496405764607989, 0.496704843549327,0.497004002666663,0.497303241943998,0.497602561365332,0.497901960914666,0.498201440576,0.498501000333333,0.498800640170667,0.499100360072,0.499400160021333, 0.499700040002667,0.5 ); # precomputed values for the TPM method @t_products = ( 2.74878500791020e-47,7.5470644293805e-47,2.03188406622969e-46,5.36723495233876e-46,1.39178080969837e-45,3.54477221630807e-45,8.87203315868573e-45,2.18316812783517e-44,5.28426327013541e-44, 1.25866892418766e-43,2.95160201028657e-43,6.81719820678513e-43,1.55142927457180e-42,3.4802132755404e-42,7.69824062869903e-42,1.6797594294399e-41,3.61680810993749e-41,7.68730654788738e-41,1.61337702430800e-40, 3.34463147848478e-40,6.85085271206764e-40,1.38692750826263e-39,2.77587734482578e-39,5.49420326943771e-39,1.07568173288991e-38,2.0837731492223e-38,3.99497466949007e-38,7.5819428723431e-38,1.42479540028747e-37, 2.65173106971752e-37,4.88886257734849e-37,8.93060802640882e-37,1.61673824640876e-36,2.90116080783099e-36,5.16134152977467e-36,9.10531297570031e-36,1.59312184793715e-35,2.7650497637957e-35,4.76137630050161e-35, 8.13600549333873e-35,1.37978243989732e-34,2.32273735140504e-34,3.88192561007597e-34,6.44195295673274e-34,1.06163426424799e-33,1.73772635861864e-33,2.82551283697792e-33,4.56437509431202e-33,7.32640030691107e-33, 1.16864023895431e-32,1.85270392552179e-32,2.91956999244031e-32,4.57373240018831e-32,7.12379757464074e-32,1.10329086453868e-31,1.69923532397906e-31,2.60284493033608e-31,3.96569543692848e-31,6.01050014814976e-31, 9.06285128848854e-31,1.35963961591785e-30,2.02968281809483e-30,3.01521052799497e-30,4.45790620905829e-30,6.56002979863054e-30,9.60902141189728e-30,1.40115749079424e-29,2.03406256502048e-29,2.93998767119868e-29, 4.23120469162228e-29,6.06390762700754e-29,8.65452150865117e-29,1.23017437765479e-28,1.74162196144588e-28,2.4560345812367e-28,3.45014639981115e-28,4.8282690648889e-28,6.73168971215208e-28,9.3510971584504e-28, 1.29429557659833e-27,1.78510085156497e-27,2.45344226575224e-27,3.36045101622243e-27,4.58724822664924e-27,6.24113586303362e-27,8.46359786691468e-27,1.14406094038275e-26,1.54158803816613e-26,2.07078184290137e-26, 2.77311931734070e-26,3.7024726152471e-26,4.92861289082466e-26,6.5416477587568e-26,8.6576259832765e-26,1.14255975735393e-25,1.50364839153910e-25,1.97341932491718e-25,2.58295145158702e-25,3.37174406512674e-25, 4.38987147081909e-25,5.70065633096374e-25,7.38397872467276e-25,9.54036248101306e-25,1.22960097003636e-24,1.58089893658569e-24,2.02768275552142e-24,2.59457961415422e-24,3.31222553484477e-24,4.21864746345402e-24, 5.36094378932965e-24,6.79732349002928e-24,8.5995753655958e-24,1.08560520433705e-23,1.36752689010582e-23,1.71902361223763e-23,2.15636631641934e-23,2.69941994294308e-23,3.37239034203173e-23,4.2047165674758e-23, 5.23213490241221e-23,6.49794538988759e-23,8.054516738958e-23,9.96507134911176e-23,1.23057989481633e-22,1.51683550908429e-22,1.86628096509513e-22,2.29211206088673e-22,2.81012200557192e-22,3.43918125922629e-22, 4.20180014023664e-22,5.12478744592122e-22,6.24002028337514e-22,7.5853425204435e-22,9.2056117730366e-22,1.11539176795670e-21,1.34929974146686e-21,1.62968780050553e-21,1.96527790772471e-21,2.36633142414638e-21, 2.84490344548765e-21,3.41513624727493e-21,4.09359739559195e-21,4.89966880320328e-21,5.8559938187557e-21,6.98899033867138e-21,8.32943893692726e-21,9.91315612772325e-21,1.17817641215947e-20,1.39835698193152e-20, 1.65745673235426e-20,1.96195799503001e-20,2.31935596070031e-20,2.73830634880852e-20,3.22879303419989e-20,3.80231811045799e-20,4.47211714952229e-20,5.25340272573382e-20,6.16363961184359e-20,7.22285542748569e-20, 8.45399093008375e-20,9.8832945872392e-20,1.15407665616875e-19,1.34606577784967e-19,1.56820303331328e-19,1.82493861424617e-19,2.12133714430307e-19,2.46315655067747e-19,2.85693627786013e-19,3.31009585483835e-19, 3.83104492574376e-19,4.42930596125117e-19,5.11565098450721e-19,5.90225377170048e-19,6.8028591242874e-19,7.83297095812568e-19,9.01006111513672e-19,1.03538009764766e-18,1.18863181434330e-18,1.36324806543369e-18, 1.56202114236863e-18,1.78808358244608e-18,2.04494655874098e-18,2.33654224630413e-18,2.66727053844047e-18,3.04205051828065e-18,3.46637712456904e-18,3.94638348674918e-18,4.48890944318076e-18,5.10157679782905e-18, 5.79287191519313e-18,6.57223630075004e-18,7.45016586497423e-18,8.43831962322578e-18,9.54963864168841e-18,1.07984761012789e-17,1.22007394172549e-17,1.37740454223507e-17,1.55378896958803e-17,1.75138312006268e-17, 1.97256934737222e-17,2.21997837073702e-17,2.49651311504617e-17,2.80537463631307e-17,3.15009029634218e-17,3.53454436187528e-17,3.96301121550918e-17,4.44019137840538e-17,4.97125055827593e-17,5.56186195036656e-17, 6.21825203420157e-17,6.9472501247424e-17,7.75634195338048e-17,8.65372757187353e-17,9.648383890988e-17,1.07501321852580e-16,1.19697109159735e-16,1.33188542462946e-16,1.48103766453063e-16,1.64582640019346e-16, 1.82777716949663e-16,2.02855300920215e-16,2.24996579782588e-16,2.49398844449009e-16,2.76276797984072e-16,3.05863960833409e-16,3.38414178457414e-16,3.74203237991685e-16,4.13530600925979e-16,4.56721259180585e-16, 5.04127722364102e-16,5.56132144419712e-16,6.13148598309303e-16,6.75625507846642e-16,7.44048246272688e-16,8.1894191166915e-16,9.00874289830853e-16,9.90459015764108e-16,1.08835894554815e-15,1.19528975088972e-15, 1.31202374931867e-15,1.43939398361538e-15,1.57829856472885e-15,1.72970529313995e-15,1.89465657434636e-15,2.07427464489642e-15,2.26976712617839e-15,2.48243292398045e-15,2.71366849267657e-15,2.96497448376317e-15, 3.23796279937537e-15,3.53436407234552e-15,3.85603559533704e-15,4.20496972258972e-15,4.58330276885104e-15,4.99332443114392e-15,5.43748776013228e-15,5.91841970899662e-15,6.43893228891916e-15,7.00203436150656e-15, 7.61094409974693e-15,8.26910215040626e-15,8.98018553212204e-15,9.74812230484576e-15,1.05771070477242e-14,1.14716171839929e-14,1.24364301929830e-14,1.34766417509176e-14,1.45976848437972e-14,1.58053498973392e-14, 1.71058059706634e-14,1.85056230621755e-14,2.00117955779259e-14,2.16317670145891e-14,2.33734559111325e-14,2.5245283125222e-14,2.72562004924339e-14,2.94157209284395e-14,3.17339500364558e-14,3.42216192844641e-14, 3.68901208189416e-14,3.97515439841668e-14,4.28187136185364e-14,4.61052302017416e-14,4.96255119291643e-14,5.33948387923873e-14,5.74293987473265e-14,6.17463360541761e-14,6.63638018760839e-14,7.13010072262758e-14, 7.6578278356223e-14,8.22171146803514e-14,8.82402493358256e-14,9.46717124789456e-14,1.01536897422888e-13,1.08862629724644e-13,1.16677239332346e-13,1.25010635907431e-13,1.33894387439535e-13,1.43361802275483e-13, 1.53448014687223e-13,1.6419007410723e-13,1.75627038163542e-13,1.87800069650326e-13,2.00752537573748e-13,2.14530122416743e-13,2.29180925770294e-13,2.44755584482848e-13,2.61307389483581e-13,2.78892409439454e-13, 2.97569619410197e-13,3.17401034669726e-13,3.38451849866879e-13,3.607905837028e-13,3.84489229306928e-13,4.09623410498042e-13,4.36272544121623e-13,4.64520008659466e-13,4.94453319312386e-13,5.26164309761686e-13, 5.59749320820128e-13,5.95309396188151e-13,6.32950485536199e-13,6.7278365513925e-13,7.14925306294929e-13,7.59497401761817e-13,8.06627700460211e-13,8.56450000682763e-13,9.09104392068311e-13,9.6473751659759e-13, 1.02350283887534e-12,1.08556092596910e-12,1.15107973708064e-12,1.22023492333226e-12,1.29321013795572e-12,1.37019735717785e-12,1.45139721210307e-12,1.53701933189898e-12,1.62728269859757e-12,1.72241601383105e-12, 1.82265807782718e-12,1.92825818099611e-12,2.0394765084465e-12,2.15658455777592e-12,2.27986557048658e-12,2.40961497738443e-12,2.54614085832656e-12,2.68976441668792e-12,2.84082046892616e-12,2.99965794962965e-12, 3.16664043244082e-12,3.34214666725416e-12,3.52657113409505e-12,3.72032461409297e-12,3.92383477796948e-12,4.13754679246862e-12,4.36192394516549e-12,4.59744828809407e-12,4.84462130064531e-12,5.10396457219164e-12, 5.37602050490282e-12,5.66135303722509e-12,5.96054838850296e-12,6.27421582523107e-12,6.60298844943022e-12,6.94752400965065e-12,7.30850573511131e-12,7.68664319349431e-12,8.08267317291856e-12,8.49736058862615e-12, 8.93149941492297e-12,9.38591364292104e-12,9.86145826463994e-12,1.03590202840319e-11,1.08795197555016e-11,1.14239108505021e-11,1.19931829527936e-11,1.25883617829634e-11,1.32105105528064e-11,1.38607311501836e-11, 1.45401653549738e-11,1.52499960867484e-11,1.59914486848047e-11,1.67657922212008e-11,1.75743408474444e-11,1.84184551754948e-11,1.92995436937454e-11,2.02190642186629e-11,2.11785253827663e-11,2.21794881596370e-11, 2.32235674266598e-11,2.43124335662025e-11,2.54478141059479e-11,2.66314953991032e-11,2.78653243452172e-11,2.91512101523435e-11,3.0491126141298e-11,3.18871115927644e-11,3.33412736380098e-11,3.48557891939819e-11, 3.64329069435654e-11,3.80749493617816e-11,3.97843147887285e-11,4.15634795500578e-11,4.34150001258013e-11,4.53415153683612e-11,4.73457487704875e-11,4.94305107840779e-11,5.15987011906307e-11,5.38533115242082e-11, 5.61974275477534e-11,5.8634231783628e-11,6.11670060992371e-11,6.37991343486169e-11,6.65341050708658e-11,6.9375514246312e-11,7.23270681113115e-11,7.53925860325817e-11,7.857600344198e-11,8.18813748326463e-11, 8.53128768174304e-11,8.8874811250541e-11,9.25716084133486e-11,9.64078302652859e-11,1.00388173760804e-10,1.04517474233332e-10,1.08800708847206e-10,1.13243000118548e-10,1.17849619506047e-10,1.22625991072650e-10, 1.27577695219138e-10,1.32710472490573e-10,1.38030227456640e-10,1.43543032666861e-10,1.49255132681714e-10,1.55172948180663e-10,1.61303080148125e-10,1.67652314138395e-10,1.74227624620580e-10,1.81036179404549e-10, 1.88085344148981e-10,1.95382686952523e-10,2.02935983029135e-10,2.10753219468670e-10,2.18842600083751e-10,2.2721255034402e-10,2.35871722398818e-10,2.44829000189383e-10,2.54093504651645e-10,2.63674599010691e-10, 2.73581894168004e-10,2.83825254182555e-10,2.94414801846856e-10,3.05360924359066e-10,3.16674279092239e-10,3.28365799461868e-10,3.4044670089277e-10,3.52928486886481e-10,3.65822955190237e-10,3.79142204068692e-10, 3.92898638679473e-10,4.07104977553701e-10,4.21774259182613e-10,4.3691984871141e-10,4.52555444741448e-10,4.6869508624195e-10,4.85353159572312e-10,5.02544405616196e-10,5.20283927028522e-10,5.38587195596499e-10, 5.57470059715863e-10,5.76948751983434e-10,5.97039896907153e-10,6.17760518734752e-10,6.39128049402204e-10,6.61160336603069e-10,6.83875651979932e-10,7.07292699439084e-10,7.31430623589514e-10,7.56309018307483e-10, 7.81947935427746e-10,8.08367893562578e-10,8.35589887049827e-10,8.63635395031034e-10,8.92526390660864e-10,9.22285350448951e-10,9.52935263735308e-10,9.84499642300475e-10,1.01700253011151e-09,1.05046851320504e-09, 1.08492272970836e-09,1.12039088000003e-09,1.15689923701069e-09,1.19447465666560e-09,1.23314458846991e-09,1.27293708623767e-09,1.31388081896594e-09,1.35600508185500e-09,1.39933980747580e-09,1.44391557708576e-09, 1.48976363209415e-09,1.53691588567806e-09,1.58540493455006e-09,1.63526407087885e-09,1.68652729436373e-09,1.7392293244643e-09,1.79340561278624e-09,1.84909235562444e-09,1.90632650666451e-09,1.96514578984376e-09, 2.02558871237274e-09,2.08769457791854e-09,2.15150349995064e-09,2.21705641525084e-09,2.2843950975878e-09,2.35356217155782e-09,2.42460112659240e-09,2.49755633113408e-09,2.5724730469813e-09,2.64939744380348e-09, 2.72837661382731e-09,2.80945858669541e-09,2.89269234449812e-09,2.97812783697974e-09,3.06581599692006e-09,3.15580875569229e-09,3.24815905899831e-09,3.34292088278234e-09,3.44014924932393e-09,3.53990024351127e-09, 3.64223102929601e-09,3.74719986633015e-09,3.85486612678634e-09,3.96529031236251e-09,4.07853407147146e-09,4.19466021661685e-09,4.31373274195606e-09,4.43581684105123e-09,4.56097892480911e-09,4.68928663961086e-09, 4.82080888563268e-09,4.95561583535785e-09,5.09377895228161e-09,5.23537100980939e-09,5.3804661103493e-09,5.52913970460004e-09,5.68146861103445e-09,5.83753103558045e-09,5.99740659149935e-09,6.16117631946301e-09, 6.32892270783036e-09,6.50072971312388e-09,6.67668278070748e-09,6.85686886566614e-09,7.04137645388794e-09,7.23029558334973e-09,7.42371786560699e-09,7.62173650748838e-09,7.82444633299622e-09,8.03194380541344e-09, 8.2443270496173e-09,8.46169587460151e-09,8.68415179620663e-09,8.91179806005975e-09,9.14473966472442e-09,9.38308338506084e-09,9.62693779579793e-09,9.87641329531687e-09,1.01316221296476e-08,1.03926784166788e-08, 1.06596981705808e-08,1.09327993264448e-08,1.12121017651355e-08,1.14977273383601e-08,1.17897998939546e-08,1.20884453013851e-08,1.23937914774681e-08,1.27059684123084e-08,1.30251081954553e-08,1.33513450422783e-08, 1.36848153205621e-08,1.40256575773216e-08,1.43740125658383e-08,1.4730023272917e-08,1.50938349463643e-08,1.54655951226894e-08,1.58454536550270e-08,1.62335627412835e-08,1.66300769525061e-08,1.70351532614767e-08, 1.74489510715286e-08,1.78716322455884e-08,1.83033611354434e-08,1.87443046112335e-08,1.91946320911693e-08,1.96545155714755e-08,2.01241296565618e-08,2.06036515894196e-08,2.10932612822459e-08,2.15931413472945e-08, 2.21034771279547e-08,2.26244567300582e-08,2.31562710534135e-08,2.36991138235691e-08,2.42531816238050e-08,2.48186739273532e-08,2.53957931298470e-08,2.59847445819999e-08,2.65857366225132e-08,2.71989806112139e-08, 2.78246909624218e-08,2.84630851785467e-08,2.91143838839157e-08,2.97788108588306e-08,3.04565930738547e-08,3.11479607243317e-08,3.18531472651331e-08,3.25723894456379e-08,3.33059273449409e-08,3.40540044072939e-08, 3.48168674777751e-08,3.55947668381907e-08,3.63879562432078e-08,3.71966929567155e-08,3.80212377884191e-08,3.88618551306638e-08,3.97188129954891e-08,4.05923830519141e-08,4.14828406634526e-08,4.23904649258594e-08, 4.33155387051058e-08,4.42583486755874e-08,4.52191853585589e-08,4.61983431608019e-08,4.71961204135203e-08,4.82128194114669e-08,4.92487464522988e-08,5.03042118761619e-08,5.13795301055049e-08,5.24750196851226e-08, 5.3591003322427e-08,5.47278079279478e-08,5.58857646560612e-08,5.70652089459448e-08,5.82664805627637e-08,5.94899236390807e-08,6.07358867164962e-08,6.20047227875135e-08,6.32967893376302e-08,6.46124483876583e-08, 6.59520665362684e-08,6.73160150027587e-08,6.87046696700516e-08,7.01184111279127e-08,7.15576247163964e-08,7.30227005695139e-08,7.4514033659126e-08,7.60320238390586e-08,7.75770758894405e-08,7.91495995612648e-08, 8.07500096211711e-08,8.23787258964509e-08,8.40361733202705e-08,8.57227819771182e-08,8.74389871484697e-08,8.91852293586726e-08,9.09619544210513e-08,9.27696134842281e-08,9.46086630786645e-08,9.64795651634183e-08, 9.8382787173119e-08,1.00318802065156e-07,1.02288088367089e-07,1.04291130224262e-07,1.06328417447648e-07,1.08400445561889e-07,1.10507715853564e-07,1.12650735419665e-07,1.14830017216276e-07,1.17046080107480e-07, 1.19299448914460e-07,1.21590654464821e-07,1.23920233642116e-07,1.26288729435581e-07,1.28696690990078e-07,1.31144673656247e-07,1.33633239040858e-07,1.36162955057378e-07,1.38734395976732e-07,1.41348142478278e-07, 1.44004781700979e-07,1.46704907294775e-07,1.49449119472164e-07,1.52238025059980e-07,1.55072237551372e-07,1.57952377157975e-07,1.60879070862293e-07,1.63852952470264e-07,1.66874662664038e-07,1.69944849054933e-07, 1.73064166236603e-07,1.76233275838382e-07,1.7945284657884e-07,1.82723554319516e-07,1.86046082118850e-07,1.89421120286304e-07,1.92849366436669e-07,1.96331525544565e-07,1.99868309999124e-07,2.03460439658869e-07, 2.07108641906762e-07,2.10813651705451e-07,2.14576211652698e-07,2.18397072036982e-07,2.22276990893295e-07,2.26216734059105e-07,2.30217075230513e-07,2.34278796018579e-07,2.38402686005828e-07,2.42589542802934e-07, 2.46840172105574e-07,2.51155387751467e-07,2.55536011777578e-07,2.59982874477489e-07,2.64496814458961e-07,2.69078678701645e-07,2.73729322614967e-07,2.784496100962e-07,2.83240413588666e-07,2.88102614140146e-07, 2.93037101461417e-07,2.98044773984976e-07,3.03126538923921e-07,3.08283312330991e-07,3.13516019157759e-07,3.18825593314003e-07,3.24212977727214e-07,3.29679124402273e-07,3.35224994481284e-07,3.40851558303549e-07, 3.46559795465711e-07,3.52350694882039e-07,3.58225254844869e-07,3.64184483085189e-07,3.70229396833379e-07,3.7636102288009e-07,3.8258039763728e-07,3.88888567199382e-07,3.9528658740462e-07,4.01775523896475e-07, 4.08356452185280e-07,4.15030457709962e-07,4.21798635899914e-07,4.28662092237022e-07,4.35621942317802e-07,4.42679311915698e-07,4.49835337043493e-07,4.57091164015862e-07,4.64447949512056e-07,4.71906860638707e-07, 4.79469074992775e-07,4.87135780724606e-07,4.94908176601134e-07,5.02787472069184e-07,5.10774887318919e-07,5.18871653347406e-07,5.2707901202228e-07,5.35398216145558e-07,5.43830529517556e-07,5.52377227000914e-07, 5.61039594584751e-07,5.69818929448928e-07,5.78716540028424e-07,5.87733746077815e-07,5.96871878735879e-07,6.06132280590289e-07,6.1551630574244e-07,6.25025319872348e-07,6.3466070030368e-07,6.44423836068882e-07, 6.54316127974389e-07,6.6433898866597e-07,6.74493842694138e-07,6.84782126579676e-07,6.95205288879255e-07,7.05764790251147e-07,7.16462103521026e-07,7.27298713747879e-07,7.38276118289976e-07,7.49395826870958e-07, 7.60659361645999e-07,7.72068257268064e-07,7.83624060954234e-07,7.95328332552134e-07,8.07182644606431e-07,8.19188582425424e-07,8.31347744147696e-07,8.43661740808862e-07,8.56132196408387e-07,8.68760747976468e-07, 8.8154904564101e-07,8.94498752694669e-07,9.07611545661937e-07,9.20889114366352e-07,9.34333161997722e-07,9.4794540517945e-07,9.61727574035914e-07,9.75681412259898e-07,9.89808677180112e-07,1.00411113982875e-06, 1.01859058500912e-06,1.03324881136332e-06,1.04808763144001e-06,1.06310887176215e-06,1.07831437289492e-06,1.09370598951357e-06,1.10928559047139e-06,1.12505505886775e-06,1.14101629211609e-06,1.15717120201207e-06, 1.17352171480169e-06,1.19006977124948e-06,1.20681732670676e-06,1.22376635117988e-06,1.24091882939853e-06,1.25827676088414e-06,1.27584216001821e-06,1.29361705611077e-06,1.31160349346884e-06,1.32980353146489e-06, 1.34821924460539e-06,1.36685272259938e-06,1.38570607042699e-06,1.40478140840812e-06,1.42408087227101e-06,1.44360661322096e-06,1.46336079800895e-06,1.48334560900041e-06,1.50356324424388e-06,1.52401591753977e-06, 1.54470585850918e-06,1.56563531266257e-06,1.58680654146862e-06,1.60822182242304e-06,1.62988344911732e-06,1.65179373130764e-06,1.67395499498362e-06,1.69636958243724e-06,1.71903985233162e-06,1.74196817976993e-06, 1.76515695636418e-06,1.78860859030415e-06,1.81232550642621e-06,1.83631014628217e-06,1.86056496820816e-06,1.88509244739347e-06,1.90989507594939e-06,1.93497536297806e-06,1.96033583464131e-06,1.98597903422950e-06, 2.01190752223027e-06,2.03812387639741e-06,2.06463069181962e-06,2.09143058098929e-06,2.11852617387128e-06,2.14592011797161e-06,2.17361507840624e-06,2.20161373796974e-06,2.22991879720399e-06,2.25853297446684e-06, 2.28745900600074e-06,2.31669964600136e-06,2.34625766668614e-06,2.37613585836291e-06,2.40633702949840e-06,2.43686400678668e-06,2.46771963521771e-06,2.49890677814570e-06,2.53042831735759e-06,2.56228715314132e-06, 2.59448620435425e-06,2.62702840849136e-06,2.65991672175357e-06,2.69315411911591e-06,2.7267435943957e-06,2.76068816032066e-06,2.79499084859701e-06,2.82965470997746e-06,2.86468281432925e-06,2.90007825070205e-06, 2.93584412739585e-06,2.97198357202880e-06,3.00849973160499e-06,3.0453957725822e-06,3.08267488093952e-06,3.12034026224505e-06,3.15839514172337e-06,3.19684276432311e-06,3.23568639478440e-06,3.27492931770617e-06, 3.31457483761356e-06,3.35462627902512e-06,3.39508698652003e-06,3.43596032480523e-06,3.47724967878244e-06,3.51895845361518e-06,3.56109007479571e-06,3.6036479882118e-06,3.64663566021364e-06,3.69005657768044e-06, 3.73391424808704e-06,3.77821219957059e-06,3.82295398099691e-06,3.86814316202696e-06,3.91378333318311e-06,3.95987810591544e-06,4.00643111266785e-06,4.05344600694417e-06,4.10092646337414e-06,4.14887617777932e-06, 4.19729886723892e-06,4.24619827015551e-06,4.29557814632076e-06,4.34544227698088e-06,4.39579446490215e-06,4.44663853443629e-06,4.49797833158577e-06,4.54981772406895e-06,4.60216060138523e-06,4.65501087488e-06, 4.70837247780961e-06,4.76224936540608e-06,4.81664551494195e-06,4.8715649257947e-06,4.92701161951142e-06,4.98298963987315e-06,5.03950305295916e-06,5.09655594721117e-06,5.15415243349744e-06,5.21229664517674e-06, 5.27099273816224e-06,5.33024489098529e-06,5.39005730485902e-06,5.45043420374197e-06,5.51137983440146e-06,5.57289846647691e-06,5.63499439254312e-06,5.6976719281733e-06,5.76093541200205e-06,5.82478920578825e-06, 5.88923769447779e-06,5.95428528626622e-06,6.0199364126612e-06,6.08619552854492e-06,6.1530671122364e-06,6.22055566555354e-06,6.28866571387525e-06,6.35740180620323e-06,6.42676851522385e-06,6.49677043736965e-06, 6.56741219288102e-06,6.63869842586747e-06,6.71063380436894e-06,6.78322302041687e-06,6.85647079009528e-06,6.93038185360155e-06,7.00496097530724e-06,7.08021294381857e-06,7.15614257203704e-06,7.23275469721958e-06, 7.3100541810389e-06,7.38804590964344e-06,7.46673479371735e-06,7.54612576854023e-06,7.62622379404677e-06,7.70703385488625e-06,7.78856096048196e-06,7.8708101450903e-06,7.95378646785992e-06,8.03749501289063e-06, 8.1219408892922e-06,8.20712923124302e-06,8.29306519804846e-06,8.37975397419941e-06,8.46720076943026e-06,8.5554108187772e-06,8.6443893826358e-06,8.73414174681913e-06,8.824673222615e-06,8.91598914684358e-06, 9.00809488191472e-06,9.10099581588505e-06,9.19469736251488e-06,9.28920496132516e-06,9.38452407765401e-06,9.48066020271344e-06,9.57761885364548e-06,9.67540557357852e-06,9.7740259316833e-06,9.87348552322885e-06, 9.97378996963817e-06,1.00749449185437e-05,1.01769560438430e-05,1.02798290457537e-05,1.03835696508686e-05,1.04881836122107e-05,1.05936767092881e-05,1.07000547481482e-05,1.08073235614324e-05,1.09154890084301e-05, 1.10245569751331e-05,1.11345333742895e-05,1.12454241454570e-05,1.13572352550571e-05,1.14699726964279e-05,1.15836424898779e-05,1.16982506827387e-05,1.18138033494180e-05,1.19303065914525e-05,1.20477665375602e-05, 1.21661893436927e-05,1.22855811930879e-05,1.24059482963215e-05,1.25272968913591e-05,1.26496332436081e-05,1.27729636459687e-05,1.28972944188856e-05,1.30226319103990e-05,1.31489824961957e-05,1.32763525796599e-05, 1.34047485919235e-05,1.35341769919172e-05,1.36646442664198e-05,1.37961569301093e-05,1.39287215256121e-05,1.40623446235531e-05,1.41970328226048e-05,1.43327927495372e-05,1.44696310592666e-05,1.46075544349046e-05, 1.47465695878072e-05,1.48866832576231e-05,1.50279022123420e-05,1.51702332483436e-05,1.53136831904447e-05,1.54582588919477e-05,1.56039672346882e-05,1.57508151290823e-05,1.58988095141739e-05,1.60479573576822e-05, 1.61982656560484e-05,1.63497414344822e-05,1.65023917470088e-05,1.66562236765151e-05,1.68112443347956e-05,1.69674608625988e-05,1.7124880429673e-05,1.72835102348114e-05,1.74433575058981e-05,1.76044294999531e-05, 1.77667335031769e-05,1.79302768309964e-05,1.80950668281082e-05,1.82611108685243e-05,1.84284163556154e-05,1.85969907221554e-05,1.87668414303656e-05,1.89379759719574e-05,1.91104018681767e-05,1.92841266698468e-05, 1.94591579574115e-05,1.96355033409780e-05,1.98131704603595e-05,1.99921669851178e-05,2.01725006146058e-05,2.03541790780092e-05,2.05372101343884e-05,2.07216015727208e-05,2.09073612119415e-05,2.10944969009851e-05, 2.12830165188268e-05,2.1472927974523e-05,2.16642392072522e-05,2.18569581863558e-05,2.20510929113776e-05,2.22466514121047e-05,2.24436417486071e-05,2.26420720112773e-05,2.28419503208701e-05,2.30432848285413e-05, 2.32460837158876e-05,2.34503551949848e-05,2.36561075084270e-05,2.38633489293648e-05,2.40720877615435e-05,2.42823323393416e-05,2.44940910278080e-05,2.47073722227006e-05,2.49221843505229e-05,2.51385358685618e-05, 2.53564352649244e-05,2.55758910585750e-05,2.57969117993719e-05,2.60195060681032e-05,2.6243682476524e-05,2.64694496673917e-05,2.66968163145021e-05,2.69257911227253e-05,2.71563828280403e-05,2.73886001975714e-05, 2.76224520296221e-05,2.78579471537107e-05,2.80950944306045e-05,2.83339027523543e-05,2.85743810423286e-05,2.88165382552474e-05,2.90603833772167e-05,2.93059254257609e-05,2.95531734498572e-05,2.98021365299682e-05, 3.00528237780749e-05,3.030524433771e-05,3.05594073839893e-05,3.08153221236454e-05,3.10729977950587e-05,3.13324436682899e-05,3.15936690451119e-05,3.18566832590402e-05,3.21214956753658e-05,3.2388115691185e-05, 3.26565527354308e-05,3.29268162689035e-05,3.31989157843014e-05,3.34728608062505e-05,3.3748660891335e-05,3.40263256281271e-05,3.43058646372164e-05,3.45872875712399e-05,3.48706041149098e-05,3.51558239850448e-05, 3.54429569305964e-05,3.57320127326797e-05,3.60230012045999e-05,3.6315932191882e-05,3.66108155722978e-05,3.6907661255894e-05,3.72064791850198e-05,3.75072793343542e-05,3.7810071710933e-05,3.81148663541758e-05, 3.8421673335913e-05,3.87305027604118e-05,3.90413647644031e-05,3.93542695171067e-05,3.96692272202582e-05,3.99862481081344e-05,4.0305342447578e-05,4.0626520538024e-05,4.0949792711524e-05,4.12751693327712e-05, 4.16026607991255e-05,4.19322775406369e-05,4.2264030020071e-05,4.25979287329321e-05,4.29339842074872e-05,4.327220700479e-05,4.36126077187039e-05,4.39551969759251e-05,4.42999854360059e-05,4.46469837913774e-05, 4.49962027673721e-05,4.53476531222459e-05,4.57013456472009e-05,4.60572911664064e-05,4.64155005370218e-05,4.67759846492176e-05,4.7138754426196e-05,4.75038208242135e-05,4.78711948326003e-05,4.82408874737824e-05, 4.8612909803301e-05,4.89872729098332e-05,4.93639879152126e-05,4.97430659744481e-05,5.01245182757446e-05,5.05083560405221e-05,5.08945905234345e-05,5.12832330123897e-05,5.16742948285673e-05,5.20677873264384e-05, 5.24637218937832e-05,5.28621099517091e-05,5.326296295467e-05,5.36662923904825e-05,5.40721097803452e-05,5.44804266788545e-05,5.4891254674023e-05,5.53046053872961e-05,5.57204904735686e-05,5.6138921621202e-05, 5.65599105520402e-05,5.6983469021426e-05,5.74096088182172e-05,5.78383417648024e-05,5.82696797171161e-05,5.87036345646553e-05,5.91402182304931e-05,5.9579442671295e-05,6.00213198773334e-05,6.04658618725013e-05, 6.09130807143284e-05,6.13629884939934e-05,6.18155973363396e-05,6.22709193998879e-05,6.27289668768499e-05,6.31897519931429e-05,6.36532870084012e-05,6.41195842159908e-05,6.45886559430207e-05,6.50605145503567e-05, 6.55351724326329e-05,6.60126420182647e-05,6.649293576946e-05,6.6976066182232e-05,6.74620457864094e-05,6.79508871456496e-05,6.8442602857448e-05,6.89372055531505e-05,6.94347078979637e-05,6.99351225909655e-05, 7.04384623651158e-05,7.09447399872663e-05,7.14539682581711e-05,7.19661600124959e-05,7.24813281188282e-05,7.29994854796865e-05,7.35206450315294e-05,7.4044819744765e-05,7.457202262376e-05,7.5102266706847e-05, 7.56355650663347e-05,7.61719308085153e-05,7.67113770736725e-05,7.72539170360901e-05,7.77995639040586e-05,7.83483309198839e-05,7.89002313598937e-05,7.9455278534445e-05,8.00134857879316e-05,8.05748664987896e-05, 8.11394340795049e-05,8.17072019766195e-05,8.2278183670737e-05,8.28523926765297e-05,8.34298425427432e-05,8.40105468522032e-05,8.45945192218198e-05,8.51817733025933e-05,8.57723227796194e-05,8.63661813720933e-05, 8.69633628333159e-05,8.75638809506963e-05,8.81677495457577e-05,8.87749824741403e-05,8.9385593625606e-05,8.9999596924043e-05,9.0617006327466e-05,9.12378358280242e-05,9.18620994520006e-05,9.2489811259817e-05, 9.31209853460367e-05,9.37556358393658e-05,9.43937769026576e-05,9.50354227329131e-05,9.56805875612842e-05,9.63292856530753e-05,9.69815313077443e-05,9.76373388589058e-05,9.82967226743302e-05,9.89596971559468e-05, 9.9626276739844e-05,0.000100296475896270,0.000100970309129633,0.000101647790978503,0.000102328936015612,0.000103013758847851,0.000103702274116274,0.000104394496496096,0.000105090440696692,0.000105790121461597, 0.000106493553568505,0.000107200751829269,0.000107911731089896,0.000108626506230553,0.000109345092165558,0.000110067503843383,0.000110793756246649,0.000111523864392126,0.000112257843330732,0.000112995708147526, 0.000113737473961711,0.000114483155926627,0.00011523276922975,0.000115986329092689,0.000116743850771182,0.000117505349555094,0.000118270840768410,0.000119040339769236,0.000119813861949792,0.000120591422736407, 0.000121373037589518,0.000122158722003663,0.000122948491507478,0.000123742361663692,0.000124540348069118,0.000125342466354655,0.000126148732185277,0.000126959161260031,0.000127773769312029,0.000128592572108444, 0.000129415585450502,0.000130242825173478,0.000131074307146688,0.000131910047273486,0.000132750061491250,0.000133594365771385,0.000134442976119307,0.000135295908574443,0.000136153179210219,0.000137014804134054, 0.000137880799487354,0.000138751181445501,0.000139625966217849,0.000140505170047712,0.00014138880921236,0.000142276900023005,0.000143169458824799,0.00014406650199682,0.000144968045952066,0.000145874107137443, 0.000146784702033762,0.000147699847155721,0.000148619559051904,0.000149543854304764,0.000150472749530618,0.000151406261379637,0.000152344406535833,0.000153287201717049,0.000154234663674952,0.000155186809195019, 0.000156143655096528,0.000157105218232545,0.000158071515489915,0.000159042563789253,0.000160018380084926,0.000160998981365048,0.000161984384651463,0.000162974606999740,0.000163969665499152,0.000164969577272673, 0.000165974359476959,0.000166984029302341,0.000167998603972806,0.000169018100745990,0.000170042536913163,0.000171071929799215,0.000172106296762646,0.000173145655195548,0.000174190022523597,0.000175239416206033, 0.000176293853735652,0.000177353352638792,0.000178417930475312,0.000179487604838588,0.00018056239335549,0.000181642313686372,0.000182727383525057,0.00018381762059882,0.000184913042668377,0.000186013667527867, 0.000187119513004838,0.000188230596960230,0.000189346937288361,0.000190468551916914,0.000191595458806916,0.000192727675952724,0.000193865221382013,0.000195008113155755,0.000196156369368203,0.000197310008146877, 0.000198469047652548,0.000199633506079217,0.000200803401654103,0.000201978752637623,0.000203159577323375,0.000204345894038123,0.000205537721141779,0.000206735077027383,0.000207937980121087,0.000209146448882139, 0.000210360501802864,0.000211580157408642,0.000212805434257898,0.000214036350942076,0.000215272926085624,0.000216515178345976,0.000217763126413533,0.000219016789011641,0.000220276184896578,0.000221541332857530, 0.000222812251716573,0.000224088960328655,0.000225371477581576,0.000226659822395969,0.000227954013725276,0.000229254070555736,0.000230560011906358,0.000231871856828904,0.000233189624407869,0.000234513333760461, 0.000235843004036577,0.000237178654418789,0.000238520304122316,0.000239867972395009,0.000241221678517326,0.000242581441802315,0.000243947281595587,0.000245319217275301,0.000246697268252140,0.000248081453969287, 0.000249471793902409,0.000250868307559628,0.000252271014481505,0.000253679934241017,0.000255095086443533,0.000256516490726791,0.000257944166760879,0.000259378134248211,0.000260818412923503,0.000262265022553753, 0.000263717982938215,0.000265177313908379,0.000266643035327947,0.000268115167092808,0.000269593729131017,0.000271078741402772,0.000272570223900388,0.000274068196648275,0.000275572679702915,0.000277083693152837, 0.000278601257118592,0.000280125391752733,0.000281656117239783,0.000283193453796222,0.000284737421670454,0.000286288041142781,0.000287845332525391,0.000289409316162316,0.00029098001242942,0.000292557441734372, 0.000294141624516613,0.000295732581247343,0.000297330332429485,0.000298934898597668,0.000300546300318194,0.000302164558189019,0.000303789692839723,0.000305421724931488,0.000307060675157067,0.000308706564240764, 0.000310359412938404,0.000312019242037305,0.00031368607235626,0.0003153599247455,0.000317040820086677,0.000318728779292829,0.000320423823308362,0.000322125973109014,0.000323835249701838,0.000325551674125166, 0.000327275267448587,0.000329006050772919,0.000330744045230183,0.00033248927198357,0.000334241752227424,0.000336001507187201,0.000337768558119455,0.000339542926311799,0.000341324633082885,0.000343113699782372, 0.000344910147790899,0.000346713998520056,0.000348525273412361,0.000350343993941221,0.000352170181610917,0.000354003857956563,0.000355845044544086,0.000357693762970196,0.00035955003486235,0.000361413881878735, 0.000363285325708230,0.000365164388070381,0.00036705109071537,0.000368945455423987,0.000370847504007602,0.000372757258308131,0.000374674740198012,0.000376599971580173,0.000378532974388000,0.000380473770585315, 0.000382422382166334,0.000384378831155651,0.000386343139608197,0.000388315329609215,0.000390295423274229,0.000392283442749014,0.000394279410209567,0.000396283347862071,0.000398295277942874,0.00040031522271845, 0.000402343204485371,0.000404379245570279,0.000406423368329851,0.000408475595150772,0.000410535948449702,0.000412604450673243,0.000414681124297913,0.000416765991830112,0.000418859075806088,0.000420960398791912, 0.000423069983383439,0.000425187852206283,0.000427314027915784,0.000429448533196972,0.000431591390764544,0.000433742623362819,0.000435902253765721,0.000438070304776738,0.000440246799228890,0.000442431759984702, 0.000444625209936166,0.000446827172004713,0.000449037669141181,0.000451256724325777,0.000453484360568051,0.000455720600906861,0.00045796546841034,0.000460218986175863,0.000462481177330017,0.000464752065028564, 0.000467031672456409,0.000469320022827574,0.000471617139385155,0.000473923045401293,0.000476237764177143,0.00047856131904284,0.000480893733357461,0.000483235030509,0.000485585233914324,0.000487944367019151, 0.00049031245329801,0.000492689516254206,0.00049507557941979,0.000497470666355525,0.000499874800650848,0.000502288005923844,0.000504710305821204,0.000507141724018195,0.000509582284218625,0.00051203201015481, 0.00051449092558754,0.000516959054306042,0.000519436420127948,0.000521923046899261,0.000524418958494318,0.000526924178815761,0.000529438731794495,0.000531962641389659,0.000534495931588588,0.000537038626406781, 0.000539590749887867,0.000542152326103563,0.00054472337915365,0.00054730393316593,0.00054989401229619,0.000552493640728177,0.000555102842673551,0.00055772164237186,0.000560350064090492,0.000562988132124654, 0.000565635870797332,0.000568293304459246,0.000570960457488829,0.000573637354292183,0.000576324019303044,0.000579020476982751,0.000581726751820202,0.00058444286833183,0.000587168851061555,0.000589904724580756, 0.000592650513488235,0.000595406242410175,0.000598171936000112,0.000600947618938894,0.000603733315934644,0.00060652905172273,0.000609334851065719,0.000612150738753354,0.000614976739602502,0.000617812878457136, 0.00062065918018828,0.000623515669693984,0.000626382371899289,0.00062925931175618,0.000632146514243559,0.000635044004367208,0.000637951807159743,0.000640869947680591,0.000643798451015943,0.000646737342278717, 0.000649686646608534,0.000652646389171661,0.000655616595160994,0.000658597289796007,0.00066158849832272,0.000664590246013668,0.000667602558167847,0.000670625460110699,0.000673658977194059,0.000676703134796119, 0.000679757958321402,0.000682823473200712,0.000685899704891101,0.000688986678875836,0.000692084420664355,0.000695192955792236,0.00069831230982115,0.000701442508338836,0.000704583576959055,0.000707735541321554, 0.000710898427092027,0.000714072259962083,0.000717257065649202,0.000720452869896701,0.000723659698473693,0.000726877577175055,0.000730106531821382,0.000733346588258955,0.000736597772359706,0.000739860110021166, 0.000743133627166447,0.000746418349744188,0.000749714303728523,0.000753021515119044,0.000756340009940759,0.000759669814244061,0.000763010954104677,0.000766363455623648,0.000769727344927274,0.000773102648167082, 0.000776489391519791,0.000779887601187269,0.000783297303396498,0.000786718524399532,0.000790151290473462,0.000793595627920374,0.000797051563067314,0.000800519122266248,0.000803998331894025,0.000807489218352333, 0.000810991808067669,0.00081450612749129,0.000818032203099183,0.000821570061392027,0.000825119728895145,0.000828681232158473,0.000832254597756519,0.000835839852288322,0.000839437022377421,0.000843046134671804, 0.000846667215843881,0.000850300292590436,0.000853945391632595,0.000857602539715783,0.000861271763609681,0.000864953090108202,0.00086864654602943,0.000872352158215605,0.000876069953533063,0.000879799958872207, 0.000883542201147472,0.000887296707297272,0.000891063504283977,0.00089484261909386,0.00089863407873707,0.000902437910247581,0.000906254140683163,0.000910082797125334,0.000913923906679328,0.000917777496474048, 0.000921643593662037,0.000925522225419433,0.00092941341894592,0.000933317201464713,0.000937233600222488,0.00094116264248937,0.000945104355558875,0.000949058766747882,0.000953025903396584,0.000957005792868459, 0.00096099846255022,0.000965003939851783,0.000969022252206224,0.000973053427069738,0.000977097491921603,0.000981154474264143,0.000985224401622678,0.000989307301545495,0.000993403201603803,0.000997512129391691, 0.00100163411252610,0.00100576917864676,0.00100991735541618,0.00101407867051960,0.00101825315166492,0.00102244082658270,0.00102664172302611,0.00103085586877087,0.00103508329161524,0.00103932401937997, 0.00104357807990823,0.00104784550106563,0.00105212631074012,0.00105642053684199,0.00106072820730382,0.00106504935008042,0.00106938399314882,0.00107373216450822,0.00107809389217993,0.00108246920420738, 0.00108685812865600,0.00109126069361328,0.00109567692718863,0.00110010685751343,0.00110455051274091,0.00110900792104616,0.0011134791106261,0.00111796410969939,0.00112246294650642,0.00112697564930929, 0.00113150224639172,0.00113604276605906,0.00114059723663821,0.00114516568647760,0.00114974814394716,0.00115434463743826,0.00115895519536368,0.00116357984615756,0.00116821861827537,0.00117287154019387, 0.00117753864041107,0.00118221994744618,0.00118691548983958,0.00119162529615278,0.00119634939496837,0.00120108781489000,0.00120584058454230,0.00121060773257089,0.00121538928764232,0.00122018527844400, 0.00122499573368421,0.00122982068209204,0.00123466015241731,0.0012395141734306,0.00124438277392317,0.00124926598270692,0.00125416382861434,0.00125907634049852,0.00126400354723305,0.00126894547771202, 0.00127390216084993,0.00127887362558173,0.00128385990086272,0.0012888610156685,0.00129387699899499,0.00129890787985832,0.00130395368729486,0.00130901445036112,0.00131409019813374,0.00131918095970943, 0.00132428676420497,0.00132940764075712,0.00133454361852261,0.00133969472667811,0.00134486099442014,0.00135004245096509,0.00135523912554914,0.00136045104742823,0.00136567824587804,0.00137092075019392, 0.00137617858969084,0.00138145179370342,0.0013867403915858,0.00139204441271166,0.00139736388647417,0.00140269884228592,0.00140804930957891,0.00141341531780451,0.00141879689643339,0.00142419407495554, 0.00142960688288015,0.00143503534973563,0.00144047950506955,0.00144593937844860,0.00145141499945855,0.00145690639770421,0.0014624136028094,0.00146793664441688,0.00147347555218835,0.00147903035580438, 0.00148460108496439,0.00149018776938659,0.00149579043880796,0.00150140912298419,0.00150704385168966,0.00151269465471739,0.00151836156187899,0.00152404460300465,0.00152974380794306,0.00153545920656140, 0.0015411908287453,0.00154693870439877,0.00155270286344421,0.00155848333582229,0.00156428015149204,0.00157009334043064,0.00157592293263355,0.00158176895811435,0.00158763144690475,0.00159351042905454, 0.00159940593463155,0.00160531799372162,0.00161124663642855,0.00161719189287405,0.00162315379319774,0.00162913236755705,0.00163512764612724,0.00164113965910132,0.00164716843669001,0.00165321400912175, 0.00165927640664259,0.00166535565951621,0.00167145179802383,0.00167756485246420,0.00168369485315358,0.00168984183042564,0.00169600581463148,0.00170218683613956,0.00170838492533567,0.00171460011262287, 0.00172083242842149,0.00172708190316905,0.00173334856732024,0.0017396324513469,0.00174593358573793,0.00175225200099929,0.00175858772765396,0.00176494079624187,0.00177131123731990,0.00177769908146182, 0.00178410435925824,0.00179052710131658,0.00179696733826106,0.00180342510073259,0.00180990041938882,0.00181639332490402,0.00182290384796909,0.00182943201929151,0.00183597786959529,0.00184254142962093, 0.00184912273012541,0.00185572180188211,0.00186233867568079,0.00186897338232755,0.00187562595264481,0.00188229641747123,0.0018889848076617,0.00189569115408729,0.00190241548763522,0.00190915783920881, 0.00191591823972744,0.00192269672012653,0.00192949331135749,0.00193630804438765,0.00194314095020029,0.00194999205979452,0.00195686140418532,0.00196374901440342,0.00197065492149535,0.00197757915652331, 0.0019845217505652,0.00199148273471456,0.00199846214008051,0.00200545999778774,0.00201247633897645,0.00201951119480235,0.00202656459643654,0.00203363657506557,0.00204072716189133,0.00204783638813105, 0.00205496428501723,0.00206211088379763,0.00206927621573522,0.00207646031210813,0.00208366320420963,0.00209088492334808,0.00209812550084690,0.00210538496804452,0.00211266335629436,0.00211996069696474, 0.00212727702143893,0.00213461236111503,0.00214196674740598,0.00214934021173949,0.00215673278555802,0.00216414450031876,0.00217157538749353,0.00217902547856881,0.00218649480504567,0.00219398339843970, 0.00220149129028107,0.00220901851211437,0.00221656509549865,0.00222413107200736,0.00223171647322833,0.00223932133076367,0.00224694567622983,0.00225458954125747,0.00226225295749147,0.00226993595659089, 0.00227763857022891,0.00228536083009283,0.00229310276788397,0.00230086441531769,0.00230864580412334,0.00231644696604421,0.00232426793283748,0.00233210873627421,0.00233996940813929,0.0023478499802314, 0.00235575048436297,0.00236367095236015,0.00237161141606277,0.00237957190732430,0.0023875524580118,0.00239555310000591,0.0024035738652008,0.00241161478550412,0.00241967589283696,0.00242775721913386, 0.0024358587963427,0.00244398065642472,0.00245212283135445,0.0024602853531197,0.00246846825372149,0.00247667156517403,0.00248489531950469,0.00249313954875395,0.00250140428497538,0.00250968956023555, 0.00251799540661409,0.00252632185620354,0.00253466894110939,0.00254303669345003,0.00255142514535669,0.00255983432897342,0.00256826427645705,0.00257671501997715,0.00258518659171598,0.00259367902386848, 0.00260219234864224,0.00261072659825740,0.00261928180494668,0.00262785800095534,0.00263645521854107,0.00264507348997405,0.00265371284753684,0.0026623733235244,0.00267105495024400,0.0026797577600152, 0.00268848178516986,0.00269722705805202,0.00270599361101793,0.002714781476436,0.00272359068668672,0.00273242127416270,0.00274127327126854,0.0027501467104209,0.00275904162404836,0.00276795804459146, 0.00277689600450262,0.00278585553624613,0.00279483667229807,0.00280383944514636,0.00281286388729061,0.00282191003124218,0.00283097790952408,0.002840067554671,0.00284917899922919,0.00285831227575649, 0.00286746741682226,0.00287664445500736,0.0028858434229041,0.00289506435311624,0.00290430727825888,0.00291357223095852,0.00292285924385293,0.00293216834959120,0.00294149958083362,0.00295085297025171, 0.00296022855052816,0.00296962635435679,0.00297904641444252,0.00298848876350133,0.00299795343426023,0.00300744045945722,0.00301694987184126,0.00302648170417221,0.00303603598922084,0.00304561275976876, 0.00305521204860837,0.00306483388854290,0.00307447831238625,0.00308414535296310,0.00309383504310875,0.00310354741566914,0.00311328250350084,0.00312304033947095,0.00313282095645712,0.00314262438734748, 0.00315245066504064,0.00316229982244561,0.0031721718924818,0.00318206690807897,0.00319198490217719,0.00320192590772683,0.00321188995768849,0.00322187708503299,0.00323188732274133,0.00324192070380464, 0.00325197726122418,0.00326205702801126,0.00327216003718724,0.00328228632178347,0.00329243591484129,0.00330260884941196,0.00331280515855662,0.00332302487534630,0.00333326803286185,0.00334353466419391, 0.00335382480244289,0.00336413848071892,0.00337447573214180,0.00338483658984103,0.00339522108695569,0.00340562925663445,0.00341606113203557,0.00342651674632678,0.00343699613268533,0.0034474993242979, 0.00345802635436058,0.00346857725607886,0.00347915206266756,0.00348975080735083,0.00350037352336207,0.00351102024394395,0.00352169100234834,0.00353238583183627,0.00354310476567796,0.00355384783715266, 0.00356461507954877,0.00357540652616369,0.00358622221030383,0.00359706216528457,0.00360792642443025,0.00361881502107409,0.00362972798855817,0.00364066536023345,0.00365162716945966,0.0036626134496053, 0.00367362423404762,0.00368465955617257,0.00369571944937474,0.00370680394705740,0.00371791308263241,0.00372904688952016,0.00374020540114963,0.00375138865095824,0.00376259667239195,0.00377382949890511, 0.00378508716396045,0.00379636970102913,0.00380767714359059,0.00381900952513261,0.00383036687915121,0.00384174923915065,0.00385315663864343,0.00386458911115015,0.00387604669019962,0.0038875294093287, 0.00389903730208234,0.00391057040201354,0.00392212874268327,0.00393371235766051,0.00394532128052215,0.00395695554485302,0.00396861518424578,0.00398030023230096,0.0039920107226269,0.0040037466888397, 0.00401550816456321,0.004027295183429,0.00403910777907629,0.00405094598515198,0.00406280983531057,0.00407469936321413,0.00408661460253228,0.00409855558694218,0.00411052235012843,0.00412251492578314, 0.00413453334760579,0.00414657764930326,0.00415864786458980,0.00417074402718696,0.0041828661708236,0.00419501432923582,0.00420718853616698,0.0042193888253676,0.00423161523059536,0.00424386778561511, 0.00425614652419876,0.00426845148012530,0.00428078268718077,0.00429314017915819,0.00430552398985757,0.00431793415308585,0.00433037070265688,0.00434283367239138,0.00435532309611694,0.00436783900766793, 0.00438038144088554,0.00439295042961767,0.00440554600771897,0.00441816820905077,0.00443081706748106,0.00444349261688443,0.00445619489114209,0.00446892392414182,0.00448167974977791,0.00449446240195116, 0.00450727191456882,0.00452010832154463,0.00453297165679869,0.00454586195425747,0.00455877924785383,0.0045717235715269,0.00458469495922212,0.00459769344489118,0.00461071906249197,0.0046237718459886, 0.00463685182935132,0.00464995904655651,0.00466309353158667,0.00467625531843033,0.0046894444410821,0.00470266093354255,0.00471590482981828,0.00472917616392179,0.00474247496987151,0.00475580128169176, 0.00476915513341271,0.00478253655907035,0.00479594559270648,0.00480938226836864,0.00482284662011011,0.00483633868198989,0.00484985848807264,0.00486340607242865,0.00487698146913383,0.00489058471226969, 0.00490421583592327,0.00491787487418715,0.00493156186115937,0.00494527683094348,0.00495901981764842,0.00497279085538856,0.00498658997828363,0.0050004172204587,0.00501427261604416,0.00502815619917568, 0.0050420680039942,0.00505600806464585,0.00506997641528199,0.00508397309005913,0.0050979981231389,0.00511205154868806,0.00512613340087843,0.00514024371388691,0.00515438252189537,0.00516854985909071, 0.00518274575966475,0.00519697025781426,0.00521122338774093,0.00522550518365129,0.00523981567975674,0.00525415491027346,0.00526852290942244,0.00528291971142942,0.00529734535052487,0.00531179986094394, 0.00532628327692646,0.00534079563271692,0.00535533696256438,0.0053699073007225,0.00538450668144951,0.00539913513900814,0.00541379270766562,0.00542847942169366,0.0054431953153684,0.00545794042297038, 0.00547271477878455,0.00548751841710017,0.00550235137221086,0.00551721367841453,0.00553210537001333,0.0055470264813137,0.00556197704662623,0.00557695710026575,0.00559196667655119,0.00560700580980564, 0.0056220745343563,0.0056371728845344,0.00565230089467523,0.00566745859911812,0.00568264603220633,0.00569786322828712,0.00571311022171167,0.00572838704683507,0.00574369373801625,0.005759030329618, 0.00577439685600698,0.00578979335155356,0.00580521985063192,0.00582067638761997,0.0058361629968993,0.00585167971285523,0.00586722656987668,0.00588280360235623,0.00589841084469004,0.00591404833127783, 0.0059297160965229,0.00594541417483203,0.0059611426006155,0.00597690140828704,0.00599269063226382,0.00600851030696643,0.0060243604668188,0.00604024114624827,0.00605615237968543,0.00607209420156422, 0.00608806664632186,0.00610406974839876,0.00612010354223858,0.00613616806228817,0.00615226334299754,0.0061683894188198,0.00618454632421124,0.00620073409363117,0.00621695276154197,0.00623320236240906, 0.00624948293070086,0.00626579450088874,0.00628213710744704,0.00629851078485304,0.00631491556758688,0.00633135149013158,0.006347818586973,0.00636431689259982,0.00638084644150353,0.00639740726817833, 0.00641399940712121,0.00643062289283183,0.00644727775981256,0.00646396404256842,0.00648068177560707,0.00649743099343876,0.00651421173057632,0.00653102402153514,0.00654786790083315,0.00656474340299076, 0.00658165056253087,0.00659858941397882,0.00661555999186236,0.00663256233071168,0.00664959646505931,0.00666666242944013,0.00668376025839135,0.00670088998645245,0.00671805164816522,0.00673524527807366, 0.00675247091072401,0.00676972858066469,0.00678701832244627,0.00680434017062151,0.00682169415974524,0.0068390803243744,0.00685649869906801,0.00687394931838709,0.0068914322168947,0.0069089474291559, 0.00692649498973771,0.00694407493320906,0.00696168729414082,0.00697933210710577,0.00699700940667849,0.00701471922743548,0.00703246160395498,0.00705023657081706,0.00706804416260355,0.00708588441389801, 0.00710375735928572,0.00712166303335365,0.00713960147069044,0.00715757270588635,0.00717557677353328,0.0071936137082247,0.00721168354455566,0.00722978631712276,0.00724792206052408,0.00726609080935923, 0.0072842925982293,0.00730252746173677,0.00732079543448557,0.00733909655108103,0.00735743084612985,0.00737579835424007,0.00739419911002105,0.00741263314808344,0.00743110050303919,0.00744960120950148, 0.00746813530208471,0.00748670281540451,0.00750530378407765,0.00752393824272209,0.00754260622595689,0.00756130776840223,0.00758004290467937,0.00759881166941063,0.00761761409721935,0.0076364502227299, 0.00765532008056761,0.00767422370535882,0.00769316113173077,0.00771213239431161,0.00773113752773042,0.00775017656661709,0.00776924954560244,0.00778835649931801,0.00780749746239622,0.00782667246947024, 0.00784588155517397,0.00786512475414204,0.00788440210100984,0.00790371363041336,0.0079230593769893,0.00794243937537498,0.00796185366020835,0.0079813022661279,0.00800078522777274,0.0080203025797825, 0.00803985435679733,0.00805944059345786,0.00807906132440523,0.00809871658428101,0.00811840640772716,0.00813813082938613,0.00815788988390069,0.00817768360591396,0.00819751203006945,0.00821737519101095, 0.00823727312338253,0.00825720586182857,0.00827717344099364,0.00829717589552258,0.00831721326006042,0.00833728556925236,0.00835739285774375,0.0083775351601801,0.00839771251120701,0.00841792494547016, 0.00843817249761532,0.00845845520228829,0.0084787730941349,0.008499126207801,0.00851951457793236,0.00853993823917476,0.00856039722617387,0.00858089157357532,0.00860142131602462,0.0086219864881671, 0.00864258712464797,0.00866322326011227,0.00868389492920485,0.00870460216657032,0.00872534500685304,0.00874612348469711,0.00876693763474637,0.00878778749164434,0.0088086730900342,0.0088295944645588, 0.00885055164986058,0.00887154468058164,0.00889257359136361,0.00891363841684775,0.0089347391916748,0.00895587595048504,0.00897704872791826,0.00899825755861372,0.00901950247721013,0.00904078351834568, 0.0090621007166579,0.00908345410678375,0.00910484372335958,0.00912626960102107,0.00914773177440325,0.0091692302781404,0.00919076514686617,0.0092123364152134,0.00923394411781425,0.00925558828930004, 0.00927726896430132,0.00929898617744782,0.00932073996336845,0.00934253035669122,0.00936435739204332,0.00938622110405098,0.00940812152733954,0.0094300586965334,0.00945203264625597,0.00947404341112974, 0.0094960910257761,0.00951817552481552,0.00954029694286734,0.0095624553145499,0.0095846506744804,0.009606883057275,0.00962915249754864,0.0096514590299152,0.00967380268898738,0.00969618350937665, 0.0097186015256933,0.0097410567725464,0.00976354928454375,0.00978607909629192,0.00980864624239616,0.00983125075746041,0.0098538926760873,0.00987657203287813,0.00989928886243277,0.00992204319934977, 0.00994483507822624,0.00996766453365788,0.0099905316002389,0.0100134363125621,0.0100363787052188,0.0100593588127987,0.0100823766698901,0.0101054323110797,0.0101285257709527,0.0101516570840927, 0.0101748262850815,0.0101980334084995,0.0102212784889254,0.0102445615609363,0.0102678826591075,0.0102912418180127,0.0103146390722237,0.0103380744563107,0.0103615480048422,0.0103850597523849, 0.0104086097335036,0.0104321979827613,0.0104558245347192,0.0104794894239367,0.0105031926849713,0.0105269343523785,0.0105507144607120,0.0105745330445235,0.0105983901383628,0.0106222857767778, 0.0106462199943142,0.0106701928255160,0.0106942043049248,0.0107182544670805,0.0107423433465208,0.0107664709777812,0.0107906373953953,0.0108148426338944,0.0108390867278079,0.0108633697116628, 0.0108876916199841,0.0109120524872944,0.0109364523481143,0.0109608912369622,0.0109853691883541,0.0110098862368036,0.0110344424168224,0.0110590377629196,0.0110836723096020,0.0111083460913743, 0.0111330591427386,0.0111578114981947,0.0111826031922399,0.0112074342593694,0.0112323047340755,0.0112572146508486,0.0112821640441761,0.0113071529485433,0.0113321813984328,0.0113572494283247, 0.0113823570726968,0.0114075043660239,0.0114326913427786,0.0114579180374307,0.0114831844844476,0.0115084907182939,0.0115338367734315,0.0115592226843198,0.0115846484854155,0.0116101142111725, 0.0116356198960421,0.0116611655744727,0.0116867512809102,0.0117123770497976,0.0117380429155749,0.0117637489126798,0.0117894950755466,0.0118152814386073,0.0118411080362906,0.0118669749030227, 0.0118928820732265,0.0119188295813225,0.0119448174617278,0.0119708457488569,0.0119969144771211,0.0120230236809289,0.0120491733946857,0.0120753636527939,0.0121015944896531,0.0121278659396594, 0.0121541780372063,0.0121805308166839,0.0122069243124795,0.0122333585589769,0.0122598335905571,0.0122863494415979,0.0123129061464739,0.0123395037395564,0.0123661422552138,0.0123928217278109, 0.0124195421917096,0.0124463036812685,0.0124731062308427,0.0124999498747844,0.0125268346474421,0.0125537605831614,0.0125807277162843,0.0126077360811495,0.0126347857120924,0.0126618766434450, 0.0126890089095359,0.0127161825446902,0.0127433975832298,0.0127706540594730,0.0127979520077348,0.0128252914623263,0.0128526724575556,0.0128800950277272,0.0129075592071418,0.0129350650300968, 0.0129626125308861,0.0129902017437998,0.0130178327031247,0.0130455054431436,0.0130732199981362,0.0131009764023781,0.0131287746901415,0.0131566148956949,0.0131844970533031,0.0132124211972272, 0.0132403873617246,0.0132683955810489,0.0132964458894501,0.0133245383211743,0.013352672910464,0.0133808496915577,0.0134090686986902,0.0134373299660926,0.0134656335279919,0.0134939794186114, 0.0135223676721706,0.0135507983228850,0.0135792714049662,0.0136077869526220,0.0136363450000562,0.0136649455814686,0.0136935887310551,0.0137222744830077,0.0137510028715142,0.0137797739307587, 0.0138085876949211,0.0138374441981771,0.0138663434746987,0.0138952855586536,0.0139242704842056,0.0139532982855141,0.0139823689967346,0.0140114826520186,0.0140406392855133,0.0140698389313617, 0.0140990816237027,0.0141283673966711,0.0141576962843972,0.0141870683210076,0.0142164835406242,0.0142459419773648,0.0142754436653431,0.0143049886386683,0.0143345769314454,0.0143642085777753, 0.0143938836117542,0.0144236020674743,0.0144533639790233,0.0144831693804845,0.0145130183059370,0.0145429107894554,0.0145728468651098,0.0146028265669661,0.0146328499290856,0.0146629169855253, 0.0146930277703376,0.0147231823175705,0.0147533806612674,0.0147836228354675,0.0148139088742052,0.0148442388115103,0.0148746126814084,0.0149050305179203,0.0149354923550623,0.014965998226846, 0.0149965481672786,0.0150271422103625,0.0150577803900956,0.0150884627404712,0.0151191892954776,0.015149960089099,0.0151807751553144,0.0152116345280984,0.0152425382414207,0.0152734863292465, 0.0153044788255361,0.015335515764245,0.0153665971793241,0.0153977231047195,0.0154288935743723,0.0154601086222191,0.0154913682821914,0.0155226725882161,0.0155540215742151,0.0155854152741055, 0.0156168537217994,0.0156483369512044,0.0156798649962226,0.0157114378907518,0.0157430556686845,0.0157747183639083,0.0158064260103059,0.0158381786417551,0.0158699762921286,0.0159018189952942, 0.0159337067851146,0.0159656396954476,0.0159976177601459,0.0160296410130571,0.0160617094880240,0.0160938232188839,0.0161259822394694,0.0161581865836077,0.0161904362851212,0.0162227313778270, 0.0162550718955371,0.0162874578720583,0.0163198893411923,0.0163523663367356,0.0163848888924795,0.0164174570422101,0.0164500708197085,0.0164827302587501,0.0165154353931056,0.0165481862565401, 0.0165809828828135,0.0166138253056805,0.0166467135588906,0.0166796476761876,0.0167126276913106,0.0167456536379928,0.0167787255499623,0.0168118434609420,0.0168450074046493,0.0168782174147961, 0.0169114735250891,0.0169447757692295,0.0169781241809131,0.0170115187938304,0.0170449596416663,0.0170784467581004,0.0171119801768066,0.0171455599314536,0.0171791860557045,0.0172128585832169, 0.0172465775476429,0.0172803429826290,0.0173141549218163,0.0173480133988403,0.0173819184473310,0.0174158701009128,0.0174498683932044,0.0174839133578190,0.0175180050283642,0.0175521434384421, 0.017586328621649,0.0176205606115756,0.0176548394418069,0.0176891651459225,0.0177235377574960,0.0177579573100954,0.0177924238372832,0.0178269373726159,0.0178614979496445,0.0178961056019141, 0.0179307603629643,0.0179654622663287,0.0180002113455352,0.0180350076341059,0.0180698511655573,0.0181047419733998,0.0181396800911382,0.0181746655522715,0.0182096983902926,0.0182447786386889, 0.0182799063309417,0.0183150815005265,0.0183503041809129,0.0183855744055647,0.0184208922079397,0.0184562576214898,0.0184916706796610,0.0185271314158934,0.0185626398636210,0.0185981960562721, 0.0186338000272688,0.0186694518100273,0.0187051514379577,0.0187408989444644,0.0187766943629455,0.0188125377267931,0.0188484290693934,0.0188843684241265,0.0189203558243664,0.0189563913034811, 0.0189924748948324,0.0190286066317762,0.0190647865476621,0.0191010146758337,0.0191372910496285,0.0191736157023778,0.0192099886674067,0.0192464099780344,0.0192828796675736,0.0193193977693311, 0.0193559643166074,0.0193925793426968,0.0194292428808873,0.0194659549644609,0.0195027156266932,0.0195395249008537,0.0195763828202055,0.0196132894180055,0.0196502447275044,0.0196872487819466, 0.0197243016145700,0.0197614032586066,0.0197985537472817,0.0198357531138145,0.0198730013914178,0.0199102986132982,0.0199476448126556,0.0199850400226839,0.0200224842765705,0.0200599776074963, 0.0200975200486361,0.0201351116331579,0.0201727523942236,0.0202104423649886,0.0202481815786018,0.0202859700682058,0.0203238078669366,0.0203616950079237,0.0203996315242904,0.0204376174491532, 0.0204756528156223,0.0205137376568014,0.0205518720057875,0.0205900558956714,0.0206282893595370,0.0206665724304620,0.0207049051415173,0.0207432875257674,0.0207817196162702,0.0208202014460768, 0.0208587330482321,0.0208973144557741,0.0209359457017344,0.0209746268191378,0.0210133578410025,0.0210521388003402,0.0210909697301558,0.0211298506634477,0.0211687816332074,0.0212077626724201, 0.0212467938140639,0.0212858750911105,0.0213250065365247,0.0213641881832648,0.0214034200642822,0.0214427022125217,0.0214820346609212,0.0215214174424120,0.0215608505899185,0.0216003341363585, 0.0216398681146429,0.021679452557676,0.0217190874983550,0.0217587729695705,0.0217985090042062,0.0218382956351392,0.0218781328952395,0.0219180208173702,0.0219579594343880,0.0219979487791421, 0.0220379888844755,0.0220780797832239,0.0221182215082162,0.0221584140922743,0.0221986575682136,0.0222389519688420,0.0222792973269611,0.0223196936753650,0.0223601410468413,0.0224006394741705, 0.0224411889901259,0.0224817896274744,0.0225224414189753,0.0225631443973813,0.0226038985954380,0.022644704045884,0.0226855607814510,0.0227264688348636,0.0227674282388393,0.0228084390260886, 0.0228495012293151,0.0228906148812152,0.0229317800144782,0.0229729966617866,0.0230142648558156,0.0230555846292332,0.0230969560147007,0.0231383790448719,0.0231798537523936,0.0232213801699058, 0.0232629583300410,0.0233045882654246,0.023346270008675,0.0233880035924034,0.0234297890492138,0.0234716264117032,0.0235135157124611,0.0235554569840701,0.0235974502591055,0.0236394955701355, 0.0236815929497209,0.0237237424304154,0.0237659440447656,0.0238081978253105,0.0238505038045823,0.0238928620151057,0.0239352724893982,0.0239777352599700,0.0240202503593241,0.0240628178199561, 0.0241054376743545,0.0241481099550004,0.0241908346943675,0.0242336119249223,0.0242764416791240,0.0243193239894244,0.0243622588882681,0.0244052464080921,0.0244482865813264,0.0244913794403933, 0.0245345250177079,0.0245777233456781,0.024620974456704,0.0246642783831787,0.0247076351574876,0.0247510448120089,0.0247945073791135,0.0248380228911646,0.024881591380518,0.0249252128795222, 0.0249688874205183,0.0250126150358398,0.0250563957578128,0.0251002296187560,0.0251441166509806,0.0251880568867901,0.025232050358481,0.0252760970983418,0.0253201971386538,0.0253643505116906, 0.0254085572497186,0.0254528173849963,0.0254971309497749,0.0255414979762980,0.0255859184968017,0.0256303925435144,0.0256749201486573,0.0257195013444434,0.0257641361630788,0.0258088246367616, 0.0258535667976825,0.0258983626780246,0.0259432123099633,0.0259881157256664,0.0260330729572941,0.026078084036999,0.0261231489969262,0.026168267869213,0.026213440685989,0.0262586674793763, 0.0263039482814893,0.0263492831244346,0.0263946720403114,0.0264401150612111,0.0264856122192172,0.0265311635464058,0.0265767690748452,0.0266224288365960,0.0266681428637111,0.0267139111882356, 0.0267597338422069,0.0268056108576548,0.0268515422666013,0.0268975281010604,0.0269435683930388,0.0269896631745351,0.0270358124775403,0.0270820163340375,0.0271282747760021,0.0271745878354017, 0.0272209555441961,0.0272673779343374,0.0273138550377698,0.0273603868864296,0.0274069735122455,0.0274536149471382,0.0275003112230205,0.0275470623717978,0.0275938684253670,0.0276407294156178, 0.0276876453744315,0.0277346163336819,0.0277816423252348,0.0278287233809481,0.0278758595326718,0.0279230508122482,0.0279702972515115,0.0280175988822880,0.0280649557363963,0.0281123678456468, 0.0281598352418423,0.0282073579567773,0.0282549360222388,0.0283025694700055,0.0283502583318483,0.0283980026395301,0.028445802424806,0.028493657719423,0.0285415685551201,0.0285895349636284, 0.028637556976671,0.0286856346259631,0.0287337679432117,0.028781956960116,0.0288302017083671,0.0288785022196482,0.0289268585256343,0.0289752706579925,0.0290237386483819,0.0290722625284534, 0.0291208423298501,0.0291694780842069,0.0292181698231507,0.0292669175783002,0.0293157213812663,0.0293645812636517,0.029413497257051,0.0294624693930507,0.0295114977032293,0.0295605822191571, 0.0296097229723965,0.0296589199945015,0.0297081733170183,0.0297574829714848,0.0298068489894309,0.0298562714023781,0.0299057502418402,0.0299552855393225,0.0300048773263224,0.0300545256343289, 0.0301042304948232,0.0301539919392780,0.0302038099991580,0.0302536847059197,0.0303036160910115,0.0303536041858734,0.0304036490219376,0.0304537506306277,0.0305039090433594,0.0305541242915400, 0.0306043964065687,0.0306547254198364,0.0307051113627260,0.030755554266612,0.0308060541628606,0.0308566110828299,0.0309072250578697,0.0309578961193217,0.0310086242985192,0.0310594096267872, 0.0311102521354426,0.0311611518557939,0.0312121088191414,0.0312631230567772,0.031314194599985,0.0313653234800402,0.0314165097282101,0.0314677533757534,0.0315190544539208,0.0315704129939545, 0.0316218290270884,0.0316733025845483,0.0317248336975514,0.0317764223973068,0.0318280687150151,0.0318797726818686,0.0319315343290514,0.031983353687739,0.0320352307890989,0.0320871656642899, 0.0321391583444626,0.0321912088607594,0.0322433172443139,0.0322954835262518,0.0323477077376901,0.0323999899097375,0.0324523300734944,0.0325047282600527,0.0325571845004960,0.0326096988258995, 0.0326622712673297,0.0327149018558452,0.0327675906224958,0.032820337598323,0.0328731428143599,0.0329260063016311,0.0329789280911527,0.0330319082139327,0.0330849467009703,0.0331380435832563, 0.0331911988917732,0.033244412657495,0.0332976849113872,0.0333510156844068,0.0334044050075023,0.0334578529116139,0.0335113594276732,0.0335649245866033,0.0336185484193188,0.0336722309567260, 0.0337259722297224,0.0337797722691971,0.0338336311060309,0.0338875487710960,0.0339415252952558,0.0339955607093655,0.0340496550442716,0.0341038083308123,0.0341580205998171,0.0342122918821069, 0.0342666222084941,0.0343210116097827,0.0343754601167681,0.0344299677602369,0.0344845345709675,0.0345391605797296,0.0345938458172842,0.0346485903143839,0.0347033941017727,0.0347582572101859, 0.0348131796703504,0.0348681615129844,0.0349232027687976,0.0349783034684909,0.0350334636427569,0.0350886833222793,0.0351439625377334,0.0351993013197858,0.0352546996990946,0.0353101577063092, 0.0353656753720702,0.0354212527270099,0.0354768898017517,0.0355325866269107,0.0355883432330929,0.035644159650896,0.035700035910909,0.0357559720437121,0.0358119680798771,0.0358680240499669, 0.0359241399845359,0.0359803159141297,0.0360365518692854,0.0360928478805313,0.036149203978387,0.0362056201933635,0.0362620965559632,0.0363186330966795,0.0363752298459976,0.0364318868343935, 0.0364886040923348,0.0365453816502804,0.0366022195386802,0.0366591177879759,0.0367160764285999,0.0367730954909764,0.0368301750055207,0.0368873150026391,0.0369445155127296,0.0370017765661812, 0.0370590981933742,0.0371164804246804,0.0371739232904625,0.0372314268210747,0.0372889910468624,0.0373466159981621,0.0374043017053017,0.0374620481986005,0.0375198555083686,0.0375777236649077, 0.0376356526985106,0.0376936426394614,0.0377516935180353,0.0378098053644988,0.0378679782091097,0.0379262120821167,0.0379845070137602,0.0380428630342713,0.0381012801738728,0.0381597584627782, 0.0382182979311926,0.0382768986093121,0.038335560527324,0.0383942837154069,0.0384530682037304,0.0385119140224554,0.0385708212017340,0.0386297897717096,0.0386888197625163,0.0387479112042800, 0.0388070641271172,0.0388662785611359,0.0389255545364352,0.0389848920831053,0.0390442912312276,0.0391037520108747,0.0391632744521101,0.0392228585849887,0.0392825044395567,0.0393422120458508, 0.0394019814338995,0.0394618126337222,0.0395217056753293,0.0395816605887224,0.0396416774038943,0.0397017561508289,0.0397618968595012,0.0398220995598772,0.0398823642819142,0.0399426910555606, 0.0400030799107556,0.04006353087743,0.0401240439855053,0.0401846192648942,0.0402452567455007,0.0403059564572195,0.0403667184299366,0.0404275426935293,0.0404884292778658,0.0405493782128051, 0.0406103895281976,0.0406714632538849,0.0407325994196993,0.0407937980554644,0.0408550591909949,0.0409163828560963,0.0409777690805655,0.0410392178941903,0.0411007293267495,0.0411623034080130, 0.0412239401677419,0.041285639635688,0.0413474018415945,0.0414092268151955,0.0414711145862161,0.0415330651843724,0.0415950786393718,0.0416571549809123,0.0417192942386834,0.0417814964423654, 0.0418437616216295,0.0419060898061380,0.0419684810255445,0.0420309353094932,0.0420934526876196,0.0421560331895501,0.042218676844902,0.0422813836832839,0.0423441537342952,0.0424069870275263, 0.0424698835925587,0.0425328434589648,0.042595866656308,0.0426589532141428,0.0427221031620146,0.0427853165294597,0.0428485933460057,0.0429119336411708,0.0429753374444645,0.043038804785387, 0.0431023356934297,0.0431659301980749,0.0432295883287958,0.0432933101150567,0.0433570955863128,0.0434209447720102,0.0434848577015861,0.0435488344044685,0.0436128749100766,0.0436769792478203, 0.0437411474471005,0.0438053795373093,0.0438696755478294,0.0439340355080347,0.04399845944729,0.0440629473949509,0.0441274993803641,0.0441921154328671,0.0442567955817885,0.0443215398564478, 0.0443863482861553,0.0444512209002123,0.0445161577279112,0.0445811587985351,0.0446462241413581,0.0447113537856452,0.0447765477606523,0.0448418060956264,0.0449071288198053,0.0449725159624176, 0.0450379675526829,0.0451034836198118,0.0451690641930056,0.0452347093014568,0.0453004189743487,0.0453661932408552,0.0454320321301416,0.0454979356713637,0.0455639038936684,0.0456299368261935, 0.0456960344980676,0.0457621969384102,0.0458284241763317,0.0458947162409335,0.0459610731613079,0.0460274949665377,0.0460939816856971,0.0461605333478509,0.0462271499820547,0.0462938316173554, 0.0463605782827901,0.0464273900073875,0.0464942668201667,0.0465612087501378,0.0466282158263018,0.0466952880776505,0.0467624255331666,0.0468296282218237,0.0468968961725863,0.0469642294144096, 0.0470316279762398,0.047099091887014,0.0471666211756599,0.0472342158710963,0.0473018760022328,0.0473696015979698,0.0474373926871986,0.0475052492988013,0.0475731714616509,0.0476411592046112, 0.0477092125565369,0.0477773315462735,0.0478455162026573,0.0479137665545155,0.0479820826306661,0.0480504644599181,0.048118912071071,0.0481874254929154,0.0482560047542327,0.0483246498837950, 0.0483933609103654,0.0484621378626978,0.0485309807695367,0.0485998896596176,0.048668864561667,0.0487379055044019,0.0488070125165303,0.048876185626751,0.0489454248637535,0.0490147302562182, 0.0490841018328165,0.0491535396222103,0.0492230436530525,0.0492926139539867,0.0493622505536475,0.0494319534806601,0.0495017227636406,0.0495715584311958,0.0496414605119235,0.0497114290344122, 0.0497814640272412,0.0498515655189805,0.0499217335381911,0.0499919681134247,0.0500622692732238,0.0501326370461217,0.0502030714606424,0.0502735725453009,0.0503441403286027,0.0504147748390445, 0.0504854761051134,0.0505562441552874,0.0506270790180355,0.0506979807218171,0.0507689492950828,0.0508399847662737,0.0509110871638218,0.0509822565161497,0.0510534928516712,0.0511247961987904, 0.0511961665859025,0.0512676040413933,0.0513391085936394,0.0514106802710084,0.0514823191018584,0.0515540251145383,0.0516257983373879,0.0516976387987377,0.0517695465269091,0.0518415215502139, 0.0519135638969552,0.0519856735954264,0.0520578506739119,0.0521300951606869,0.0522024070840172,0.0522747864721595,0.0523472333533612,0.0524197477558604,0.0524923297078861,0.0525649792376581, 0.0526376963733868,0.0527104811432732,0.0527833335755096,0.0528562536982786,0.0529292415397535,0.0530022971280989,0.0530754204914696,0.0531486116580113,0.0532218706558605,0.0532951975131445, 0.0533685922579815,0.05344205491848,0.0535155855227394,0.0535891840988503,0.0536628506748935,0.0537365852789408,0.0538103879390546,0.0538842586832883,0.0539581975396858,0.0540322045362818, 0.0541062797011018,0.054180423062162,0.0542546346474694,0.0543289144850217,0.0544032626028073,0.0544776790288055,0.054552163790986,0.0546267169173095,0.0547013384357276,0.0547760283741823, 0.0548507867606065,0.0549256136229238,0.0550005089890485,0.0550754728868857,0.0551505053443312,0.0552256063892717,0.0553007760495843,0.055376014353137,0.0554513213277886,0.0555266970013887, 0.0556021414017774,0.0556776545567856,0.055753236494235,0.055828887241938,0.0559046068276977,0.0559803952793081,0.0560562526245535,0.0561321788912095,0.056208174107042,0.0562842382998078, 0.0563603714972543,0.0564365737271199,0.0565128450171334,0.0565891853950144,0.0566655948884735,0.0567420735252117,0.0568186213329208,0.0568952383392834,0.0569719245719728,0.057048680058653, 0.0571255048269787,0.0572023989045954,0.0572793623191393,0.0573563950982371,0.0574334972695066,0.0575106688605561,0.0575879098989846,0.0576652204123819,0.0577426004283285,0.0578200499743955, 0.057897569078145,0.0579751577671296,0.0580528160688926,0.0581305440109681,0.0582083416208809,0.0582862089261465,0.0583641459542712,0.0584421527327519,0.0585202292890762,0.0585983756507226, 0.0586765918451602,0.0587548778998488,0.0588332338422387,0.0589116596997714,0.0589901554998788,0.0590687212699836,0.0591473570374991,0.0592260628298294,0.0593048386743693,0.0593836845985045, 0.0594626006296112,0.0595415867950561,0.0596206431221972,0.0596997696383827,0.0597789663709516,0.059858233347234,0.0599375705945503,0.0600169781402116,0.0600964560115201,0.0601760042357682, 0.0602556228402394,0.0603353118522079,0.0604150712989383,0.0604949012076862,0.0605748016056979,0.0606547725202101,0.0607348139784507,0.060814926007638,0.0608951086349811,0.0609753618876797, 0.0610556857929242,0.0611360803778961,0.0612165456697671,0.0612970816957,0.061377688482848,0.0614583660583552,0.0615391144493565,0.0616199336829772,0.0617008237863336,0.0617817847865326, 0.0618628167106718,0.0619439195858395,0.0620250934391149,0.0621063382975676,0.0621876541882581,0.0622690411382377,0.0623504991745483,0.0624320283242223,0.0625136286142833,0.0625953000717451, 0.0626770427236126,0.0627588565968813,0.0628407417185372,0.0629226981155574,0.0630047258149094,0.0630868248435516,0.0631689952284329,0.0632512369964932,0.0633335501746629,0.0634159347898631, 0.0634983908690059,0.0635809184389938,0.0636635175267201,0.0637461881590689,0.063828930362915,0.0639117441651237,0.0639946295925514,0.064077586672045,0.0641606154304419,0.0642437158945706, 0.0643268880912503,0.0644101320472907,0.064493447789492,0.0645768353446459,0.0646602947395339,0.064743826000929,0.0648274291555945,0.0649111042302843,0.0649948512517433,0.0650786702467072, 0.065162561241902,0.065246524264045,0.0653305593398436,0.0654146664959963,0.0654988457591923,0.0655830971561114,0.0656674207134242,0.065751816457792,0.0658362844158669,0.0659208246142916, 0.0660054370796996,0.0660901218387151,0.066174878917953,0.066259708344019,0.0663446101435094,0.0664295843430114,0.0665146309691028,0.0665997500483522,0.0666849416073188,0.0667702056725526, 0.0668555422705945,0.0669409514279759,0.0670264331712189,0.0671119875268365,0.0671976145213325,0.067283314181201,0.0673690865329275,0.0674549316029875,0.0675408494178478,0.0676268400039657, 0.0677129033877892,0.0677990395957571,0.0678852486542989,0.0679715305898349,0.068057885428776,0.0681443131975241,0.0682308139224717,0.0683173876300017,0.0684040343464883,0.0684907540982961, 0.0685775469117805,0.0686644128132878,0.0687513518291546,0.0688383639857088,0.0689254493092687,0.0690126078261433,0.0690998395626327,0.0691871445450273,0.0692745227996086,0.0693619743526485, 0.06944949923041,0.0695370974591468,0.069624769065103,0.0697125140745136,0.0698003325136047,0.0698882244085928,0.0699761897856851,0.0700642286710798,0.0701523410909655,0.0702405270715221, 0.0703287866389196,0.0704171198193194,0.070505526638873,0.0705940071237233,0.0706825613000034,0.0707711891938375,0.0708598908313403,0.0709486662386176,0.0710375154417658,0.0711264384668717, 0.0712154353400135,0.0713045060872596,0.0713936507346696,0.0714828693082935,0.0715721618341723,0.0716615283383377,0.071750968846812,0.0718404833856087,0.0719300719807315,0.0720197346581752, 0.0721094714439254,0.0721992823639583,0.072289167444241,0.0723791267107312,0.0724691601893775,0.0725592679061194,0.0726494498868869,0.0727397061576009,0.0728300367441731,0.0729204416725059, 0.0730109209684925,0.0731014746580171,0.0731921027669542,0.0732828053211695,0.0733735823465192,0.0734644338688505,0.0735553599140013,0.0736463605078002,0.0737374356760667,0.0738285854446109, 0.073919809839234,0.0740111088857277,0.0741024826098746,0.0741939310374482,0.0742854541942123,0.0743770521059222,0.0744687247983233,0.0745604722971526,0.074652294628137,0.0747441918169948, 0.0748361638894347,0.0749282108711567,0.0750203327878511,0.0751125296651992,0.075204801528873,0.0752971484045356,0.0753895703178405,0.0754820672944323,0.0755746393599462,0.0756672865400082, 0.0757600088602353,0.0758528063462352,0.0759456790236064,0.0760386269179381,0.0761316500548105,0.0762247484597944,0.0763179221584516,0.0764111711763347,0.076504495538987,0.0765978952719426, 0.0766913704007264,0.0767849209508544,0.0768785469478331,0.0769722484171599,0.077066025384323,0.0771598778748014,0.0772538059140651,0.0773478095275748,0.077441888740782,0.0775360435791289, 0.0776302740680488,0.0777245802329656,0.0778189620992943,0.0779134196924403,0.0780079530378002,0.0781025621607612,0.0781972470867015,0.0782920078409901,0.0783868444489868,0.0784817569360421, 0.0785767453274976,0.0786718096486855,0.078766949924929,0.0788621661815421,0.0789574584438295,0.0790528267370871,0.079148271086601,0.079243791517649,0.079339388055499,0.0794350607254101, 0.0795308095526322,0.079626634562406,0.0797225357799632,0.079818513230526,0.0799145669393079,0.080010696931513,0.0801069032323362,0.0802031858669634,0.0802995448605713,0.0803959802383274, 0.0804924920253903,0.0805890802469092,0.0806857449280241,0.0807824860938662,0.0808793037695573,0.0809761979802101,0.0810731687509283,0.0811702161068063,0.0812673400729295,0.081364540674374, 0.081461817936207,0.0815591718834864,0.0816566025412612,0.0817541099345709,0.081851694088446,0.0819493550279084,0.08204709277797,0.0821449073636343,0.0822427988098952,0.0823407671417379, 0.0824388123841382,0.0825369345620629,0.0826351337004695,0.0827334098243068,0.082831762958514,0.0829301931280215,0.0830287003577506,0.0831272846726134,0.0832259460975128,0.0833246846573428, 0.0834235003769882,0.0835223932813248,0.083621363395219,0.0837204107435285,0.0838195353511016,0.0839187372427777,0.084018016443387,0.0841173729777505,0.0842168068706807,0.08431631814698, 0.0844159068314425,0.0845155729488531,0.0846153165239874,0.0847151375816121,0.0848150361464846,0.0849150122433536,0.0850150658969581,0.0851151971320287,0.0852154059732866,0.085315692445444, 0.0854160565732037,0.08551649838126,0.0856170178942977,0.0857176151369927,0.0858182901340118,0.0859190429100128,0.0860198734896444,0.0861207818975461,0.0862217681583485,0.0863228322966731, 0.0864239743371323,0.0865251943043295,0.086626492222859,0.0867278681173063,0.0868293220122473,0.0869308539322492,0.0870324639018703,0.0871341519456596,0.087235918088157,0.0873377623538937, 0.0874396847673915,0.0875416853531633,0.087643764135713,0.0877459211395354,0.0878481563891163,0.0879504699089324,0.0880528617234515,0.0881553318571322,0.0882578803344243,0.0883605071797681, 0.0884632124175955,0.088565996072329,0.088668858168382,0.0887717987301594,0.0888748177820563,0.0889779153484593,0.089081091453746,0.0891843461222846,0.0892876793784348,0.0893910912465469, 0.0894945817509623,0.0895981509160133,0.0897017987660236,0.0898055253253074,0.08990933061817,0.0900132146689078,0.0901171775018083,0.0902212191411498,0.0903253396112018,0.0904295389362245, 0.0905338171404694,0.0906381742481787,0.0907426102835861,0.090847125270916,0.0909517192343834,0.0910563921981953,0.0911611441865488,0.0912659752236323,0.0913708853336256,0.0914758745406991, 0.0915809428690142,0.0916860903427235,0.0917913169859706,0.0918966228228902,0.0920020078776077,0.09210747217424,0.0922130157368945,0.0923186385896703,0.092424340756657,0.0925301222619354, 0.0926359831295772,0.0927419233836454,0.092847943048194,0.0929540421472679,0.093060220704903,0.0931664787451264,0.0932728162919562,0.0933792333694018,0.0934857300014631,0.0935923062121314, 0.0936989620253893,0.0938056974652097,0.0939125125555575,0.0940194073203879,0.0941263817836476,0.0942334359692741,0.0943405699011962,0.0944477836033336,0.0945550770995972,0.0946624504138888, 0.0947699035701014,0.0948774365921192,0.094985049503817,0.0950927423290614,0.0952005150917095,0.0953083678156094,0.095416300524601,0.0955243132425147,0.095632405993172,0.0957405788003856, 0.0958488316879594,0.0959571646796884,0.0960655777993584,0.0961740710707467,0.0962826445176213,0.0963912981637415,0.0965000320328578,0.0966088461487117,0.0967177405350357,0.0968267152155536, 0.0969357702139802,0.0970449055540213,0.0971541212593742,0.097263417353727,0.0973727938607588,0.0974822508041402,0.0975917882075325,0.0977014060945885,0.097811104488952,0.0979208834142578, 0.098030742894132,0.0981406829521916,0.098250703612045,0.0983608048972916,0.0984709868315221,0.098581249438318,0.0986915927412521,0.0988020167638884,0.0989125215297821,0.0990231070624795, 0.099133773385518,0.099244520522426,0.0993553484967232,0.0994662573319206,0.0995772470515202,0.0996883176790151,0.0997994692378898,0.0999107017516195,0.100022015243671,0.100133409737502, 0.100244885256562,0.100356441824291,0.100468079464120,0.100579798199471,0.100691598053758,0.100803479050387,0.100915441212753,0.101027484564243,0.101139609128236,0.101251814928101, 0.101364101987199,0.101476470328882,0.101588919976494,0.101701450953367,0.101814063282829,0.101926756988195,0.102039532092774,0.102152388619865,0.102265326592757,0.102378346034733, 0.102491446969065,0.102604629419018,0.102717893407846,0.102831238958795,0.102944666095104,0.103058174840000,0.103171765216705,0.103285437248428,0.103399190958374,0.103513026369734, 0.103626943505695,0.103740942389432,0.103855023044113,0.103969185492896,0.104083429758931,0.104197755865359,0.104312163835312,0.104426653691914,0.104541225458279,0.104655879157515, 0.104770614812717,0.104885432446974,0.105000332083367,0.105115313744965,0.105230377454832,0.105345523236021,0.105460751111577,0.105576061104535,0.105691453237923,0.105806927534759, 0.105922484018054,0.106038122710808,0.106153843636014,0.106269646816656,0.106385532275707,0.106501500036135,0.106617550120897,0.106733682552942,0.106849897355209,0.106966194550631, 0.107082574162129,0.107199036212617,0.107315580725001,0.107432207722177,0.107548917227033,0.107665709262448,0.107782583851293,0.107899541016428,0.108016580780707,0.108133703166974, 0.108250908198065,0.108368195896807,0.108485566286017,0.108603019388506,0.108720555227075,0.108838173824514,0.108955875203608,0.109073659387132,0.109191526397852,0.109309476258524, 0.109427508991899,0.109545624620716,0.109663823167706,0.109782104655593,0.109900469107089,0.110018916544902,0.110137446991727,0.110256060470253,0.110374757003159,0.110493536613117, 0.110612399322787,0.110731345154824,0.110850374131873,0.11096948627657,0.111088681611542,0.111207960159409,0.111327321942781,0.111446766984259,0.111566295306436,0.111685906931898, 0.111805601883219,0.111925380182967,0.112045241853701,0.112165186917970,0.112285215398317,0.112405327317272,0.112525522697361,0.112645801561099,0.112766163930993,0.112886609829541, 0.113007139279233,0.113127752302550,0.113248448921964,0.113369229159939,0.113490093038930,0.113611040581385,0.11373207180974,0.113853186746426,0.113974385413863,0.114095667834464, 0.114217034030633,0.114338484024764,0.114460017839243,0.114581635496450,0.114703337018754,0.114825122428514,0.114946991748084,0.115068944999807,0.115190982206019,0.115313103389045, 0.115435308571204,0.115557597774806,0.115679971022150,0.11580242833553,0.115924969737229,0.116047595249523,0.116170304894677,0.116293098694951,0.116415976672593,0.116538938849846, 0.116661985248940,0.116785115892101,0.116908330801544,0.117031629999475,0.117155013508093,0.117278481349588,0.117402033546140,0.117525670119924,0.117649391093103,0.117773196487832, 0.117897086326260,0.118021060630525,0.118145119422756,0.118269262725076,0.118393490559598,0.118517802948427,0.118642199913659,0.118766681477380,0.118891247661672,0.119015898488603, 0.119140633980237,0.119265454158627,0.119390359045818,0.119515348663848,0.119640423034744,0.119765582180526,0.119890826123205,0.120016154884784,0.120141568487257,0.120267066952611, 0.120392650302823,0.120518318559861,0.120644071745686,0.12076990988225,0.120895832991496,0.121021841095361,0.121147934215769,0.121274112374639,0.121400375593881,0.121526723895397, 0.121653157301079,0.121779675832810,0.121906279512469,0.122032968361921,0.122159742403025,0.122286601657633,0.122413546147587,0.122540575894719,0.122667690920857,0.122794891247815, 0.122922176897404,0.123049547891422,0.123177004251662,0.123304545999906,0.123432173157930,0.123559885747499,0.123687683790373,0.123815567308299,0.123943536323020,0.124071590856268, 0.124199730929768,0.124327956565235,0.124456267784377,0.124584664608893,0.124713147060474,0.124841715160802,0.124970368931551,0.125099108394388,0.125227933570968,0.125356844482941, 0.125485841151947,0.125614923599618,0.125744091847579,0.125873345917444,0.126002685830820,0.126132111609307,0.126261623274494,0.126391220847962,0.126520904351287,0.126650673806032, 0.126780529233755,0.126910470656004,0.127040498094319,0.127170611570232,0.127300811105266,0.127431096720937,0.127561468438751,0.127691926280207,0.127822470266794,0.127953100419995, 0.128083816761283,0.128214619312123,0.128345508093971,0.128476483128277,0.128607544436480,0.128738692040012,0.128869925960296,0.129001246218749,0.129132652836775,0.129264145835775, 0.129395725237139,0.129527391062248,0.129659143332476,0.129790982069188,0.129922907293742,0.130054919027485,0.130187017291760,0.130319202107897,0.130451473497221,0.130583831481048, 0.130716276080684,0.130848807317429,0.130981425212573,0.131114129787400,0.131246921063183,0.131379799061187,0.131512763802672,0.131645815308887,0.131778953601072,0.131912178700460, 0.132045490628276,0.132178889405737,0.132312375054051,0.132445947594417,0.132579607048028,0.132713353436065,0.132847186779706,0.132981107100117,0.133115114418456,0.133249208755874, 0.133383390133513,0.133517658572507,0.133652014093982,0.133786456719056,0.133920986468837,0.134055603364427,0.134190307426919,0.134325098677398,0.134459977136939,0.134594942826611, 0.134729995767474,0.134865135980581,0.135000363486974,0.135135678307689,0.135271080463753,0.135406569976186,0.135542146865998,0.135677811154192,0.135813562861762,0.135949402009695, 0.136085328618968,0.136221342710552,0.136357444305408,0.136493633424490,0.136629910088744,0.136766274319106,0.136902726136506,0.137039265561864,0.137175892616093,0.137312607320098, 0.137449409694776,0.137586299761014,0.137723277539692,0.137860343051683,0.137997496317850,0.138134737359049,0.138272066196128,0.138409482849925,0.138546987341273,0.138684579690993, 0.138822259919902,0.138960028048806,0.139097884098503,0.139235828089785,0.139373860043434,0.139511979980223,0.139650187920920,0.139788483886282,0.139926867897060,0.140065339973995, 0.140203900137821,0.140342548409264,0.140481284809041,0.140620109357862,0.140759022076428,0.140898022985432,0.14103711210556,0.141176289457489,0.141315555061887,0.141454908939416, 0.141594351110728,0.141733881596468,0.141873500417274,0.142013207593772,0.142153003146585,0.142292887096324,0.142432859463594,0.142572920268991,0.142713069533104,0.142853307276512, 0.142993633519788,0.143134048283496,0.143274551588191,0.143415143454423,0.14355582390273,0.143696592953645,0.143837450627692,0.143978396945386,0.144119431927235,0.144260555593738, 0.144401767965389,0.14454306906267,0.144684458906057,0.144825937516017,0.144967504913010,0.145109161117489,0.145250906149895,0.145392740030666,0.145534662780227,0.145676674419, 0.145818774967395,0.145960964445817,0.146103242874659,0.146245610274311,0.146388066665151,0.146530612067552,0.146673246501876,0.146815969988479,0.146958782547709,0.147101684199905, 0.147244674965399,0.147387754864515,0.147530923917568,0.147674182144865,0.147817529566708,0.147960966203386,0.148104492075185,0.148248107202379,0.148391811605238,0.148535605304019, 0.148679488318976,0.148823460670353,0.148967522378385,0.149111673463301,0.149255913945321,0.149400243844656,0.149544663181511,0.149689171976084,0.149833770248560,0.149978458019122, 0.150123235307942,0.150268102135184,0.150413058521005,0.150558104485554,0.150703240048972,0.150848465231391,0.150993780052936,0.151139184533725,0.151284678693867,0.151430262553462, 0.151575936132605,0.151721699451381,0.151867552529867,0.152013495388133,0.152159528046241,0.152305650524244,0.152451862842189,0.152598165020113,0.152744557078048,0.152891039036014, 0.153037610914028,0.153184272732094,0.153331024510213,0.153477866268374,0.153624798026561,0.153771819804749,0.153918931622905,0.154066133500988,0.154213425458951,0.154360807516736, 0.154508279694279,0.154655842011509,0.154803494488346,0.154951237144701,0.155099070000479,0.155246993075577,0.155395006389884,0.155543109963281,0.155691303815639,0.155839587966826, 0.155987962436698,0.156136427245105,0.156284982411888,0.156433627956882,0.156582363899913,0.156731190260798,0.156880107059350,0.157029114315369,0.157178212048652,0.157327400278985, 0.157476679026148,0.157626048309912,0.157775508150041,0.15792505856629,0.158074699578408,0.158224431206136,0.158374253469205,0.158524166387341,0.158674169980261,0.158824264267673, 0.158974449269279,0.159124725004774,0.159275091493842,0.159425548756162,0.159576096811404,0.159726735679231,0.159877465379298,0.160028285931252,0.160179197354731,0.160330199669369, 0.160481292894788,0.160632477050605,0.160783752156428,0.160935118231857,0.161086575296486,0.161238123369900,0.161389762471676,0.161541492621383,0.161693313838585,0.161845226142834, 0.161997229553677,0.162149324090654,0.162301509773295,0.162453786621123,0.162606154653655,0.162758613890397,0.162911164350851,0.163063806054510,0.163216539020856,0.163369363269369, 0.163522278819516,0.163675285690761,0.163828383902557,0.16398157347435,0.164134854425579,0.164288226775675,0.164441690544061,0.164595245750153,0.164748892413359,0.164902630553079, 0.165056460188706,0.165210381339625,0.165364394025212,0.165518498264838,0.165672694077864,0.165826981483645,0.165981360501528,0.166135831150851,0.166290393450946,0.166445047421136, 0.166599793080737,0.166754630449059,0.166909559545401,0.167064580389057,0.167219692999312,0.167374897395444,0.167530193596724,0.167685581622414,0.167841061491769,0.167996633224036, 0.168152296838455,0.168308052354259,0.168463899790671,0.168619839166909,0.168775870502182,0.168931993815692,0.169088209126633,0.169244516454191,0.169400915817546,0.169557407235868, 0.169713990728321,0.169870666314063,0.170027434012239,0.170184293841993,0.170341245822458,0.170498289972759,0.170655426312014,0.170812654859334,0.170969975633823,0.171127388654575, 0.171284893940679,0.171442491511215,0.171600181385256,0.171757963581867,0.171915838120107,0.172073805019024,0.172231864297663,0.172390015975057,0.172548260070234,0.172706596602216, 0.172865025590013,0.173023547052630,0.173182161009067,0.173340867478311,0.173499666479346,0.173658558031145,0.173817542152678,0.173976618862903,0.174135788180772,0.174295050125231, 0.174454404715216,0.174613851969658,0.174773391907478,0.174933024547591,0.175092749908905,0.175252568010319,0.175412478870725,0.175572482509008,0.175732578944046,0.175892768194707, 0.176053050279855,0.176213425218344,0.176373893029021,0.176534453730727,0.176695107342293,0.176855853882544,0.177016693370298,0.177177625824365,0.177338651263548,0.17749976970664, 0.17766098117243,0.177822285679698,0.177983683247217,0.178145173893751,0.178306757638059,0.17846843449889,0.178630204494988,0.178792067645088,0.178954023967918,0.179116073482199, 0.179278216206643,0.179440452159957,0.179602781360838,0.179765203827977,0.179927719580059,0.180090328635758,0.180253031013743,0.180415826732676,0.180578715811211,0.180741698267993, 0.180904774121661,0.181067943390848,0.181231206094177,0.181394562250265,0.181558011877721,0.181721554995147,0.181885191621138,0.182048921774281,0.182212745473156,0.182376662736335, 0.182540673582383,0.182704778029858,0.182868976097310,0.183033267803282,0.18319765316631,0.183362132204921,0.183526704937637,0.18369137138297,0.183856131559428,0.184020985485508, 0.184185933179702,0.184350974660495,0.184516109946362,0.184681339055774,0.184846662007192,0.18501207881907,0.185177589509856,0.185343194097991,0.185508892601906,0.185674685040028, 0.185840571430773,0.186006551792553,0.186172626143772,0.186338794502824,0.186505056888099,0.186671413317979,0.186837863810836,0.187004408385039,0.187171047058946,0.187337779850911, 0.187504606779276,0.187671527862382,0.187838543118556,0.188005652566123,0.188172856223398,0.188340154108690,0.1885075462403,0.188675032636521,0.188842613315641,0.189010288295938, 0.189178057595685,0.189345921233146,0.189513879226578,0.189681931594233,0.189850078354353,0.190018319525173,0.190186655124923,0.190355085171823,0.190523609684087,0.190692228679922, 0.190860942177528,0.191029750195096,0.191198652750812,0.191367649862853,0.191536741549389,0.191705927828585,0.191875208718596,0.192044584237571,0.192214054403651,0.192383619234971, 0.192553278749657,0.192723032965831,0.192892881901604,0.193062825575082,0.193232864004363,0.193402997207539,0.193573225202692,0.193743548007901,0.193913965641234,0.194084478120753, 0.194255085464514,0.194425787690565,0.194596584816946,0.19476747686169,0.194938463842825,0.195109545778368,0.195280722686333,0.195451994584724,0.195623361491538,0.195794823424767, 0.195966380402392,0.196138032442391,0.196309779562733,0.196481621781378,0.196653559116283,0.196825591585394,0.196997719206651,0.197169941997989,0.197342259977332,0.197514673162600, 0.197687181571704,0.19785978522255,0.198032484133034,0.198205278321048,0.198378167804473,0.198551152601187,0.198724232729058,0.198897408205949,0.199070679049713,0.199244045278199, 0.199417506909247,0.199591063960691,0.199764716450356,0.199938464396062,0.200112307815621,0.200286246726838,0.20046028114751,0.200634411095429,0.200808636588379,0.200982957644136, 0.201157374280468,0.20133188651514,0.201506494365906,0.201681197850514,0.201855996986706,0.202030891792216,0.20220588228477,0.202380968482089,0.202556150401886,0.202731428061867, 0.202906801479729,0.203082270673166,0.203257835659861,0.203433496457493,0.203609253083732,0.203785105556241,0.203961053892677,0.204137098110689,0.204313238227920,0.204489474262005, 0.204665806230572,0.204842234151243,0.205018758041632,0.205195377919346,0.205372093801985,0.205548905707143,0.205725813652406,0.205902817655353,0.206079917733555,0.206257113904579, 0.206434406185982,0.206611794595316,0.206789279150124,0.206966859867944,0.207144536766305,0.207322309862732,0.207500179174739,0.207678144719837,0.207856206515526,0.208034364579304, 0.208212618928657,0.208390969581067,0.208569416554008,0.208747959864947,0.208926599531346,0.209105335570656,0.209284168000324,0.209463096837791,0.209642122100487,0.209821243805839, 0.210000461971266,0.210179776614178,0.210359187751980,0.210538695402071,0.210718299581840,0.210898000308672,0.211077797599944,0.211257691473024,0.211437681945277,0.211617769034059, 0.211797952756718,0.211978233130596,0.212158610173030,0.212339083901346,0.212519654332868,0.212700321484908,0.212881085374776,0.213061946019771,0.213242903437187,0.213423957644312, 0.213605108658424,0.213786356496798,0.213967701176699,0.214149142715387,0.214330681130114,0.214512316438126,0.214694048656661,0.214875877802951,0.215057803894220,0.215239826947688, 0.215421946980564,0.215604164010053,0.215786478053353,0.215968889127654,0.216151397250139,0.216334002437986,0.216516704708364,0.216699504078436,0.216882400565358,0.217065394186281, 0.217248484958345,0.217431672898688,0.217614958024437,0.217798340352715,0.217981819900637,0.218165396685311,0.218349070723838,0.218532842033313,0.218716710630824,0.218900676533452, 0.219084739758271,0.219268900322348,0.219453158242744,0.219637513536513,0.219821966220701,0.220006516312348,0.220191163828488,0.220375908786147,0.220560751202344,0.220745691094094, 0.220930728478401,0.221115863372264,0.221301095792677,0.221486425756625,0.221671853281087,0.221857378383035,0.222043001079435,0.222228721387244,0.222414539323414,0.222600454904891, 0.222786468148614,0.222972579071512,0.223158787690511,0.223345094022529,0.223531498084477,0.223717999893260,0.223904599465775,0.224091296818913,0.224278091969558,0.224464984934587, 0.224651975730872,0.224839064375276,0.225026250884656,0.225213535275862,0.225400917565740,0.225588397771124,0.225775975908847,0.22596365199573,0.226151426048591,0.226339298084241, 0.226527268119482,0.226715336171111,0.226903502255918,0.227091766390686,0.227280128592191,0.227468588877205,0.227657147262488,0.227845803764799,0.228034558400887,0.228223411187494, 0.228412362141357,0.228601411279206,0.228790558617763,0.228979804173745,0.229169147963862,0.229358590004816,0.229548130313303,0.229737768906014,0.22992750579963,0.230117341010829, 0.230307274556279,0.230497306452643,0.230687436716579,0.230877665364734,0.231067992413753,0.231258417880271,0.231448941780919,0.231639564132318,0.231830284951085,0.232021104253831, 0.232212022057157,0.232403038377661,0.232594153231932,0.232785366636553,0.2329766786081,0.233168089163144,0.233359598318248,0.233551206089968,0.233742912494855,0.233934717549451, 0.234126621270294,0.234318623673913,0.234510724776832,0.234702924595569,0.234895223146633,0.235087620446528,0.235280116511751,0.235472711358793,0.235665405004138,0.235858197464263, 0.236051088755639,0.23624407889473,0.236437167897993,0.236630355781880,0.236823642562835,0.237017028257296,0.237210512881695,0.237404096452455,0.237597778985995,0.237791560498727, 0.237985441007055,0.238179420527379,0.238373499076089,0.238567676669572,0.238761953324206,0.238956329056364,0.239150803882411,0.239345377818706,0.239540050881601,0.239734823087444, 0.239929694452573,0.240124664993323,0.240319734726017,0.240514903666978,0.240710171832518,0.240905539238944,0.241101005902558,0.241296571839651,0.241492237066513,0.241688001599422, 0.241883865454656,0.242079828648479,0.242275891197155,0.242472053116938,0.242668314424076,0.242864675134811,0.243061135265378,0.243257694832007,0.243454353850919,0.243651112338330, 0.243847970310450,0.244044927783481,0.244241984773620,0.244439141297058,0.244636397369976,0.244833753008553,0.245031208228958,0.245228763047356,0.245426417479905,0.245624171542755, 0.245822025252051,0.246019978623932,0.246218031674528,0.246416184419966,0.246614436876364,0.246812789059835,0.247011240986484,0.247209792672411,0.247408444133709,0.247607195386465, 0.247806046446759,0.248004997330665,0.248204048054249,0.248403198633574,0.248602449084693,0.248801799423654,0.2490012496665,0.249200799829265,0.249400449927979,0.249600199978662, 0.249800049997333,0.25 ); $k = scalar @t_stricts; $p_min = $t_stricts[0]; $p_max = $t_stricts[$k-1]; ############################################# for($i=0.01; $i<=0.5; $i+=0.0001) { push @t_liberals, $i; } for $i (0..$#t_stricts) { push @{ $deviates }, abs($t_strict - $t_stricts[$i]); } if( $method eq "TPM" && (($t_strict < $p_min) || ($p_max < $t_strict))) { printf STDERR "ERROR: parameter -t out of range, [%f]\n", $t_strict; printf STDERR " please choose a threshold in range [%.3e..%.3e]\n", $p_min, $p_max; exit(); } ############################################# ## find the minimizer (difference between the ## desired t_strict and possible values in the table) ## $dev_ord = &order_of_index( $deviates ); $thr_i = $dev_ord->[0]; $t_strict_fit = $t_stricts[$thr_i]; $t_liberal = $t_liberals[$thr_i]; $t_product = $t_products[$thr_i]; printf STDERR ("t_strict_input=%.3e\n", $t_strict); printf STDERR ("t_strict_fit=%.3e\tt_liberal=%.3e\tt_product=%.3e\n", $t_strict_fit, $t_liberal, $t_product); ## DEFINE WHICH IDS WILL BE USED $ID_hash = NULL; if(-e $IDs_list) { $ID_hash = &load_registry($IDs_list); } ($c1_names, $c1_ids, $c1_desc, $c1_pvals) = &read_pvalues_2($c1_file, $ID_hash); ($c2_names, $c2_ids, $c1_desc, $c2_pvals) = &read_pvalues_2($c2_file, $ID_hash); $com_names = &get_overlap_set($c1_names, $c2_names); if($output eq "counts") { printf "TF1\tTF2\tC1\tC2\tBoth\n"; # printf "###\t###\t##\t##\t####\n"; } $names1 = $c1_names; $names2 = $c2_names; if($comp eq "same"){ $names2 = $names1 = $com_names; } $m1 = scalar @{ $names1 }; $m2 = scalar @{ $names2 }; foreach $tf1 (sort @{ $names1 }) { foreach $tf2 (sort @{ $names2 }) { next if ( ($comp eq "same") && !($tf1 eq $tf2) ); next if ( ($comp eq "diff") && ($tf1 eq $tf2 || exists $comps_done{$tf1}{$tf2}) ); $comps_done{$tf1}{$tf2}++; $comps_done{$tf2}{$tf1}++; if($method eq "TPM") { ($c1_is, $c2_is, $bot_is) = &tpm_bound_in_both($tf1, $tf2, $c1_pvals, $c2_pvals, $c1_ids, $c2_ids, $t_liberal, $t_product, $t_strict); } elsif($method eq "strict") { ($c1_is, $c2_is, $bot_is) = &bernoulli_bound_in_both($tf1, $tf2, $c1_pvals, $c2_pvals, $c1_ids, $c2_ids, $t_strict); } else { ($c1_is, $c2_is, $bot_is) = &top_n_bound_in_both($tf1, $tf2, $c1_pvals, $c2_pvals, $c1_ids, $c2_ids, $t_strict); } if($output eq "ORFlists") { @c_ids = @{$c1_ids}; printf "%s\t%s\n", $tf1."_".$tf2."_C1_only", join(" ", @c_ids[@{ $c1_is }]); printf "%s\t%s\n", $tf1."_".$tf2."_BOTH", join(" ", @c_ids[@{ $bot_is }]); printf "%s\t%s\n", $tf1."_".$tf2."_C2_only", join(" ", @c_ids[@{ $c2_is }]); } else { $n1 = $n2 = $n3 = 0; if(@{ $c1_is }) { $n1 = scalar(@{ $c1_is }); } if(@{ $c2_is }) { $n2 = scalar(@{ $c2_is }); } if(@{ $bot_is }){ $n3 = scalar(@{ $bot_is }); } printf "$tf1\t$tf2\t$n1\t$n2\t$n3\n"; } } } #################### # # 1. find the top N genes bound in each condition # 2. genes appearing in both lists are bound in both conditions # sub top_n_bound_in_both { my($tf1, $tf2, $ps1, $ps2, $ids1, $ids2, $n) = @_; my($i, $i1, $i2, $both, $p1_only, $p2_only); my($p1) = $ps1->{$tf1}; my($p2) = $ps2->{$tf2}; my($ord1) = &order_of_index( $p1 ); my($ord2) = &order_of_index( $p2 ); my(%i_reg); for($i=0; $i<$n; $i++) { $i1 = $ord1->[$i]; $i2 = $ord2->[$i]; $i_reg{$i1}++; $i_reg{$i2}++; #print "$i => $i1 $i2 $ids1->[$i1] $p1->[$i1] $p2->[$i2]\n"; } for($i=0; $i<$n; $i++) { $i1 = $ord1->[$i]; $i2 = $ord2->[$i]; if($i_reg{$i1} == 2) { push @{ $both }, $i1; } else { if($i_reg{$i1} == 1) { push @{ $p1_only }, $i1; } if($i_reg{$i2} == 1) { push @{ $p2_only }, $i2; } } } return($p1_only, $p2_only, $both); } #################### # # use a strict p-value threshold to find genes bound # sub bernoulli_bound_in_both { my($tf1, $tf2, $ps1, $ps2, $ids1, $ids2, $p_strict_thr) = @_; my($p1) = $ps1->{$tf1}; my($p2) = $ps2->{$tf2}; my($n) = scalar(@{ $p1 }); my($i, $both, $p1_only, $p2_only); $c = 0; for($i=0; $i<$n; $i++) { if( ($p1->[$i] <= $p_strict_thr) && ($p2->[$i] > $p_strict_thr) ) { push @{ $p1_only }, $i; } if( ($p2->[$i] <= $p_strict_thr) && ($p1->[$i] > $p_strict_thr) ) { push @{ $p2_only }, $i; } if( ($p1->[$i] <= $p_strict_thr) && ($p2->[$i] <= $p_strict_thr) ) { unless($ids1->[$i] eq $ids2->[$i]) { print STDERR "ERROR: comparing pvalues from different genes\n"; printf STDERR "ITER:$i \"%s\" \"%s\"\n", $ids1->[$i], $ids2->[$i]; exit(0); } push @{ $both }, $i; } } return($p1_only, $p2_only, $both); } #################### # # use the truncated product method to find genes bound # sub tpm_bound_in_both { my($tf1, $tf2, $ps1, $ps2, $ids1, $ids2, $p_liberal_thr, $p_square_thr, $p_strict_thr) = @_; my($p1) = $ps1->{$tf1}; my($p2) = $ps2->{$tf2}; my($n) = scalar(@{ $p1 }); my($i, $both, $p1_only, $p2_only); $c = 0; for($i=0; $i<$n; $i++) { if( ($p1->[$i] <= $p_strict_thr) && ($p2->[$i] > $p_liberal_thr) ) { push @{ $p1_only }, $i; } if( ($p2->[$i] <= $p_strict_thr) && ($p1->[$i] > $p_liberal_thr) ) { push @{ $p2_only }, $i; } if( ($p1->[$i] <= $p_liberal_thr) && ($p2->[$i] <= $p_liberal_thr) && (($p1->[$i] * $p2->[$i]) <= $p_square_thr) ) { unless($ids1->[$i] eq $ids2->[$i]) { print STDERR "ERROR: comparing pvalues from different genes\n"; printf STDERR "ITER:$i \"%s\" \"%s\"\n", $ids1->[$i], $ids2->[$i]; exit(0); } push @{ $both }, $i; } } return($p1_only, $p2_only, $both); } ############################################# ## return: a reference to an array that contains a ## permutation of the indicies of the input array ## sorted in increasing order ## ## e.g. order_of_index([1,3,2]) returns [0,2,1] ## ## Like the "order" function in R ## sub order_of_index { my($ref) = shift; my($i); my(@iar, @iar_sorted, $ret); $ret = (); #printf "%d\n", $#$ref; for $i (0..$#$ref) { @{$iar[$i]} = ($ref->[$i], $i); } @iar_sorted = sort { $a->[0] <=> $b->[0] } @iar; for $i (0..$#$ref) { $ret->[$i] = $iar_sorted[$i][1]; } return $ret; } ############################################# ## sub read_pvalues_2 { my ($file, $idHash) = @_; my ($id, $desc, $i, $p, $ids, $names, $pvals, $descs); my(@l); my($n_ids) = scalar(keys %{ $idHash }); open(BLA, $file); while(){ chomp; @l = split(/\t/); $id = shift(@l); $desc = shift(@l); if($. == 1) { for $i (0..$#l) { push @{ $names }, $l[$i]; } } else { if( (exists $idHash->{$id}) || ($n_ids == 0) ) { push @{ $ids }, $id; push @{ $descs }, $desc; for $i (0..$#l) { $p = $l[$i]; ## need to do this to get decreasing sort to work if($p eq "NA") { $p = 1; } push @{ $pvals->{$names->[$i]} }, $p; } } } } close(BLA); #printf STDERR "$file (n,m)=(%d,%d)\n", scalar(@{$ids}), scalar(@{$names}); return($names, $ids, $descs, $pvals); ## ref2list, ref2list, ref2list, ref2hash } ############################################# ## sub filter_real_number { my($r, $alt) = @_; if( ($r eq "NA") || ($r eq "Inf") || ($r eq "-Inf") || ($r eq "NaN")) { $r = $alt; } return($r); } ############################################# ## sub get_overlap_set { my($rL1, $rL2) = @_; my($t, %h1, %h2); my($c) = (); #printf STDERR "get_overlap_set:: %d %d\n", scalar(@{$rL1}), scalar(@{$rL2}); foreach $t (@{ $rL1 }) { $h1{$t}++; } #printf STDERR "\"%s\"\n", join("\"\n\"", @{ $rL2 }); foreach $t (@{ $rL2 }) { if(exists $h1{$t}){ unless(exists $h2{$t}) { #push @c, $t; push @{ $c }, $t; $h2{$t}++; } } } #printf STDERR "get_overlap_set:: %d\n", scalar(@c); return($c); } ############################################# sub load_registry { my($file) = shift; my($reg); open(FILE, $file) or die "can't open $file: $!\n"; while(){ chomp; @l=split; $reg->{$l[0]}++; } close(FILE); return($reg); }