diff --git a/genie-biogem/src/fortran/biogem.f90 b/genie-biogem/src/fortran/biogem.f90 index 3f7bc0238..582104a58 100644 --- a/genie-biogem/src/fortran/biogem.f90 +++ b/genie-biogem/src/fortran/biogem.f90 @@ -4025,13 +4025,14 @@ SUBROUTINE diag_biogem_timeseries( & end if ! solar insolation (and orbitally-related information) ! NOTE: apply ocean mask (@ surface) + ! NOTE [PV 24/07/23]: apply ocean-atmosphere mask ! (1) mean global properties int_misc_ocn_solfor_sig = int_misc_ocn_solfor_sig + & - & loc_dtyr*loc_ocn_rtot_A*sum(phys_ocn(ipo_A,:,:,n_k)*phys_ocnatm(ipoa_solfor,:,:)) + & loc_dtyr*loc_ocnatm_rtot_A*sum(phys_ocnatm(ipoa_A,:,:)*phys_ocnatm(ipoa_solfor,:,:)) int_misc_opn_solfor_sig = int_misc_opn_solfor_sig + & & loc_dtyr*loc_opn_rtot_A*sum(phys_ocn(ipo_A,:,:,n_k)*phys_ocnatm(ipoa_solfor,:,:)) int_misc_ocn_fxsw_sig = int_misc_ocn_fxsw_sig + & - & loc_dtyr*loc_ocn_rtot_A*sum(phys_ocn(ipo_A,:,:,n_k)*phys_ocnatm(ipoa_fxsw,:,:)) + & loc_dtyr*loc_ocnatm_rtot_A*sum(phys_ocnatm(ipoa_A,:,:)*phys_ocnatm(ipoa_fxsw,:,:)) int_misc_opn_fxsw_sig = int_misc_opn_fxsw_sig + & & loc_dtyr*loc_opn_rtot_A*sum(phys_ocn(ipo_A,:,:,n_k)*phys_ocnatm(ipoa_fxsw,:,:)) ! (2) latitudinal/seasonal properties diff --git a/genie-biogem/src/fortran/biogem_data_ascii.f90 b/genie-biogem/src/fortran/biogem_data_ascii.f90 index d3f6af87c..9da121cc4 100644 --- a/genie-biogem/src/fortran/biogem_data_ascii.f90 +++ b/genie-biogem/src/fortran/biogem_data_ascii.f90 @@ -518,10 +518,10 @@ SUBROUTINE sub_init_data_save_runtime() call check_iostat(ios,__LINE__,__FILE__) CLOSE(unit=out,iostat=ios) call check_iostat(ios,__LINE__,__FILE__) - ! insolation (wet grid only) + ! insolation loc_filename=fun_data_timeseries_filename( & - & loc_t,par_outdir_name,trim(par_outfile_name)//'_series','misc_ocn_insol',string_results_ext) - loc_string = '% time (yr) / mean (wet grid) insolation (W m-2) / ' // & + & loc_t,par_outdir_name,trim(par_outfile_name)//'_series','misc_insol',string_results_ext) + loc_string = '% time (yr) / mean insolation (W m-2) / ' // & & 'N mean zonal insolation (W m-2) @ j=' // fun_conv_num_char_n(2,par_sig_j_N) // & & ' and BIOGEM time-step: ' // fun_conv_num_char_n(2,par_t_sig_count_N) // & & ' / ' // & @@ -535,8 +535,8 @@ SUBROUTINE sub_init_data_save_runtime() CLOSE(unit=out,iostat=ios) call check_iostat(ios,__LINE__,__FILE__) loc_filename=fun_data_timeseries_filename( & - & loc_t,par_outdir_name,trim(par_outfile_name)//'_series','misc_ocn_swflux',string_results_ext) - loc_string = '% time (yr) / mean annual Sw flux at ocean surface (W m-2)' + & loc_t,par_outdir_name,trim(par_outfile_name)//'_series','misc_swflux',string_results_ext) + loc_string = '% time (yr) / mean annual SW flux at surface (W m-2)' call check_unit(out,__LINE__,__FILE__) OPEN(unit=out,file=loc_filename,action='write',status='replace',iostat=ios) call check_iostat(ios,__LINE__,__FILE__) @@ -817,8 +817,8 @@ SUBROUTINE sub_init_data_save_runtime() end if ! insolation (wet grid only) loc_filename=fun_data_timeseries_filename( & - & loc_t,par_outdir_name,trim(par_outfile_name)//'_series','misc_ocn_insol',string_results_ext) - loc_string = '% time (yr) / mean (wet grid) insolation (W m-2) / ' // & + & loc_t,par_outdir_name,trim(par_outfile_name)//'_series','misc_insol',string_results_ext) + loc_string = '% time (yr) / mean insolation (W m-2) / ' // & & 'N mean zonal insolation (W m-2) @ j=' // fun_conv_num_char_n(2,par_sig_j_N) // & & ' and BIOGEM time-step: ' // fun_conv_num_char_n(2,par_t_sig_count_N) // & & ' / ' // & @@ -832,8 +832,8 @@ SUBROUTINE sub_init_data_save_runtime() CLOSE(unit=out,iostat=ios) call check_iostat(ios,__LINE__,__FILE__) loc_filename=fun_data_timeseries_filename( & - & loc_t,par_outdir_name,trim(par_outfile_name)//'_series','misc_ocn_swflux',string_results_ext) - loc_string = '% time (yr) / mean annual Sw flux at ocean surface (W m-2)' + & loc_t,par_outdir_name,trim(par_outfile_name)//'_series','misc_swflux',string_results_ext) + loc_string = '% time (yr) / mean annual SW flux at surface (W m-2)' call check_unit(out,__LINE__,__FILE__) OPEN(unit=out,file=loc_filename,action='write',status='replace',iostat=ios) call check_iostat(ios,__LINE__,__FILE__) @@ -2171,9 +2171,9 @@ SUBROUTINE sub_data_save_runtime(dum_yr_save,dum_t) call check_iostat(ios,__LINE__,__FILE__) CLOSE(unit=out,iostat=ios) call check_iostat(ios,__LINE__,__FILE__) - ! insolation (wet grid only) + ! insolation (ocnatm grid) at top of atmosphere loc_filename=fun_data_timeseries_filename( & - & dum_t,par_outdir_name,trim(par_outfile_name)//'_series','misc_ocn_insol',string_results_ext) + & dum_t,par_outdir_name,trim(par_outfile_name)//'_series','misc_insol',string_results_ext) call check_unit(out,__LINE__,__FILE__) OPEN(unit=out,file=loc_filename,action='write',status='old',position='append',iostat=ios) call check_iostat(ios,__LINE__,__FILE__) @@ -2185,9 +2185,9 @@ SUBROUTINE sub_data_save_runtime(dum_yr_save,dum_t) call check_iostat(ios,__LINE__,__FILE__) CLOSE(unit=out,iostat=ios) call check_iostat(ios,__LINE__,__FILE__) - ! SW flux at surface (wet grid only) + ! SW flux (ocnatm grid) at surface (accounted for albedo) loc_filename=fun_data_timeseries_filename( & - & dum_t,par_outdir_name,trim(par_outfile_name)//'_series','misc_ocn_swflux',string_results_ext) + & dum_t,par_outdir_name,trim(par_outfile_name)//'_series','misc_swflux',string_results_ext) call check_unit(out,__LINE__,__FILE__) OPEN(unit=out,file=loc_filename,action='write',status='old',position='append',iostat=ios) call check_iostat(ios,__LINE__,__FILE__) diff --git a/genie-embm/data/input/orbits_La2004_1Myr_new.dat b/genie-embm/data/input/orbits_La2004_1Myr_new.dat new file mode 100644 index 000000000..2993ff77f --- /dev/null +++ b/genie-embm/data/input/orbits_La2004_1Myr_new.dat @@ -0,0 +1,1001 @@ +0 0.016702 0.40909 1.7963 1.7963 +-1 0.017161 0.41135 1.4979 1.4979 +-2 0.017497 0.41356 1.2 1.2 +-3 0.017846 0.41564 0.90349 0.90349 +-4 0.018211 0.41756 0.61138 0.61138 +-5 0.018453 0.41925 0.31554 0.31554 +-6 0.018748 0.42067 0.024574 0.024574 +-7 0.018937 0.42178 6.0186 6.0186 +-8 0.01918 0.42254 5.7272 5.7272 +-9 0.019325 0.42292 5.4384 5.4384 +-10 0.019425 0.42291 5.1534 5.1534 +-11 0.019597 0.42249 4.8635 4.8635 +-12 0.019613 0.42166 4.5794 4.5794 +-13 0.019651 0.42044 4.2923 4.2923 +-14 0.019679 0.41884 4.0084 4.0084 +-15 0.019635 0.41689 3.7228 3.7228 +-16 0.01956 0.41463 3.4367 3.4367 +-17 0.019487 0.41212 3.154 3.154 +-18 0.019347 0.40941 2.8676 2.8676 +-19 0.019223 0.40658 2.5814 2.5814 +-20 0.019003 0.40368 2.2984 2.2984 +-21 0.018835 0.4008 2.0112 2.0112 +-22 0.018617 0.39803 1.7259 1.7259 +-23 0.018341 0.39543 1.4405 1.4405 +-24 0.018095 0.3931 1.1553 1.1553 +-25 0.017868 0.39111 0.87127 0.87127 +-26 0.017507 0.38951 0.58474 0.58474 +-27 0.017279 0.38837 0.30568 0.30568 +-28 0.016967 0.38772 0.022732 0.022732 +-29 0.016652 0.38759 6.0259 6.0259 +-30 0.016366 0.38799 5.7512 5.7512 +-31 0.016045 0.3889 5.4774 5.4774 +-32 0.015778 0.3903 5.2034 5.2034 +-33 0.01545 0.39215 4.9396 4.9396 +-34 0.015175 0.39439 4.6738 4.6738 +-35 0.014942 0.39696 4.4138 4.4138 +-36 0.014652 0.39978 4.1574 4.1574 +-37 0.014424 0.40277 3.9047 3.9047 +-38 0.014271 0.40585 3.6578 3.6578 +-39 0.014039 0.40894 3.4099 3.4099 +-40 0.013929 0.41197 3.1702 3.1702 +-41 0.013824 0.41485 2.933 2.933 +-42 0.013735 0.41753 2.6939 2.6939 +-43 0.013719 0.41994 2.4617 2.4617 +-44 0.013706 0.42202 2.2322 2.2322 +-45 0.013793 0.42375 1.9957 1.9957 +-46 0.013843 0.42507 1.7687 1.7687 +-47 0.013987 0.42597 1.5372 1.5372 +-48 0.014182 0.42644 1.3041 1.3041 +-49 0.014385 0.42646 1.0736 1.0736 +-50 0.0146 0.42606 0.8369 0.8369 +-51 0.014958 0.42524 0.60469 0.60469 +-52 0.015217 0.42403 0.3639 0.3639 +-53 0.015571 0.42246 0.12432 0.12432 +-54 0.015961 0.42058 6.1673 6.1673 +-55 0.01633 0.41843 5.9195 5.9195 +-56 0.016739 0.41606 5.6711 5.6711 +-57 0.017156 0.41352 5.4243 5.4243 +-58 0.017605 0.41087 5.1663 5.1663 +-59 0.018044 0.40818 4.9124 4.9124 +-60 0.018469 0.40549 4.6539 4.6539 +-61 0.018983 0.40287 4.3918 4.3918 +-62 0.019417 0.40037 4.1284 4.1284 +-63 0.019863 0.39804 3.8629 3.8629 +-64 0.020389 0.39594 3.5942 3.5942 +-65 0.020822 0.39411 3.3254 3.3254 +-66 0.021311 0.39258 3.0512 3.0512 +-67 0.021793 0.39137 2.7806 2.7806 +-68 0.022294 0.39053 2.5045 2.5045 +-69 0.022777 0.39005 2.2281 2.2281 +-70 0.02328 0.38993 1.9537 1.9537 +-71 0.02379 0.39019 1.6757 1.6757 +-72 0.024345 0.39079 1.3979 1.3979 +-73 0.024808 0.39173 1.1219 1.1219 +-74 0.025408 0.39297 0.84431 0.84431 +-75 0.025952 0.39449 0.56667 0.56667 +-76 0.02647 0.39625 0.29097 0.29097 +-77 0.027078 0.39821 0.01426 0.01426 +-78 0.027646 0.40033 6.0228 6.0228 +-79 0.028209 0.40257 5.746 5.746 +-80 0.028805 0.40488 5.473 5.473 +-81 0.029404 0.40723 5.1992 5.1992 +-82 0.029987 0.40956 4.9238 4.9238 +-83 0.030581 0.41184 4.6529 4.6529 +-84 0.031158 0.41403 4.3793 4.3793 +-85 0.0318 0.41607 4.1064 4.1064 +-86 0.032347 0.41793 3.8344 3.8344 +-87 0.032938 0.41959 3.5624 3.5624 +-88 0.033598 0.42099 3.2898 3.2898 +-89 0.034106 0.42212 3.0176 3.0176 +-90 0.034743 0.42294 2.745 2.745 +-91 0.03532 0.42345 2.4733 2.4733 +-92 0.035875 0.42362 2.1985 2.1985 +-93 0.036448 0.42344 1.9259 1.9259 +-94 0.036998 0.42291 1.652 1.652 +-95 0.037539 0.42203 1.3752 1.3752 +-96 0.038087 0.42081 1.1004 1.1004 +-97 0.038553 0.41928 0.82258 0.82258 +-98 0.039143 0.41744 0.54451 0.54451 +-99 0.039585 0.41535 0.26471 0.26471 +-100 0.04006 0.41303 6.267 6.267 +-101 0.040563 0.41054 5.9857 5.9857 +-102 0.040965 0.40793 5.7014 5.7014 +-103 0.041378 0.40527 5.4159 5.4159 +-104 0.041769 0.40262 5.131 5.131 +-105 0.042123 0.40004 4.8408 4.8408 +-106 0.042452 0.39762 4.5519 4.5519 +-107 0.042723 0.39542 4.261 4.261 +-108 0.043031 0.3935 3.9682 3.9682 +-109 0.043249 0.39192 3.6744 3.6744 +-110 0.043416 0.39075 3.3805 3.3805 +-111 0.043647 0.39 3.085 3.085 +-112 0.043729 0.38972 2.79 2.79 +-113 0.043839 0.38993 2.4938 2.4938 +-114 0.043884 0.39061 2.1992 2.1992 +-115 0.043921 0.39175 1.9045 1.9045 +-116 0.043877 0.39333 1.6092 1.6092 +-117 0.043813 0.39529 1.3179 1.3179 +-118 0.043722 0.39758 1.0254 1.0254 +-119 0.043578 0.40013 0.73499 0.73499 +-120 0.043371 0.40286 0.44708 0.44708 +-121 0.043149 0.4057 0.15996 0.15996 +-122 0.042919 0.40856 6.1582 6.1582 +-123 0.042547 0.41136 5.8747 5.8747 +-124 0.042243 0.41401 5.5935 5.5935 +-125 0.041862 0.41646 5.3139 5.3139 +-126 0.04141 0.41863 5.035 5.035 +-127 0.040986 0.42047 4.7587 4.7587 +-128 0.040489 0.42192 4.4844 4.4844 +-129 0.039999 0.42296 4.2086 4.2086 +-130 0.039446 0.42355 3.9377 3.9377 +-131 0.038882 0.42368 3.6656 3.6656 +-132 0.038348 0.42336 3.3948 3.3948 +-133 0.037717 0.42258 3.1252 3.1252 +-134 0.037082 0.42138 2.8561 2.8561 +-135 0.036557 0.41979 2.5881 2.5881 +-136 0.035826 0.41785 2.3192 2.3192 +-137 0.035247 0.41562 2.0521 2.0521 +-138 0.034618 0.41316 1.7855 1.7855 +-139 0.033971 0.41055 1.5175 1.5175 +-140 0.033369 0.40785 1.2514 1.2514 +-141 0.032735 0.40514 0.9862 0.9862 +-142 0.032159 0.40251 0.71893 0.71893 +-143 0.031582 0.40003 0.45474 0.45474 +-144 0.030976 0.39776 0.18963 0.18963 +-145 0.030524 0.39577 6.2085 6.2085 +-146 0.029974 0.39412 5.9447 5.9447 +-147 0.029516 0.39286 5.6819 5.6819 +-148 0.029143 0.39202 5.4203 5.4203 +-149 0.028757 0.39162 5.1598 5.1598 +-150 0.028439 0.39167 4.8985 4.8985 +-151 0.028196 0.39216 4.6434 4.6434 +-152 0.028004 0.39307 4.3836 4.3836 +-153 0.027847 0.39437 4.1287 4.1287 +-154 0.027779 0.396 3.8755 3.8755 +-155 0.027761 0.3979 3.6207 3.6207 +-156 0.02783 0.40002 3.3691 3.3691 +-157 0.027889 0.40229 3.1182 3.1182 +-158 0.028109 0.40464 2.8672 2.8672 +-159 0.028326 0.407 2.6173 2.6173 +-160 0.02857 0.40931 2.3672 2.3672 +-161 0.028934 0.41152 2.1181 2.1181 +-162 0.029296 0.41357 1.8682 1.8682 +-163 0.029677 0.41543 1.6166 1.6166 +-164 0.030136 0.41706 1.3677 1.3677 +-165 0.030607 0.41843 1.1149 1.1149 +-166 0.031076 0.41953 0.86138 0.86138 +-167 0.031603 0.42033 0.60911 0.60911 +-168 0.032105 0.42082 0.35311 0.35311 +-169 0.032685 0.42101 0.096313 0.096313 +-170 0.033174 0.4209 6.1221 6.1221 +-171 0.033761 0.42049 5.8628 5.8628 +-172 0.034329 0.41979 5.6011 5.6011 +-173 0.034841 0.41883 5.3394 5.3394 +-174 0.035432 0.41762 5.0741 5.0741 +-175 0.035987 0.41619 4.8099 4.8099 +-176 0.036526 0.41457 4.5405 4.5405 +-177 0.037079 0.41279 4.2725 4.2725 +-178 0.037635 0.41089 4.0026 4.0026 +-179 0.038174 0.40891 3.7286 3.7286 +-180 0.038702 0.40688 3.4562 3.4562 +-181 0.039217 0.40484 3.1816 3.1816 +-182 0.039795 0.40282 2.9036 2.9036 +-183 0.040246 0.40087 2.6273 2.6273 +-184 0.040779 0.39902 2.3476 2.3476 +-185 0.041316 0.39731 2.0682 2.0682 +-186 0.041765 0.39576 1.7867 1.7867 +-187 0.042244 0.39443 1.5047 1.5047 +-188 0.042759 0.39332 1.2232 1.2232 +-189 0.043148 0.39248 0.93828 0.93828 +-190 0.043632 0.39193 0.65504 0.65504 +-191 0.044007 0.3917 0.37083 0.37083 +-192 0.044446 0.39178 0.085106 0.085106 +-193 0.04482 0.39221 6.0832 6.0832 +-194 0.045159 0.39296 5.7981 5.7981 +-195 0.045586 0.39405 5.5121 5.5121 +-196 0.045893 0.39546 5.2272 5.2272 +-197 0.046214 0.39716 4.9417 4.9417 +-198 0.046592 0.39914 4.6582 4.6582 +-199 0.046877 0.40134 4.3735 4.3735 +-200 0.04717 0.40373 4.0904 4.0904 +-201 0.047493 0.40625 3.8089 3.8089 +-202 0.04775 0.40886 3.5265 3.5265 +-203 0.048042 0.41149 3.2464 3.2464 +-204 0.048262 0.41409 2.9669 2.9669 +-205 0.048528 0.41659 2.6882 2.6882 +-206 0.048776 0.41894 2.4099 2.4099 +-207 0.04892 0.42107 2.1333 2.1333 +-208 0.049181 0.42294 1.8568 1.8568 +-209 0.049333 0.42448 1.5809 1.5809 +-210 0.049475 0.42567 1.3053 1.3053 +-211 0.049617 0.42645 1.0304 1.0304 +-212 0.049754 0.42681 0.75565 0.75565 +-213 0.049808 0.42673 0.47915 0.47915 +-214 0.049888 0.42619 0.20517 0.20517 +-215 0.049927 0.4252 6.2116 6.2116 +-216 0.049952 0.42376 5.9345 5.9345 +-217 0.04992 0.4219 5.6576 5.6576 +-218 0.049889 0.41966 5.3786 5.3786 +-219 0.049864 0.41707 5.0985 5.0985 +-220 0.049721 0.41419 4.8178 4.8178 +-221 0.049622 0.41108 4.5343 4.5343 +-222 0.049488 0.40781 4.2512 4.2512 +-223 0.049275 0.40447 3.9638 3.9638 +-224 0.049067 0.40114 3.6768 3.6768 +-225 0.048819 0.39792 3.3879 3.3879 +-226 0.048525 0.39489 3.0956 3.0956 +-227 0.048213 0.39215 2.804 2.804 +-228 0.047795 0.38978 2.5103 2.5103 +-229 0.047476 0.38785 2.2144 2.2144 +-230 0.046954 0.38644 1.9192 1.9192 +-231 0.046481 0.38558 1.6225 1.6225 +-232 0.045996 0.3853 1.3261 1.3261 +-233 0.045385 0.38562 1.0291 1.0291 +-234 0.04479 0.3865 0.73268 0.73268 +-235 0.044183 0.38794 0.43885 0.43885 +-236 0.043484 0.38988 0.14307 0.14307 +-237 0.042808 0.39225 6.1347 6.1347 +-238 0.042049 0.39499 5.8443 5.8443 +-239 0.041314 0.398 5.5552 5.5552 +-240 0.040534 0.4012 5.2688 5.2688 +-241 0.039654 0.40449 4.9852 4.9852 +-242 0.038894 0.40779 4.7036 4.7036 +-243 0.037982 0.411 4.4239 4.4239 +-244 0.037085 0.41405 4.1476 4.1476 +-245 0.03623 0.41685 3.8734 3.8734 +-246 0.035277 0.41936 3.6014 3.6014 +-247 0.034358 0.42151 3.331 3.331 +-248 0.033412 0.42327 3.0653 3.0653 +-249 0.032474 0.42461 2.7994 2.7994 +-250 0.031516 0.4255 2.5361 2.5361 +-251 0.030559 0.42595 2.2766 2.2766 +-252 0.029607 0.42595 2.017 2.017 +-253 0.028717 0.42551 1.7602 1.7602 +-254 0.027735 0.42466 1.5054 1.5054 +-255 0.026895 0.42343 1.2528 1.2528 +-256 0.026038 0.42185 1.0017 1.0017 +-257 0.025186 0.41998 0.75215 0.75215 +-258 0.024437 0.41785 0.50552 0.50552 +-259 0.023734 0.41553 0.26196 0.26196 +-260 0.023044 0.41308 0.015524 0.015524 +-261 0.022467 0.41056 6.0612 6.0612 +-262 0.021946 0.40804 5.8205 5.8205 +-263 0.021501 0.40558 5.5813 5.5813 +-264 0.021132 0.40323 5.3466 5.3466 +-265 0.020851 0.40106 5.1099 5.1099 +-266 0.020703 0.39911 4.8732 4.8732 +-267 0.020563 0.3974 4.6393 4.6393 +-268 0.020562 0.39599 4.4012 4.4012 +-269 0.020689 0.39487 4.1655 4.1655 +-270 0.020798 0.39406 3.9242 3.9242 +-271 0.02105 0.39358 3.6844 3.6844 +-272 0.021398 0.3934 3.4412 3.4412 +-273 0.021712 0.39353 3.1938 3.1938 +-274 0.022184 0.39395 2.9454 2.9454 +-275 0.022617 0.39465 2.6957 2.6957 +-276 0.023163 0.39559 2.4386 2.4386 +-277 0.023666 0.39676 2.1834 2.1834 +-278 0.024234 0.39812 1.9249 1.9249 +-279 0.024845 0.39964 1.6606 1.6606 +-280 0.025407 0.40128 1.3992 1.3992 +-281 0.026003 0.40301 1.132 1.132 +-282 0.026658 0.40477 0.86538 0.86538 +-283 0.027233 0.40655 0.5963 0.5963 +-284 0.027834 0.40831 0.32549 0.32549 +-285 0.028476 0.41 0.05648 0.05648 +-286 0.029043 0.41161 6.0658 6.0658 +-287 0.029637 0.4131 5.7933 5.7933 +-288 0.030191 0.41445 5.5219 5.5219 +-289 0.030771 0.41564 5.2461 5.2461 +-290 0.03128 0.41665 4.972 4.972 +-291 0.031775 0.41746 4.6987 4.6987 +-292 0.0323 0.41805 4.4215 4.4215 +-293 0.032731 0.41842 4.1471 4.1471 +-294 0.03315 0.41854 3.8699 3.8699 +-295 0.033583 0.41841 3.5942 3.5942 +-296 0.033957 0.41802 3.3159 3.3159 +-297 0.034269 0.41739 3.0378 3.0378 +-298 0.034645 0.4165 2.76 2.76 +-299 0.034891 0.41537 2.4798 2.4798 +-300 0.035193 0.41402 2.1991 2.1991 +-301 0.035395 0.41248 1.9183 1.9183 +-302 0.03562 0.41077 1.6359 1.6359 +-303 0.035828 0.40893 1.3514 1.3514 +-304 0.035931 0.407 1.0673 1.0673 +-305 0.036089 0.40503 0.78116 0.78116 +-306 0.036233 0.40306 0.49345 0.49345 +-307 0.036241 0.40115 0.20447 0.20447 +-308 0.036378 0.39935 6.1985 6.1985 +-309 0.0364 0.39771 5.9072 5.9072 +-310 0.036418 0.39629 5.6147 5.6147 +-311 0.036439 0.39513 5.322 5.322 +-312 0.03641 0.39428 5.0293 5.0293 +-313 0.036409 0.39377 4.7328 4.7328 +-314 0.036318 0.39363 4.4403 4.4403 +-315 0.036257 0.39387 4.1443 4.1443 +-316 0.036191 0.39451 3.8496 3.8496 +-317 0.036043 0.39553 3.555 3.555 +-318 0.035905 0.3969 3.2601 3.2601 +-319 0.035806 0.39859 2.9677 2.9677 +-320 0.035579 0.40056 2.6728 2.6728 +-321 0.035415 0.40276 2.3813 2.3813 +-322 0.035202 0.40511 2.091 2.091 +-323 0.034979 0.40756 1.7986 1.7986 +-324 0.034733 0.41004 1.5102 1.5102 +-325 0.034447 0.41248 1.222 1.222 +-326 0.034212 0.41481 0.93303 0.93303 +-327 0.033867 0.41697 0.64728 0.64728 +-328 0.033554 0.41889 0.36008 0.36008 +-329 0.033241 0.42052 0.074872 0.074872 +-330 0.032868 0.42181 6.0725 6.0725 +-331 0.032477 0.42272 5.7857 5.7857 +-332 0.032109 0.42322 5.503 5.503 +-333 0.031691 0.4233 5.2148 5.2148 +-334 0.031251 0.42294 4.9294 4.9294 +-335 0.030795 0.42215 4.6433 4.6433 +-336 0.030333 0.42095 4.3549 4.3549 +-337 0.029858 0.41936 4.0656 4.0656 +-338 0.02927 0.41742 3.7763 3.7763 +-339 0.028811 0.41519 3.4843 3.4843 +-340 0.028215 0.4127 3.1905 3.1905 +-341 0.027606 0.41003 2.8953 2.8953 +-342 0.027039 0.40726 2.5985 2.5985 +-343 0.026397 0.40444 2.299 2.299 +-344 0.025727 0.40167 1.9965 1.9965 +-345 0.025086 0.39901 1.6944 1.6944 +-346 0.024359 0.39654 1.3883 1.3883 +-347 0.023692 0.39435 1.0798 1.0798 +-348 0.022906 0.39248 0.77095 0.77095 +-349 0.022182 0.39101 0.46001 0.46001 +-350 0.021445 0.38996 0.14582 0.14582 +-351 0.020598 0.38938 6.116 6.116 +-352 0.019834 0.38928 5.7991 5.7991 +-353 0.019023 0.38966 5.4852 5.4852 +-354 0.018161 0.3905 5.164 5.164 +-355 0.017327 0.39177 4.8481 4.8481 +-356 0.016469 0.39343 4.5295 4.5295 +-357 0.015601 0.39542 4.2063 4.2063 +-358 0.014723 0.39768 3.8878 3.8878 +-359 0.013802 0.40015 3.5646 3.5646 +-360 0.012987 0.40276 3.2396 3.2396 +-361 0.012031 0.40544 2.913 2.913 +-362 0.01116 0.40813 2.5819 2.5819 +-363 0.010315 0.41075 2.2495 2.2495 +-364 0.009421 0.41326 1.9067 1.9067 +-365 0.008607 0.4156 1.557 1.557 +-366 0.007766 0.41771 1.2072 1.2072 +-367 0.007047 0.41956 0.8304 0.8304 +-368 0.00629 0.42111 0.44416 0.44416 +-369 0.005604 0.42232 0.04546 0.04546 +-370 0.0051 0.4232 5.8911 5.8911 +-371 0.004592 0.42372 5.4346 5.4346 +-372 0.004298 0.42389 4.9391 4.9391 +-373 0.004155 0.42371 4.4402 4.4402 +-374 0.004219 0.42319 3.9287 3.9287 +-375 0.00448 0.42237 3.4297 3.4297 +-376 0.004816 0.42125 2.9703 2.9703 +-377 0.005334 0.41988 2.5295 2.5295 +-378 0.005904 0.41827 2.1269 2.1269 +-379 0.006494 0.41646 1.7284 1.7284 +-380 0.007124 0.41449 1.3638 1.3638 +-381 0.007766 0.41239 1.0054 1.0054 +-382 0.008425 0.41019 0.64949 0.64949 +-383 0.009049 0.40795 0.31002 0.31002 +-384 0.00963 0.4057 6.2554 6.2554 +-385 0.010319 0.40349 5.9213 5.9213 +-386 0.010825 0.40136 5.5892 5.5892 +-387 0.011403 0.39935 5.2617 5.2617 +-388 0.011948 0.3975 4.9365 4.9365 +-389 0.012414 0.39585 4.6089 4.6089 +-390 0.012893 0.39442 4.2832 4.2832 +-391 0.013299 0.39326 3.9631 3.9631 +-392 0.013717 0.39238 3.6347 3.6347 +-393 0.01409 0.39179 3.3132 3.3132 +-394 0.014383 0.39151 2.99 2.99 +-395 0.014746 0.39155 2.6689 2.6689 +-396 0.015013 0.3919 2.3462 2.3462 +-397 0.015211 0.39256 2.026 2.026 +-398 0.015498 0.39352 1.7079 1.7079 +-399 0.015633 0.39476 1.3887 1.3887 +-400 0.01581 0.39627 1.0703 1.0703 +-401 0.015906 0.39802 0.75699 0.75699 +-402 0.016003 0.39997 0.44168 0.44168 +-403 0.016067 0.40208 0.12584 0.12584 +-404 0.01604 0.40432 6.1008 6.1008 +-405 0.016059 0.40662 5.7871 5.7871 +-406 0.016007 0.40895 5.4787 5.4787 +-407 0.015899 0.41125 5.1694 5.1694 +-408 0.015795 0.41346 4.8606 4.8606 +-409 0.015664 0.41556 4.5565 4.5565 +-410 0.01548 0.41748 4.2444 4.2444 +-411 0.015279 0.41919 3.9419 3.9419 +-412 0.015056 0.42066 3.6359 3.6359 +-413 0.014836 0.42185 3.3263 3.3263 +-414 0.014537 0.42273 3.0226 3.0226 +-415 0.014242 0.42327 2.7161 2.7161 +-416 0.014 0.42347 2.4071 2.4071 +-417 0.01359 0.42331 2.1001 2.1001 +-418 0.013295 0.42279 1.7901 1.7901 +-419 0.012937 0.42191 1.4816 1.4816 +-420 0.012557 0.42069 1.1663 1.1663 +-421 0.012165 0.41915 0.8517 0.8517 +-422 0.011771 0.41732 0.53923 0.53923 +-423 0.011374 0.41523 0.21272 0.21272 +-424 0.010964 0.41296 6.1766 6.1766 +-425 0.010514 0.41053 5.8475 5.8475 +-426 0.010139 0.40801 5.5167 5.5167 +-427 0.009707 0.40547 5.1789 5.1789 +-428 0.009267 0.40298 4.8355 4.8355 +-429 0.00891 0.40058 4.4909 4.4909 +-430 0.008511 0.39837 4.1332 4.1332 +-431 0.008154 0.39638 3.7674 3.7674 +-432 0.007805 0.39468 3.4083 3.4083 +-433 0.007545 0.39332 3.0243 3.0243 +-434 0.007277 0.39234 2.6431 2.6431 +-435 0.007052 0.39176 2.2559 2.2559 +-436 0.00691 0.39161 1.8575 1.8575 +-437 0.006846 0.39188 1.4641 1.4641 +-438 0.00678 0.39257 1.0516 1.0516 +-439 0.006849 0.39365 0.65951 0.65951 +-440 0.006968 0.39508 0.25709 0.25709 +-441 0.00717 0.39682 6.1411 6.1411 +-442 0.007413 0.39881 5.7571 5.7571 +-443 0.007711 0.40097 5.3736 5.3736 +-444 0.008155 0.40326 5.002 5.002 +-445 0.008512 0.40561 4.6337 4.6337 +-446 0.009001 0.40793 4.2781 4.2781 +-447 0.009539 0.41017 3.9316 3.9316 +-448 0.010049 0.41228 3.583 3.583 +-449 0.010646 0.41419 3.2495 3.2495 +-450 0.011225 0.41587 2.9205 2.9205 +-451 0.011891 0.41728 2.5905 2.5905 +-452 0.012507 0.41838 2.2717 2.2717 +-453 0.013161 0.41916 1.9529 1.9529 +-454 0.013872 0.41959 1.6374 1.6374 +-455 0.014539 0.41969 1.327 1.327 +-456 0.015229 0.41944 1.0121 1.0121 +-457 0.015947 0.41887 0.70855 0.70855 +-458 0.016674 0.418 0.39692 0.39692 +-459 0.017375 0.41685 0.089891 0.089891 +-460 0.01811 0.41547 6.069 6.069 +-461 0.018842 0.4139 5.761 5.761 +-462 0.01961 0.41218 5.4555 5.4555 +-463 0.020275 0.41036 5.1499 5.1499 +-464 0.021075 0.40849 4.8444 4.8444 +-465 0.021796 0.40664 4.5377 4.5377 +-466 0.022478 0.40483 4.2312 4.2312 +-467 0.023235 0.40313 3.9257 3.9257 +-468 0.023938 0.40158 3.6185 3.6185 +-469 0.024606 0.4002 3.3097 3.3097 +-470 0.025313 0.39905 3.0041 3.0041 +-471 0.025949 0.39813 2.6954 2.6954 +-472 0.026655 0.39748 2.3872 2.3872 +-473 0.027246 0.3971 2.0791 2.0791 +-474 0.027877 0.397 1.7723 1.7723 +-475 0.02855 0.39718 1.4638 1.4638 +-476 0.029054 0.39761 1.1576 1.1576 +-477 0.02968 0.39828 0.85066 0.85066 +-478 0.030216 0.39917 0.54622 0.54622 +-479 0.030718 0.40024 0.23956 0.23956 +-480 0.031215 0.40147 6.2193 6.2193 +-481 0.031672 0.40281 5.9166 5.9166 +-482 0.032126 0.40424 5.6118 5.6118 +-483 0.032522 0.40571 5.3113 5.3113 +-484 0.032866 0.4072 5.0096 5.0096 +-485 0.033286 0.40866 4.7092 4.7092 +-486 0.033548 0.41008 4.4099 4.4099 +-487 0.033827 0.41141 4.1108 4.1108 +-488 0.034108 0.41264 3.8139 3.8139 +-489 0.034273 0.41375 3.5158 3.5158 +-490 0.034463 0.4147 3.2188 3.2188 +-491 0.034554 0.4155 2.9244 2.9244 +-492 0.034679 0.41611 2.6273 2.6273 +-493 0.034694 0.41653 2.3317 2.3317 +-494 0.034669 0.41674 2.0386 2.0386 +-495 0.034685 0.41675 1.7418 1.7418 +-496 0.034556 0.41655 1.4486 1.4486 +-497 0.034435 0.41615 1.1535 1.1535 +-498 0.034277 0.41555 0.8598 0.8598 +-499 0.034077 0.41476 0.56558 0.56558 +-500 0.033783 0.4138 0.27038 0.27038 +-501 0.033525 0.41267 6.2609 6.2609 +-502 0.03317 0.4114 5.9658 5.9658 +-503 0.032812 0.41 5.6711 5.6711 +-504 0.032366 0.4085 5.3779 5.3779 +-505 0.031926 0.40692 5.0832 5.0832 +-506 0.031454 0.4053 4.7884 4.7884 +-507 0.030878 0.40365 4.4951 4.4951 +-508 0.030315 0.40203 4.2006 4.2006 +-509 0.029747 0.40048 3.9074 3.9074 +-510 0.029028 0.39902 3.6124 3.6124 +-511 0.028396 0.39771 3.3207 3.3207 +-512 0.027682 0.39657 3.0274 3.0274 +-513 0.026921 0.39566 2.7346 2.7346 +-514 0.026188 0.39498 2.4443 2.4443 +-515 0.025355 0.39459 2.1555 2.1555 +-516 0.024603 0.39447 1.8651 1.8651 +-517 0.023719 0.39466 1.5807 1.5807 +-518 0.022876 0.39515 1.296 1.296 +-519 0.022067 0.39593 1.0144 1.0144 +-520 0.021153 0.39701 0.73533 0.73533 +-521 0.020282 0.39835 0.46037 0.46037 +-522 0.019485 0.39994 0.19074 0.19074 +-523 0.01857 0.40174 6.2049 6.2049 +-524 0.017773 0.40372 5.9451 5.9451 +-525 0.016948 0.40582 5.6914 5.6914 +-526 0.01617 0.408 5.4401 5.4401 +-527 0.015427 0.41021 5.1992 5.1992 +-528 0.014703 0.41239 4.9679 4.9679 +-529 0.0141 0.41448 4.7373 4.7373 +-530 0.013491 0.41643 4.5223 4.5223 +-531 0.013001 0.41819 4.311 4.311 +-532 0.012629 0.41972 4.1069 4.1069 +-533 0.012337 0.42097 3.9116 3.9116 +-534 0.012126 0.42192 3.7155 3.7155 +-535 0.012144 0.42254 3.5303 3.5303 +-536 0.012181 0.42281 3.3366 3.3366 +-537 0.012365 0.42273 3.1448 3.1448 +-538 0.012715 0.42229 2.9516 2.9516 +-539 0.013098 0.42151 2.7473 2.7473 +-540 0.013606 0.42039 2.5373 2.5373 +-541 0.014194 0.41896 2.3266 2.3266 +-542 0.014847 0.41725 2.0977 2.0977 +-543 0.015555 0.41528 1.8696 1.8696 +-544 0.016292 0.41311 1.6324 1.6324 +-545 0.01711 0.41079 1.3871 1.3871 +-546 0.017947 0.40836 1.1372 1.1372 +-547 0.01874 0.4059 0.88265 0.88265 +-548 0.019676 0.40346 0.62186 0.62186 +-549 0.020519 0.40111 0.35811 0.35811 +-550 0.021392 0.39891 0.088432 0.088432 +-551 0.022291 0.39692 6.1016 6.1016 +-552 0.023178 0.39518 5.826 5.826 +-553 0.02403 0.39375 5.547 5.547 +-554 0.024918 0.39265 5.2695 5.2695 +-555 0.025771 0.39191 4.9866 4.9866 +-556 0.026649 0.39154 4.7024 4.7024 +-557 0.027446 0.39154 4.4199 4.4199 +-558 0.028318 0.39191 4.1337 4.1337 +-559 0.029129 0.39264 3.8474 3.8474 +-560 0.029917 0.39369 3.5624 3.5624 +-561 0.030718 0.39503 3.2749 3.2749 +-562 0.031524 0.39663 2.9904 2.9904 +-563 0.032256 0.39843 2.7024 2.7024 +-564 0.033026 0.40039 2.4185 2.4185 +-565 0.033786 0.40246 2.1336 2.1336 +-566 0.034492 0.40458 1.8476 1.8476 +-567 0.03523 0.40671 1.565 1.565 +-568 0.035899 0.40879 1.2817 1.2817 +-569 0.036646 0.41079 0.99767 0.99767 +-570 0.037268 0.41265 0.71589 0.71589 +-571 0.037929 0.41435 0.43403 0.43403 +-572 0.038648 0.41586 0.15182 0.15182 +-573 0.039195 0.41716 6.1536 6.1536 +-574 0.03985 0.41822 5.8721 5.8721 +-575 0.040462 0.41904 5.5917 5.5917 +-576 0.041003 0.41961 5.3093 5.3093 +-577 0.041584 0.41992 5.0284 5.0284 +-578 0.042101 0.41997 4.7474 4.7474 +-579 0.042608 0.41978 4.464 4.464 +-580 0.043117 0.41934 4.1823 4.1823 +-581 0.043513 0.41868 3.8988 3.8988 +-582 0.044037 0.4178 3.6151 3.6151 +-583 0.044397 0.41674 3.3298 3.3298 +-584 0.044779 0.41551 3.0448 3.0448 +-585 0.045208 0.41414 2.7585 2.7585 +-586 0.045502 0.41267 2.4713 2.4713 +-587 0.045851 0.41111 2.1825 2.1825 +-588 0.046134 0.4095 1.8951 1.8951 +-589 0.046422 0.40787 1.6043 1.6043 +-590 0.046643 0.40624 1.3137 1.3137 +-591 0.046831 0.40465 1.0231 1.0231 +-592 0.047032 0.40312 0.73023 0.73023 +-593 0.047161 0.40169 0.43724 0.43724 +-594 0.047222 0.40037 0.14381 0.14381 +-595 0.047327 0.3992 6.1322 6.1322 +-596 0.047328 0.3982 5.8375 5.8375 +-597 0.047305 0.3974 5.5409 5.5409 +-598 0.047231 0.39681 5.2456 5.2456 +-599 0.047166 0.39645 4.9491 4.9491 +-600 0.04697 0.39632 4.6507 4.6507 +-601 0.046809 0.39644 4.3553 4.3553 +-602 0.04657 0.39678 4.0571 4.0571 +-603 0.04632 0.39736 3.7599 3.7599 +-604 0.045991 0.39814 3.4633 3.4633 +-605 0.04564 0.39912 3.1668 3.1668 +-606 0.045305 0.40027 2.8707 2.8707 +-607 0.0448 0.40156 2.5752 2.5752 +-608 0.044374 0.40298 2.2804 2.2804 +-609 0.043867 0.40448 1.9872 1.9872 +-610 0.043282 0.40603 1.6932 1.6932 +-611 0.042713 0.4076 1.4017 1.4017 +-612 0.042048 0.40915 1.1114 1.1114 +-613 0.041396 0.41063 0.82013 0.82013 +-614 0.040652 0.41202 0.53252 0.53252 +-615 0.039848 0.41328 0.24463 0.24463 +-616 0.0391 0.41437 6.2411 6.2411 +-617 0.038186 0.41527 5.9554 5.9554 +-618 0.037263 0.41596 5.6709 5.6709 +-619 0.036408 0.41642 5.3879 5.3879 +-620 0.035336 0.41663 5.1038 5.1038 +-621 0.034378 0.41661 4.8225 4.8225 +-622 0.033324 0.41634 4.5418 4.5418 +-623 0.032267 0.41584 4.261 4.261 +-624 0.03119 0.41513 3.9811 3.9811 +-625 0.030048 0.41421 3.7049 3.7049 +-626 0.028987 0.41312 3.4258 3.4258 +-627 0.027824 0.41188 3.1513 3.1513 +-628 0.026671 0.41052 2.8767 2.8767 +-629 0.025576 0.40907 2.6046 2.6046 +-630 0.024426 0.40759 2.3342 2.3342 +-631 0.023278 0.4061 2.0661 2.0661 +-632 0.02221 0.40465 1.8029 1.8029 +-633 0.021105 0.40329 1.5417 1.5417 +-634 0.020044 0.40205 1.2834 1.2834 +-635 0.019014 0.40098 1.0362 1.0362 +-636 0.018051 0.40009 0.78749 0.78749 +-637 0.017112 0.39943 0.54899 0.54899 +-638 0.016264 0.399 0.31895 0.31895 +-639 0.015478 0.39882 0.092643 0.092643 +-640 0.01487 0.39888 6.1598 6.1598 +-641 0.014251 0.39918 5.9502 5.9502 +-642 0.0139 0.3997 5.7477 5.7477 +-643 0.01364 0.40042 5.549 5.549 +-644 0.01349 0.40133 5.3527 5.3527 +-645 0.013577 0.40239 5.1585 5.1585 +-646 0.013787 0.40357 4.9611 4.9611 +-647 0.014073 0.40484 4.7561 4.7561 +-648 0.01459 0.40617 4.5522 4.5522 +-649 0.015138 0.4075 4.3357 4.3357 +-650 0.015796 0.40882 4.1125 4.1125 +-651 0.016545 0.41007 3.886 3.886 +-652 0.017331 0.41122 3.6503 3.6503 +-653 0.018206 0.41225 3.4062 3.4062 +-654 0.019046 0.41313 3.1622 3.1622 +-655 0.019985 0.41383 2.9089 2.9089 +-656 0.020917 0.41434 2.6525 2.6525 +-657 0.021825 0.41465 2.3939 2.3939 +-658 0.022759 0.41477 2.1289 2.1289 +-659 0.02372 0.41469 1.8655 1.8655 +-660 0.024592 0.41441 1.5938 1.5938 +-661 0.025489 0.41396 1.3242 1.3242 +-662 0.026398 0.41334 1.0514 1.0514 +-663 0.027204 0.41258 0.77367 0.77367 +-664 0.028051 0.41168 0.49785 0.49785 +-665 0.028815 0.41067 0.21886 0.21886 +-666 0.029623 0.40957 6.2191 6.2191 +-667 0.030309 0.40841 5.9382 5.9382 +-668 0.031014 0.40721 5.6533 5.6533 +-669 0.031723 0.406 5.3676 5.3676 +-670 0.032327 0.40481 5.0808 5.0808 +-671 0.032925 0.40367 4.7918 4.7918 +-672 0.033565 0.40259 4.5041 4.5041 +-673 0.034069 0.40162 4.212 4.212 +-674 0.034632 0.40076 3.9214 3.9214 +-675 0.035111 0.40003 3.6306 3.6306 +-676 0.035614 0.39946 3.3373 3.3373 +-677 0.036045 0.39905 3.0445 3.0445 +-678 0.03642 0.39881 2.7527 2.7527 +-679 0.036866 0.39875 2.458 2.458 +-680 0.03717 0.39886 2.1652 2.1652 +-681 0.037466 0.39915 1.8712 1.8712 +-682 0.037805 0.39961 1.5778 1.5778 +-683 0.038021 0.40024 1.2834 1.2834 +-684 0.038241 0.40103 0.99006 0.99006 +-685 0.038456 0.40197 0.69683 0.69683 +-686 0.038583 0.40304 0.40349 0.40349 +-687 0.038759 0.40421 0.1097 0.1097 +-688 0.038799 0.40548 6.1011 6.1011 +-689 0.038914 0.4068 5.8085 5.8085 +-690 0.03896 0.40816 5.5154 5.5154 +-691 0.038942 0.40952 5.2246 5.2246 +-692 0.038974 0.41086 4.9323 4.9323 +-693 0.038963 0.41215 4.6417 4.6417 +-694 0.038883 0.41337 4.3498 4.3498 +-695 0.038831 0.41449 4.0603 4.0603 +-696 0.038775 0.41548 3.7705 3.7705 +-697 0.038615 0.41632 3.4789 3.4789 +-698 0.038501 0.417 3.1914 3.1914 +-699 0.038327 0.41748 2.9009 2.9009 +-700 0.038151 0.41776 2.611 2.611 +-701 0.037914 0.41783 2.3225 2.3225 +-702 0.037651 0.41766 2.0322 2.0322 +-703 0.037431 0.41727 1.7421 1.7421 +-704 0.037067 0.41664 1.4517 1.4517 +-705 0.036758 0.41579 1.1598 1.1598 +-706 0.036409 0.41472 0.86947 0.86947 +-707 0.03601 0.41347 0.57435 0.57435 +-708 0.035587 0.41204 0.28132 0.28132 +-709 0.035163 0.41048 6.2703 6.2703 +-710 0.034687 0.4088 5.9715 5.9715 +-711 0.034215 0.40706 5.6753 5.6753 +-712 0.033662 0.40529 5.3752 5.3752 +-713 0.033204 0.40352 5.0743 5.0743 +-714 0.032606 0.4018 4.7719 4.7719 +-715 0.032039 0.40018 4.4683 4.4683 +-716 0.031499 0.39869 4.1639 4.1639 +-717 0.030848 0.39737 3.8572 3.8572 +-718 0.030231 0.39626 3.5494 3.5494 +-719 0.029574 0.39539 3.243 3.243 +-720 0.02889 0.39479 2.9318 2.9318 +-721 0.028195 0.39448 2.6222 2.6222 +-722 0.027409 0.39446 2.3117 2.3117 +-723 0.026679 0.39475 2.0002 2.0002 +-724 0.025892 0.39533 1.6863 1.6863 +-725 0.024985 0.39619 1.3745 1.3745 +-726 0.024221 0.3973 1.0604 1.0604 +-727 0.023291 0.39864 0.74502 0.74502 +-728 0.022396 0.40015 0.42895 0.42895 +-729 0.021498 0.40182 0.11277 0.11277 +-730 0.02057 0.40359 6.0783 6.0783 +-731 0.019648 0.40542 5.7562 5.7562 +-732 0.018703 0.40727 5.439 5.439 +-733 0.017779 0.4091 5.1147 5.1147 +-734 0.016862 0.41086 4.7901 4.7901 +-735 0.015893 0.41252 4.4646 4.4646 +-736 0.014977 0.41405 4.1336 4.1336 +-737 0.014079 0.41541 3.803 3.803 +-738 0.013127 0.41658 3.4615 3.4615 +-739 0.012256 0.41753 3.1203 3.1203 +-740 0.01137 0.41825 2.7726 2.7726 +-741 0.010547 0.41873 2.4091 2.4091 +-742 0.00973 0.41896 2.0435 2.0435 +-743 0.008946 0.41896 1.6649 1.6649 +-744 0.008345 0.41872 1.2664 1.2664 +-745 0.007657 0.41825 0.85468 0.85468 +-746 0.00722 0.41759 0.42557 0.42557 +-747 0.006878 0.41674 6.2644 6.2644 +-748 0.006696 0.41572 5.8057 5.8057 +-749 0.006731 0.41455 5.3424 5.3424 +-750 0.006833 0.41327 4.8947 4.8947 +-751 0.007234 0.4119 4.4494 4.4494 +-752 0.007628 0.41045 4.0237 4.0237 +-753 0.008125 0.40897 3.6127 3.6127 +-754 0.008737 0.40748 3.2208 3.2208 +-755 0.009348 0.40601 2.8372 2.8372 +-756 0.009993 0.40459 2.4612 2.4612 +-757 0.010641 0.40324 2.1017 2.1017 +-758 0.011303 0.40199 1.7428 1.7428 +-759 0.012016 0.40086 1.3908 1.3908 +-760 0.012596 0.39987 1.0437 1.0437 +-761 0.013299 0.39903 0.70172 0.70172 +-762 0.013947 0.39835 0.36059 0.36059 +-763 0.014525 0.39784 0.024149 0.024149 +-764 0.015183 0.39751 5.9719 5.9719 +-765 0.015723 0.39736 5.6429 5.6429 +-766 0.016342 0.39738 5.3092 5.3092 +-767 0.016832 0.39759 4.9833 4.9833 +-768 0.017332 0.39797 4.6585 4.6585 +-769 0.017857 0.39852 4.3318 4.3318 +-770 0.018243 0.39923 4.0103 4.0103 +-771 0.018632 0.40009 3.6883 3.6883 +-772 0.019049 0.40109 3.3698 3.3698 +-773 0.019309 0.40221 3.0488 3.0488 +-774 0.019608 0.40342 2.7313 2.7313 +-775 0.019848 0.4047 2.4164 2.4164 +-776 0.020041 0.40602 2.0982 2.0982 +-777 0.02021 0.40736 1.7831 1.7831 +-778 0.020288 0.40868 1.4701 1.4701 +-779 0.020436 0.40998 1.1545 1.1545 +-780 0.020444 0.41121 0.84114 0.84114 +-781 0.020448 0.41236 0.52827 0.52827 +-782 0.020483 0.4134 0.21432 0.21432 +-783 0.020419 0.41431 6.1865 6.1865 +-784 0.020366 0.41507 5.8712 5.8712 +-785 0.020261 0.41566 5.5625 5.5625 +-786 0.020188 0.41606 5.2495 5.2495 +-787 0.020018 0.41627 4.9361 4.9361 +-788 0.019846 0.41627 4.6285 4.6285 +-789 0.019648 0.41606 4.3136 4.3136 +-790 0.019442 0.41564 4.0026 4.0026 +-791 0.019134 0.41503 3.6892 3.6892 +-792 0.018878 0.41422 3.3753 3.3753 +-793 0.018575 0.41325 3.0606 3.0606 +-794 0.018208 0.41214 2.7419 2.7419 +-795 0.017874 0.41091 2.4244 2.4244 +-796 0.017491 0.4096 2.1057 2.1057 +-797 0.017116 0.40823 1.7785 1.7785 +-798 0.016699 0.40685 1.457 1.457 +-799 0.016289 0.40549 1.1273 1.1273 +-800 0.015927 0.40419 0.79693 0.79693 +-801 0.015486 0.40298 0.46245 0.46245 +-802 0.015078 0.40189 0.12634 0.12634 +-803 0.014776 0.40096 6.0726 6.0726 +-804 0.014323 0.4002 5.7267 5.7267 +-805 0.014003 0.39965 5.385 5.385 +-806 0.013653 0.39932 5.0392 5.0392 +-807 0.01334 0.39921 4.6864 4.6864 +-808 0.013024 0.39934 4.3359 4.3359 +-809 0.012721 0.39969 3.9815 3.9815 +-810 0.012502 0.40025 3.6219 3.6219 +-811 0.012261 0.401 3.2639 3.2639 +-812 0.012063 0.40191 2.8966 2.8966 +-813 0.011948 0.40295 2.5364 2.5364 +-814 0.011874 0.40409 2.1662 2.1662 +-815 0.011832 0.40529 1.7966 1.7966 +-816 0.01188 0.40651 1.4338 1.4338 +-817 0.011993 0.40772 1.0626 1.0626 +-818 0.01219 0.40888 0.69823 0.69823 +-819 0.012382 0.40996 0.33496 0.33496 +-820 0.012714 0.41093 6.2603 6.2603 +-821 0.01311 0.41178 5.9045 5.9045 +-822 0.01345 0.41247 5.55 5.55 +-823 0.013967 0.41299 5.207 5.207 +-824 0.014441 0.41333 4.8615 4.8615 +-825 0.014979 0.41348 4.5199 4.5199 +-826 0.015552 0.41344 4.185 4.185 +-827 0.016116 0.41321 3.8511 3.8511 +-828 0.016799 0.41281 3.5186 3.5186 +-829 0.017382 0.41225 3.1907 3.1907 +-830 0.018067 0.41155 2.8627 2.8627 +-831 0.01878 0.41074 2.5398 2.5398 +-832 0.019451 0.40984 2.2131 2.2131 +-833 0.020169 0.40888 1.8917 1.8917 +-834 0.020931 0.40788 1.5726 1.5726 +-835 0.021657 0.40688 1.2484 1.2484 +-836 0.022441 0.4059 0.93192 0.93192 +-837 0.023178 0.40496 0.61286 0.61286 +-838 0.024023 0.40409 0.29536 0.29536 +-839 0.024774 0.40331 6.2626 6.2626 +-840 0.025552 0.40262 5.9472 5.9472 +-841 0.026386 0.40206 5.6333 5.6333 +-842 0.027113 0.40162 5.3196 5.3196 +-843 0.027896 0.40132 5.0056 5.0056 +-844 0.028634 0.40116 4.6952 4.6952 +-845 0.029371 0.40114 4.3818 4.3818 +-846 0.030102 0.40127 4.0707 4.0707 +-847 0.03076 0.40153 3.7603 3.7603 +-848 0.031471 0.40191 3.4503 3.4503 +-849 0.032155 0.40241 3.1396 3.1396 +-850 0.032711 0.40302 2.8311 2.8311 +-851 0.033422 0.40371 2.523 2.523 +-852 0.033969 0.40447 2.2142 2.2142 +-853 0.034534 0.4053 1.9069 1.9069 +-854 0.035104 0.40616 1.6004 1.6004 +-855 0.035623 0.40706 1.2949 1.2949 +-856 0.036131 0.40797 0.9876 0.9876 +-857 0.036579 0.40889 0.68454 0.68454 +-858 0.037041 0.40979 0.38002 0.38002 +-859 0.037463 0.41066 0.076233 0.076233 +-860 0.037803 0.41149 6.0577 6.0577 +-861 0.038145 0.41227 5.7549 5.7549 +-862 0.038466 0.41297 5.4548 5.4548 +-863 0.038667 0.41358 5.1531 5.1531 +-864 0.038879 0.41408 4.8532 4.8532 +-865 0.03904 0.41447 4.5544 4.5544 +-866 0.039136 0.41472 4.253 4.253 +-867 0.039191 0.41484 3.9549 3.9549 +-868 0.039173 0.41481 3.6564 3.6564 +-869 0.039197 0.41463 3.3556 3.3556 +-870 0.039046 0.41429 3.0582 3.0582 +-871 0.038939 0.41379 2.7587 2.7587 +-872 0.038772 0.41314 2.46 2.46 +-873 0.038523 0.41232 2.1614 2.1614 +-874 0.038241 0.41136 1.8609 1.8609 +-875 0.03795 0.41025 1.5644 1.5644 +-876 0.037569 0.40903 1.2627 1.2627 +-877 0.037154 0.4077 0.96438 0.96438 +-878 0.036695 0.40629 0.66566 0.66566 +-879 0.036201 0.40484 0.36531 0.36531 +-880 0.035639 0.40338 0.06634 0.06634 +-881 0.03498 0.40194 6.0501 6.0501 +-882 0.034378 0.40056 5.7504 5.7504 +-883 0.033643 0.39928 5.451 5.451 +-884 0.032841 0.39812 5.1508 5.1508 +-885 0.032079 0.39714 4.853 4.853 +-886 0.03121 0.39635 4.5524 4.5524 +-887 0.030287 0.39578 4.2543 4.2543 +-888 0.029391 0.39547 3.9571 3.9571 +-889 0.02836 0.39542 3.6594 3.6594 +-890 0.02742 0.39565 3.3631 3.3631 +-891 0.026313 0.39617 3.069 3.069 +-892 0.025291 0.39698 2.777 2.777 +-893 0.024225 0.39805 2.485 2.485 +-894 0.023065 0.39938 2.1985 2.1985 +-895 0.021996 0.40092 1.9134 1.9134 +-896 0.020865 0.40265 1.6343 1.6343 +-897 0.01969 0.40451 1.3559 1.3559 +-898 0.018565 0.40647 1.0869 1.0869 +-899 0.017416 0.40846 0.82295 0.82295 +-900 0.016269 0.41044 0.56226 0.56226 +-901 0.015129 0.41237 0.31632 0.31632 +-902 0.014017 0.41418 0.076472 0.076472 +-903 0.012992 0.41586 6.1286 6.1286 +-904 0.011935 0.41734 5.9182 5.9182 +-905 0.011032 0.41861 5.7188 5.7188 +-906 0.010255 0.41963 5.5359 5.5359 +-907 0.009564 0.42038 5.3772 5.3772 +-908 0.009101 0.42085 5.2292 5.2292 +-909 0.008896 0.42101 5.1034 5.1034 +-910 0.008848 0.42086 4.9711 4.9711 +-911 0.00909 0.42041 4.8454 4.8454 +-912 0.009612 0.41966 4.7018 4.7018 +-913 0.010186 0.41863 4.5415 4.5415 +-914 0.01107 0.41734 4.3634 4.3634 +-915 0.01198 0.41583 4.1694 4.1694 +-916 0.01302 0.41414 3.9534 3.9534 +-917 0.014121 0.41231 3.7296 3.7296 +-918 0.015275 0.41038 3.4941 3.4941 +-919 0.016481 0.40841 3.2433 3.2433 +-920 0.017701 0.40644 2.9908 2.9908 +-921 0.018908 0.40451 2.7298 2.7298 +-922 0.020228 0.40265 2.4615 2.4615 +-923 0.021426 0.40093 2.1914 2.1914 +-924 0.022691 0.39936 1.9151 1.9151 +-925 0.023983 0.39798 1.6382 1.6382 +-926 0.025202 0.39682 1.3562 1.3562 +-927 0.026411 0.39591 1.0724 1.0724 +-928 0.02768 0.39525 0.79016 0.79016 +-929 0.028835 0.39486 0.50019 0.50019 +-930 0.030028 0.39475 0.21433 0.21433 +-931 0.031174 0.3949 6.2087 6.2087 +-932 0.032334 0.39532 5.9181 5.9181 +-933 0.033454 0.39598 5.6288 5.6288 +-934 0.034522 0.39685 5.3387 5.3387 +-935 0.035658 0.39791 5.0479 5.0479 +-936 0.036701 0.39913 4.7583 4.7583 +-937 0.037734 0.40047 4.4672 4.4672 +-938 0.03879 0.40191 4.1788 4.1788 +-939 0.039802 0.4034 3.8884 3.8884 +-940 0.040771 0.40493 3.5989 3.5989 +-941 0.041772 0.40647 3.3115 3.3115 +-942 0.042712 0.40798 3.0222 3.0222 +-943 0.043664 0.40945 2.7344 2.7344 +-944 0.044545 0.41085 2.4471 2.4471 +-945 0.045457 0.41216 2.16 2.16 +-946 0.04636 0.41336 1.8725 1.8725 +-947 0.047131 0.41443 1.5864 1.5864 +-948 0.048022 0.41537 1.3 1.3 +-949 0.048796 0.41614 1.0137 1.0137 +-950 0.049542 0.41675 0.72784 0.72784 +-951 0.050295 0.41718 0.44153 0.44153 +-952 0.050991 0.41743 0.1563 0.1563 +-953 0.051677 0.41749 6.1517 6.1517 +-954 0.052295 0.41737 5.8664 5.8664 +-955 0.052903 0.41707 5.5794 5.5794 +-956 0.053522 0.41659 5.2913 5.2913 +-957 0.05402 0.41593 5.0043 5.0043 +-958 0.054536 0.41511 4.7163 4.7163 +-959 0.055079 0.41414 4.4273 4.4273 +-960 0.055435 0.41302 4.1383 4.1383 +-961 0.055906 0.41178 3.8481 3.8481 +-962 0.056263 0.41043 3.5585 3.5585 +-963 0.056586 0.40899 3.2661 3.2661 +-964 0.056892 0.4075 2.9746 2.9746 +-965 0.057147 0.40598 2.6821 2.6821 +-966 0.057378 0.40447 2.3874 2.3874 +-967 0.057562 0.403 2.0941 2.0941 +-968 0.05765 0.4016 1.7982 1.7982 +-969 0.057814 0.40032 1.5028 1.5028 +-970 0.057815 0.39918 1.2061 1.2061 +-971 0.057799 0.39821 0.90874 0.90874 +-972 0.057777 0.39744 0.61203 0.61203 +-973 0.057669 0.3969 0.31313 0.31313 +-974 0.057508 0.3966 0.014737 0.014737 +-975 0.057312 0.39656 6.0009 6.0009 +-976 0.057069 0.39678 5.7008 5.7008 +-977 0.056746 0.39727 5.4034 5.4034 +-978 0.056389 0.39802 5.1052 5.1052 +-979 0.055983 0.39902 4.8076 4.8076 +-980 0.05553 0.40023 4.5105 4.5105 +-981 0.054952 0.40162 4.2138 4.2138 +-982 0.054442 0.40317 3.9188 3.9188 +-983 0.053791 0.40482 3.6235 3.6235 +-984 0.05309 0.40654 3.3299 3.3299 +-985 0.052392 0.40826 3.0372 3.0372 +-986 0.051586 0.40996 2.7458 2.7458 +-987 0.050778 0.41157 2.4545 2.4545 +-988 0.049848 0.41306 2.1657 2.1657 +-989 0.048931 0.41439 1.8774 1.8774 +-990 0.04797 0.41552 1.589 1.589 +-991 0.046878 0.41643 1.3038 1.3038 +-992 0.04582 0.41708 1.0178 1.0178 +-993 0.044716 0.41746 0.7334 0.7334 +-994 0.043485 0.41756 0.44943 0.44943 +-995 0.042323 0.41736 0.16698 0.16698 +-996 0.041056 0.41687 6.1685 6.1685 +-997 0.039755 0.41611 5.8867 5.8867 +-998 0.03847 0.41509 5.6064 5.6064 +-999 0.03707 0.41383 5.3287 5.3287 +-1000 0.03576 0.41239 5.0484 5.0484 diff --git a/genie-embm/src/fortran/embm.cmn b/genie-embm/src/fortran/embm.cmn index 5a02d8052..f870758a5 100644 --- a/genie-embm/src/fortran/embm.cmn +++ b/genie-embm/src/fortran/embm.cmn @@ -256,28 +256,38 @@ c SG (16/02/2K7) : added orbital parameters for albedo calculation character*200 filenameorbit integer t_orbit,norbit,orbitsteps + logical opt_orbit_old real orbitecc_vect(en_ntimes_max) - real orbitobl_vect(en_ntimes_max) - real orbitpre_vect(en_ntimes_max) + real orbitsob_vect(en_ntimes_max) + real orbitgam_vect(en_ntimes_max) real orbittau_vect(en_ntimes_max) real orbitall_vect(en_ntimes_max,5) + real orbitobl_vect(en_ntimes_max) + real orbitper_vect(en_ntimes_max) + real orbitla_vect(en_ntimes_max,4) real par_orbit_osce real par_orbit_oscsob real par_orbit_oscgam - real par_orbit_osctau0 + real par_orbit_osctau0 + real par_orbit_oscobl + real par_orbit_osclonperi common/orbit_vary/ & orbitecc_vect, - & orbitobl_vect, - & orbitpre_vect, + & orbitsob_vect, + & orbitgam_vect, & orbittau_vect, - & orbitall_vect, + & orbitall_vect,orbitla_vect, + & orbitper_vect, + & orbitobl_vect, & t_orbit,norbit,orbitsteps, + & opt_orbit_old, & filenameorbit COMMON /embm_orbits/ & par_orbit_osce,par_orbit_oscsob, - & par_orbit_oscgam,par_orbit_osctau0 + & par_orbit_oscgam,par_orbit_osctau0, + & par_orbit_oscobl,par_orbit_osclonperi c pbh co2 times series character*200 filenameco2 diff --git a/genie-embm/src/fortran/initialise_embm.F b/genie-embm/src/fortran/initialise_embm.F index 044af5d21..36328945e 100644 --- a/genie-embm/src/fortran/initialise_embm.F +++ b/genie-embm/src/fortran/initialise_embm.F @@ -157,7 +157,6 @@ subroutine initialise_embm(alon1,alat1,alon2,alat2, c ENTS functionality logical flag_ents real deltq - real qsat c file access checks @@ -236,6 +235,7 @@ subroutine initialise_embm(alon1,alat1,alon2,alat2, NAMELIST /ini_embm_nml/lin,atchem_radfor NAMELIST /ini_embm_nml/orbit_radfor NAMELIST /ini_embm_nml/t_orbit,norbit,orbitsteps,filenameorbit + NAMELIST /ini_embm_nml/opt_orbit_old NAMELIST /ini_embm_nml/t_co2,nco2,co2steps,filenameco2 NAMELIST /ini_embm_nml/diffa_scl,diffa_len NAMELIST /ini_embm_nml/dosc,delf2x @@ -279,6 +279,7 @@ subroutine initialise_embm(alon1,alat1,alon2,alat2, NAMELIST /ini_embm_nml/par_albedo1d_name,par_albedo2d_name NAMELIST /ini_embm_nml/par_orbit_osce,par_orbit_oscsob NAMELIST /ini_embm_nml/par_orbit_oscgam,par_orbit_osctau0 + NAMELIST /ini_embm_nml/par_orbit_oscobl,par_orbit_osclonperi NAMELIST /ini_embm_nml/opt_delf2x_cesm,opt_co2ch4radfor c ------------------------------------------------------------ c @@ -1710,28 +1711,54 @@ subroutine initialise_embm(alon1,alat1,alon2,alat2, c pbh read in time varying orbital forcing c AR (14/10/08) -- input format changed to 5 column format (time first) c AR (14/10/08) -- also re-order time(!) +c PV (22/07/223) -- add option to swap old vs new radfor code (opt_orbit_old) +c if opt_orbit_old=true, use old 5-column orbit input file (t,ecc,sin(obl),gamma,tau) +c if opt_orbit_old=false, use 4-column orbit input file (t,ecc,obl,long.peri) format as per La2004 if(orbit_radfor.eq."y".or.orbit_radfor.eq."Y") then - inquire(file=indir_name(1:lenin)//trim(filenameorbit), - $ exist=ioex) - if (ioex) then - open(unit=729,file=indir_name(1:lenin)//trim(filenameorbit), - $ iostat=ios) - do i=1,norbit - read(729,*,iostat=ios)(orbitall_vect(i,n),n=1,5) - enddo - close(729) - do i=1,norbit - orbitecc_vect(norbit-i+1) = orbitall_vect(i,2) - orbitobl_vect(norbit-i+1) = orbitall_vect(i,3) - orbitpre_vect(norbit-i+1) = orbitall_vect(i,4) - orbittau_vect(norbit-i+1) = orbitall_vect(i,5) - enddo - else - print*,'' - print*,' *** Missing file: '// - $ indir_name(1:lenin)//trim(filenameorbit) - stop - endif + if(opt_orbit_old) then + inquire(file=indir_name(1:lenin)//trim(filenameorbit), + & exist=ioex) + if (ioex) then + open(unit=729,file=indir_name(1:lenin)// + & trim(filenameorbit),iostat=ios) + do i=1,norbit + read(729,*,iostat=ios)(orbitall_vect(i,n),n=1,5) + enddo + close(729) + do i=1,norbit + orbitecc_vect(norbit-i+1) = orbitall_vect(i,2) + orbitsob_vect(norbit-i+1) = orbitall_vect(i,3) + orbitgam_vect(norbit-i+1) = orbitall_vect(i,4) + orbittau_vect(norbit-i+1) = orbitall_vect(i,5) + enddo + else + print*,'' + print*,' *** Missing file: '// + & indir_name(1:lenin)//trim(filenameorbit) + stop + endif + else + inquire(file=indir_name(1:lenin)//trim(filenameorbit), + & exist=ioex) + if (ioex) then + open(unit=729,file=indir_name(1:lenin)// + & trim(filenameorbit),iostat=ios) + do i=1,norbit + read(729,*,iostat=ios)(orbitla_vect(i,n),n=1,4) + enddo + close(729) + do i=1,norbit + orbitecc_vect(norbit-i+1) = orbitla_vect(i,2) + orbitobl_vect(norbit-i+1) = orbitla_vect(i,3) + orbitper_vect(norbit-i+1) = orbitla_vect(i,4) + enddo + else + print*,'' + print*,' *** Missing file: '// + & indir_name(1:lenin)//trim(filenameorbit) + stop + endif + endif endif c end pbh diff --git a/genie-embm/src/fortran/radfor.F b/genie-embm/src/fortran/radfor.F index 79b74fd43..cb2f7eb92 100644 --- a/genie-embm/src/fortran/radfor.F +++ b/genie-embm/src/fortran/radfor.F @@ -4,14 +4,24 @@ c c nyear = no. dt per year c osct = angular time of year (0,..,2pi) -c oscsind = sin of declination (not an input) -c oscsob = sin of obliquity (input) -c osce = eccentricity (input) -c oscgam = mean longitude (after Berger 1978) +c oscsind = sin of declination c oscday = 0.5 * sunlit (angular) fraction of day, ie 1/2 length of day c solfor = solar forcing = scaling factor * integral of cosine of solar c elevation during daylight c +c ----- if opt_orbit_old=TRUE, use old definitions +c osce = eccentricity +c oscsob = sin of obliquity +c oscgam = MEAN longitude (after Berger 1978) (in deg) +c osctau0 = date of perihelion from Jan 1st (in days) +c ----- if opt_orbit_old=FALSE, use new definitions +c osce = eccentricity +c oscobl = obliquity (in rad) +c osclonperi = TRUE longitude of perihelon (in rad) +c NOTE: the new orbits code contains (1) corrections for osce4 used to +c calculate the insolation as a function of ecc, corrections for +c (2) calculation of solar declination, and for (3) applying +c consistency between fixed and time-varying orbits subroutine radfor (iistep,gn_daysperyear,solconst,flag_ents) @@ -21,9 +31,10 @@ subroutine radfor (iistep,gn_daysperyear,solconst,flag_ents) integer istep, j real rpi, osce, oscsob, oscgam, tv, osce1, osce2, osce3, osce4 + real oscobl,osclonperi real oscryr, osct, oscv, oscsolf, oscsind, oscss, osccc, osctt real oscday - real zw, zw1, zv, zm + real zw, zw1, zv, zm, dn integer i c SG (16/02/2K7) orbital variables @@ -37,16 +48,18 @@ subroutine radfor (iistep,gn_daysperyear,solconst,flag_ents) logical flag_ents -c parameter(osce=0.0167, oscsob=0.397789, oscgam=1.352631) -c SG (16/02/2K7) : Changed static declaration of osce,oscsob -c & oscgam. -ccc osce=0.0167 -ccc oscsob=0.397789 -ccc oscgam=1.352631 +c SG (16/02/2K7): Changed static declaration of osce,oscsob, oscgam +c parameter(osce=0.0167, oscsob=0.397789, oscgam=1.352631) c pbh initialise osctau0 for angular time of year. -c value of osctau0=-0.5 (=> osctau1=0.0) reproduces old orbital calculation -ccc osctau0=-0.5 +c value of osctau0=-0.5 (=> osctau1=0.0) reproduces old orbital calculation c ajr namelist replacements +c PV [17/04/2023] add conditional to check if OLD or NEW orbit code should be applied + +c >>>>>>>>>> OLD ORBITS CODE STARTS HERE >>>>>>>>>>>>>>>>>>>>>>>>> +c >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> + + if (opt_orbit_old) then + osce=par_orbit_osce oscsob=par_orbit_oscsob osctau0=par_orbit_osctau0 @@ -78,8 +91,8 @@ subroutine radfor (iistep,gn_daysperyear,solconst,flag_ents) if (t_orbit.eq.2) then osce=orbitecc_vect(1) - oscsob=orbitobl_vect(1) - oscgam=orbitpre_vect(1) + oscsob=orbitsob_vect(1) + oscgam=orbitgam_vect(1) osctau0=orbittau_vect(1) print*,'orbitvars:',iistep print*,'orbitosce,oscsob:',osce,oscsob @@ -93,23 +106,23 @@ subroutine radfor (iistep,gn_daysperyear,solconst,flag_ents) if (time_2.le.norbit) then osce=(1-time_frac)*orbitecc_vect(time_1)+ & time_frac*orbitecc_vect(time_2) - oscsob=(1-time_frac)*orbitobl_vect(time_1)+ - & time_frac*orbitobl_vect(time_2) + oscsob=(1-time_frac)*orbitsob_vect(time_1)+ + & time_frac*orbitsob_vect(time_2) - if (abs(orbitpre_vect(time_1)- - & orbitpre_vect(time_2)).gt.pi) then + if (abs(orbitgam_vect(time_1)- + & orbitgam_vect(time_2)).gt.pi) then - if (orbitpre_vect(time_1).gt.orbitpre_vect(time_2)) then - oscgam=mod((1-time_frac)*orbitpre_vect(time_1)+ - & time_frac*(orbitpre_vect(time_2)+2*pi),2*pi) + if (orbitgam_vect(time_1).gt.orbitgam_vect(time_2)) then + oscgam=mod((1-time_frac)*orbitgam_vect(time_1)+ + & time_frac*(orbitgam_vect(time_2)+2*pi),2*pi) else - oscgam=mod((1-time_frac)*(orbitpre_vect(time_1)+2*pi)+ - & time_frac*(orbitpre_vect(time_2)),2*pi) + oscgam=mod((1-time_frac)*(orbitgam_vect(time_1)+2*pi)+ + & time_frac*(orbitgam_vect(time_2)),2*pi) endif else - oscgam=(1-time_frac)*orbitpre_vect(time_1)+ - & time_frac*orbitpre_vect(time_2) + oscgam=(1-time_frac)*orbitgam_vect(time_1)+ + & time_frac*orbitgam_vect(time_2) endif if (abs(orbittau_vect(time_1)- @@ -134,8 +147,8 @@ subroutine radfor (iistep,gn_daysperyear,solconst,flag_ents) else if (time_frac.ne.0) print*,'Time out of bounds for orbit' osce=orbitecc_vect(norbit) - oscsob=orbitobl_vect(norbit) - oscgam=orbitpre_vect(norbit) + oscsob=orbitsob_vect(norbit) + oscgam=orbitgam_vect(norbit) osctau0=orbittau_vect(norbit) endif @@ -197,11 +210,170 @@ subroutine radfor (iistep,gn_daysperyear,solconst,flag_ents) c write(1,'(e15.5)')solfor(j,istep) enddo enddo + +c >>>>>>>>>> NEW ORBITS CODE STARTS HERE >>>>>>>>>>>>>>>>>>>>>>>>> +c >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> +c PV if opt_orbit_old=false, do the below + + else + + osce=par_orbit_osce + oscobl=par_orbit_oscobl + zw=par_orbit_osclonperi + +c PV (05/10/2022) orbits take TRUE longitude of perihelion (anti-clockwise angle +c between vernal equinox and perihelion from heliocentric perspective), rather +c than MEAN longitude converted from heliocentric to geocentric perspective + + if ((orbit_radfor.eq.'y').or.(orbit_radfor.eq.'Y')) then + + if (t_orbit.eq.2) then + osce=orbitecc_vect(1) + oscobl=orbitobl_vect(1) + zw=orbitper_vect(1) + + print*,'orbitvars:',iistep + print*,'orbitosce,oscobl:',osce,oscobl + print*,'orbitlonperi',zw + endif + + if (t_orbit.eq.1) then + time_1=int(iistep/real(orbitsteps))+1 + time_2=time_1+1 + time_frac=(mod(iistep,orbitsteps))/real(orbitsteps) + if (time_2.le.norbit) then + osce=(1-time_frac)*orbitecc_vect(time_1)+ + & time_frac*orbitecc_vect(time_2) + oscobl=(1-time_frac)*orbitobl_vect(time_1)+ + & time_frac*orbitobl_vect(time_2) + + if (abs(orbitper_vect(time_1)- + & orbitper_vect(time_2)).gt.pi) then + + if (orbitper_vect(time_1) + & .gt.orbitper_vect(time_2)) then + zw=mod((1-time_frac)*orbitper_vect(time_1)+ + & time_frac*(orbitper_vect(time_2)+2*pi),2*pi) + else + zw=mod((1-time_frac)*(orbitper_vect(time_1)+2*pi)+ + & time_frac*(orbitper_vect(time_2)),2*pi) + endif + + else + zw=(1-time_frac)*orbitper_vect(time_1)+ + & time_frac*orbitper_vect(time_2) + endif + + + else + if (time_frac.ne.0) print*,'Time out of bounds for orbit' + osce=orbitecc_vect(norbit) + oscobl=orbitobl_vect(norbit) + zw=orbitper_vect(norbit) + endif + + if (mod(iistep-1,10000).eq.0) then + if (debug_loop) then + print*,'orbitvars:',iistep,time_1,time_frac + print*,'orbitosce,oscobl:',osce,oscobl + print*,'orbitlonperi',zw + endif + endif + endif + endif + +c SKT calculate oscgam (gamma) from par_orbit_osclonperi (longitude of perihelion) +c gamma = pi - longitude of perihelion (rad) and must be nonnegative, so first add 180 +c PV (05/10/2022) zw=anti-clockwise angle between the vernal equinox and perihelion. Steps +c below convert heliocentric to geocentric perspective (convert to zv) +c PV (13/10/2022) fixed and time-varying orbital parameters are now subjected to same calculations + zw1=pi+zw + if (zw1.gt.2*pi) then + zw1=zw1-(2*pi) + end if + zv=(2*pi)-zw1 + +c PV (05/10/2022) convert true geocentric longitude of perihelion to the mean longitude (oscgam) + oscgam = zv + do i=1,10 + oscgam =zv + & - (2.0*osce - 0.25*osce*osce*osce) + & *sin(oscgam)- 1.25*osce*osce*sin(2.*oscgam) + & - 13./12.*osce*osce*osce*sin(3.*oscgam) + enddo +c PV (05/10/2022) convert mean longitude from radians to days (days between perihelion & vernal equinox) + dn = oscgam*gn_daysperyear/(2*pi) +c PV (05/10/2022) cGENIE starts at Jan 1st, not the vernal equinox on March 21, so substract 79.265 days +c from dn so that the first timestep always occurs ~80 days from the vernal equinox + dn = dn - 79.265 +c PV (05/10/2022) calculate the date of perihelion from Jan. 1st and make sure the days fall +c within the 0-365.25 day range + osctau0 = -dn + if (osctau0 < 0) then + osctau0 = gn_daysperyear+osctau0 + endif + +c SKT terms for solar insolation calculations + rpi = 1.0/pi + tv = osce*osce + osce1 = osce * (2.0 - 0.25*tv) + osce2 = 1.25 * tv + osce3 = osce*tv * 13./12. +c PV (05/10/2022) correcton for osce4 + osce4 = ((1.0)/(1.0 - tv))**2 + oscryr = 2.0*pi/float(nyear) + +c SKT osctau1 is the time of perihelion and does not equal 0! + osctau1 = osctau0 + 0.5 + + do istep=1,nyear + +c SKT osct = mean anomaly (fraction of orbital period elapsed since perihelion) + osct = (float(mod(istep-1,nyear)+1) - + & (nyear*osctau1/gn_daysperyear))*oscryr +c oscv = true anomaly calculated from eccentricity and mean anomaly +c (i.e. the angular distance of the earth around its orbit from perihelion) + oscv = osct + osce1*sin(osct) + osce2*sin(2.0*osct) + & + osce3*sin(3.0*osct) +c oscsolf = insolation at the top of the atmosphere +c (but without multiplying by the solar constant) + oscsolf = osce4*(1.0 + osce*cos(oscv))**2 +c PV (05/10/2022) oscsind = sine of solar declination in terms of the angle +c between the vernal equinox and earth, i.e. substract the geocentric (true) +c longitude of perihelion(zv) from the true anomaly (angle perihelion-Earth) + oscsind = sin(oscobl)*sin(oscv-zv) +c SKT for each latitude, calculate the following: +c oscss = sin(solar declination) * sin(latitude) +c oscccc = cos(solar declination) +c osctt = tan(latitude)*tan(solar declination) +c oscday = hour angle of sunset (the angle through which earth +c has rotated between local solar noon and sunset) +c solfor(j,istep) = incoming solar radiation at each latitude +c (TOA insolation multiplied by mean cos(solar zenith angle)) + do j=1,jmax + oscss = oscsind * s(j) + osccc = sqrt(1.0 - oscsind**2) * c(j) + osctt = min(1.0,max(-1.0,oscss/osccc)) + oscday = acos(- osctt) + solfor(j,istep) = solconst*oscsolf*rpi* + & (oscss*oscday + osccc*sin(oscday)) + if (flag_ents) then + call ocean_alb(oscss,osccc,oscday,j,istep) + endif + enddo + enddo + + + endif +C PV >>>>>>>>> NEW ORBITS CODE ENDS HERE >>>>>>>>>>>>>>>>>>>>>>>>> +c >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> + +c SEASONALITY if (dosc) then else c -c replace variable forcing by its average +c replace variable forcing by its average if seasons are disabled (dosc=false) c do j=1,jmax solavg(j) = 0. diff --git a/genie-forcings/pyyyyz.FPOC_np30.vervoortetal2021/biogem_force_flux_sed_POC_SUR.dat b/genie-forcings/pyyyyz.FPOC_np30.vervoortetal2021/biogem_force_flux_sed_POC_SUR.dat index 707ce8936..d54284b4c 100644 --- a/genie-forcings/pyyyyz.FPOC_np30.vervoortetal2021/biogem_force_flux_sed_POC_SUR.dat +++ b/genie-forcings/pyyyyz.FPOC_np30.vervoortetal2021/biogem_force_flux_sed_POC_SUR.dat @@ -2,17 +2,17 @@ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 -1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 -1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 -2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 -2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 -2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 -2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 -1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 -1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 -1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 -2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 -3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 -3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 -3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 \ No newline at end of file +5.539736e+11 5.528141e+11 5.540182e+11 5.555639e+11 5.548671e+11 5.531431e+11 5.531236e+11 5.550115e+11 5.555024e+11 5.539736e+11 5.528141e+11 5.540182e+11 5.555639e+11 5.548671e+11 5.531431e+11 5.531236e+11 5.550115e+11 5.555024e+11 +1.136687e+12 1.135632e+12 1.134621e+12 1.135405e+12 1.13664e+12 1.13629e+12 1.134962e+12 1.134781e+12 1.136142e+12 1.136687e+12 1.135632e+12 1.134621e+12 1.135405e+12 1.13664e+12 1.13629e+12 1.134962e+12 1.134781e+12 1.136142e+12 +1.738291e+12 1.737756e+12 1.738151e+12 1.738815e+12 1.738659e+12 1.737934e+12 1.737839e+12 1.738527e+12 1.738855e+12 1.738291e+12 1.737756e+12 1.738151e+12 1.738815e+12 1.738659e+12 1.737934e+12 1.737839e+12 1.738527e+12 1.738855e+12 +2.781886e+12 2.781131e+12 2.781108e+12 2.781869e+12 2.782137e+12 2.781492e+12 2.780973e+12 2.781461e+12 2.782119e+12 2.781886e+12 2.781131e+12 2.781108e+12 2.781869e+12 2.782137e+12 2.781492e+12 2.780973e+12 2.781461e+12 2.782119e+12 +2.919657e+12 2.919395e+12 2.919067e+12 2.919232e+12 2.919598e+12 2.919575e+12 2.91919e+12 2.919079e+12 2.919423e+12 2.919657e+12 2.919395e+12 2.919067e+12 2.919232e+12 2.919598e+12 2.919575e+12 2.91919e+12 2.919079e+12 2.919423e+12 +2.896771e+12 2.896699e+12 2.896294e+12 2.896228e+12 2.896609e+12 2.896805e+12 2.896502e+12 2.896179e+12 2.896391e+12 2.896771e+12 2.896699e+12 2.896294e+12 2.896228e+12 2.896609e+12 2.896805e+12 2.896502e+12 2.896179e+12 2.896391e+12 +2.718423e+12 2.718431e+12 2.718128e+12 2.71801e+12 2.718278e+12 2.718485e+12 2.718291e+12 2.718006e+12 2.71811e+12 2.718423e+12 2.718431e+12 2.718128e+12 2.71801e+12 2.718278e+12 2.718485e+12 2.718291e+12 2.718006e+12 2.71811e+12 +1.843351e+12 1.843319e+12 1.843175e+12 1.843157e+12 1.843295e+12 1.843361e+12 1.843243e+12 1.843134e+12 1.843216e+12 1.843351e+12 1.843319e+12 1.843175e+12 1.843157e+12 1.843295e+12 1.843361e+12 1.843243e+12 1.843134e+12 1.843216e+12 +1.341215e+12 1.341195e+12 1.341155e+12 1.341162e+12 1.341204e+12 1.34121e+12 1.34117e+12 1.341148e+12 1.341181e+12 1.341215e+12 1.341195e+12 1.341155e+12 1.341162e+12 1.341204e+12 1.34121e+12 1.34117e+12 1.341148e+12 1.341181e+12 +1.084008e+12 1.084007e+12 1.084003e+12 1.084002e+12 1.084007e+12 1.084009e+12 1.084004e+12 1.084e+12 1.084003e+12 1.084008e+12 1.084007e+12 1.084003e+12 1.084002e+12 1.084007e+12 1.084009e+12 1.084004e+12 1.084e+12 1.084003e+12 +2.620925e+12 2.620924e+12 2.620925e+12 2.620925e+12 2.620925e+12 2.620925e+12 2.620925e+12 2.620925e+12 2.620925e+12 2.620925e+12 2.620924e+12 2.620925e+12 2.620925e+12 2.620925e+12 2.620925e+12 2.620925e+12 2.620925e+12 2.620925e+12 +3.539654e+12 3.539654e+12 3.539654e+12 3.539654e+12 3.539654e+12 3.539654e+12 3.539654e+12 3.539654e+12 3.539654e+12 3.539654e+12 3.539654e+12 3.539654e+12 3.539654e+12 3.539654e+12 3.539654e+12 3.539654e+12 3.539654e+12 3.539654e+12 +3.849779e+12 3.849779e+12 3.849779e+12 3.849779e+12 3.849779e+12 3.849779e+12 3.849779e+12 3.849779e+12 3.849779e+12 3.849779e+12 3.849779e+12 3.849779e+12 3.849779e+12 3.849779e+12 3.849779e+12 3.849779e+12 3.849779e+12 3.849779e+12 +3.607859e+12 3.607859e+12 3.607859e+12 3.607859e+12 3.607859e+12 3.607859e+12 3.607859e+12 3.607859e+12 3.607859e+12 3.607859e+12 3.607859e+12 3.607859e+12 3.607859e+12 3.607859e+12 3.607859e+12 3.607859e+12 3.607859e+12 3.607859e+12 \ No newline at end of file diff --git a/genie-forcings/pyyyyz.FPOC_np30.vervoortetal2021/original/biogem_force_flux_sed_POC_SUR.dat b/genie-forcings/pyyyyz.FPOC_np30.vervoortetal2021/original/biogem_force_flux_sed_POC_SUR.dat new file mode 100644 index 000000000..707ce8936 --- /dev/null +++ b/genie-forcings/pyyyyz.FPOC_np30.vervoortetal2021/original/biogem_force_flux_sed_POC_SUR.dat @@ -0,0 +1,18 @@ +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 6.2951e+11 +1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 +1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 +2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 +2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 +2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 +2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.6754e+12 +1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 +1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 1.4164e+12 +1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 +2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 +3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 +3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 +3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 \ No newline at end of file diff --git a/genie-forcings/pyyyyz.FPOC_pp30.vervoortetal2021/biogem_force_flux_sed_POC_SUR.dat b/genie-forcings/pyyyyz.FPOC_pp30.vervoortetal2021/biogem_force_flux_sed_POC_SUR.dat index dd09b3b22..a603f9861 100644 --- a/genie-forcings/pyyyyz.FPOC_pp30.vervoortetal2021/biogem_force_flux_sed_POC_SUR.dat +++ b/genie-forcings/pyyyyz.FPOC_pp30.vervoortetal2021/biogem_force_flux_sed_POC_SUR.dat @@ -1,18 +1,18 @@ -0 0 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.6197e+12 3.4623e+12 3.3049e+12 3.1476e+12 0 0 -0 0 4.0918e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.9344e+12 3.9344e+12 3.6197e+12 3.6197e+12 3.7771e+12 3.7771e+12 3.7771e+12 4.0918e+12 4.0918e+12 3.4623e+12 0 0 -0 0 3.3049e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.7771e+12 3.6197e+12 3.4623e+12 2.6754e+12 0 0 -0 0 2.2033e+12 1.5738e+12 2.2033e+12 2.3607e+12 2.3607e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.3607e+12 1.7312e+12 0 0 -0 0 9.4427e+11 9.4427e+11 9.4427e+11 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.259e+12 1.259e+12 1.1016e+12 1.1016e+12 1.1016e+12 7.8689e+11 0 0 -0 0 1.1016e+12 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 0 0 -0 0 1.5738e+12 1.5738e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.8885e+12 1.8885e+12 1.8885e+12 2.0459e+12 0 0 -0 0 2.2033e+12 2.518e+12 2.6754e+12 2.6754e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.9902e+12 2.9902e+12 3.3049e+12 0 0 -0 0 2.3607e+12 2.518e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.9902e+12 2.9902e+12 2.9902e+12 3.1476e+12 3.7771e+12 0 0 -0 0 2.3607e+12 2.6754e+12 2.8328e+12 2.8328e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 3.1476e+12 3.7771e+12 0 0 -0 0 2.3607e+12 2.6754e+12 2.6754e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.9902e+12 3.1476e+12 3.3049e+12 0 0 -0 0 1.7312e+12 1.7312e+12 1.7312e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 2.0459e+12 0 0 -0 0 1.259e+12 1.1016e+12 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 0 0 -0 0 1.1016e+12 1.1016e+12 9.4427e+11 1.1016e+12 1.1016e+12 1.1016e+12 1.259e+12 1.259e+12 1.259e+12 1.4164e+12 1.1016e+12 1.259e+12 1.1016e+12 7.8689e+11 0 0 -0 0 2.3607e+12 1.7312e+12 2.3607e+12 2.518e+12 2.518e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.8328e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.518e+12 1.8885e+12 0 0 -0 0 3.4623e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.9344e+12 3.9344e+12 3.9344e+12 3.6197e+12 2.8328e+12 0 0 -0 0 4.2492e+12 3.9344e+12 3.9344e+12 3.9344e+12 4.0918e+12 4.0918e+12 4.0918e+12 4.0918e+12 4.2492e+12 4.2492e+12 4.2492e+12 4.2492e+12 4.2492e+12 3.9344e+12 0 0 -0 0 3.9344e+12 3.9344e+12 3.9344e+12 3.9344e+12 3.9344e+12 3.9344e+12 3.9344e+12 3.9344e+12 3.9344e+12 3.9344e+12 3.7771e+12 3.7771e+12 3.6197e+12 3.4623e+12 0 0 \ No newline at end of file +0 0 3.818286e+12 3.766834e+12 3.764362e+12 3.784136e+12 3.835043e+12 3.842917e+12 3.837531e+12 3.824879e+12 3.787103e+12 3.727017e+12 3.640686e+12 3.503303e+12 3.328811e+12 3.102977e+12 0 0 +0 0 4.039502e+12 3.835244e+12 3.806485e+12 3.838544e+12 3.887132e+12 3.93669e+12 3.983967e+12 3.716864e+12 3.700999e+12 3.753011e+12 4.183928e+12 4.093997e+12 4.012275e+12 3.480911e+12 0 0 +0 0 3.235672e+12 3.37544e+12 3.449381e+12 3.481604e+12 3.521759e+12 3.519941e+12 3.553974e+12 3.562228e+12 3.608211e+12 3.67282e+12 3.768269e+12 3.739636e+12 3.511195e+12 2.728223e+12 0 0 +0 0 2.135048e+12 1.498721e+12 2.180954e+12 2.317042e+12 2.389723e+12 2.455147e+12 2.50595e+12 2.561609e+12 2.487823e+12 2.499024e+12 2.557679e+12 2.584064e+12 2.410585e+12 1.807489e+12 0 0 +0 0 9.008108e+11 9.816006e+11 9.049847e+11 1.043193e+12 1.064443e+12 1.098902e+12 1.139133e+12 1.182732e+12 1.200106e+12 1.259163e+12 1.050233e+12 1.1286e+12 1.034998e+12 7.463516e+11 0 0 +0 0 1.104662e+12 9.592657e+11 9.379546e+11 9.627861e+11 9.727005e+11 9.755966e+11 9.811683e+11 1.026992e+12 1.328811e+12 1.313222e+12 9.838808e+11 9.902005e+11 9.577019e+11 9.595025e+11 0 0 +0 0 1.543278e+12 1.582933e+12 1.691975e+12 1.752654e+12 1.768291e+12 1.77384e+12 1.772443e+12 1.771435e+12 1.775554e+12 1.78932e+12 1.815602e+12 1.861714e+12 1.872902e+12 2.039633e+12 0 0 +0 0 2.172783e+12 2.499612e+12 2.631326e+12 2.729519e+12 2.762025e+12 2.774837e+12 2.775706e+12 2.77377e+12 2.775257e+12 2.79229e+12 2.828447e+12 2.912362e+12 3.036411e+12 3.328183e+12 0 0 +0 0 2.330454e+12 2.595689e+12 2.75421e+12 2.863822e+12 2.894923e+12 2.906264e+12 2.906549e+12 2.904634e+12 2.904782e+12 2.917574e+12 2.952559e+12 3.043034e+12 3.20712e+12 3.84675e+12 0 0 +0 0 2.439345e+12 2.685487e+12 2.801778e+12 2.90114e+12 2.929163e+12 2.938946e+12 2.937954e+12 2.935131e+12 2.935591e+12 2.944439e+12 2.976073e+12 3.06546e+12 3.225653e+12 3.86226e+12 0 0 +0 0 2.384003e+12 2.654383e+12 2.743112e+12 2.826917e+12 2.856149e+12 2.867123e+12 2.867026e+12 2.864866e+12 2.862202e+12 2.871222e+12 2.90331e+12 2.98358e+12 3.101124e+12 3.38163e+12 0 0 +0 0 1.75205e+12 1.703547e+12 1.780403e+12 1.832998e+12 1.846385e+12 1.851361e+12 1.849709e+12 1.847579e+12 1.848156e+12 1.856922e+12 1.880791e+12 1.924962e+12 1.930447e+12 2.09599e+12 0 0 +0 0 1.276664e+12 1.044167e+12 9.872038e+11 1.006309e+12 1.015273e+12 1.016586e+12 1.01578e+12 1.014944e+12 1.015293e+12 1.018915e+12 1.024002e+12 1.030501e+12 9.960372e+11 9.994493e+11 0 0 +0 0 1.047353e+12 1.074847e+12 9.626763e+11 1.143227e+12 1.147152e+12 1.155518e+12 1.193001e+12 1.244553e+12 1.296336e+12 1.349576e+12 1.14053e+12 1.225235e+12 1.122853e+12 8.137932e+11 0 0 +0 0 2.350173e+12 1.680366e+12 2.367547e+12 2.522302e+12 2.58565e+12 2.633938e+12 2.67561e+12 2.747432e+12 2.669319e+12 2.679038e+12 2.710241e+12 2.736597e+12 2.565924e+12 1.942838e+12 0 0 +0 0 3.503902e+12 3.609508e+12 3.662597e+12 3.671121e+12 3.667596e+12 3.699395e+12 3.735388e+12 3.779019e+12 3.83046e+12 3.896336e+12 3.920319e+12 3.877571e+12 3.668458e+12 2.917918e+12 0 0 +0 0 4.186195e+12 3.979204e+12 3.96546e+12 3.988034e+12 4.021526e+12 4.064446e+12 4.109881e+12 4.160825e+12 4.191016e+12 4.231223e+12 4.243837e+12 4.193086e+12 4.231269e+12 3.803439e+12 0 0 +0 0 3.901866e+12 3.860553e+12 3.911933e+12 3.932506e+12 3.940257e+12 3.941582e+12 3.93911e+12 3.933103e+12 3.914732e+12 3.88085e+12 3.824773e+12 3.732463e+12 3.606574e+12 3.410942e+12 0 0 \ No newline at end of file diff --git a/genie-forcings/pyyyyz.FPOC_pp30.vervoortetal2021/original/biogem_force_flux_sed_POC_SUR.dat b/genie-forcings/pyyyyz.FPOC_pp30.vervoortetal2021/original/biogem_force_flux_sed_POC_SUR.dat new file mode 100644 index 000000000..dd09b3b22 --- /dev/null +++ b/genie-forcings/pyyyyz.FPOC_pp30.vervoortetal2021/original/biogem_force_flux_sed_POC_SUR.dat @@ -0,0 +1,18 @@ +0 0 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.6197e+12 3.4623e+12 3.3049e+12 3.1476e+12 0 0 +0 0 4.0918e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.9344e+12 3.9344e+12 3.6197e+12 3.6197e+12 3.7771e+12 3.7771e+12 3.7771e+12 4.0918e+12 4.0918e+12 3.4623e+12 0 0 +0 0 3.3049e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.4623e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.7771e+12 3.6197e+12 3.4623e+12 2.6754e+12 0 0 +0 0 2.2033e+12 1.5738e+12 2.2033e+12 2.3607e+12 2.3607e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.518e+12 2.3607e+12 1.7312e+12 0 0 +0 0 9.4427e+11 9.4427e+11 9.4427e+11 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.1016e+12 1.259e+12 1.259e+12 1.1016e+12 1.1016e+12 1.1016e+12 7.8689e+11 0 0 +0 0 1.1016e+12 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 0 0 +0 0 1.5738e+12 1.5738e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.7312e+12 1.8885e+12 1.8885e+12 1.8885e+12 2.0459e+12 0 0 +0 0 2.2033e+12 2.518e+12 2.6754e+12 2.6754e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.9902e+12 2.9902e+12 3.3049e+12 0 0 +0 0 2.3607e+12 2.518e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.9902e+12 2.9902e+12 2.9902e+12 3.1476e+12 3.7771e+12 0 0 +0 0 2.3607e+12 2.6754e+12 2.8328e+12 2.8328e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 2.9902e+12 3.1476e+12 3.7771e+12 0 0 +0 0 2.3607e+12 2.6754e+12 2.6754e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.8328e+12 2.9902e+12 3.1476e+12 3.3049e+12 0 0 +0 0 1.7312e+12 1.7312e+12 1.7312e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 1.8885e+12 2.0459e+12 0 0 +0 0 1.259e+12 1.1016e+12 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 9.4427e+11 0 0 +0 0 1.1016e+12 1.1016e+12 9.4427e+11 1.1016e+12 1.1016e+12 1.1016e+12 1.259e+12 1.259e+12 1.259e+12 1.4164e+12 1.1016e+12 1.259e+12 1.1016e+12 7.8689e+11 0 0 +0 0 2.3607e+12 1.7312e+12 2.3607e+12 2.518e+12 2.518e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.8328e+12 2.6754e+12 2.6754e+12 2.6754e+12 2.518e+12 1.8885e+12 0 0 +0 0 3.4623e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.6197e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.7771e+12 3.9344e+12 3.9344e+12 3.9344e+12 3.6197e+12 2.8328e+12 0 0 +0 0 4.2492e+12 3.9344e+12 3.9344e+12 3.9344e+12 4.0918e+12 4.0918e+12 4.0918e+12 4.0918e+12 4.2492e+12 4.2492e+12 4.2492e+12 4.2492e+12 4.2492e+12 3.9344e+12 0 0 +0 0 3.9344e+12 3.9344e+12 3.9344e+12 3.9344e+12 3.9344e+12 3.9344e+12 3.9344e+12 3.9344e+12 3.9344e+12 3.9344e+12 3.7771e+12 3.7771e+12 3.6197e+12 3.4623e+12 0 0 \ No newline at end of file diff --git a/genie-main/src/xml-config/xml/definition.xml b/genie-main/src/xml-config/xml/definition.xml index bb86c0f99..7273f61dc 100644 --- a/genie-main/src/xml-config/xml/definition.xml +++ b/genie-main/src/xml-config/xml/definition.xml @@ -1895,21 +1895,33 @@ use ENTS albedo scheme (y/n) --> + + .true. + use old (incorrect) orbital forcing calculations? + 0.0167 eccentricity 0.397789 - sine of obliquity + sine of obliquity (for opt_orbit_old=true) 99999 - longitude of perihelion (in degrees) + MEAN longitude of perihelion (in degrees)(for opt_orbit_old=true) -0.5 - really no-one knows what this is ... + date of perihelion from Jan. 1st (in days) (for opt_orbit_old=true) + + + 0.409093 + obliquity (in radians) (for opt_orbit_old=false) + + + 1.796257 + TRUE longitude of perihelion (in radians) (for opt_orbit_old=false) n diff --git a/genie-paleo/fkl_np30/orbits_La2004_57.93_52.91Ma_new.dat b/genie-paleo/fkl_np30/orbits_La2004_57.93_52.91Ma_new.dat new file mode 100644 index 000000000..36c648b59 --- /dev/null +++ b/genie-paleo/fkl_np30/orbits_La2004_57.93_52.91Ma_new.dat @@ -0,0 +1,5000 @@ +57930 0.020588 0.4051 3.1923 +57929 0.020354 0.4056 3.4941 +57928 0.020078 0.40604 3.7958 +57927 0.019799 0.4064 4.1025 +57926 0.019438 0.40669 4.403 +57925 0.019085 0.40688 4.7088 +57924 0.018735 0.40699 5.0136 +57923 0.018257 0.40701 5.3193 +57922 0.017837 0.40695 5.625 +57921 0.017404 0.4068 5.9318 +57920 0.016841 0.40659 6.241 +57919 0.016378 0.4063 0.26624 +57918 0.015815 0.40596 0.57388 +57917 0.01528 0.40556 0.8887 +57916 0.014696 0.40512 1.1976 +57915 0.014098 0.40465 1.5102 +57914 0.01352 0.40415 1.8256 +57913 0.012883 0.40364 2.1389 +57912 0.01221 0.40311 2.4578 +57911 0.011626 0.40259 2.7726 +57910 0.010909 0.40208 3.0973 +57909 0.010251 0.40159 3.4199 +57908 0.009585 0.40112 3.7417 +57907 0.008913 0.40069 4.076 +57906 0.008222 0.40031 4.4119 +57905 0.007523 0.39998 4.7421 +57904 0.006901 0.39973 5.098 +57903 0.006204 0.39954 5.4487 +57902 0.005551 0.39945 5.818 +57901 0.00496 0.39945 6.2014 +57900 0.004382 0.39956 0.31946 +57899 0.003857 0.39977 0.76515 +57898 0.003439 0.40011 1.2124 +57897 0.00313 0.40055 1.7227 +57896 0.00298 0.40111 2.2538 +57895 0.00293 0.40178 2.7866 +57894 0.003088 0.40254 3.3154 +57893 0.003366 0.40338 3.794 +57892 0.003721 0.40429 4.2735 +57891 0.004134 0.40524 4.6855 +57890 0.004597 0.40621 5.0821 +57889 0.005121 0.40718 5.4673 +57888 0.0056 0.4081 5.8218 +57887 0.006081 0.40897 6.1733 +57886 0.006655 0.40975 0.22314 +57885 0.007093 0.41041 0.55852 +57884 0.00761 0.41094 0.88042 +57883 0.008091 0.4113 1.196 +57882 0.008556 0.41149 1.5121 +57881 0.00904 0.41149 1.825 +57880 0.00943 0.41129 2.1251 +57879 0.009929 0.41089 2.4344 +57878 0.010321 0.4103 2.7345 +57877 0.010692 0.40952 3.0339 +57876 0.011129 0.40857 3.3318 +57875 0.011487 0.40747 3.6295 +57874 0.011809 0.40626 3.9271 +57873 0.012206 0.40496 4.22 +57872 0.012506 0.40361 4.5165 +57871 0.012856 0.40224 4.8138 +57870 0.013149 0.40091 5.1042 +57869 0.013484 0.39964 5.4011 +57868 0.013791 0.39847 5.6965 +57867 0.014083 0.39744 5.988 +57866 0.014376 0.39659 0.001597 +57865 0.014725 0.39594 0.29262 +57864 0.014964 0.39551 0.58974 +57863 0.015285 0.39532 0.87971 +57862 0.015605 0.39536 1.1729 +57861 0.015847 0.39565 1.4675 +57860 0.016169 0.39616 1.7564 +57859 0.016431 0.39688 2.047 +57858 0.01673 0.39779 2.3408 +57857 0.016973 0.39885 2.6277 +57856 0.017242 0.40003 2.9171 +57855 0.017546 0.40129 3.2079 +57854 0.017754 0.40259 3.4943 +57853 0.018016 0.40391 3.7833 +57852 0.018303 0.40518 4.0689 +57851 0.018502 0.40639 4.3573 +57850 0.018747 0.4075 4.6432 +57849 0.018992 0.40847 4.927 +57848 0.019175 0.4093 5.2155 +57847 0.019411 0.40997 5.4998 +57846 0.019552 0.41046 5.784 +57845 0.019796 0.41077 6.0718 +57844 0.019917 0.4109 0.074171 +57843 0.020065 0.41086 0.35871 +57842 0.020262 0.41066 0.64727 +57841 0.020341 0.41031 0.93176 +57840 0.020467 0.40984 1.2212 +57839 0.020581 0.40925 1.5054 +57838 0.020647 0.40858 1.7946 +57837 0.020701 0.40785 2.083 +57836 0.02074 0.40708 2.3686 +57835 0.020756 0.40629 2.6584 +57834 0.020758 0.40551 2.9474 +57833 0.020679 0.40475 3.2338 +57832 0.020672 0.40403 3.524 +57831 0.020578 0.40336 3.8115 +57830 0.020437 0.40275 4.1006 +57829 0.020339 0.4022 4.3871 +57828 0.020205 0.40173 4.6754 +57827 0.019957 0.40134 4.9635 +57826 0.019835 0.40102 5.2471 +57825 0.019574 0.40078 5.5341 +57824 0.019356 0.40061 5.8185 +57823 0.019096 0.40051 6.1002 +57822 0.018822 0.40047 0.098105 +57821 0.018575 0.40049 0.37969 +57820 0.018237 0.40056 0.65487 +57819 0.017954 0.40068 0.93214 +57818 0.017683 0.40083 1.2045 +57817 0.017325 0.40103 1.4765 +57816 0.017039 0.40126 1.7445 +57815 0.016775 0.40152 2.009 +57814 0.016438 0.40181 2.2749 +57813 0.016203 0.40213 2.533 +57812 0.015941 0.40247 2.7897 +57811 0.015725 0.40284 3.0473 +57810 0.015525 0.40322 3.2973 +57809 0.015356 0.40361 3.5457 +57808 0.015286 0.40401 3.7976 +57807 0.015167 0.40441 4.0395 +57806 0.015164 0.40481 4.2861 +57805 0.015227 0.40518 4.5296 +57804 0.015302 0.40553 4.7732 +57803 0.015415 0.40585 5.0178 +57802 0.015695 0.40612 5.259 +57801 0.015884 0.40634 5.5079 +57800 0.016223 0.4065 5.753 +57799 0.016583 0.40659 5.9998 +57798 0.016977 0.40662 6.2536 +57797 0.017422 0.40657 0.22249 +57796 0.017899 0.40646 0.4758 +57795 0.018429 0.40627 0.73784 +57794 0.018973 0.40603 0.99611 +57793 0.019513 0.40572 1.2601 +57792 0.020169 0.40537 1.526 +57791 0.020735 0.40499 1.7939 +57790 0.021354 0.40458 2.0646 +57789 0.022016 0.40418 2.3366 +57788 0.022618 0.40379 2.6107 +57787 0.023257 0.40344 2.8897 +57786 0.023879 0.40314 3.1646 +57785 0.024521 0.4029 3.4474 +57784 0.025129 0.40274 3.7289 +57783 0.025726 0.40266 4.0105 +57782 0.026353 0.40267 4.2957 +57781 0.026954 0.40277 4.581 +57780 0.027472 0.40296 4.8659 +57779 0.02811 0.40323 5.1527 +57778 0.02862 0.40356 5.4395 +57777 0.029136 0.40394 5.7266 +57776 0.029672 0.40437 6.0137 +57775 0.030158 0.4048 0.017127 +57774 0.030619 0.40523 0.3062 +57773 0.031069 0.40563 0.59138 +57772 0.03151 0.40598 0.87899 +57771 0.031921 0.40626 1.1667 +57770 0.032298 0.40645 1.452 +57769 0.032655 0.40653 1.7391 +57768 0.033058 0.4065 2.0251 +57767 0.033312 0.40636 2.3115 +57766 0.033647 0.40609 2.597 +57765 0.033968 0.40571 2.8832 +57764 0.034171 0.40522 3.1696 +57763 0.034476 0.40464 3.4558 +57762 0.034692 0.40398 3.7409 +57761 0.034927 0.40328 4.0293 +57760 0.035134 0.40254 4.3145 +57759 0.035327 0.40182 4.6015 +57758 0.035549 0.40112 4.8896 +57757 0.035722 0.40048 5.1762 +57756 0.035859 0.39994 5.4642 +57755 0.03613 0.3995 5.7516 +57754 0.036227 0.3992 6.0403 +57753 0.036423 0.39905 0.045008 +57752 0.03663 0.39906 0.33186 +57751 0.036783 0.39924 0.62089 +57750 0.036961 0.39959 0.90799 +57749 0.03714 0.4001 1.1935 +57748 0.037309 0.40076 1.4823 +57747 0.037479 0.40154 1.767 +57746 0.037608 0.40243 2.0531 +57745 0.037817 0.40339 2.3389 +57744 0.037946 0.40439 2.6237 +57743 0.038083 0.4054 2.9082 +57742 0.038278 0.40639 3.1923 +57741 0.038397 0.40732 3.4756 +57740 0.03855 0.40816 3.7602 +57739 0.038677 0.4089 4.0414 +57738 0.038834 0.4095 4.3256 +57737 0.038935 0.40994 4.6088 +57736 0.039059 0.41023 4.8903 +57735 0.039174 0.41034 5.1746 +57734 0.039298 0.41028 5.4576 +57733 0.039348 0.41005 5.7411 +57732 0.039471 0.40967 6.0248 +57731 0.039558 0.40914 0.026404 +57730 0.039565 0.40849 0.31119 +57729 0.039669 0.40775 0.59623 +57728 0.039677 0.40693 0.88196 +57727 0.039688 0.40607 1.1692 +57726 0.039684 0.40519 1.4555 +57725 0.039657 0.40431 1.7425 +57724 0.039623 0.40347 2.0322 +57723 0.039528 0.40268 2.319 +57722 0.039436 0.40195 2.6085 +57721 0.039366 0.40132 2.8978 +57720 0.039169 0.40078 3.1871 +57719 0.039023 0.40035 3.4762 +57718 0.038886 0.40003 3.7657 +57717 0.038593 0.39981 4.0552 +57716 0.038426 0.3997 4.3443 +57715 0.03813 0.39969 4.6318 +57714 0.037859 0.39977 4.9214 +57713 0.03755 0.39992 5.2084 +57712 0.037203 0.40014 5.4948 +57711 0.036892 0.40041 5.7825 +57710 0.036513 0.40072 6.067 +57709 0.036097 0.40106 0.068988 +57708 0.035787 0.40142 0.35231 +57707 0.03531 0.40179 0.63548 +57706 0.034907 0.40217 0.91735 +57705 0.034513 0.40254 1.1968 +57704 0.034063 0.40292 1.4775 +57703 0.033617 0.40329 1.7562 +57702 0.033208 0.40366 2.0312 +57701 0.032772 0.40404 2.31 +57700 0.032354 0.40442 2.5832 +57699 0.031924 0.40481 2.8571 +57698 0.031551 0.40519 3.1298 +57697 0.031179 0.40558 3.4011 +57696 0.030767 0.40598 3.671 +57695 0.030505 0.40636 3.94 +57694 0.030163 0.40674 4.2078 +57693 0.029883 0.40709 4.4752 +57692 0.029665 0.40742 4.7398 +57691 0.029456 0.40771 5.0048 +57690 0.029281 0.40795 5.27 +57689 0.029148 0.40814 5.5309 +57688 0.029063 0.40825 5.795 +57687 0.029011 0.40827 6.0575 +57686 0.028975 0.40821 0.035299 +57685 0.029004 0.40806 0.2983 +57684 0.029099 0.4078 0.56088 +57683 0.029129 0.40745 0.8236 +57682 0.029317 0.407 1.0872 +57681 0.029472 0.40647 1.3515 +57680 0.029654 0.40586 1.6174 +57679 0.029886 0.4052 1.8838 +57678 0.030149 0.40449 2.1501 +57677 0.03041 0.40376 2.4222 +57676 0.030694 0.40304 2.6899 +57675 0.031013 0.40235 2.9629 +57674 0.031343 0.4017 3.2375 +57673 0.031659 0.40113 3.5112 +57672 0.031993 0.40065 3.7878 +57671 0.032396 0.40028 4.0661 +57670 0.032681 0.40004 4.3442 +57669 0.033064 0.39994 4.6248 +57668 0.033438 0.39997 4.9045 +57667 0.033742 0.40014 5.1875 +57666 0.034108 0.40043 5.469 +57665 0.034444 0.40084 5.7509 +57664 0.03474 0.40134 6.0351 +57663 0.035085 0.40192 0.034443 +57662 0.035308 0.40255 0.31704 +57661 0.035666 0.4032 0.60132 +57660 0.035851 0.40385 0.88422 +57659 0.036081 0.40446 1.1671 +57658 0.036345 0.40502 1.4509 +57657 0.036483 0.40549 1.7338 +57656 0.036657 0.40587 2.0179 +57655 0.036848 0.40614 2.2995 +57654 0.036948 0.40629 2.5844 +57653 0.037079 0.40631 2.8673 +57652 0.03718 0.40622 3.1498 +57651 0.03727 0.40601 3.4344 +57650 0.037357 0.40571 3.718 +57649 0.037368 0.40532 4.0013 +57648 0.037476 0.40488 4.286 +57647 0.037489 0.4044 4.5707 +57646 0.037491 0.40392 4.8552 +57645 0.037563 0.40346 5.1404 +57644 0.037562 0.40304 5.4254 +57643 0.037562 0.4027 5.712 +57642 0.037586 0.40245 5.9959 +57641 0.037611 0.40232 6.2825 +57640 0.03758 0.4023 0.28533 +57639 0.037613 0.40242 0.56944 +57638 0.037581 0.40266 0.85587 +57637 0.037618 0.40302 1.1406 +57636 0.037557 0.40348 1.4255 +57635 0.037568 0.40404 1.7099 +57634 0.037582 0.40466 1.9945 +57633 0.037512 0.40533 2.2784 +57632 0.037525 0.406 2.5623 +57631 0.037522 0.40665 2.8447 +57630 0.037477 0.40725 3.1297 +57629 0.03747 0.40776 3.4112 +57628 0.037446 0.40817 3.6941 +57627 0.037438 0.40845 3.9784 +57626 0.037391 0.40859 4.2603 +57625 0.037358 0.40857 4.5435 +57624 0.037389 0.40839 4.8287 +57623 0.037287 0.40805 5.1113 +57622 0.037296 0.40756 5.397 +57621 0.037276 0.40694 5.6812 +57620 0.03721 0.40619 5.9678 +57619 0.037162 0.40535 6.2544 +57618 0.037123 0.40445 0.25692 +57617 0.03702 0.40352 0.54687 +57616 0.036958 0.40258 0.83476 +57615 0.036801 0.40168 1.1241 +57614 0.036735 0.40084 1.4158 +57613 0.036555 0.4001 1.7068 +57612 0.03637 0.39948 1.9987 +57611 0.036249 0.39899 2.2923 +57610 0.035993 0.39866 2.5853 +57609 0.035773 0.39849 2.88 +57608 0.035548 0.39848 3.1729 +57607 0.035259 0.39863 3.4684 +57606 0.034956 0.39894 3.7631 +57605 0.034645 0.39938 4.0559 +57604 0.034295 0.39995 4.3519 +57603 0.03394 0.40061 4.6452 +57602 0.033512 0.40134 4.9386 +57601 0.033116 0.40212 5.2314 +57600 0.032694 0.40292 5.5246 +57599 0.032146 0.40371 5.8162 +57598 0.031726 0.40448 6.1071 +57597 0.031174 0.4052 0.11499 +57596 0.030612 0.40586 0.40542 +57595 0.030067 0.40644 0.69383 +57594 0.029486 0.40694 0.9825 +57593 0.028856 0.40735 1.2721 +57592 0.028255 0.40767 1.5568 +57591 0.027599 0.40791 1.8447 +57590 0.02698 0.40806 2.1301 +57589 0.02628 0.40814 2.4142 +57588 0.025614 0.40815 2.6982 +57587 0.024968 0.40811 2.981 +57586 0.024229 0.40802 3.2628 +57585 0.023571 0.4079 3.5443 +57584 0.022901 0.40774 3.8213 +57583 0.022203 0.40756 4.1028 +57582 0.021542 0.40736 4.3766 +57581 0.02089 0.40714 4.6506 +57580 0.02025 0.40689 4.9255 +57579 0.019615 0.40663 5.1942 +57578 0.018979 0.40634 5.4618 +57577 0.018454 0.40602 5.73 +57576 0.017812 0.40567 5.9915 +57575 0.017309 0.40528 6.2544 +57574 0.016823 0.40484 0.22945 +57573 0.016327 0.40437 0.48705 +57572 0.015888 0.40386 0.7434 +57571 0.015543 0.4033 0.99233 +57570 0.015165 0.40272 1.2486 +57569 0.014878 0.40212 1.4967 +57568 0.014623 0.40151 1.7444 +57567 0.014428 0.40091 1.9962 +57566 0.014277 0.40034 2.2443 +57565 0.014123 0.39981 2.492 +57564 0.014121 0.39936 2.7453 +57563 0.014051 0.399 2.9961 +57562 0.014053 0.39874 3.2491 +57561 0.014148 0.39862 3.506 +57560 0.014192 0.39863 3.7623 +57559 0.01429 0.39878 4.0244 +57558 0.014448 0.3991 4.2828 +57557 0.014566 0.39956 4.5495 +57556 0.014729 0.40018 4.8155 +57555 0.014888 0.40092 5.081 +57554 0.015051 0.40178 5.3513 +57553 0.015246 0.40273 5.6246 +57552 0.015341 0.40375 5.8925 +57551 0.015566 0.40479 6.1686 +57550 0.015683 0.40583 0.15983 +57549 0.015791 0.40683 0.43359 +57548 0.015941 0.40775 0.71038 +57547 0.016052 0.40858 0.98639 +57546 0.016087 0.40927 1.2654 +57545 0.016213 0.4098 1.5409 +57544 0.016242 0.41015 1.8206 +57543 0.016285 0.41032 2.1018 +57542 0.016316 0.41029 2.3791 +57541 0.016327 0.41006 2.6607 +57540 0.016341 0.40965 2.9439 +57539 0.016317 0.40907 3.2232 +57538 0.016279 0.40835 3.508 +57537 0.016305 0.40749 3.7898 +57536 0.016189 0.40654 4.0762 +57535 0.016173 0.40554 4.3589 +57534 0.016148 0.40452 4.645 +57533 0.016017 0.40351 4.9321 +57532 0.016003 0.40256 5.2181 +57531 0.015892 0.4017 5.5028 +57530 0.015835 0.40097 5.7938 +57529 0.015717 0.40038 6.0788 +57528 0.015612 0.39997 0.082862 +57527 0.015536 0.39974 0.37365 +57526 0.015382 0.3997 0.65954 +57525 0.01526 0.39984 0.95017 +57524 0.015186 0.40015 1.2372 +57523 0.015019 0.40062 1.5281 +57522 0.014896 0.40121 1.8172 +57521 0.014815 0.40189 2.1028 +57520 0.014664 0.40264 2.3958 +57519 0.014555 0.40342 2.6836 +57518 0.014416 0.40419 2.9695 +57517 0.014334 0.40492 3.2622 +57516 0.014183 0.40558 3.5506 +57515 0.014053 0.40614 3.8383 +57514 0.013971 0.40658 4.1327 +57513 0.013824 0.40688 4.4204 +57512 0.0137 0.40703 4.7165 +57511 0.013606 0.40702 5.0063 +57510 0.013489 0.40686 5.303 +57509 0.013342 0.40656 5.6001 +57508 0.013255 0.40613 5.894 +57507 0.013106 0.4056 6.1954 +57506 0.01301 0.40499 0.2142 +57505 0.012823 0.40432 0.51421 +57504 0.012721 0.40363 0.82083 +57503 0.012581 0.40295 1.1291 +57502 0.01237 0.40231 1.4382 +57501 0.012246 0.40173 1.7507 +57500 0.012097 0.40124 2.066 +57499 0.011855 0.40086 2.3868 +57498 0.011742 0.40061 2.7039 +57497 0.011522 0.40049 3.0295 +57496 0.011361 0.40051 3.3574 +57495 0.011167 0.40066 3.6852 +57494 0.010969 0.40094 4.0154 +57493 0.010851 0.40134 4.3541 +57492 0.010603 0.40184 4.687 +57491 0.010464 0.40242 5.0289 +57490 0.010317 0.40305 5.3682 +57489 0.010121 0.40372 5.7161 +57488 0.00998 0.4044 6.0627 +57487 0.009855 0.40506 0.125 +57486 0.009722 0.40569 0.48531 +57485 0.009625 0.40626 0.83517 +57484 0.009521 0.40676 1.193 +57483 0.009513 0.40719 1.5542 +57482 0.009458 0.40752 1.9136 +57481 0.009437 0.40777 2.2779 +57480 0.009523 0.40792 2.6375 +57479 0.009547 0.40799 3.0044 +57478 0.009672 0.40797 3.3684 +57477 0.009792 0.40788 3.7286 +57476 0.00998 0.40771 4.0912 +57475 0.010212 0.40749 4.4535 +57474 0.01037 0.40722 4.8069 +57473 0.010722 0.4069 5.1625 +57472 0.01097 0.40655 5.5156 +57471 0.011243 0.40617 5.865 +57470 0.011586 0.40577 6.2105 +57469 0.011916 0.40536 0.27093 +57468 0.012232 0.40493 0.618 +57467 0.012582 0.40449 0.95261 +57466 0.012925 0.40403 1.2934 +57465 0.013306 0.40357 1.6294 +57464 0.013624 0.40309 1.9623 +57463 0.013988 0.4026 2.2948 +57462 0.014374 0.40209 2.6245 +57461 0.014667 0.40158 2.9537 +57460 0.015041 0.40107 3.2816 +57459 0.015365 0.40057 3.6031 +57458 0.015701 0.40008 3.9324 +57457 0.01599 0.39962 4.252 +57456 0.016296 0.39921 4.5719 +57455 0.0166 0.39886 4.8951 +57454 0.016848 0.39858 5.2108 +57453 0.017068 0.39841 5.5294 +57452 0.017366 0.39834 5.8444 +57451 0.017507 0.39841 6.16 +57450 0.017716 0.39861 0.19079 +57449 0.01789 0.39896 0.50133 +57448 0.018022 0.39946 0.81367 +57447 0.018157 0.40012 1.1248 +57446 0.018232 0.40092 1.4293 +57445 0.018366 0.40185 1.7396 +57444 0.018412 0.40291 2.0437 +57443 0.018445 0.40405 2.3463 +57442 0.018525 0.40526 2.6492 +57441 0.018547 0.4065 2.9481 +57440 0.018516 0.40773 3.2479 +57439 0.018571 0.40893 3.5414 +57438 0.018548 0.41004 3.8377 +57437 0.018495 0.41104 4.1305 +57436 0.018509 0.41189 4.4192 +57435 0.018425 0.41255 4.71 +57434 0.018415 0.413 4.9978 +57433 0.018307 0.41322 5.2833 +57432 0.018258 0.4132 5.5688 +57431 0.018209 0.41293 5.8538 +57430 0.01808 0.41241 6.1365 +57429 0.018016 0.41164 0.13675 +57428 0.017963 0.41065 0.41706 +57427 0.017822 0.40946 0.70206 +57426 0.017759 0.4081 0.98015 +57425 0.017674 0.4066 1.2622 +57424 0.017561 0.40501 1.5454 +57423 0.017475 0.40337 1.8246 +57422 0.017364 0.40174 2.1055 +57421 0.017316 0.40017 2.3907 +57420 0.017176 0.39871 2.6694 +57419 0.017112 0.3974 2.953 +57418 0.017066 0.39628 3.2345 +57417 0.016962 0.3954 3.5163 +57416 0.016883 0.39477 3.7981 +57415 0.016859 0.39442 4.0766 +57414 0.016739 0.39435 4.3593 +57413 0.016699 0.39455 4.6381 +57412 0.016602 0.39503 4.914 +57411 0.016556 0.39576 5.196 +57410 0.016453 0.3967 5.4711 +57409 0.016379 0.39783 5.745 +57408 0.016326 0.3991 6.0237 +57407 0.016234 0.40047 0.010676 +57406 0.016132 0.4019 0.2853 +57405 0.016105 0.40333 0.55407 +57404 0.015993 0.40473 0.82511 +57403 0.015898 0.40605 1.0938 +57402 0.015865 0.40726 1.3584 +57401 0.01574 0.40833 1.6259 +57400 0.015695 0.40923 1.8909 +57399 0.015592 0.40994 2.1512 +57398 0.015545 0.41045 2.4144 +57397 0.015487 0.41076 2.6764 +57396 0.015381 0.41087 2.9315 +57395 0.015394 0.41079 3.1921 +57394 0.015333 0.41053 3.4477 +57393 0.015276 0.41012 3.7027 +57392 0.015318 0.40957 3.9565 +57391 0.015321 0.40891 4.2102 +57390 0.015311 0.40816 4.463 +57389 0.01544 0.40736 4.7133 +57388 0.015482 0.40652 4.9649 +57387 0.015634 0.40567 5.2176 +57386 0.015774 0.40483 5.4664 +57385 0.015988 0.40404 5.7179 +57384 0.016228 0.40329 5.9728 +57383 0.016491 0.40262 6.2218 +57382 0.016816 0.40203 0.19519 +57381 0.017217 0.40154 0.45025 +57380 0.017564 0.40114 0.70767 +57379 0.018044 0.40083 0.96651 +57378 0.01856 0.40063 1.228 +57377 0.019037 0.40052 1.4917 +57376 0.019638 0.4005 1.7564 +57375 0.020256 0.40055 2.0225 +57374 0.020852 0.40068 2.2945 +57373 0.021546 0.40087 2.5623 +57372 0.022219 0.40112 2.8363 +57371 0.022945 0.40141 3.1117 +57370 0.023672 0.40174 3.3873 +57369 0.024384 0.4021 3.6642 +57368 0.025234 0.40249 3.9452 +57367 0.025926 0.4029 4.2248 +57366 0.026737 0.40332 4.507 +57365 0.027554 0.40375 4.7894 +57364 0.028296 0.40419 5.074 +57363 0.029092 0.40461 5.3592 +57362 0.029882 0.40502 5.6432 +57361 0.030621 0.4054 5.9326 +57360 0.031389 0.40575 6.2188 +57359 0.032111 0.40605 0.22372 +57358 0.032868 0.4063 0.51461 +57357 0.033572 0.40648 0.80344 +57356 0.034239 0.40659 1.0945 +57355 0.034986 0.40663 1.3858 +57354 0.035599 0.40657 1.6774 +57353 0.036252 0.40643 1.9703 +57352 0.03688 0.40621 2.2622 +57351 0.037465 0.40589 2.556 +57350 0.038031 0.40548 2.8512 +57349 0.038551 0.405 3.1432 +57348 0.039101 0.40445 3.4403 +57347 0.03955 0.40384 3.7352 +57346 0.040001 0.4032 4.0306 +57345 0.040429 0.40254 4.3275 +57344 0.040827 0.40189 4.624 +57343 0.041112 0.40127 4.9214 +57342 0.041479 0.40071 5.2183 +57341 0.041727 0.40022 5.5165 +57340 0.041937 0.39984 5.8148 +57339 0.042151 0.39959 6.1123 +57338 0.042302 0.39947 0.12738 +57337 0.04241 0.39951 0.42646 +57336 0.042503 0.39971 0.72344 +57335 0.042525 0.40009 1.0215 +57334 0.042599 0.40062 1.3192 +57333 0.042517 0.40131 1.6159 +57332 0.042507 0.40214 1.9115 +57331 0.042475 0.40309 2.2076 +57330 0.04231 0.40413 2.5015 +57329 0.042248 0.40522 2.7955 +57328 0.042088 0.40633 3.0866 +57327 0.041913 0.40743 3.3795 +57326 0.041724 0.40847 3.6688 +57325 0.041497 0.40942 3.9576 +57324 0.041277 0.41025 4.2472 +57323 0.041007 0.41091 4.5335 +57322 0.040696 0.41139 4.8204 +57321 0.040482 0.41166 5.1065 +57320 0.040103 0.41171 5.3917 +57319 0.039791 0.41152 5.6767 +57318 0.039509 0.41109 5.9603 +57317 0.039118 0.41044 6.2453 +57316 0.038785 0.40956 0.24624 +57315 0.038424 0.40849 0.52838 +57314 0.038072 0.40724 0.81418 +57313 0.037675 0.40585 1.0974 +57312 0.037301 0.40436 1.3807 +57311 0.036936 0.40281 1.667 +57310 0.036543 0.40125 1.9501 +57309 0.036133 0.39972 2.2366 +57308 0.03579 0.39829 2.5208 +57307 0.035398 0.39698 2.8072 +57306 0.03498 0.39586 3.0931 +57305 0.03465 0.39494 3.3779 +57304 0.034232 0.39427 3.6641 +57303 0.033874 0.39387 3.9502 +57302 0.033464 0.39374 4.2337 +57301 0.033114 0.3939 4.5193 +57300 0.032728 0.39433 4.8037 +57299 0.032324 0.39504 5.0858 +57298 0.031972 0.39599 5.3688 +57297 0.031616 0.39717 5.6502 +57296 0.03118 0.39853 5.9303 +57295 0.030865 0.40004 6.2093 +57294 0.030469 0.40166 0.20384 +57293 0.030089 0.40333 0.48109 +57292 0.029725 0.40501 0.75594 +57291 0.02937 0.40665 1.0289 +57290 0.028997 0.40822 1.3042 +57289 0.028634 0.40966 1.5727 +57288 0.028274 0.41095 1.8436 +57287 0.027953 0.41205 2.113 +57286 0.027561 0.41295 2.3792 +57285 0.027225 0.41362 2.6451 +57284 0.026932 0.41406 2.9108 +57283 0.026527 0.41425 3.1736 +57282 0.026249 0.41421 3.4371 +57281 0.025937 0.41394 3.6971 +57280 0.025614 0.41344 3.9594 +57279 0.025343 0.41274 4.2183 +57278 0.025081 0.41185 4.4756 +57277 0.024824 0.41079 4.7363 +57276 0.024623 0.40959 4.9917 +57275 0.024398 0.40828 5.2488 +57274 0.024282 0.40688 5.5062 +57273 0.024138 0.40543 5.7623 +57272 0.024015 0.40395 6.0186 +57271 0.024072 0.4025 6.2757 +57270 0.023994 0.40109 0.25034 +57269 0.024078 0.39976 0.50784 +57268 0.024227 0.39855 0.76561 +57267 0.024351 0.39746 1.026 +57266 0.024572 0.39653 1.2866 +57265 0.024854 0.39577 1.5455 +57264 0.025144 0.39519 1.8108 +57263 0.025523 0.3948 2.0731 +57262 0.025889 0.39461 2.3381 +57261 0.026368 0.39463 2.6054 +57260 0.02684 0.39484 2.8737 +57259 0.027312 0.39525 3.1424 +57258 0.02793 0.39584 3.4144 +57257 0.028469 0.39661 3.6859 +57256 0.029058 0.39754 3.9606 +57255 0.029709 0.39862 4.2336 +57254 0.030331 0.39981 4.5105 +57253 0.030953 0.40109 4.7877 +57252 0.031627 0.40244 5.0642 +57251 0.032265 0.40381 5.3442 +57250 0.032941 0.40519 5.6244 +57249 0.033563 0.40654 5.9039 +57248 0.034253 0.40783 6.1866 +57247 0.034897 0.40903 0.18532 +57246 0.035523 0.41011 0.46848 +57245 0.036156 0.41104 0.75226 +57244 0.036825 0.41181 1.0361 +57243 0.037359 0.4124 1.3226 +57242 0.03799 0.41278 1.6067 +57241 0.038557 0.41296 1.894 +57240 0.039078 0.41291 2.1819 +57239 0.039611 0.41265 2.469 +57238 0.040076 0.41217 2.7577 +57237 0.040579 0.41149 3.0488 +57236 0.040946 0.41062 3.3382 +57235 0.041355 0.40957 3.6301 +57234 0.041738 0.40838 3.9233 +57233 0.041992 0.40707 4.2164 +57232 0.042303 0.40569 4.5119 +57231 0.042538 0.40426 4.8065 +57230 0.042702 0.40282 5.1045 +57229 0.042874 0.40143 5.4021 +57228 0.042965 0.40011 5.6999 +57227 0.04305 0.39891 6.0009 +57226 0.043082 0.39786 0.017292 +57225 0.043012 0.39699 0.31786 +57224 0.043055 0.39634 0.62002 +57223 0.042878 0.39592 0.92153 +57222 0.042767 0.39575 1.2233 +57221 0.042632 0.39583 1.5254 +57220 0.042387 0.39616 1.8272 +57219 0.042162 0.39673 2.1296 +57218 0.041896 0.39752 2.4287 +57217 0.041599 0.3985 2.731 +57216 0.041259 0.39963 3.0299 +57215 0.040883 0.40088 3.3279 +57214 0.040503 0.4022 3.6263 +57213 0.040076 0.40355 3.923 +57212 0.039575 0.4049 4.2186 +57211 0.039136 0.40618 4.5137 +57210 0.038608 0.40737 4.8075 +57209 0.038044 0.40843 5.1018 +57208 0.037513 0.40933 5.3927 +57207 0.036948 0.41004 5.6857 +57206 0.036304 0.41053 5.9772 +57205 0.035739 0.41081 6.2665 +57204 0.035066 0.41085 0.27471 +57203 0.034468 0.41066 0.56456 +57202 0.033764 0.41025 0.85407 +57201 0.033116 0.40964 1.1435 +57200 0.032468 0.40885 1.4336 +57199 0.031725 0.4079 1.7226 +57198 0.031071 0.40683 2.0127 +57197 0.030372 0.40568 2.301 +57196 0.029643 0.40447 2.5926 +57195 0.02894 0.40326 2.8812 +57194 0.028224 0.40208 3.17 +57193 0.027508 0.40097 3.4624 +57192 0.026765 0.39996 3.75 +57191 0.02603 0.3991 4.04 +57190 0.025349 0.39839 4.3307 +57189 0.024557 0.39787 4.619 +57188 0.023842 0.39755 4.9079 +57187 0.023167 0.39744 5.1967 +57186 0.022364 0.39755 5.4842 +57185 0.021697 0.39786 5.7721 +57184 0.020958 0.39837 6.0558 +57183 0.020255 0.39907 0.059745 +57182 0.019528 0.39992 0.34339 +57181 0.018824 0.4009 0.62237 +57180 0.018129 0.40198 0.90724 +57179 0.017423 0.40313 1.1829 +57178 0.016689 0.4043 1.4608 +57177 0.016046 0.40547 1.7351 +57176 0.015318 0.4066 2.0079 +57175 0.014601 0.40766 2.2777 +57174 0.01397 0.40863 2.5437 +57173 0.013247 0.40948 2.8083 +57172 0.012563 0.41018 3.0699 +57171 0.011925 0.41074 3.3211 +57170 0.01124 0.41112 3.5771 +57169 0.010612 0.41132 3.821 +57168 0.009971 0.41134 4.0585 +57167 0.009378 0.41117 4.2911 +57166 0.008846 0.41082 4.5189 +57165 0.008255 0.41029 4.7268 +57164 0.007867 0.40959 4.9373 +57163 0.00745 0.40874 5.1317 +57162 0.007117 0.40775 5.3165 +57161 0.00695 0.40664 5.4965 +57160 0.00685 0.40545 5.6709 +57159 0.006812 0.4042 5.8451 +57158 0.00701 0.40291 6.0208 +57157 0.007202 0.40162 6.2054 +57156 0.00753 0.40036 0.12003 +57155 0.007968 0.39915 0.32101 +57154 0.008438 0.39803 0.53954 +57153 0.008974 0.39703 0.77248 +57152 0.00957 0.39616 1.0044 +57151 0.010174 0.39546 1.2567 +57150 0.010839 0.39495 1.5126 +57149 0.011473 0.39463 1.7741 +57148 0.01215 0.39454 2.0433 +57147 0.012886 0.39468 2.3181 +57146 0.013471 0.39506 2.5959 +57145 0.014227 0.39567 2.8762 +57144 0.014884 0.39652 3.1621 +57143 0.015507 0.39757 3.4487 +57142 0.016187 0.39882 3.7381 +57141 0.0168 0.40024 4.0271 +57140 0.017411 0.40178 4.3235 +57139 0.017987 0.40341 4.6136 +57138 0.018553 0.40509 4.9096 +57137 0.019125 0.40679 5.2068 +57136 0.019615 0.40845 5.5019 +57135 0.020107 0.41003 5.7989 +57134 0.020644 0.4115 6.0969 +57133 0.021021 0.41281 0.1114 +57132 0.021475 0.41395 0.41038 +57131 0.021881 0.41485 0.70673 +57130 0.02223 0.41551 1.0087 +57129 0.022557 0.4159 1.3066 +57128 0.022875 0.416 1.605 +57127 0.02312 0.4158 1.9085 +57126 0.023356 0.41531 2.2068 +57125 0.023497 0.41452 2.5099 +57124 0.023692 0.41346 2.8128 +57123 0.023752 0.41214 3.1166 +57122 0.023796 0.4106 3.4226 +57121 0.023844 0.40887 3.7285 +57120 0.023805 0.407 4.0374 +57119 0.023737 0.40504 4.3488 +57118 0.02364 0.40303 4.6568 +57117 0.023525 0.40103 4.9729 +57116 0.023341 0.39909 5.2868 +57115 0.023127 0.39727 5.6014 +57114 0.022904 0.39561 5.9202 +57113 0.022652 0.39417 6.2386 +57112 0.022287 0.39299 0.27594 +57111 0.022015 0.3921 0.59598 +57110 0.021644 0.39154 0.91945 +57109 0.021211 0.39132 1.2425 +57108 0.020854 0.39144 1.5651 +57107 0.020362 0.3919 1.8896 +57106 0.019931 0.39269 2.2152 +57105 0.019403 0.39377 2.539 +57104 0.018883 0.39511 2.8639 +57103 0.018388 0.39667 3.1916 +57102 0.01776 0.39839 3.5164 +57101 0.017211 0.40023 3.8449 +57100 0.016649 0.40213 4.1713 +57099 0.016003 0.40403 4.5041 +57098 0.015427 0.4059 4.8322 +57097 0.01483 0.40769 5.1643 +57096 0.014215 0.40934 5.5019 +57095 0.013643 0.41083 5.8359 +57094 0.013005 0.41212 6.1755 +57093 0.012506 0.41319 0.2364 +57092 0.011885 0.414 0.58266 +57091 0.011366 0.41456 0.93454 +57090 0.010892 0.41485 1.289 +57089 0.0104 0.41486 1.6522 +57088 0.009981 0.41463 2.0213 +57087 0.009591 0.41414 2.3868 +57086 0.009292 0.41343 2.7723 +57085 0.009017 0.41253 3.1546 +57084 0.008772 0.41145 3.5422 +57083 0.008704 0.41023 3.9341 +57082 0.008641 0.4089 4.3322 +57081 0.008619 0.4075 4.7274 +57080 0.0088 0.40605 5.1192 +57079 0.008934 0.40459 5.5128 +57078 0.009234 0.40315 5.8999 +57077 0.009522 0.40177 6.2792 +57076 0.009913 0.40048 0.37042 +57075 0.010377 0.3993 0.74111 +57074 0.010775 0.39826 1.1012 +57073 0.011316 0.39738 1.459 +57072 0.011829 0.39669 1.8073 +57071 0.01235 0.39619 2.1574 +57070 0.012903 0.39589 2.4982 +57069 0.013457 0.3958 2.8335 +57068 0.014059 0.39592 3.1742 +57067 0.014604 0.39623 3.5024 +57066 0.015192 0.39673 3.8315 +57065 0.015839 0.3974 4.1592 +57064 0.016392 0.39823 4.4817 +57063 0.016998 0.39918 4.8037 +57062 0.017663 0.40025 5.1212 +57061 0.01821 0.40139 5.4397 +57060 0.018871 0.40259 5.7543 +57059 0.019452 0.40382 6.0659 +57058 0.02009 0.40504 0.095449 +57057 0.020696 0.40623 0.40621 +57056 0.021262 0.40736 0.71184 +57055 0.021936 0.4084 1.0217 +57054 0.022486 0.40931 1.3258 +57053 0.023068 0.41008 1.6317 +57052 0.02368 0.41068 1.9344 +57051 0.024234 0.4111 2.2379 +57050 0.024761 0.41132 2.5414 +57049 0.025327 0.41134 2.8415 +57048 0.025833 0.41114 3.1448 +57047 0.026345 0.41075 3.4475 +57046 0.026805 0.41016 3.7477 +57045 0.027301 0.40939 4.0518 +57044 0.027752 0.40846 4.3539 +57043 0.028173 0.40737 4.657 +57042 0.028577 0.40618 4.9609 +57041 0.029026 0.4049 5.2639 +57040 0.029328 0.40358 5.5709 +57039 0.029718 0.40226 5.8737 +57038 0.030053 0.40097 6.1806 +57037 0.030324 0.39977 0.20479 +57036 0.030615 0.3987 0.51057 +57035 0.030834 0.39779 0.81778 +57034 0.031096 0.39709 1.1272 +57033 0.031217 0.39661 1.4339 +57032 0.031375 0.39639 1.7426 +57031 0.03153 0.39642 2.0509 +57030 0.031539 0.39673 2.3589 +57029 0.0316 0.39729 2.6671 +57028 0.031611 0.39809 2.9734 +57027 0.031537 0.39912 3.2818 +57026 0.03148 0.40033 3.5871 +57025 0.031326 0.40169 3.892 +57024 0.031191 0.40315 4.198 +57023 0.030989 0.40468 4.501 +57022 0.030682 0.40621 4.8034 +57021 0.030495 0.40771 5.1054 +57020 0.030088 0.40911 5.4067 +57019 0.029738 0.41037 5.7058 +57018 0.029364 0.41146 6.0047 +57017 0.028874 0.41233 0.019003 +57016 0.028418 0.41295 0.31739 +57015 0.027863 0.41329 0.61045 +57014 0.027327 0.41336 0.90751 +57013 0.026699 0.41313 1.2014 +57012 0.026031 0.41263 1.4933 +57011 0.025367 0.41186 1.7872 +57010 0.024644 0.41084 2.0787 +57009 0.023829 0.40962 2.3697 +57008 0.02308 0.40821 2.6599 +57007 0.022238 0.40666 2.9488 +57006 0.021358 0.40501 3.239 +57005 0.020486 0.40332 3.523 +57004 0.019598 0.40162 3.8095 +57003 0.018635 0.39998 4.0947 +57002 0.017744 0.39843 4.3713 +57001 0.01677 0.39704 4.6517 +57000 0.015877 0.39584 4.9238 +56999 0.014911 0.39488 5.1916 +56998 0.014013 0.39419 5.4524 +56997 0.013172 0.39378 5.7064 +56996 0.012271 0.39368 5.9498 +56995 0.011521 0.39387 6.1828 +56994 0.010834 0.39435 0.11592 +56993 0.010179 0.3951 0.32612 +56992 0.009722 0.39609 0.51292 +56991 0.009392 0.39728 0.69072 +56990 0.009198 0.39864 0.86372 +56989 0.009241 0.40012 1.0247 +56988 0.00943 0.4017 1.1893 +56987 0.009823 0.40331 1.3696 +56986 0.010334 0.40494 1.5484 +56985 0.011027 0.40653 1.7457 +56984 0.011808 0.40805 1.9606 +56983 0.012663 0.40948 2.1766 +56982 0.013586 0.41077 2.4123 +56981 0.014616 0.4119 2.6521 +56980 0.015611 0.41284 2.9023 +56979 0.016649 0.41359 3.1572 +56978 0.017803 0.41411 3.4178 +56977 0.018812 0.41442 3.6851 +56976 0.019962 0.4145 3.9539 +56975 0.02106 0.41436 4.2257 +56974 0.022155 0.41402 4.5045 +56973 0.023265 0.41346 4.7816 +56972 0.024353 0.41273 5.0616 +56971 0.025453 0.41182 5.3468 +56970 0.026534 0.41077 5.6297 +56969 0.027552 0.40958 5.9167 +56968 0.028675 0.40828 6.2041 +56967 0.029645 0.40689 0.20999 +56966 0.030663 0.40542 0.50055 +56965 0.031672 0.40391 0.791 +56964 0.032611 0.40238 1.0838 +56963 0.033548 0.40087 1.3785 +56962 0.034437 0.3994 1.6707 +56961 0.035344 0.398 1.9687 +56960 0.03618 0.39672 2.2648 +56959 0.036984 0.39558 2.5616 +56958 0.037834 0.39461 2.8607 +56957 0.038598 0.39383 3.1599 +56956 0.039322 0.39329 3.4587 +56955 0.040125 0.39298 3.7592 +56954 0.040798 0.39292 4.0591 +56953 0.041515 0.39313 4.36 +56952 0.042193 0.3936 4.6595 +56951 0.042869 0.39433 4.9595 +56950 0.043494 0.39532 5.2604 +56949 0.044123 0.39654 5.5582 +56948 0.044732 0.39797 5.8577 +56947 0.045331 0.39958 6.1556 +56946 0.045876 0.40133 0.16938 +56945 0.046412 0.40318 0.46571 +56944 0.046998 0.40509 0.76097 +56943 0.047414 0.407 1.056 +56942 0.047932 0.40886 1.349 +56941 0.048402 0.41063 1.642 +56940 0.048776 0.41225 1.9347 +56939 0.049222 0.41369 2.2256 +56938 0.049565 0.4149 2.5163 +56937 0.049944 0.41585 2.8082 +56936 0.050253 0.41651 3.0974 +56935 0.050536 0.41686 3.3881 +56934 0.050868 0.41689 3.6783 +56933 0.051077 0.41658 3.9688 +56932 0.051277 0.41596 4.2595 +56931 0.051565 0.41502 4.5498 +56930 0.051641 0.41378 4.8425 +56929 0.051831 0.41229 5.1344 +56928 0.051924 0.41056 5.4271 +56927 0.052012 0.40866 5.7222 +56926 0.052054 0.40664 6.017 +56925 0.052044 0.40455 0.029352 +56924 0.052072 0.40246 0.32787 +56923 0.05197 0.40044 0.62528 +56922 0.051862 0.39854 0.92533 +56921 0.051771 0.39683 1.2255 +56920 0.051553 0.39535 1.527 +56919 0.051357 0.39416 1.8294 +56918 0.051099 0.39328 2.1315 +56917 0.050806 0.39275 2.4345 +56916 0.050485 0.39256 2.7388 +56915 0.050066 0.39273 3.0403 +56914 0.049715 0.39324 3.3441 +56913 0.049216 0.39406 3.6465 +56912 0.048716 0.39518 3.9475 +56911 0.048192 0.39654 4.2489 +56910 0.047637 0.39808 4.5482 +56909 0.046961 0.39976 4.8473 +56908 0.046343 0.40152 5.1438 +56907 0.045652 0.40328 5.4402 +56906 0.044866 0.40501 5.7351 +56905 0.044123 0.40664 6.0275 +56904 0.043271 0.40813 0.036418 +56903 0.042431 0.40944 0.32759 +56902 0.041511 0.41053 0.61604 +56901 0.040557 0.4114 0.90418 +56900 0.039636 0.41202 1.1915 +56899 0.038574 0.41238 1.4767 +56898 0.037552 0.41249 1.7616 +56897 0.036547 0.41236 2.044 +56896 0.0354 0.41199 2.3275 +56895 0.034343 0.41141 2.607 +56894 0.033257 0.41064 2.8861 +56893 0.032098 0.40971 3.1646 +56892 0.031033 0.40867 3.4395 +56891 0.029844 0.40753 3.7128 +56890 0.02881 0.40636 3.9855 +56889 0.027653 0.40518 4.2537 +56888 0.026577 0.40403 4.5194 +56887 0.025581 0.40296 4.7832 +56886 0.024532 0.40198 5.0414 +56885 0.023578 0.40113 5.2973 +56884 0.022734 0.40042 5.5457 +56883 0.021879 0.39986 5.7931 +56882 0.021161 0.39945 6.0338 +56881 0.020537 0.39919 6.2662 +56880 0.020025 0.39908 0.21723 +56879 0.019601 0.3991 0.44365 +56878 0.019361 0.39924 0.6646 +56877 0.019215 0.39951 0.89105 +56876 0.019242 0.39988 1.1089 +56875 0.019355 0.40036 1.3327 +56874 0.019682 0.40091 1.5563 +56873 0.020087 0.40154 1.7842 +56872 0.020571 0.40221 2.0148 +56871 0.021285 0.40292 2.2508 +56870 0.021971 0.40364 2.4907 +56869 0.022787 0.40437 2.7369 +56868 0.023699 0.40507 2.9845 +56867 0.024623 0.40574 3.2397 +56866 0.025611 0.40636 3.4984 +56865 0.02664 0.40693 3.7582 +56864 0.027691 0.40744 4.0248 +56863 0.028774 0.40788 4.2934 +56862 0.029813 0.40826 4.5634 +56861 0.030949 0.40855 4.8376 +56860 0.032026 0.40877 5.1138 +56859 0.033057 0.40888 5.3907 +56858 0.03418 0.4089 5.6712 +56857 0.035206 0.40881 5.9517 +56856 0.036237 0.4086 6.2353 +56855 0.037233 0.40826 0.23552 +56854 0.038252 0.4078 0.52041 +56853 0.039162 0.4072 0.80901 +56852 0.040099 0.40649 1.0945 +56851 0.040986 0.40566 1.3848 +56850 0.04185 0.40474 1.6753 +56849 0.042663 0.40375 1.966 +56848 0.043445 0.4027 2.2587 +56847 0.044256 0.40164 2.5526 +56846 0.044921 0.4006 2.8469 +56845 0.04565 0.39959 3.143 +56844 0.046335 0.39866 3.4385 +56843 0.046926 0.39783 3.7371 +56842 0.047555 0.39715 4.0345 +56841 0.048115 0.39663 4.333 +56840 0.048663 0.39631 4.6332 +56839 0.049194 0.39621 4.9323 +56838 0.049608 0.39635 5.2318 +56837 0.050166 0.39674 5.5323 +56836 0.050488 0.39738 5.8318 +56835 0.05089 0.39826 6.1312 +56834 0.051285 0.39937 0.14721 +56833 0.051545 0.40067 0.44619 +56832 0.05185 0.40214 0.74458 +56831 0.052113 0.40373 1.0409 +56830 0.052312 0.40538 1.339 +56829 0.052522 0.40707 1.6345 +56828 0.052637 0.40872 1.9294 +56827 0.052805 0.4103 2.2243 +56826 0.052877 0.41175 2.5184 +56825 0.052899 0.41302 2.8114 +56824 0.053005 0.41408 3.1046 +56823 0.05296 0.41488 3.3971 +56822 0.052944 0.41539 3.6895 +56821 0.052901 0.4156 3.9813 +56820 0.052827 0.41548 4.2735 +56819 0.052715 0.41504 4.5668 +56818 0.052569 0.41428 4.8579 +56817 0.052437 0.41321 5.152 +56816 0.052217 0.41187 5.4458 +56815 0.052004 0.41028 5.7396 +56814 0.051731 0.4085 6.0356 +56813 0.051478 0.40657 0.048275 +56812 0.051103 0.40455 0.34637 +56811 0.050771 0.4025 0.64448 +56810 0.0504 0.40048 0.9442 +56809 0.049936 0.39856 1.246 +56808 0.049501 0.39679 1.5477 +56807 0.049017 0.39523 1.8502 +56806 0.048496 0.39393 2.156 +56805 0.047926 0.39292 2.4592 +56804 0.047336 0.39223 2.7653 +56803 0.046751 0.39189 3.0715 +56802 0.046048 0.39191 3.3771 +56801 0.045356 0.39226 3.6835 +56800 0.0447 0.39296 3.9894 +56799 0.043863 0.39395 4.2953 +56798 0.043149 0.39521 4.6003 +56797 0.042301 0.39669 4.9036 +56796 0.041457 0.39833 5.208 +56795 0.04058 0.40009 5.5099 +56794 0.039621 0.40192 5.8105 +56793 0.038697 0.40374 6.1119 +56792 0.037688 0.40552 0.12749 +56791 0.036604 0.40721 0.42621 +56790 0.035629 0.40878 0.72308 +56789 0.034456 0.41018 1.0206 +56788 0.033339 0.4114 1.3159 +56787 0.032221 0.4124 1.6106 +56786 0.031 0.41318 1.905 +56785 0.029816 0.41373 2.1989 +56784 0.02855 0.41403 2.4892 +56783 0.02734 0.4141 2.7824 +56782 0.026038 0.41395 3.073 +56781 0.024726 0.41359 3.3608 +56780 0.023446 0.41304 3.6508 +56779 0.022122 0.41232 3.9361 +56778 0.020754 0.41147 4.2221 +56777 0.019429 0.41051 4.5033 +56776 0.018098 0.40947 4.7829 +56775 0.016705 0.40837 5.0614 +56774 0.015403 0.40724 5.3286 +56773 0.014065 0.4061 5.595 +56772 0.012764 0.40496 5.8546 +56771 0.011486 0.40384 6.0951 +56770 0.010296 0.40275 0.046078 +56769 0.009156 0.40171 0.25942 +56768 0.008126 0.40073 0.44009 +56767 0.007249 0.39983 0.6023 +56766 0.006663 0.39901 0.71772 +56765 0.006234 0.3983 0.81162 +56764 0.006247 0.3977 0.8881 +56763 0.006559 0.39721 0.98248 +56762 0.007092 0.39686 1.0992 +56761 0.007913 0.39665 1.2578 +56760 0.008864 0.39657 1.4416 +56759 0.009843 0.39662 1.661 +56758 0.010976 0.39681 1.8917 +56757 0.012118 0.39714 2.1412 +56756 0.013234 0.39759 2.4061 +56755 0.014403 0.39817 2.672 +56754 0.015579 0.39887 2.9496 +56753 0.016698 0.3997 3.2351 +56752 0.017843 0.40063 3.516 +56751 0.01893 0.40165 3.8086 +56750 0.020051 0.40275 4.099 +56749 0.021084 0.40392 4.3932 +56748 0.022096 0.4051 4.6873 +56747 0.023167 0.40629 4.983 +56746 0.024039 0.40745 5.2804 +56745 0.025021 0.40853 5.5774 +56744 0.025892 0.40952 5.8739 +56743 0.026728 0.41037 6.1737 +56742 0.027543 0.41108 0.18877 +56741 0.028279 0.4116 0.48644 +56740 0.02905 0.41194 0.78785 +56739 0.02969 0.41208 1.0864 +56738 0.030312 0.412 1.3868 +56737 0.030977 0.41171 1.688 +56736 0.031479 0.41121 1.9891 +56735 0.032 0.41052 2.2912 +56734 0.032513 0.40964 2.5929 +56733 0.03291 0.40859 2.8972 +56732 0.033346 0.40741 3.2011 +56731 0.033663 0.40614 3.5048 +56730 0.034018 0.4048 3.8108 +56729 0.034297 0.40344 4.1184 +56728 0.034486 0.40212 4.4237 +56727 0.034773 0.40086 4.7333 +56726 0.034887 0.39973 5.0417 +56725 0.035027 0.39875 5.3515 +56724 0.035139 0.39797 5.6614 +56723 0.035215 0.39741 5.9718 +56722 0.035201 0.39708 0.000947 +56721 0.035227 0.39701 0.31047 +56720 0.03518 0.39718 0.62285 +56719 0.035113 0.3976 0.93455 +56718 0.034992 0.39824 1.2445 +56717 0.034859 0.39907 1.5564 +56716 0.034717 0.40007 1.8669 +56715 0.034494 0.40119 2.1769 +56714 0.034259 0.4024 2.4875 +56713 0.034066 0.40364 2.7957 +56712 0.033734 0.40487 3.1075 +56711 0.033474 0.40605 3.4142 +56710 0.033175 0.40712 3.7232 +56709 0.032821 0.40806 4.0326 +56708 0.032501 0.40883 4.3395 +56707 0.032081 0.4094 4.6474 +56706 0.031763 0.40975 4.9564 +56705 0.03128 0.40988 5.2642 +56704 0.030866 0.40978 5.5737 +56703 0.030468 0.40946 5.8829 +56702 0.029955 0.40894 6.1943 +56701 0.0295 0.40824 0.22297 +56700 0.029039 0.40739 0.53399 +56699 0.02853 0.40642 0.85034 +56698 0.02804 0.40537 1.1645 +56697 0.027496 0.40427 1.4808 +56696 0.027012 0.40318 1.8003 +56695 0.026475 0.40212 2.1201 +56694 0.025882 0.40114 2.4419 +56693 0.025419 0.40028 2.7652 +56692 0.024819 0.39956 3.0922 +56691 0.02428 0.39902 3.4189 +56690 0.023772 0.39867 3.7483 +56689 0.023195 0.39851 4.0793 +56688 0.022714 0.39856 4.4136 +56687 0.022136 0.3988 4.7461 +56686 0.021669 0.39923 5.0829 +56685 0.021159 0.39981 5.4221 +56684 0.020629 0.40052 5.76 +56683 0.020181 0.40133 6.102 +56682 0.019736 0.40222 0.16111 +56681 0.019234 0.40315 0.50828 +56680 0.018853 0.40408 0.85296 +56679 0.018449 0.405 1.202 +56678 0.01808 0.40586 1.5553 +56677 0.017735 0.40665 1.9061 +56676 0.017432 0.40735 2.2607 +56675 0.017214 0.40794 2.6205 +56674 0.016938 0.40842 2.976 +56673 0.016811 0.40876 3.3389 +56672 0.016698 0.40898 3.6977 +56671 0.016617 0.40907 4.0617 +56670 0.016597 0.40903 4.4245 +56669 0.016625 0.40889 4.7838 +56668 0.016719 0.40864 5.1507 +56667 0.016842 0.40831 5.51 +56666 0.016965 0.40792 5.8711 +56665 0.017254 0.40747 6.2316 +56664 0.017447 0.40698 0.307 +56663 0.01773 0.40647 0.66347 +56662 0.018074 0.40594 1.0179 +56661 0.018375 0.40539 1.3718 +56660 0.018771 0.40484 1.7249 +56659 0.019098 0.40428 2.0717 +56658 0.019535 0.40372 2.4214 +56657 0.019924 0.40315 2.7685 +56656 0.020304 0.40259 3.1114 +56655 0.020759 0.40204 3.4559 +56654 0.021158 0.40149 3.7959 +56653 0.021556 0.40096 4.1382 +56652 0.021953 0.40046 4.4749 +56651 0.022372 0.39998 4.8116 +56650 0.022717 0.39953 5.1518 +56649 0.023067 0.39913 5.4835 +56648 0.023428 0.39877 5.8197 +56647 0.02376 0.39848 6.1542 +56646 0.02402 0.39827 0.20276 +56645 0.024313 0.39815 0.5361 +56644 0.024595 0.39814 0.86713 +56643 0.024762 0.39825 1.1978 +56642 0.024987 0.3985 1.5288 +56641 0.025118 0.3989 1.8559 +56640 0.025269 0.39945 2.1874 +56639 0.025329 0.40015 2.5136 +56638 0.025372 0.40099 2.8399 +56637 0.025411 0.40196 3.1685 +56636 0.02538 0.40304 3.4925 +56635 0.025287 0.4042 3.8184 +56634 0.025267 0.40542 4.1404 +56633 0.025096 0.40666 4.4654 +56632 0.024929 0.4079 4.7867 +56631 0.024766 0.40908 5.1059 +56630 0.0245 0.41019 5.4283 +56629 0.02423 0.41118 5.7475 +56628 0.023914 0.41203 6.0646 +56627 0.023579 0.41269 0.1021 +56626 0.023198 0.41315 0.41814 +56625 0.022745 0.41339 0.73748 +56624 0.022318 0.41338 1.0539 +56623 0.021863 0.41312 1.3723 +56622 0.021268 0.4126 1.6915 +56621 0.020789 0.41183 2.0082 +56620 0.020176 0.41084 2.3296 +56619 0.019593 0.40964 2.6506 +56618 0.018945 0.40826 2.9713 +56617 0.018287 0.40676 3.2946 +56616 0.01766 0.40518 3.6218 +56615 0.016883 0.40355 3.9462 +56614 0.016211 0.40193 4.2761 +56613 0.015475 0.40037 4.608 +56612 0.014676 0.39891 4.9428 +56611 0.013955 0.3976 5.2804 +56610 0.013151 0.39648 5.6188 +56609 0.012382 0.39559 5.9682 +56608 0.011593 0.39494 0.031863 +56607 0.010775 0.39456 0.38643 +56606 0.010046 0.39445 0.74952 +56605 0.009232 0.39463 1.1207 +56604 0.008456 0.39506 1.5009 +56603 0.007829 0.39574 1.8915 +56602 0.007087 0.39663 2.3097 +56601 0.006536 0.39769 2.7337 +56600 0.00605 0.39888 3.1824 +56599 0.005721 0.40016 3.6557 +56598 0.005554 0.40148 4.1434 +56597 0.005491 0.4028 4.6316 +56596 0.005759 0.40408 5.1141 +56595 0.006063 0.40528 5.5848 +56594 0.00656 0.40637 6.0332 +56593 0.007171 0.40734 0.16969 +56592 0.007849 0.40815 0.57531 +56591 0.008633 0.4088 0.96247 +56590 0.009397 0.40928 1.333 +56589 0.010237 0.40959 1.6946 +56588 0.011155 0.40974 2.0424 +56587 0.011967 0.40973 2.3921 +56586 0.0129 0.40959 2.7248 +56585 0.013828 0.40932 3.0591 +56584 0.014721 0.40896 3.3902 +56583 0.01569 0.40852 3.714 +56582 0.016572 0.40804 4.0362 +56581 0.017593 0.40752 4.3583 +56580 0.018465 0.407 4.6757 +56579 0.019408 0.40649 4.9925 +56578 0.02039 0.40601 5.308 +56577 0.021271 0.40556 5.6226 +56576 0.022215 0.40515 5.9367 +56575 0.023147 0.40478 6.2468 +56574 0.024052 0.40445 0.27802 +56573 0.024976 0.40415 0.58841 +56572 0.02585 0.40387 0.89758 +56571 0.026785 0.40362 1.2092 +56570 0.02766 0.40337 1.5184 +56569 0.028492 0.40313 1.8274 +56568 0.029442 0.40288 2.1364 +56567 0.030242 0.40263 2.4458 +56566 0.031089 0.40236 2.754 +56565 0.031967 0.40209 3.0627 +56564 0.032747 0.4018 3.3706 +56563 0.033599 0.40151 3.6803 +56562 0.034342 0.40122 3.9873 +56561 0.035171 0.40094 4.2961 +56560 0.035913 0.4007 4.6054 +56559 0.036627 0.4005 4.9124 +56558 0.037357 0.40036 5.222 +56557 0.038071 0.4003 5.5299 +56556 0.038687 0.40032 5.8392 +56555 0.03935 0.40043 6.1469 +56554 0.039969 0.40064 0.17229 +56553 0.040516 0.40096 0.48187 +56552 0.041075 0.40137 0.78901 +56551 0.041594 0.40187 1.0968 +56550 0.042071 0.40244 1.4066 +56549 0.042508 0.40308 1.7126 +56548 0.042917 0.40376 2.0212 +56547 0.043341 0.40446 2.3279 +56546 0.043657 0.40515 2.6351 +56545 0.043955 0.40582 2.9416 +56544 0.044312 0.40642 3.2467 +56543 0.044464 0.40695 3.5535 +56542 0.044706 0.40738 3.858 +56541 0.044831 0.4077 4.1626 +56540 0.044952 0.40788 4.4688 +56539 0.044999 0.40792 4.7726 +56538 0.044977 0.40782 5.0774 +56537 0.044986 0.40758 5.3831 +56536 0.044875 0.40722 5.6875 +56535 0.044712 0.40674 5.9935 +56534 0.044584 0.40617 0.014715 +56533 0.044302 0.40552 0.32173 +56532 0.044021 0.40484 0.62765 +56531 0.043709 0.40414 0.93325 +56530 0.043287 0.40345 1.2408 +56529 0.042882 0.40282 1.5478 +56528 0.042338 0.40225 1.8548 +56527 0.041859 0.40179 2.162 +56526 0.04127 0.40144 2.4704 +56525 0.040576 0.40122 2.7766 +56524 0.039992 0.40114 3.0842 +56523 0.039224 0.40121 3.3907 +56522 0.038452 0.40142 3.6967 +56521 0.037651 0.40175 4.002 +56520 0.0368 0.4022 4.3062 +56519 0.035893 0.40274 4.6112 +56518 0.034959 0.40335 4.912 +56517 0.033968 0.404 5.2142 +56516 0.03299 0.40465 5.5149 +56515 0.031896 0.40527 5.8127 +56514 0.030832 0.40585 6.1102 +56513 0.029747 0.40634 0.12317 +56512 0.028555 0.40673 0.41689 +56511 0.02742 0.40699 0.71015 +56510 0.026242 0.40712 0.99844 +56509 0.025014 0.40711 1.2901 +56508 0.023799 0.40696 1.5742 +56507 0.022589 0.40667 1.8575 +56506 0.021346 0.40625 2.1403 +56505 0.020122 0.40572 2.4149 +56504 0.018861 0.4051 2.6883 +56503 0.017707 0.40442 2.9572 +56502 0.016458 0.4037 3.2175 +56501 0.0153 0.40297 3.4734 +56500 0.014223 0.40226 3.7171 +56499 0.013141 0.40161 3.9548 +56498 0.012144 0.40103 4.1767 +56497 0.011342 0.40054 4.3807 +56496 0.010544 0.40018 4.5785 +56495 0.010017 0.39994 4.7523 +56494 0.00963 0.39985 4.9131 +56493 0.009481 0.39988 5.0717 +56492 0.009549 0.40005 5.226 +56491 0.009839 0.40034 5.3804 +56490 0.010339 0.40074 5.5615 +56489 0.010977 0.40122 5.7429 +56488 0.011763 0.40178 5.9466 +56487 0.012665 0.40237 6.1669 +56486 0.01364 0.40299 0.11092 +56485 0.01462 0.40362 0.35396 +56484 0.015748 0.40422 0.60251 +56483 0.016805 0.40479 0.86079 +56482 0.017896 0.40531 1.1252 +56481 0.019053 0.40576 1.3913 +56480 0.020145 0.40614 1.6659 +56479 0.021243 0.40645 1.9431 +56478 0.022363 0.40668 2.2188 +56477 0.02345 0.40683 2.5043 +56476 0.024522 0.40691 2.7863 +56475 0.025565 0.40693 3.0719 +56474 0.026623 0.4069 3.3595 +56473 0.027661 0.40683 3.6483 +56472 0.028589 0.40673 3.9372 +56471 0.029644 0.40662 4.228 +56470 0.030546 0.4065 4.5195 +56469 0.031469 0.40638 4.8117 +56468 0.032375 0.40627 5.1041 +56467 0.033235 0.40617 5.3972 +56466 0.034078 0.40607 5.6925 +56465 0.034883 0.40598 5.9854 +56464 0.03567 0.40588 6.2803 +56463 0.036468 0.40576 0.29335 +56462 0.03714 0.40563 0.58758 +56461 0.037909 0.40546 0.88346 +56460 0.038594 0.40525 1.1801 +56459 0.039226 0.40498 1.4754 +56458 0.039895 0.40466 1.7731 +56457 0.040525 0.40428 2.0683 +56456 0.041104 0.40383 2.3674 +56455 0.041678 0.40332 2.6634 +56454 0.042236 0.40276 2.9612 +56453 0.042745 0.40215 3.2606 +56452 0.043242 0.40151 3.5579 +56451 0.043654 0.40086 3.8575 +56450 0.044152 0.40023 4.1574 +56449 0.044491 0.39962 4.4577 +56448 0.04485 0.39908 4.7586 +56447 0.045254 0.39862 5.0592 +56446 0.045498 0.39826 5.3623 +56445 0.0458 0.39804 5.6642 +56444 0.046067 0.39797 5.9657 +56443 0.046265 0.39805 6.2702 +56442 0.046455 0.39831 0.28888 +56441 0.046601 0.39874 0.59207 +56440 0.046737 0.39934 0.89595 +56439 0.046831 0.4001 1.198 +56438 0.046841 0.401 1.502 +56437 0.046935 0.40202 1.8035 +56436 0.046905 0.40313 2.1069 +56435 0.046854 0.4043 2.4083 +56434 0.046828 0.4055 2.7093 +56433 0.046687 0.40669 3.0104 +56432 0.046591 0.40783 3.3113 +56431 0.046356 0.40889 3.6102 +56430 0.046189 0.40983 3.9101 +56429 0.045912 0.41063 4.2102 +56428 0.045583 0.41127 4.5083 +56427 0.045286 0.41171 4.8077 +56426 0.044894 0.41196 5.1068 +56425 0.044424 0.412 5.4059 +56424 0.04401 0.41183 5.7054 +56423 0.043473 0.41146 6.0047 +56422 0.04293 0.41091 0.022583 +56421 0.042319 0.41018 0.32283 +56420 0.041709 0.4093 0.62339 +56419 0.041045 0.4083 0.92734 +56418 0.040312 0.4072 1.2277 +56417 0.039577 0.40605 1.5323 +56416 0.038827 0.40486 1.8356 +56415 0.037965 0.40368 2.14 +56414 0.037106 0.40254 2.4449 +56413 0.036259 0.40147 2.7495 +56412 0.035257 0.40049 3.0564 +56411 0.034331 0.39964 3.3617 +56410 0.033305 0.39892 3.6667 +56409 0.032269 0.39835 3.9747 +56408 0.03119 0.39794 4.2792 +56407 0.030062 0.39768 4.5849 +56406 0.02896 0.39758 4.8911 +56405 0.027767 0.39762 5.1947 +56404 0.026552 0.3978 5.5005 +56403 0.025385 0.3981 5.8017 +56402 0.02412 0.3985 6.106 +56401 0.022832 0.399 0.12405 +56400 0.021616 0.39956 0.42099 +56399 0.020292 0.40017 0.7231 +56398 0.019009 0.40081 1.017 +56397 0.017688 0.40148 1.3101 +56396 0.016399 0.40215 1.6016 +56395 0.0151 0.40281 1.8893 +56394 0.013727 0.40345 2.1691 +56393 0.012493 0.40408 2.4473 +56392 0.011161 0.40467 2.7145 +56391 0.009877 0.40524 2.9739 +56390 0.008667 0.40578 3.2144 +56389 0.007469 0.40629 3.4371 +56388 0.006338 0.40676 3.6315 +56387 0.005396 0.40721 3.7694 +56386 0.004595 0.40762 3.8534 +56385 0.004146 0.40799 3.8798 +56384 0.00411 0.40831 3.8421 +56383 0.004473 0.40858 3.8629 +56382 0.005144 0.40879 3.9347 +56381 0.006056 0.40893 4.0654 +56380 0.007006 0.409 4.2529 +56379 0.008092 0.40898 4.473 +56378 0.009129 0.40888 4.706 +56377 0.010248 0.40869 4.9654 +56376 0.011336 0.4084 5.2309 +56375 0.012371 0.40802 5.5041 +56374 0.013471 0.40755 5.7844 +56373 0.014528 0.40699 6.0698 +56372 0.015471 0.40634 0.075366 +56371 0.016537 0.40562 0.36568 +56370 0.01746 0.40484 0.66031 +56369 0.018387 0.40401 0.95754 +56368 0.019284 0.40316 1.254 +56367 0.020149 0.40231 1.553 +56366 0.020983 0.40148 1.857 +56365 0.021744 0.4007 2.1552 +56364 0.022524 0.4 2.4601 +56363 0.02324 0.3994 2.7639 +56362 0.023898 0.39892 3.067 +56361 0.024531 0.39858 3.3735 +56360 0.025159 0.39839 3.6765 +56359 0.025676 0.39837 3.9847 +56358 0.026199 0.3985 4.2895 +56357 0.026697 0.39881 4.5943 +56356 0.027118 0.39926 4.9028 +56355 0.027531 0.39986 5.207 +56354 0.027871 0.40059 5.5121 +56353 0.028257 0.40141 5.8192 +56352 0.028494 0.40231 6.1225 +56351 0.028763 0.40325 0.14463 +56350 0.029027 0.40421 0.44864 +56349 0.029196 0.40514 0.75253 +56348 0.029346 0.40602 1.0567 +56347 0.02953 0.40681 1.3573 +56346 0.0296 0.40749 1.6627 +56345 0.0297 0.40805 1.9637 +56344 0.029728 0.40845 2.2653 +56343 0.029765 0.40869 2.5679 +56342 0.029762 0.40877 2.8699 +56341 0.029661 0.40868 3.1711 +56340 0.02966 0.40843 3.4738 +56339 0.02952 0.40803 3.7765 +56338 0.029366 0.4075 4.0801 +56337 0.029265 0.40687 4.3826 +56336 0.029061 0.40615 4.6883 +56335 0.02885 0.40538 4.993 +56334 0.028652 0.40458 5.2981 +56333 0.028371 0.40379 5.605 +56332 0.028163 0.40303 5.9129 +56331 0.027802 0.40233 6.2199 +56330 0.027545 0.40172 0.24566 +56329 0.027222 0.40123 0.55602 +56328 0.026845 0.40086 0.86532 +56327 0.026516 0.40063 1.1771 +56326 0.026149 0.40055 1.4866 +56325 0.025749 0.40062 1.8013 +56324 0.02534 0.40083 2.1112 +56323 0.024937 0.40116 2.4233 +56322 0.024493 0.40161 2.7395 +56321 0.024021 0.40216 3.05 +56320 0.023553 0.40277 3.3653 +56319 0.023099 0.40343 3.681 +56318 0.022548 0.40412 3.9956 +56317 0.022055 0.40481 4.3133 +56316 0.021566 0.40547 4.63 +56315 0.020989 0.40609 4.9499 +56314 0.020489 0.40664 5.2705 +56313 0.019917 0.40711 5.5892 +56312 0.019401 0.40748 5.9159 +56311 0.018817 0.40774 6.2399 +56310 0.018255 0.40789 0.28234 +56309 0.017728 0.40792 0.61551 +56308 0.017157 0.40783 0.94555 +56307 0.016583 0.40763 1.2842 +56306 0.01609 0.40733 1.6198 +56305 0.015548 0.40693 1.9659 +56304 0.015015 0.40646 2.312 +56303 0.014565 0.40592 2.6594 +56302 0.014076 0.40533 3.0177 +56301 0.013661 0.40471 3.3761 +56300 0.013227 0.40407 3.7374 +56299 0.012895 0.40343 4.1075 +56298 0.012583 0.40279 4.4785 +56297 0.012285 0.40218 4.8576 +56296 0.012084 0.40161 5.2352 +56295 0.011976 0.40108 5.6178 +56294 0.011852 0.40061 6.01 +56293 0.01187 0.4002 0.1065 +56292 0.01193 0.39986 0.49726 +56291 0.012097 0.3996 0.88311 +56290 0.012274 0.39943 1.2654 +56289 0.012537 0.39936 1.6453 +56288 0.012917 0.39937 2.0212 +56287 0.013203 0.39948 2.3957 +56286 0.013657 0.39968 2.7626 +56285 0.014074 0.39997 3.1256 +56284 0.014547 0.40036 3.4895 +56283 0.015041 0.40083 3.844 +56282 0.015513 0.40139 4.1971 +56281 0.016086 0.40203 4.5478 +56280 0.016585 0.40274 4.8923 +56279 0.017098 0.40353 5.2375 +56278 0.017661 0.40436 5.5741 +56277 0.018176 0.40525 5.9135 +56276 0.018667 0.40615 6.2493 +56275 0.019184 0.40707 0.29413 +56274 0.019682 0.40797 0.6286 +56273 0.020149 0.40883 0.95442 +56272 0.02059 0.40963 1.2805 +56271 0.021041 0.41035 1.6047 +56270 0.021479 0.41096 1.9269 +56269 0.02179 0.41144 2.2482 +56268 0.022215 0.41178 2.5657 +56267 0.022504 0.41196 2.8849 +56266 0.022788 0.41197 3.2023 +56265 0.02305 0.41179 3.5172 +56264 0.023264 0.41142 3.8321 +56263 0.02347 0.41086 4.1487 +56262 0.023586 0.41011 4.4605 +56261 0.023702 0.40919 4.7749 +56260 0.023823 0.40809 5.0879 +56259 0.023785 0.40686 5.4012 +56258 0.02382 0.4055 5.7134 +56257 0.0238 0.40406 6.0264 +56256 0.023671 0.40257 0.056355 +56255 0.023608 0.40107 0.36925 +56254 0.023418 0.3996 0.68014 +56253 0.023278 0.39821 0.99541 +56252 0.023018 0.39694 1.306 +56251 0.022752 0.39582 1.6181 +56250 0.0225 0.3949 1.9316 +56249 0.022137 0.3942 2.2423 +56248 0.021753 0.39375 2.5544 +56247 0.02143 0.39356 2.8635 +56246 0.020951 0.39366 3.1751 +56245 0.020523 0.39404 3.4834 +56244 0.020052 0.39469 3.7885 +56243 0.019548 0.39561 4.0964 +56242 0.019018 0.39677 4.4007 +56241 0.018436 0.39813 4.6995 +56240 0.017905 0.39966 5.0033 +56239 0.017263 0.40132 5.2992 +56238 0.016636 0.40306 5.5945 +56237 0.016022 0.40482 5.889 +56236 0.015359 0.40656 6.177 +56235 0.014669 0.40823 0.18495 +56234 0.014012 0.40979 0.46423 +56233 0.01333 0.41119 0.74753 +56232 0.012614 0.41241 1.0256 +56231 0.011936 0.41342 1.2931 +56230 0.011211 0.4142 1.5639 +56229 0.010554 0.41472 1.8267 +56228 0.009806 0.41499 2.0793 +56227 0.009173 0.41499 2.3294 +56226 0.00852 0.41473 2.57 +56225 0.007856 0.41423 2.798 +56224 0.007303 0.41348 3.0165 +56223 0.00679 0.41252 3.216 +56222 0.006272 0.41138 3.4096 +56221 0.005957 0.41008 3.5735 +56220 0.005666 0.40867 3.7301 +56219 0.005513 0.40718 3.8798 +56218 0.005512 0.40566 4.0145 +56217 0.005645 0.40414 4.1564 +56216 0.005868 0.40266 4.323 +56215 0.006247 0.40125 4.4802 +56214 0.006694 0.39995 4.6724 +56213 0.007233 0.39879 4.8789 +56212 0.007798 0.39778 5.0903 +56211 0.008451 0.39694 5.3223 +56210 0.009134 0.3963 5.5657 +56209 0.009812 0.39586 5.8091 +56208 0.010538 0.39562 6.0691 +56207 0.011318 0.39558 0.044119 +56206 0.012022 0.39575 0.3129 +56205 0.012814 0.39611 0.58048 +56204 0.013617 0.39664 0.85326 +56203 0.014358 0.39734 1.1301 +56202 0.015197 0.39817 1.4065 +56201 0.015972 0.39912 1.6828 +56200 0.016815 0.40016 1.9669 +56199 0.0176 0.40126 2.2459 +56198 0.018424 0.4024 2.5263 +56197 0.019292 0.40354 2.8131 +56196 0.020072 0.40468 3.0938 +56195 0.020918 0.40578 3.3793 +56194 0.021797 0.40682 3.664 +56193 0.022595 0.40779 3.9496 +56192 0.023446 0.40867 4.2363 +56191 0.024326 0.40945 4.5208 +56190 0.025128 0.41009 4.8097 +56189 0.026007 0.4106 5.0964 +56188 0.02681 0.41097 5.3829 +56187 0.027684 0.41117 5.6728 +56186 0.028492 0.41122 5.9616 +56185 0.02929 0.4111 6.2497 +56184 0.030161 0.41082 0.25847 +56183 0.030928 0.41038 0.54785 +56182 0.031717 0.4098 0.84075 +56181 0.032536 0.40908 1.1313 +56180 0.033289 0.40823 1.4253 +56179 0.034018 0.40729 1.7191 +56178 0.034786 0.40626 2.0122 +56177 0.035467 0.40517 2.3086 +56176 0.036177 0.40405 2.6047 +56175 0.036807 0.40293 2.901 +56174 0.03747 0.40184 3.1995 +56173 0.038093 0.40081 3.4981 +56172 0.038645 0.39987 3.7979 +56171 0.039218 0.39905 4.0976 +56170 0.03979 0.39838 4.3986 +56169 0.040206 0.39789 4.7008 +56168 0.040739 0.39759 5.0012 +56167 0.041154 0.39749 5.304 +56166 0.041547 0.39761 5.6066 +56165 0.041917 0.39795 5.9082 +56164 0.042243 0.39849 6.2097 +56163 0.042574 0.39922 0.2298 +56162 0.04278 0.40012 0.52948 +56161 0.043027 0.40117 0.83095 +56160 0.043226 0.40232 1.1307 +56159 0.043321 0.40355 1.4298 +56158 0.043435 0.40482 1.7289 +56157 0.043502 0.40608 2.0252 +56156 0.043478 0.4073 2.3232 +56155 0.043458 0.40842 2.6186 +56154 0.043351 0.40942 2.9128 +56153 0.043251 0.41027 3.2085 +56152 0.043056 0.41092 3.5012 +56151 0.042805 0.41136 3.7937 +56150 0.042627 0.41156 4.0869 +56149 0.042244 0.41152 4.378 +56148 0.041931 0.41123 4.6696 +56147 0.041571 0.41071 4.9601 +56146 0.04113 0.40995 5.2509 +56145 0.040681 0.40899 5.5422 +56144 0.040207 0.40786 5.8302 +56143 0.039698 0.40658 6.1224 +56142 0.039155 0.40519 0.12796 +56141 0.038581 0.40374 0.41731 +56140 0.038014 0.40227 0.70704 +56139 0.037426 0.40084 0.99602 +56138 0.036745 0.39948 1.2843 +56137 0.036184 0.39826 1.5723 +56136 0.035516 0.3972 1.8598 +56135 0.034835 0.39635 2.1466 +56134 0.034225 0.39575 2.4308 +56133 0.033554 0.39541 2.716 +56132 0.032878 0.39535 2.9986 +56131 0.032261 0.39557 3.2787 +56130 0.031577 0.39607 3.5584 +56129 0.031001 0.39683 3.8359 +56128 0.030327 0.39783 4.1101 +56127 0.029776 0.39903 4.3828 +56126 0.029226 0.40039 4.6539 +56125 0.028661 0.40188 4.9208 +56124 0.028191 0.40345 5.187 +56123 0.027769 0.40504 5.4486 +56122 0.027317 0.40663 5.7113 +56121 0.026985 0.40816 5.9679 +56120 0.026687 0.40959 6.2245 +56119 0.026404 0.41089 0.19782 +56118 0.026216 0.41201 0.44932 +56117 0.026054 0.41293 0.70145 +56116 0.025985 0.41363 0.95525 +56115 0.025911 0.41409 1.2041 +56114 0.025942 0.4143 1.4559 +56113 0.026041 0.41425 1.708 +56112 0.026127 0.41395 1.9588 +56111 0.026297 0.41341 2.213 +56110 0.02655 0.41265 2.4649 +56109 0.02676 0.41168 2.7222 +56108 0.027049 0.41053 2.9782 +56107 0.0274 0.40924 3.2357 +56106 0.02769 0.40783 3.4984 +56105 0.028097 0.40634 3.7597 +56104 0.028436 0.4048 4.0236 +56103 0.028883 0.40324 4.2919 +56102 0.029257 0.4017 4.5595 +56101 0.029673 0.40021 4.8296 +56100 0.030145 0.3988 5.1031 +56099 0.03054 0.3975 5.3759 +56098 0.030961 0.39634 5.653 +56097 0.03145 0.39535 5.9286 +56096 0.031842 0.39454 6.2083 +56095 0.03229 0.39395 0.20489 +56094 0.032731 0.39359 0.48408 +56093 0.033169 0.39346 0.76643 +56092 0.033597 0.39357 1.0487 +56091 0.033998 0.39393 1.3288 +56090 0.034462 0.39452 1.6133 +56089 0.034854 0.39534 1.8949 +56088 0.035242 0.39637 2.1775 +56087 0.035693 0.39759 2.4601 +56086 0.036089 0.39897 2.7426 +56085 0.036451 0.4005 3.0245 +56084 0.036916 0.40213 3.3059 +56083 0.037274 0.40384 3.5871 +56082 0.037688 0.40558 3.8685 +56081 0.038073 0.40733 4.1477 +56080 0.03848 0.40905 4.4277 +56079 0.038866 0.41069 4.7079 +56078 0.039245 0.41221 4.9854 +56077 0.039629 0.41359 5.2648 +56076 0.040046 0.41479 5.543 +56075 0.040374 0.41576 5.8211 +56074 0.040765 0.41649 6.0988 +56073 0.041184 0.41695 0.093805 +56072 0.041472 0.41712 0.37238 +56071 0.04189 0.41698 0.6501 +56070 0.042229 0.41655 0.92896 +56069 0.04256 0.41581 1.209 +56068 0.042912 0.41477 1.4884 +56067 0.043207 0.41346 1.7688 +56066 0.043562 0.41189 2.0523 +56065 0.043817 0.41011 2.334 +56064 0.044102 0.40814 2.6188 +56063 0.044424 0.40603 2.9045 +56062 0.044638 0.40384 3.1917 +56061 0.044873 0.40163 3.4803 +56060 0.045168 0.39945 3.7694 +56059 0.045303 0.39738 4.0619 +56058 0.045546 0.39546 4.354 +56057 0.045684 0.39377 4.6473 +56056 0.045852 0.39236 4.9437 +56055 0.045964 0.39126 5.2391 +56054 0.046053 0.39053 5.5355 +56053 0.046172 0.39018 5.8341 +56052 0.046204 0.39022 6.1308 +56051 0.046218 0.39067 0.14627 +56050 0.046271 0.39149 0.44292 +56049 0.046206 0.39267 0.74057 +56048 0.046151 0.39417 1.0373 +56047 0.046068 0.39594 1.332 +56046 0.045939 0.39793 1.6272 +56045 0.045779 0.40007 1.9215 +56044 0.045558 0.40231 2.2123 +56043 0.045369 0.40456 2.5051 +56042 0.045075 0.40677 2.7947 +56041 0.044764 0.40888 3.0833 +56040 0.044446 0.41081 3.3712 +56039 0.044093 0.41254 3.658 +56038 0.04363 0.414 3.9439 +56037 0.043263 0.41516 4.2281 +56036 0.042777 0.416 4.5128 +56035 0.042277 0.4165 4.7963 +56034 0.041795 0.41666 5.0788 +56033 0.04124 0.41648 5.3607 +56032 0.040715 0.41597 5.6438 +56031 0.040109 0.41515 5.9243 +56030 0.039534 0.41406 6.2057 +56029 0.038958 0.41273 0.20447 +56028 0.03829 0.4112 0.48453 +56027 0.037683 0.40953 0.76611 +56026 0.037086 0.40775 1.0462 +56025 0.03638 0.40592 1.3278 +56024 0.035777 0.40411 1.6075 +56023 0.035138 0.40235 1.8874 +56022 0.034467 0.4007 2.1682 +56021 0.033864 0.3992 2.4472 +56020 0.033185 0.39789 2.725 +56019 0.032626 0.3968 3.0051 +56018 0.031966 0.39595 3.2812 +56017 0.031388 0.39536 3.5582 +56016 0.030863 0.39504 3.8343 +56015 0.03029 0.39498 4.1085 +56014 0.029768 0.39517 4.3827 +56013 0.02937 0.39561 4.6533 +56012 0.028878 0.39627 4.926 +56011 0.028504 0.39712 5.1948 +56010 0.028165 0.39814 5.4612 +56009 0.027852 0.39929 5.7301 +56008 0.027578 0.40053 5.9943 +56007 0.027353 0.40184 6.2573 +56006 0.027172 0.40316 0.23962 +56005 0.027039 0.40448 0.49992 +56004 0.026886 0.40575 0.76288 +56003 0.026876 0.40694 1.0235 +56002 0.026815 0.40803 1.2855 +56001 0.026788 0.409 1.5466 +56000 0.026871 0.40983 1.8078 +55999 0.026889 0.4105 2.0699 +55998 0.026983 0.41101 2.3339 +55997 0.027074 0.41134 2.5948 +55996 0.02721 0.41149 2.8609 +55995 0.027327 0.41146 3.1266 +55994 0.02746 0.41124 3.3911 +55993 0.027623 0.41085 3.6605 +55992 0.027781 0.41028 3.9291 +55991 0.02789 0.40956 4.1991 +55990 0.028079 0.40868 4.4708 +55989 0.028224 0.40767 4.744 +55988 0.028314 0.40654 5.0185 +55987 0.028492 0.40533 5.2939 +55986 0.02859 0.40405 5.5705 +55985 0.028699 0.40274 5.8504 +55984 0.028787 0.40143 6.1284 +55983 0.028891 0.40017 0.12537 +55982 0.028951 0.39897 0.40935 +55981 0.029002 0.39789 0.68896 +55980 0.029044 0.39695 0.97386 +55979 0.029101 0.39619 1.2575 +55978 0.029069 0.39563 1.542 +55977 0.029081 0.39531 1.8267 +55976 0.029109 0.39524 2.112 +55975 0.02901 0.39544 2.3974 +55974 0.029028 0.3959 2.6829 +55973 0.028962 0.39663 2.9662 +55972 0.028903 0.39762 3.2526 +55971 0.028845 0.39884 3.5352 +55970 0.028752 0.40027 3.8175 +55969 0.028705 0.40186 4.1009 +55968 0.028602 0.40359 4.3813 +55967 0.028473 0.40539 4.6611 +55966 0.028476 0.40722 4.9409 +55965 0.028283 0.40903 5.2187 +55964 0.028223 0.41075 5.4958 +55963 0.028154 0.41233 5.7713 +55962 0.028028 0.41373 6.0472 +55961 0.027931 0.4149 0.038762 +55960 0.027857 0.4158 0.31011 +55959 0.027748 0.41638 0.58605 +55958 0.027666 0.41663 0.85746 +55957 0.027544 0.41654 1.1302 +55956 0.027486 0.41608 1.4041 +55955 0.02739 0.41527 1.6773 +55954 0.02726 0.41411 1.9513 +55953 0.027245 0.41264 2.2264 +55952 0.027127 0.41088 2.5022 +55951 0.027041 0.40889 2.7801 +55950 0.026992 0.4067 3.057 +55949 0.026913 0.40439 3.3375 +55948 0.026826 0.40201 3.6199 +55947 0.026758 0.39964 3.9002 +55946 0.026688 0.39736 4.1869 +55945 0.026606 0.39522 4.4724 +55944 0.026513 0.39331 4.7593 +55943 0.026419 0.39169 5.049 +55942 0.026369 0.39041 5.3391 +55941 0.026187 0.38952 5.6309 +55940 0.026129 0.38905 5.9224 +55939 0.025994 0.38902 6.2156 +55938 0.025827 0.38944 0.22622 +55937 0.025688 0.39029 0.51892 +55936 0.025518 0.39154 0.81095 +55935 0.025323 0.39316 1.1068 +55934 0.025105 0.39509 1.3958 +55933 0.02488 0.39728 1.6884 +55932 0.024655 0.39965 1.98 +55931 0.024349 0.40213 2.268 +55930 0.02407 0.40466 2.5571 +55929 0.023801 0.40715 2.8451 +55928 0.023414 0.40955 3.1306 +55927 0.023112 0.41178 3.4173 +55926 0.022749 0.41379 3.699 +55925 0.022363 0.41554 3.985 +55924 0.021972 0.41698 4.2657 +55923 0.021565 0.41809 4.5454 +55922 0.021139 0.41884 4.8282 +55921 0.020711 0.41922 5.1059 +55920 0.020201 0.41923 5.3842 +55919 0.019811 0.41888 5.663 +55918 0.019259 0.41819 5.9405 +55917 0.018772 0.41716 6.2171 +55916 0.018311 0.41584 0.21051 +55915 0.017755 0.41427 0.48728 +55914 0.017248 0.41247 0.76433 +55913 0.01675 0.41051 1.036 +55912 0.016221 0.40842 1.315 +55911 0.015705 0.40626 1.5884 +55910 0.015191 0.40408 1.8595 +55909 0.014693 0.40193 2.1351 +55908 0.014216 0.39985 2.4062 +55907 0.013677 0.39789 2.6767 +55906 0.013267 0.39611 2.946 +55905 0.0128 0.39453 3.2157 +55904 0.012324 0.39319 3.4817 +55903 0.011988 0.39211 3.7465 +55902 0.011565 0.39133 4.0095 +55901 0.011213 0.39084 4.2738 +55900 0.010904 0.39067 4.5279 +55899 0.010616 0.39081 4.788 +55898 0.010342 0.39124 5.0447 +55897 0.010132 0.39196 5.2932 +55896 0.009909 0.39295 5.5489 +55895 0.009798 0.39419 5.7986 +55894 0.009595 0.39564 6.0474 +55893 0.009529 0.39727 0.013711 +55892 0.00946 0.39904 0.26369 +55891 0.009349 0.40092 0.51285 +55890 0.009339 0.40287 0.76298 +55889 0.009332 0.40483 1.0117 +55888 0.009261 0.40678 1.2699 +55887 0.009294 0.40867 1.5176 +55886 0.00928 0.41045 1.7747 +55885 0.009276 0.4121 2.0356 +55884 0.009267 0.41357 2.2893 +55883 0.009261 0.41483 2.549 +55882 0.00926 0.41585 2.8166 +55881 0.009204 0.4166 3.0712 +55880 0.009168 0.41706 3.3407 +55879 0.009142 0.41723 3.6027 +55878 0.009035 0.41708 3.8705 +55877 0.008941 0.41662 4.1362 +55876 0.008886 0.41584 4.4012 +55875 0.008696 0.41477 4.673 +55874 0.008594 0.41342 4.9387 +55873 0.008413 0.41182 5.2026 +55872 0.008242 0.41 5.4767 +55871 0.008033 0.40801 5.7406 +55870 0.007802 0.40588 6.0026 +55869 0.007601 0.40369 6.2761 +55868 0.007321 0.40149 0.25028 +55867 0.007059 0.39934 0.51434 +55866 0.006828 0.3973 0.77432 +55865 0.006531 0.39545 1.0298 +55864 0.006245 0.39383 1.285 +55863 0.006041 0.39251 1.5259 +55862 0.005742 0.39152 1.7742 +55861 0.005524 0.39091 2.009 +55860 0.005323 0.3907 2.2284 +55859 0.005149 0.3909 2.4541 +55858 0.004995 0.39151 2.6708 +55857 0.004902 0.3925 2.8594 +55856 0.004867 0.39386 3.0774 +55855 0.004868 0.39552 3.2649 +55854 0.004915 0.39745 3.4609 +55853 0.005064 0.39957 3.6652 +55852 0.005231 0.40182 3.8675 +55851 0.005415 0.40412 4.0725 +55850 0.005741 0.4064 4.2948 +55849 0.006007 0.40858 4.5113 +55848 0.006324 0.41061 4.7457 +55847 0.006712 0.41242 4.9753 +55846 0.007059 0.41396 5.2181 +55845 0.007429 0.41518 5.4667 +55844 0.007828 0.41604 5.712 +55843 0.008199 0.41653 5.9696 +55842 0.008605 0.41663 6.2342 +55841 0.008945 0.41634 0.20534 +55840 0.009366 0.41566 0.47896 +55839 0.009718 0.41463 0.74822 +55838 0.010059 0.41328 1.0191 +55837 0.010425 0.41164 1.2969 +55836 0.010782 0.40977 1.5739 +55835 0.011037 0.40772 1.8571 +55834 0.011403 0.40557 2.1366 +55833 0.011663 0.40338 2.4228 +55832 0.011917 0.40122 2.7113 +55831 0.012183 0.39917 2.9973 +55830 0.012389 0.39728 3.2859 +55829 0.012625 0.39563 3.581 +55828 0.012764 0.39426 3.8684 +55827 0.012944 0.39322 4.1608 +55826 0.01311 0.39254 4.4551 +55825 0.013173 0.39225 4.7445 +55824 0.01329 0.39233 5.0373 +55823 0.013391 0.3928 5.326 +55822 0.013389 0.39362 5.6182 +55821 0.013455 0.39476 5.9042 +55820 0.013477 0.39618 6.1898 +55819 0.013445 0.39783 0.19367 +55818 0.01347 0.39964 0.47521 +55817 0.013395 0.40157 0.75364 +55816 0.013419 0.40355 1.0355 +55815 0.013323 0.40553 1.3098 +55814 0.013276 0.40743 1.5834 +55813 0.01326 0.40922 1.857 +55812 0.013173 0.41085 2.1258 +55811 0.013093 0.41226 2.3959 +55810 0.013112 0.41345 2.658 +55809 0.013014 0.41437 2.9266 +55808 0.012982 0.41501 3.1879 +55807 0.012974 0.41537 3.446 +55806 0.012937 0.41543 3.7093 +55805 0.012923 0.41521 3.967 +55804 0.012912 0.4147 4.2215 +55803 0.012926 0.41394 4.484 +55802 0.012946 0.41293 4.7377 +55801 0.012931 0.41172 4.9974 +55800 0.013023 0.41032 5.2544 +55799 0.013064 0.40877 5.5146 +55798 0.013091 0.4071 5.7744 +55797 0.013238 0.40536 6.0345 +55796 0.013292 0.40358 0.013168 +55795 0.013416 0.4018 0.27974 +55794 0.013531 0.40005 0.53979 +55793 0.013681 0.39838 0.8091 +55792 0.013814 0.39682 1.0784 +55791 0.013964 0.39541 1.3433 +55790 0.014135 0.39419 1.6178 +55789 0.014327 0.39318 1.8886 +55788 0.014459 0.39241 2.1614 +55787 0.014674 0.3919 2.4355 +55786 0.014874 0.39167 2.7101 +55785 0.015005 0.39172 2.9863 +55784 0.015235 0.39206 3.2606 +55783 0.015398 0.3927 3.5359 +55782 0.015568 0.39361 3.8147 +55781 0.015726 0.39478 4.0875 +55780 0.0159 0.39621 4.3621 +55779 0.016048 0.39785 4.6417 +55778 0.016173 0.39967 4.9106 +55777 0.016313 0.40165 5.1867 +55776 0.016465 0.40373 5.4592 +55775 0.016547 0.40587 5.73 +55774 0.016668 0.40802 5.9999 +55773 0.016825 0.41013 6.2691 +55772 0.016861 0.41215 0.25335 +55771 0.017023 0.41402 0.52032 +55770 0.017114 0.41571 0.78281 +55769 0.017226 0.41715 1.0495 +55768 0.017351 0.41832 1.3109 +55767 0.017471 0.41917 1.5706 +55766 0.017631 0.41968 1.8343 +55765 0.017781 0.41981 2.0927 +55764 0.017918 0.41956 2.3511 +55763 0.018193 0.41892 2.6121 +55762 0.018329 0.41789 2.87 +55761 0.018583 0.41649 3.1292 +55760 0.018873 0.41474 3.3888 +55759 0.019115 0.41267 3.6494 +55758 0.019407 0.41032 3.9125 +55757 0.019769 0.40776 4.1723 +55756 0.020072 0.40504 4.4407 +55755 0.020459 0.40222 4.7065 +55754 0.020827 0.3994 4.9749 +55753 0.021249 0.39665 5.2482 +55752 0.021684 0.39404 5.5226 +55751 0.022084 0.39168 5.7981 +55750 0.022621 0.38963 6.0789 +55749 0.023074 0.38796 0.076707 +55748 0.023558 0.38673 0.36099 +55747 0.024127 0.386 0.64587 +55746 0.024646 0.38577 0.93322 +55745 0.025174 0.38608 1.2226 +55744 0.025767 0.38692 1.5095 +55743 0.026318 0.38824 1.8011 +55742 0.026892 0.39003 2.0906 +55741 0.02747 0.39221 2.3796 +55740 0.02803 0.39472 2.6697 +55739 0.028657 0.39749 2.9588 +55738 0.02915 0.40042 3.2469 +55737 0.029765 0.40341 3.5341 +55736 0.030317 0.4064 3.8213 +55735 0.030814 0.40928 4.1074 +55734 0.031357 0.41199 4.3928 +55733 0.03187 0.41444 4.6768 +55732 0.032318 0.41657 4.9637 +55731 0.032785 0.41833 5.2459 +55730 0.033223 0.41968 5.531 +55729 0.033638 0.4206 5.8167 +55728 0.034008 0.42106 6.1002 +55727 0.034362 0.42106 0.10257 +55726 0.034743 0.42061 0.38938 +55725 0.034997 0.41974 0.67488 +55724 0.035305 0.41846 0.96351 +55723 0.035578 0.41682 1.2504 +55722 0.035782 0.41487 1.5413 +55721 0.03598 0.41268 1.8312 +55720 0.036162 0.4103 2.1216 +55719 0.036269 0.4078 2.4162 +55718 0.036387 0.40526 2.7088 +55717 0.036391 0.40275 3.0034 +55716 0.036479 0.40035 3.3006 +55715 0.036408 0.39811 3.597 +55714 0.03635 0.3961 3.8949 +55713 0.036309 0.39437 4.1938 +55712 0.036144 0.39297 4.4927 +55711 0.035995 0.39192 4.7931 +55710 0.035838 0.39125 5.0907 +55709 0.035613 0.39096 5.3917 +55708 0.035379 0.39104 5.6901 +55707 0.035117 0.39148 5.987 +55706 0.034832 0.39224 0.001995 +55705 0.034548 0.3933 0.29766 +55704 0.034163 0.39461 0.59209 +55703 0.033876 0.39612 0.88491 +55702 0.033506 0.39778 1.1774 +55701 0.033074 0.39953 1.4667 +55700 0.032761 0.40134 1.7547 +55699 0.032313 0.40314 2.0413 +55698 0.031901 0.40489 2.3266 +55697 0.031485 0.40655 2.6084 +55696 0.031054 0.40809 2.89 +55695 0.030604 0.40948 3.1709 +55694 0.030165 0.41069 3.4473 +55693 0.029697 0.4117 3.7255 +55692 0.029291 0.41251 4.0008 +55691 0.028787 0.41309 4.2754 +55690 0.028368 0.41346 4.5483 +55689 0.027961 0.41359 4.8208 +55688 0.02748 0.4135 5.0925 +55687 0.027098 0.41319 5.363 +55686 0.026707 0.41266 5.6312 +55685 0.026298 0.41194 5.9033 +55684 0.025942 0.41104 6.1694 +55683 0.025599 0.40998 0.15458 +55682 0.025277 0.40877 0.42389 +55681 0.024961 0.40746 0.6896 +55680 0.024663 0.40606 0.9567 +55679 0.024463 0.4046 1.225 +55678 0.024159 0.40313 1.4902 +55677 0.023968 0.40166 1.7584 +55676 0.023803 0.40024 2.0234 +55675 0.023606 0.39889 2.2916 +55674 0.023442 0.39766 2.5585 +55673 0.023354 0.39657 2.8233 +55672 0.023194 0.39565 3.0936 +55671 0.023123 0.39495 3.3593 +55670 0.023009 0.39447 3.6263 +55669 0.022968 0.39425 3.8961 +55668 0.022898 0.3943 4.1635 +55667 0.022827 0.39463 4.4308 +55666 0.022869 0.39525 4.7009 +55665 0.022808 0.39614 4.9677 +55664 0.022823 0.3973 5.2363 +55663 0.022884 0.39869 5.5034 +55662 0.022906 0.40029 5.7702 +55661 0.022971 0.40205 6.0381 +55660 0.023075 0.40393 0.017654 +55659 0.023174 0.40586 0.2847 +55658 0.023312 0.4078 0.54861 +55657 0.023443 0.40969 0.81002 +55656 0.02364 0.41147 1.0734 +55655 0.023847 0.41308 1.3362 +55654 0.024008 0.41448 1.5947 +55653 0.024323 0.41561 1.8573 +55652 0.024547 0.41645 2.1172 +55651 0.024824 0.41695 2.3776 +55650 0.025154 0.41709 2.6382 +55649 0.025489 0.41685 2.8992 +55648 0.025793 0.41622 3.1625 +55647 0.026207 0.41522 3.4235 +55646 0.026558 0.41385 3.6888 +55645 0.026969 0.41215 3.9555 +55644 0.027373 0.41014 4.2222 +55643 0.027798 0.40789 4.4926 +55642 0.028265 0.40545 4.7659 +55641 0.028691 0.4029 5.0398 +55640 0.029167 0.4003 5.3178 +55639 0.029713 0.39775 5.5975 +55638 0.030132 0.39532 5.881 +55637 0.030703 0.3931 6.1648 +55636 0.031237 0.39118 0.1694 +55635 0.031731 0.38962 0.45888 +55634 0.032318 0.38848 0.74991 +55633 0.03283 0.3878 1.0411 +55632 0.033412 0.38762 1.337 +55631 0.033919 0.38796 1.6298 +55630 0.034463 0.3888 1.9249 +55629 0.035024 0.39011 2.2212 +55628 0.0355 0.39187 2.5155 +55627 0.03599 0.39402 2.8113 +55626 0.036534 0.39647 3.1049 +55625 0.036941 0.39916 3.4 +55624 0.037395 0.40201 3.6933 +55623 0.03784 0.40492 3.9846 +55622 0.038209 0.4078 4.2784 +55621 0.038592 0.41057 4.569 +55620 0.038911 0.41315 4.859 +55619 0.039269 0.41547 5.151 +55618 0.039521 0.41746 5.44 +55617 0.039783 0.41908 5.73 +55616 0.040046 0.42029 6.0205 +55615 0.04023 0.42107 0.026387 +55614 0.040397 0.42139 0.31829 +55613 0.040565 0.42126 0.60703 +55612 0.040685 0.42069 0.89968 +55611 0.040739 0.41969 1.1914 +55610 0.040807 0.41829 1.4831 +55609 0.040798 0.41655 1.7775 +55608 0.04079 0.41449 2.0723 +55607 0.040653 0.41219 2.3675 +55606 0.040581 0.40971 2.6648 +55605 0.040408 0.40712 2.9637 +55604 0.040146 0.40448 3.2633 +55603 0.039928 0.40188 3.5646 +55602 0.039634 0.39937 3.8675 +55601 0.039237 0.39703 4.1721 +55600 0.03891 0.39491 4.4767 +55599 0.038449 0.39306 4.7833 +55598 0.038029 0.39153 5.0913 +55597 0.037517 0.39034 5.3988 +55596 0.036999 0.38953 5.7064 +55595 0.036499 0.38909 6.0165 +55594 0.035856 0.38903 0.039879 +55593 0.035282 0.38933 0.34888 +55592 0.034671 0.38998 0.65528 +55591 0.033961 0.39095 0.96251 +55590 0.03329 0.3922 1.2677 +55589 0.032591 0.39369 1.571 +55588 0.031818 0.39539 1.8759 +55587 0.031077 0.39724 2.1762 +55586 0.030242 0.39919 2.4761 +55585 0.029472 0.4012 2.7762 +55584 0.028596 0.40324 3.0726 +55583 0.027713 0.40526 3.3689 +55582 0.026896 0.40721 3.6639 +55581 0.025951 0.40908 3.957 +55580 0.025065 0.41082 4.25 +55579 0.024177 0.41242 4.5384 +55578 0.02327 0.41384 4.8295 +55577 0.022339 0.41506 5.1175 +55576 0.021451 0.41605 5.3994 +55575 0.020555 0.41681 5.6879 +55574 0.019645 0.41731 5.9675 +55573 0.018739 0.41754 6.2472 +55572 0.017873 0.4175 0.24255 +55571 0.016998 0.41717 0.51769 +55570 0.016082 0.41658 0.79014 +55569 0.015285 0.41571 1.06 +55568 0.014404 0.4146 1.3261 +55567 0.013579 0.41324 1.5917 +55566 0.012786 0.41167 1.8473 +55565 0.012006 0.40991 2.1037 +55564 0.011246 0.40799 2.356 +55563 0.010533 0.40595 2.5952 +55562 0.009841 0.40383 2.8354 +55561 0.009245 0.40167 3.0697 +55560 0.008603 0.39954 3.2881 +55559 0.008145 0.39747 3.5075 +55558 0.007693 0.39554 3.718 +55557 0.007311 0.39381 3.9158 +55556 0.007071 0.39232 4.116 +55555 0.006921 0.39114 4.3047 +55554 0.006786 0.3903 4.4996 +55553 0.006863 0.38984 4.6906 +55552 0.006957 0.38978 4.8864 +55551 0.007127 0.39014 5.095 +55550 0.007395 0.3909 5.3028 +55549 0.007732 0.39205 5.5195 +55548 0.008071 0.39355 5.7559 +55547 0.008497 0.39537 5.9797 +55546 0.008937 0.39745 6.2252 +55545 0.009413 0.39972 0.19015 +55544 0.009896 0.40213 0.4365 +55543 0.010387 0.4046 0.69267 +55542 0.010955 0.40706 0.95224 +55541 0.011401 0.40943 1.211 +55540 0.011968 0.41165 1.4747 +55539 0.012501 0.41364 1.7408 +55538 0.012974 0.41535 2.0077 +55537 0.013525 0.41673 2.2792 +55536 0.014013 0.41773 2.5469 +55535 0.014526 0.41831 2.8252 +55534 0.015006 0.41847 3.0988 +55533 0.015486 0.41821 3.3749 +55532 0.015986 0.41752 3.6587 +55531 0.016433 0.41643 3.9389 +55530 0.016865 0.41498 4.223 +55529 0.017397 0.41321 4.5119 +55528 0.017755 0.41118 4.801 +55527 0.018228 0.40895 5.0928 +55526 0.018678 0.40658 5.3864 +55525 0.01907 0.40416 5.6837 +55524 0.019487 0.40177 5.9835 +55523 0.019898 0.39947 6.2806 +55522 0.02028 0.39734 0.3036 +55521 0.020658 0.39547 0.60586 +55520 0.020977 0.39389 0.9115 +55519 0.021335 0.39268 1.2196 +55518 0.021633 0.39188 1.5284 +55517 0.021866 0.39149 1.8384 +55516 0.02218 0.39155 2.1493 +55515 0.022387 0.39203 2.4614 +55514 0.022578 0.3929 2.7757 +55513 0.022789 0.39414 3.0855 +55512 0.022954 0.39568 3.4014 +55511 0.023075 0.39747 3.7146 +55510 0.023223 0.39943 4.0263 +55509 0.023295 0.4015 4.3413 +55508 0.023428 0.40361 4.6539 +55507 0.023431 0.40569 4.9678 +55506 0.023517 0.40768 5.2801 +55505 0.023569 0.40952 5.5937 +55504 0.02352 0.41116 5.9072 +55503 0.023562 0.41256 6.2199 +55502 0.023511 0.41368 0.24913 +55501 0.023464 0.41451 0.56523 +55500 0.023372 0.41501 0.87804 +55499 0.02326 0.4152 1.1923 +55498 0.023172 0.41506 1.5115 +55497 0.022955 0.41462 1.8267 +55496 0.022795 0.41388 2.1468 +55495 0.022631 0.4129 2.4677 +55494 0.022349 0.41168 2.7912 +55493 0.022141 0.41029 3.1163 +55492 0.02191 0.40875 3.4427 +55491 0.021606 0.40712 3.7747 +55490 0.021396 0.40543 4.1059 +55489 0.02106 0.40375 4.4398 +55488 0.020855 0.40209 4.7777 +55487 0.020551 0.40051 5.1176 +55486 0.020259 0.39903 5.4578 +55485 0.020067 0.3977 5.8024 +55484 0.019766 0.39654 6.1475 +55483 0.019539 0.39557 0.21352 +55482 0.019321 0.39482 0.55964 +55481 0.019106 0.3943 0.9125 +55480 0.018898 0.39402 1.2648 +55479 0.018694 0.39398 1.6156 +55478 0.018545 0.39419 1.9713 +55477 0.018395 0.39462 2.3275 +55476 0.018201 0.39527 2.6823 +55475 0.018154 0.39612 3.0399 +55474 0.018039 0.39716 3.3967 +55473 0.017988 0.39836 3.7561 +55472 0.017961 0.39969 4.1131 +55471 0.017995 0.40114 4.4682 +55470 0.018065 0.40269 4.8295 +55469 0.018129 0.40429 5.1796 +55468 0.018284 0.40592 5.5347 +55467 0.018465 0.40756 5.8859 +55466 0.018608 0.40916 6.2338 +55465 0.01883 0.4107 0.29778 +55464 0.019077 0.41213 0.64013 +55463 0.019269 0.41343 0.98495 +55462 0.019551 0.41455 1.3235 +55461 0.019778 0.41547 1.6603 +55460 0.02007 0.41617 1.9989 +55459 0.020333 0.41661 2.3315 +55458 0.020569 0.41678 2.6641 +55457 0.020912 0.41667 2.9956 +55456 0.021135 0.41627 3.3249 +55455 0.021425 0.41558 3.6542 +55454 0.021711 0.41459 3.9797 +55453 0.021985 0.41332 4.3072 +55452 0.022258 0.41178 4.6344 +55451 0.022513 0.41 4.9549 +55450 0.022821 0.40802 5.2827 +55449 0.023042 0.40586 5.6045 +55448 0.02329 0.40359 5.9269 +55447 0.023529 0.40126 6.2503 +55446 0.023753 0.39893 0.2885 +55445 0.023893 0.39668 0.61215 +55444 0.024108 0.39457 0.93275 +55443 0.02424 0.39266 1.2557 +55442 0.024355 0.39104 1.5796 +55441 0.024461 0.38974 1.9001 +55440 0.024554 0.38881 2.2231 +55439 0.024621 0.3883 2.5468 +55438 0.024651 0.38822 2.8666 +55437 0.024671 0.38859 3.1892 +55436 0.024743 0.38941 3.509 +55435 0.024677 0.39065 3.8294 +55434 0.024701 0.39228 4.1457 +55433 0.024703 0.39427 4.4625 +55432 0.024604 0.39656 4.7772 +55431 0.024608 0.39908 5.0887 +55430 0.02448 0.40175 5.3975 +55429 0.024414 0.4045 5.7073 +55428 0.024262 0.40724 6.0117 +55427 0.024089 0.40991 0.032095 +55426 0.023966 0.41241 0.33493 +55425 0.023718 0.41468 0.63535 +55424 0.023468 0.41666 0.93477 +55423 0.023291 0.41831 1.2311 +55422 0.022944 0.41958 1.5301 +55421 0.022661 0.42044 1.8253 +55420 0.022348 0.42089 2.1196 +55419 0.021978 0.4209 2.4168 +55418 0.021628 0.4205 2.7112 +55417 0.021184 0.41969 3.005 +55416 0.020831 0.41848 3.3023 +55415 0.02036 0.41694 3.5979 +55414 0.019899 0.41507 3.8931 +55413 0.019478 0.41295 4.1913 +55412 0.018951 0.41063 4.4863 +55411 0.018463 0.40818 4.7871 +55410 0.01792 0.40566 5.0814 +55409 0.017383 0.40316 5.3809 +55408 0.016778 0.40074 5.6818 +55407 0.016165 0.39847 5.9763 +55406 0.015529 0.39641 6.2779 +55405 0.014879 0.39462 0.29376 +55404 0.014122 0.39314 0.59043 +55403 0.013453 0.392 0.88929 +55402 0.012692 0.39122 1.1853 +55401 0.011885 0.39081 1.4804 +55400 0.011108 0.39077 1.7724 +55399 0.010294 0.39107 2.0589 +55398 0.009417 0.3917 2.3497 +55397 0.008584 0.39263 2.6212 +55396 0.007689 0.39383 2.8944 +55395 0.006835 0.39525 3.1563 +55394 0.005945 0.39685 3.3952 +55393 0.005085 0.39858 3.6065 +55392 0.004334 0.40039 3.7926 +55391 0.003564 0.40222 3.8918 +55390 0.003076 0.40402 3.923 +55389 0.002918 0.40575 3.8725 +55388 0.003087 0.40737 3.7973 +55387 0.003702 0.40885 3.8161 +55386 0.004529 0.41015 3.9229 +55385 0.00549 0.41126 4.0761 +55384 0.006563 0.41218 4.2901 +55383 0.007728 0.41288 4.5161 +55382 0.008871 0.41336 4.7691 +55381 0.010101 0.41364 5.0281 +55380 0.011386 0.41371 5.2966 +55379 0.012585 0.41357 5.575 +55378 0.013904 0.41324 5.8529 +55377 0.015171 0.41273 6.1365 +55376 0.016466 0.41204 0.14374 +55375 0.017743 0.4112 0.43282 +55374 0.01901 0.41022 0.72396 +55373 0.020361 0.40912 1.0227 +55372 0.021574 0.40793 1.3176 +55371 0.022876 0.40668 1.6171 +55370 0.024189 0.40539 1.9179 +55369 0.025403 0.40409 2.2198 +55368 0.026681 0.40281 2.5236 +55367 0.027958 0.40159 2.8267 +55366 0.029144 0.40044 3.1342 +55365 0.030421 0.39939 3.4401 +55364 0.031576 0.39846 3.7469 +55363 0.032827 0.39767 4.0559 +55362 0.033979 0.39705 4.3647 +55361 0.035103 0.39661 4.673 +55360 0.036316 0.39636 4.9833 +55359 0.037369 0.39632 5.292 +55358 0.038453 0.3965 5.6023 +55357 0.039525 0.39689 5.9104 +55356 0.040521 0.39749 6.2205 +55355 0.041483 0.39828 0.2463 +55354 0.042415 0.39925 0.55394 +55353 0.043313 0.40038 0.86276 +55352 0.044173 0.40162 1.1705 +55351 0.044938 0.40295 1.4766 +55350 0.045749 0.40433 1.7837 +55349 0.046454 0.40572 2.0889 +55348 0.047121 0.40708 2.394 +55347 0.047741 0.40838 2.6979 +55346 0.048371 0.40957 3.0009 +55345 0.048844 0.41062 3.3052 +55344 0.049368 0.41149 3.6057 +55343 0.049822 0.41216 3.908 +55342 0.050193 0.4126 4.2097 +55341 0.05056 0.41278 4.5096 +55340 0.05083 0.4127 4.8102 +55339 0.051132 0.41236 5.1108 +55338 0.051265 0.41175 5.4105 +55337 0.051422 0.41089 5.7111 +55336 0.051562 0.40981 6.0112 +55335 0.051536 0.40853 0.029101 +55334 0.051571 0.40709 0.33038 +55333 0.051517 0.40554 0.63119 +55332 0.051412 0.40391 0.93455 +55331 0.051282 0.40226 1.2362 +55330 0.051056 0.40063 1.5393 +55329 0.050867 0.39909 1.8437 +55328 0.050581 0.39767 2.1473 +55327 0.050209 0.39644 2.4519 +55326 0.049959 0.39542 2.7563 +55325 0.049473 0.39467 3.0619 +55324 0.049081 0.39421 3.3661 +55323 0.048639 0.39406 3.6705 +55322 0.048109 0.39424 3.9746 +55321 0.047612 0.39474 4.2785 +55320 0.047004 0.39555 4.5795 +55319 0.046455 0.39665 4.8819 +55318 0.045797 0.398 5.1818 +55317 0.045107 0.39956 5.4801 +55316 0.044467 0.40127 5.7778 +55315 0.043724 0.40308 6.0736 +55314 0.042949 0.40493 0.084513 +55313 0.04222 0.40678 0.37707 +55312 0.041405 0.40857 0.66786 +55311 0.040595 0.41025 0.95833 +55310 0.039748 0.41177 1.2444 +55309 0.038925 0.41309 1.5317 +55308 0.038025 0.41418 1.8171 +55307 0.037173 0.415 2.0989 +55306 0.036256 0.41554 2.3824 +55305 0.035403 0.41577 2.6623 +55304 0.034452 0.4157 2.9424 +55303 0.033557 0.41531 3.22 +55302 0.032683 0.41462 3.497 +55301 0.031704 0.41366 3.7736 +55300 0.030818 0.41246 4.0476 +55299 0.029902 0.41104 4.3203 +55298 0.028961 0.40945 4.5947 +55297 0.02805 0.40774 4.8635 +55296 0.027134 0.40596 5.1333 +55295 0.02625 0.40414 5.4033 +55294 0.025346 0.40233 5.6678 +55293 0.024465 0.40058 5.933 +55292 0.023686 0.39892 6.1958 +55291 0.022815 0.39739 0.1727 +55290 0.022062 0.39603 0.42945 +55289 0.021382 0.39488 0.6837 +55288 0.020631 0.39395 0.93443 +55287 0.020066 0.39328 1.1829 +55286 0.019487 0.39288 1.4236 +55285 0.019033 0.39276 1.6662 +55284 0.018617 0.39293 1.9021 +55283 0.018341 0.39337 2.1317 +55282 0.018147 0.39406 2.3664 +55281 0.018063 0.39499 2.5904 +55280 0.018067 0.39613 2.8171 +55279 0.018261 0.39743 3.0442 +55278 0.018488 0.39887 3.2687 +55277 0.018854 0.40041 3.4964 +55276 0.019383 0.402 3.7262 +55275 0.019944 0.40363 3.9583 +55274 0.020609 0.40525 4.1953 +55273 0.021449 0.40684 4.4323 +55272 0.022248 0.40838 4.6773 +55271 0.023198 0.40983 4.9237 +55270 0.024172 0.41117 5.1727 +55269 0.025212 0.41237 5.4275 +55268 0.026291 0.4134 5.686 +55267 0.027362 0.41425 5.9439 +55266 0.028561 0.41489 6.2104 +55265 0.029693 0.4153 0.19311 +55264 0.030857 0.41549 0.46228 +55263 0.032111 0.41543 0.73504 +55262 0.033298 0.41515 1.0099 +55261 0.034504 0.41464 1.2867 +55260 0.03578 0.41391 1.5658 +55259 0.03696 0.41298 1.8471 +55258 0.038215 0.41186 2.1313 +55257 0.039406 0.41058 2.4157 +55256 0.040628 0.40916 2.703 +55255 0.041819 0.40762 2.9933 +55254 0.04296 0.40599 3.2829 +55253 0.044145 0.4043 3.5764 +55252 0.04528 0.40259 3.8706 +55251 0.046355 0.40089 4.1666 +55250 0.04743 0.39926 4.4641 +55249 0.048522 0.39772 4.7627 +55248 0.049447 0.39632 5.0642 +55247 0.050449 0.3951 5.3646 +55246 0.051377 0.39409 5.668 +55245 0.052222 0.39332 5.9725 +55244 0.053086 0.39282 6.2765 +55243 0.05383 0.39258 0.29888 +55242 0.054624 0.39263 0.60568 +55241 0.055275 0.39297 0.91121 +55240 0.055907 0.39358 1.2182 +55239 0.056543 0.39445 1.524 +55238 0.057027 0.39556 1.8311 +55237 0.057505 0.39689 2.1369 +55236 0.057976 0.39839 2.4414 +55235 0.058269 0.40004 2.7477 +55234 0.058616 0.40178 3.0513 +55233 0.058818 0.40357 3.3547 +55232 0.059052 0.40536 3.6584 +55231 0.059134 0.40709 3.9601 +55230 0.059175 0.40873 4.2614 +55229 0.059236 0.41024 4.5628 +55228 0.059116 0.41157 4.8626 +55227 0.058998 0.41269 5.1629 +55226 0.058844 0.4136 5.4616 +55225 0.058577 0.41425 5.7612 +55224 0.058309 0.41466 6.0599 +55223 0.057925 0.41481 0.074781 +55222 0.05754 0.41469 0.37331 +55221 0.05709 0.41433 0.67258 +55220 0.056506 0.41371 0.96994 +55219 0.056016 0.41287 1.269 +55218 0.055334 0.41183 1.5683 +55217 0.054646 0.41061 1.8672 +55216 0.053941 0.40925 2.1673 +55215 0.053164 0.40779 2.467 +55214 0.052308 0.40627 2.7687 +55213 0.05146 0.40473 3.069 +55212 0.050566 0.40323 3.3709 +55211 0.049587 0.40179 3.6736 +55210 0.048611 0.40045 3.9748 +55209 0.047562 0.39926 4.2782 +55208 0.046542 0.39822 4.5809 +55207 0.045403 0.39737 4.8834 +55206 0.044277 0.39673 5.1863 +55205 0.043176 0.3963 5.4884 +55204 0.041944 0.39609 5.7909 +55203 0.040774 0.3961 6.0921 +55202 0.03957 0.39633 0.10783 +55201 0.038315 0.39676 0.40949 +55200 0.03706 0.39738 0.70542 +55199 0.03579 0.39816 1.0022 +55198 0.034491 0.39907 1.2981 +55197 0.033192 0.40008 1.5902 +55196 0.031819 0.40116 1.8827 +55195 0.030583 0.40226 2.1715 +55194 0.029176 0.40337 2.4601 +55193 0.027861 0.40445 2.745 +55192 0.02658 0.40547 3.0269 +55191 0.025224 0.40642 3.3082 +55190 0.023924 0.40726 3.5851 +55189 0.022628 0.40799 3.8565 +55188 0.021352 0.4086 4.1291 +55187 0.020108 0.40907 4.3937 +55186 0.018828 0.4094 4.6535 +55185 0.017701 0.40958 4.9106 +55184 0.016507 0.40962 5.1603 +55183 0.015398 0.40951 5.3998 +55182 0.014405 0.40926 5.637 +55181 0.013401 0.40887 5.8577 +55180 0.012534 0.40837 6.0763 +55179 0.011779 0.40776 6.2745 +55178 0.011149 0.40706 0.18529 +55177 0.010622 0.4063 0.36863 +55176 0.010349 0.4055 0.53625 +55175 0.010177 0.40468 0.70847 +55174 0.010227 0.40386 0.87758 +55173 0.01044 0.40307 1.0448 +55172 0.010819 0.40232 1.2297 +55171 0.01135 0.40163 1.4222 +55170 0.011974 0.40102 1.621 +55169 0.012734 0.40049 1.8395 +55168 0.013564 0.40007 2.0656 +55167 0.014399 0.39976 2.3007 +55166 0.015387 0.39957 2.5468 +55165 0.016348 0.39951 2.8003 +55164 0.017296 0.39959 3.059 +55163 0.018384 0.39981 3.3253 +55162 0.019383 0.40015 3.5939 +55161 0.020444 0.40063 3.87 +55160 0.021476 0.40121 4.145 +55159 0.022563 0.4019 4.4248 +55158 0.023582 0.40265 4.7099 +55157 0.024629 0.40346 4.9899 +55156 0.025656 0.40429 5.2786 +55155 0.026686 0.40514 5.5656 +55154 0.027664 0.40596 5.8539 +55153 0.028655 0.40675 6.1441 +55152 0.029654 0.40748 0.15153 +55151 0.030548 0.40813 0.44404 +55150 0.031495 0.40869 0.73678 +55149 0.032414 0.40913 1.029 +55148 0.033248 0.40945 1.3255 +55147 0.034109 0.40963 1.6189 +55146 0.03491 0.40966 1.9154 +55145 0.035719 0.40954 2.2128 +55144 0.036461 0.40926 2.5101 +55143 0.037134 0.40883 2.8082 +55142 0.03794 0.40826 3.1084 +55141 0.038488 0.40755 3.4087 +55140 0.039149 0.40673 3.7096 +55139 0.039759 0.40581 4.0118 +55138 0.040257 0.40482 4.3158 +55137 0.0408 0.40378 4.6201 +55136 0.041247 0.40273 4.9243 +55135 0.041664 0.40169 5.2322 +55134 0.04206 0.40068 5.5389 +55133 0.042341 0.39974 5.8473 +55132 0.042687 0.39889 6.1567 +55131 0.042888 0.39815 0.18404 +55130 0.043043 0.39755 0.49515 +55129 0.043257 0.39711 0.80677 +55128 0.043288 0.39685 1.1198 +55127 0.04334 0.39677 1.4332 +55126 0.043321 0.39689 1.7466 +55125 0.04327 0.3972 2.0611 +55124 0.043165 0.3977 2.3768 +55123 0.042964 0.39837 2.6901 +55122 0.042817 0.39919 3.0065 +55121 0.042534 0.40014 3.3216 +55120 0.042235 0.4012 3.636 +55119 0.041879 0.40234 3.9519 +55118 0.041509 0.40353 4.2661 +55117 0.041034 0.40474 4.5826 +55116 0.040566 0.40595 4.8964 +55115 0.040043 0.40714 5.2111 +55114 0.039459 0.40826 5.5277 +55113 0.038842 0.4093 5.8414 +55112 0.038189 0.41024 6.1561 +55111 0.037515 0.41105 0.18986 +55110 0.036723 0.41171 0.5037 +55109 0.035966 0.4122 0.82121 +55108 0.035181 0.41252 1.1372 +55107 0.03428 0.41266 1.4559 +55106 0.033428 0.41261 1.7747 +55105 0.03257 0.41237 2.094 +55104 0.031609 0.41196 2.4172 +55103 0.03073 0.41137 2.7385 +55102 0.029727 0.41063 3.0633 +55101 0.02883 0.40975 3.3902 +55100 0.02784 0.40873 3.718 +55099 0.026836 0.40761 4.0491 +55098 0.02591 0.40639 4.3814 +55097 0.024922 0.40511 4.7181 +55096 0.023933 0.40378 5.0578 +55095 0.023015 0.40244 5.3962 +55094 0.022066 0.40111 5.7458 +55093 0.021129 0.39983 6.093 +55092 0.020238 0.39862 0.16166 +55091 0.019362 0.39752 0.52081 +55090 0.01855 0.39655 0.88267 +55089 0.017697 0.39574 1.251 +55088 0.017012 0.3951 1.6218 +55087 0.016336 0.39466 2.0017 +55086 0.015705 0.39442 2.3862 +55085 0.015245 0.39439 2.7722 +55084 0.01479 0.39457 3.1654 +55083 0.014518 0.39496 3.5617 +55082 0.014268 0.39556 3.9579 +55081 0.01416 0.39635 4.3546 +55080 0.014205 0.39732 4.751 +55079 0.014211 0.39846 5.1462 +55078 0.014422 0.39974 5.5358 +55077 0.014678 0.40113 5.9191 +55076 0.014984 0.40261 0.02179 +55075 0.015356 0.40413 0.39335 +55074 0.015786 0.40566 0.76417 +55073 0.016268 0.40716 1.1305 +55072 0.016769 0.4086 1.4872 +55071 0.017261 0.40993 1.8454 +55070 0.017878 0.41114 2.1913 +55069 0.018424 0.41219 2.5399 +55068 0.019005 0.41306 2.8804 +55067 0.019618 0.41373 3.2159 +55066 0.020211 0.41419 3.5516 +55065 0.020824 0.41441 3.8819 +55064 0.021348 0.41441 4.2082 +55063 0.021974 0.41417 4.5351 +55062 0.022522 0.41369 4.8583 +55061 0.023012 0.41298 5.1806 +55060 0.023576 0.41207 5.4996 +55059 0.024061 0.41096 5.8207 +55058 0.024484 0.4097 6.1396 +55057 0.02499 0.4083 0.17331 +55056 0.025338 0.40682 0.49252 +55055 0.025779 0.40528 0.81072 +55054 0.026095 0.40373 1.1289 +55053 0.026446 0.40221 1.4461 +55052 0.026803 0.40076 1.7661 +55051 0.027015 0.39941 2.0834 +55050 0.027336 0.39819 2.4026 +55049 0.027575 0.39713 2.7199 +55048 0.027757 0.39626 3.0394 +55047 0.027949 0.39559 3.3573 +55046 0.028093 0.39513 3.674 +55045 0.028226 0.3949 3.9942 +55044 0.028276 0.3949 4.3098 +55043 0.028311 0.39511 4.6272 +55042 0.028378 0.39554 4.9457 +55041 0.028299 0.39615 5.2613 +55040 0.028244 0.39693 5.5778 +55039 0.0282 0.39786 5.8931 +55038 0.028017 0.39889 6.209 +55037 0.027898 0.4 0.24114 +55036 0.027663 0.40115 0.55347 +55035 0.027459 0.40233 0.86936 +55034 0.027161 0.40349 1.1841 +55033 0.026848 0.40462 1.4953 +55032 0.026561 0.4057 1.8126 +55031 0.026149 0.4067 2.1243 +55030 0.025762 0.40761 2.4399 +55029 0.025361 0.40841 2.7532 +55028 0.024903 0.40909 3.0676 +55027 0.024379 0.40965 3.3837 +55026 0.023888 0.41007 3.6968 +55025 0.023318 0.41036 4.0143 +55024 0.022732 0.4105 4.3318 +55023 0.022077 0.41051 4.6476 +55022 0.02143 0.41039 4.9694 +55021 0.020744 0.41015 5.29 +55020 0.019986 0.40981 5.6136 +55019 0.019218 0.40937 5.9397 +55018 0.018488 0.40885 6.268 +55017 0.017598 0.40825 0.32119 +55016 0.016829 0.40759 0.65338 +55015 0.015983 0.40687 0.99723 +55014 0.015125 0.40611 1.3453 +55013 0.01431 0.40531 1.6962 +55012 0.013437 0.40449 2.0564 +55011 0.01268 0.40366 2.4264 +55010 0.011826 0.40283 2.8047 +55009 0.011103 0.40202 3.1963 +55008 0.010452 0.40125 3.5966 +55007 0.009819 0.40054 4.0204 +55006 0.009353 0.39991 4.4525 +55005 0.009013 0.39937 4.8957 +55004 0.008874 0.39893 5.3604 +55003 0.008878 0.39861 5.8194 +55002 0.009093 0.39842 0.000446 +55001 0.009548 0.39836 0.45107 +55000 0.010136 0.39843 0.8926 +54999 0.010883 0.39865 1.3242 +54998 0.011773 0.39901 1.7284 +54997 0.012803 0.39951 2.1304 +54996 0.013866 0.40014 2.5136 +54995 0.015023 0.40089 2.8853 +54994 0.016224 0.40174 3.2508 +54993 0.017493 0.40268 3.6034 +54992 0.0187 0.40367 3.9566 +54991 0.019988 0.40469 4.2971 +54990 0.021303 0.4057 4.6364 +54989 0.022566 0.40668 4.974 +54988 0.023856 0.40757 5.3037 +54987 0.025141 0.40836 5.6327 +54986 0.026473 0.40902 5.9611 +54985 0.027697 0.40953 3.9e-05 +54984 0.028981 0.40986 0.32399 +54983 0.030269 0.41 0.64398 +54982 0.031469 0.40995 0.96465 +54981 0.032706 0.4097 1.2827 +54980 0.033935 0.40927 1.5995 +54979 0.03508 0.40865 1.9183 +54978 0.0363 0.40786 2.2331 +54977 0.037361 0.40693 2.5492 +54976 0.03852 0.40587 2.8649 +54975 0.039562 0.40472 3.1804 +54974 0.040554 0.40353 3.4958 +54973 0.041603 0.40232 3.8106 +54972 0.042496 0.40114 4.1268 +54971 0.043385 0.40005 4.443 +54970 0.044274 0.39908 4.7573 +54969 0.045052 0.39826 5.0749 +54968 0.0458 0.39764 5.3902 +54967 0.046511 0.39724 5.7061 +54966 0.047168 0.39706 6.0222 +54965 0.047805 0.39713 0.054307 +54964 0.048291 0.39744 0.36957 +54963 0.048862 0.39798 0.68372 +54962 0.049321 0.39874 0.99817 +54961 0.049693 0.39969 1.3108 +54960 0.050102 0.4008 1.6229 +54959 0.050397 0.40204 1.9336 +54958 0.050689 0.40336 2.2443 +54957 0.05088 0.40472 2.5521 +54956 0.051063 0.40608 2.8591 +54955 0.051194 0.40739 3.1672 +54954 0.051221 0.40861 3.4709 +54953 0.051265 0.40969 3.7757 +54952 0.051243 0.4106 4.0791 +54951 0.051106 0.41132 4.3816 +54950 0.051016 0.41181 4.6838 +54949 0.050843 0.41208 4.9844 +54948 0.050575 0.41211 5.2857 +54947 0.050338 0.41191 5.5865 +54946 0.04997 0.41148 5.8857 +54945 0.049663 0.41084 6.1873 +54944 0.049189 0.41002 0.20339 +54943 0.048728 0.40903 0.50383 +54942 0.048285 0.40791 0.8052 +54941 0.047719 0.40669 1.1055 +54940 0.047131 0.4054 1.4072 +54939 0.046604 0.40408 1.7071 +54938 0.04592 0.40277 2.0099 +54937 0.045264 0.4015 2.3107 +54936 0.044569 0.40031 2.6111 +54935 0.043816 0.39923 2.9141 +54934 0.043038 0.39828 3.215 +54933 0.042225 0.39748 3.5156 +54932 0.041395 0.39685 3.8178 +54931 0.04052 0.3964 4.1173 +54930 0.03959 0.39611 4.419 +54929 0.038701 0.396 4.7171 +54928 0.037755 0.39606 5.0168 +54927 0.036715 0.39627 5.315 +54926 0.035778 0.39664 5.611 +54925 0.034715 0.39715 5.908 +54924 0.0337 0.39779 6.2028 +54923 0.032611 0.39855 0.21226 +54922 0.031551 0.39941 0.50421 +54921 0.030486 0.40035 0.79545 +54920 0.029322 0.40137 1.0818 +54919 0.028251 0.40243 1.3684 +54918 0.027113 0.40352 1.652 +54917 0.025935 0.40462 1.9326 +54916 0.024819 0.40571 2.2107 +54915 0.023652 0.40678 2.4841 +54914 0.022467 0.40781 2.7572 +54913 0.021325 0.4088 3.0225 +54912 0.020152 0.40973 3.2838 +54911 0.019034 0.4106 3.543 +54910 0.017869 0.41139 3.7914 +54909 0.016798 0.41209 4.0329 +54908 0.015791 0.41267 4.272 +54907 0.01475 0.41313 4.4905 +54906 0.013887 0.41343 4.7074 +54905 0.013107 0.41356 4.9068 +54904 0.012432 0.41351 5.096 +54903 0.011933 0.41324 5.2725 +54902 0.011696 0.41276 5.4388 +54901 0.011539 0.41207 5.6032 +54900 0.011741 0.41117 5.7648 +54899 0.012113 0.41006 5.9302 +54898 0.012668 0.40878 6.1099 +54897 0.013464 0.40734 0.015123 +54896 0.014387 0.40576 0.21611 +54895 0.015466 0.40409 0.43448 +54894 0.016639 0.40234 0.66187 +54893 0.017882 0.40056 0.89796 +54892 0.019279 0.39878 1.1522 +54891 0.020609 0.39706 1.406 +54890 0.022082 0.39544 1.6713 +54889 0.023563 0.39397 1.9433 +54888 0.025042 0.3927 2.2187 +54887 0.026527 0.3917 2.5015 +54886 0.02811 0.39099 2.7845 +54885 0.029573 0.39063 3.0753 +54884 0.031108 0.39064 3.3664 +54883 0.032645 0.39102 3.6591 +54882 0.034139 0.39178 3.9565 +54881 0.035647 0.39289 4.2527 +54880 0.037109 0.39432 4.5503 +54879 0.038631 0.39603 4.8502 +54878 0.040076 0.39798 5.1481 +54877 0.041482 0.4001 5.4475 +54876 0.04295 0.40234 5.746 +54875 0.04433 0.40464 6.0447 +54874 0.045669 0.40692 0.059883 +54873 0.047039 0.40914 0.35608 +54872 0.048302 0.41123 0.6547 +54871 0.049564 0.41313 0.95088 +54870 0.050793 0.41479 1.2472 +54869 0.051937 0.41615 1.5432 +54868 0.053121 0.41719 1.8397 +54867 0.054121 0.41787 2.1355 +54866 0.055223 0.41818 2.4311 +54865 0.056186 0.4181 2.7283 +54864 0.05706 0.41765 3.0248 +54863 0.057975 0.41685 3.3227 +54862 0.058793 0.41572 3.6206 +54861 0.059519 0.4143 3.9206 +54860 0.060233 0.41264 4.2203 +54859 0.060874 0.41078 4.5216 +54858 0.061486 0.40879 4.8248 +54857 0.061978 0.4067 5.1275 +54856 0.062434 0.40459 5.4322 +54855 0.062879 0.40251 5.7388 +54854 0.063165 0.40052 6.0448 +54853 0.063467 0.39868 0.070421 +54852 0.06369 0.39703 0.37807 +54851 0.063828 0.39563 0.68866 +54850 0.063916 0.39451 0.99836 +54849 0.063964 0.3937 1.3076 +54848 0.063892 0.39321 1.6196 +54847 0.0638 0.39305 1.9291 +54846 0.0636 0.3932 2.2396 +54845 0.063424 0.39364 2.55 +54844 0.063074 0.39433 2.8588 +54843 0.062727 0.39525 3.1683 +54842 0.062366 0.39636 3.476 +54841 0.061879 0.39761 3.7833 +54840 0.061359 0.39895 4.0902 +54839 0.060801 0.40036 4.3943 +54838 0.060196 0.40178 4.7001 +54837 0.05951 0.40319 5.003 +54836 0.05878 0.40454 5.3049 +54835 0.058012 0.40582 5.6073 +54834 0.057208 0.40698 5.9079 +54833 0.056291 0.408 6.2083 +54832 0.055429 0.40888 0.22379 +54831 0.05448 0.4096 0.52366 +54830 0.053431 0.41016 0.82166 +54829 0.05249 0.41055 1.1191 +54828 0.051373 0.4108 1.417 +54827 0.050292 0.4109 1.7141 +54826 0.049174 0.41086 2.0106 +54825 0.048018 0.4107 2.3066 +54824 0.046861 0.41042 2.6031 +54823 0.045627 0.41003 2.8979 +54822 0.044402 0.40954 3.1935 +54821 0.043217 0.40896 3.4879 +54820 0.041881 0.40828 3.7824 +54819 0.040637 0.40753 4.0756 +54818 0.039365 0.40672 4.3686 +54817 0.038016 0.40586 4.6617 +54816 0.036723 0.40496 4.953 +54815 0.035366 0.40405 5.2427 +54814 0.034048 0.40314 5.5356 +54813 0.032662 0.40225 5.8225 +54812 0.031319 0.40139 6.1109 +54811 0.029976 0.40058 0.11559 +54810 0.028584 0.39984 0.39953 +54809 0.027226 0.39917 0.68401 +54808 0.025923 0.3986 0.96437 +54807 0.024518 0.39814 1.2438 +54806 0.023217 0.3978 1.5212 +54805 0.021907 0.3976 1.7911 +54804 0.020631 0.39756 2.0628 +54803 0.019345 0.3977 2.3264 +54802 0.018148 0.39803 2.5817 +54801 0.016977 0.39855 2.8385 +54800 0.015868 0.39927 3.078 +54799 0.014793 0.40018 3.3132 +54798 0.013873 0.40124 3.5371 +54797 0.013006 0.40244 3.749 +54796 0.012236 0.40373 3.9468 +54795 0.011737 0.40508 4.1346 +54794 0.011263 0.40644 4.3102 +54793 0.011074 0.40777 4.4792 +54792 0.011096 0.40904 4.6437 +54791 0.011269 0.41019 4.8089 +54790 0.011658 0.41119 4.9859 +54789 0.012246 0.41202 5.1629 +54788 0.012965 0.41264 5.3606 +54787 0.013803 0.41303 5.5669 +54786 0.014748 0.41316 5.779 +54785 0.015791 0.41302 6.0105 +54784 0.016864 0.41259 6.2482 +54783 0.017996 0.41187 0.20592 +54782 0.019195 0.41086 0.46326 +54781 0.020365 0.4096 0.72005 +54780 0.021575 0.40809 0.98683 +54779 0.02283 0.40639 1.257 +54778 0.024081 0.40455 1.5326 +54777 0.025266 0.40262 1.8131 +54776 0.026585 0.40068 2.0957 +54775 0.027779 0.39879 2.3837 +54774 0.029029 0.39703 2.6743 +54773 0.030235 0.39545 2.9671 +54772 0.031439 0.39411 3.2635 +54771 0.032668 0.39307 3.5629 +54770 0.033801 0.39237 3.8621 +54769 0.034968 0.39202 4.164 +54768 0.036153 0.39206 4.4681 +54767 0.037179 0.39248 4.7718 +54766 0.038345 0.39328 5.0758 +54765 0.039372 0.39444 5.3813 +54764 0.040369 0.39594 5.6862 +54763 0.041396 0.39772 5.9917 +54762 0.042329 0.39973 0.011564 +54761 0.04327 0.40191 0.31776 +54760 0.044107 0.40419 0.61975 +54759 0.044964 0.40649 0.92303 +54758 0.04578 0.40873 1.2261 +54757 0.046489 0.41085 1.5269 +54756 0.04718 0.41276 1.8294 +54755 0.047904 0.41443 2.1298 +54754 0.048481 0.41581 2.4314 +54753 0.049066 0.41685 2.7321 +54752 0.049614 0.41754 3.0318 +54751 0.050092 0.41786 3.3347 +54750 0.050547 0.41781 3.635 +54749 0.050924 0.4174 3.9361 +54748 0.051296 0.41663 4.2397 +54747 0.051553 0.41553 4.5418 +54746 0.051806 0.41413 4.8462 +54745 0.052006 0.41246 5.1509 +54744 0.052118 0.41057 5.4565 +54743 0.052176 0.40851 5.7652 +54742 0.052219 0.40635 6.072 +54741 0.052192 0.40415 0.10033 +54740 0.05207 0.40197 0.41129 +54739 0.051955 0.39988 0.72367 +54738 0.05176 0.39793 1.0381 +54737 0.05155 0.39619 1.3531 +54736 0.051185 0.39468 1.6691 +54735 0.050901 0.39344 1.986 +54734 0.050522 0.39251 2.3044 +54733 0.050039 0.39187 2.6224 +54732 0.049603 0.39155 2.9408 +54731 0.04908 0.39154 3.2602 +54730 0.048484 0.39183 3.5796 +54729 0.047934 0.39241 3.8978 +54728 0.047234 0.39325 4.2165 +54727 0.046599 0.39432 4.5354 +54726 0.04583 0.39559 4.8533 +54725 0.045072 0.39702 5.1702 +54724 0.044327 0.39858 5.4885 +54723 0.043408 0.40022 5.8044 +54722 0.042607 0.40191 6.1216 +54721 0.041705 0.4036 0.15322 +54720 0.040758 0.40527 0.47019 +54719 0.039835 0.40688 0.78547 +54718 0.038862 0.40841 1.0999 +54717 0.037903 0.40985 1.4168 +54716 0.036893 0.41116 1.731 +54715 0.035845 0.41235 2.0466 +54714 0.034908 0.41339 2.3625 +54713 0.033817 0.41427 2.6778 +54712 0.032789 0.41497 2.994 +54711 0.031781 0.41548 3.3096 +54710 0.030694 0.41579 3.6271 +54709 0.029667 0.41587 3.9449 +54708 0.028568 0.41574 4.2609 +54707 0.027549 0.41539 4.5819 +54706 0.026443 0.41481 4.903 +54705 0.02535 0.41402 5.2225 +54704 0.024334 0.41303 5.5495 +54703 0.023228 0.41184 5.8744 +54702 0.022188 0.41048 6.2046 +54701 0.021155 0.40896 0.25249 +54700 0.02015 0.4073 0.58769 +54699 0.019137 0.40553 0.92964 +54698 0.01821 0.40367 1.2696 +54697 0.017286 0.40175 1.6187 +54696 0.016435 0.39982 1.9721 +54695 0.015569 0.39793 2.3274 +54694 0.01483 0.39613 2.6903 +54693 0.014123 0.39447 3.0577 +54692 0.013403 0.39302 3.4302 +54691 0.012817 0.39181 3.8095 +54690 0.012277 0.3909 4.1894 +54689 0.011774 0.39034 4.586 +54688 0.011355 0.39013 4.9751 +54687 0.011039 0.39031 5.3761 +54686 0.010806 0.39086 5.7815 +54685 0.010642 0.39178 6.1823 +54684 0.010552 0.39304 0.30847 +54683 0.010638 0.39463 0.70731 +54682 0.010717 0.39649 1.1109 +54681 0.010919 0.39858 1.5063 +54680 0.011168 0.40085 1.8912 +54679 0.011537 0.40324 2.2784 +54678 0.011902 0.40568 2.6536 +54677 0.012285 0.4081 3.0177 +54676 0.012804 0.41044 3.3834 +54675 0.013231 0.41262 3.7363 +54674 0.013725 0.41457 4.0876 +54673 0.014221 0.41623 4.43 +54672 0.014711 0.41756 4.7711 +54671 0.015197 0.4185 5.1121 +54670 0.015684 0.41904 5.4413 +54669 0.016177 0.41916 5.7775 +54668 0.016662 0.41886 6.1076 +54667 0.017138 0.41815 0.15319 +54666 0.017599 0.41706 0.48252 +54665 0.018107 0.41563 0.80713 +54664 0.018514 0.41389 1.1386 +54663 0.018978 0.4119 1.4625 +54662 0.019445 0.40971 1.7886 +54661 0.019833 0.40738 2.1184 +54660 0.020233 0.40498 2.4428 +54659 0.020614 0.40258 2.771 +54658 0.021019 0.40026 3.1016 +54657 0.021299 0.3981 3.4282 +54656 0.021629 0.39615 3.7602 +54655 0.021947 0.3945 4.09 +54654 0.022197 0.39319 4.4228 +54653 0.02242 0.39228 4.7557 +54652 0.022668 0.39177 5.0863 +54651 0.022836 0.39169 5.4238 +54650 0.023043 0.39202 5.7558 +54649 0.023158 0.39272 6.0899 +54648 0.023338 0.39377 0.14147 +54647 0.023459 0.39511 0.47607 +54646 0.023525 0.39668 0.80902 +54645 0.023694 0.39843 1.1416 +54644 0.023725 0.40028 1.4753 +54643 0.023781 0.40218 1.8084 +54642 0.023877 0.40408 2.1379 +54641 0.023888 0.40591 2.4716 +54640 0.023906 0.40762 2.8019 +54639 0.023912 0.40917 3.1329 +54638 0.023879 0.41051 3.4643 +54637 0.023908 0.41161 3.7957 +54636 0.023765 0.41243 4.1283 +54635 0.023766 0.41298 4.4604 +54634 0.023701 0.41323 4.7956 +54633 0.023585 0.4132 5.1312 +54632 0.023547 0.4129 5.468 +54631 0.023453 0.41236 5.8052 +54630 0.023428 0.41159 6.1481 +54629 0.023326 0.41066 0.20417 +54628 0.023286 0.40959 0.54713 +54627 0.023304 0.40841 0.89445 +54626 0.023219 0.40718 1.2387 +54625 0.023263 0.40591 1.587 +54624 0.023294 0.40465 1.9351 +54623 0.023291 0.40342 2.2863 +54622 0.0234 0.40225 2.6365 +54621 0.023454 0.40116 2.9867 +54620 0.023562 0.40019 3.3406 +54619 0.023708 0.39934 3.6923 +54618 0.02378 0.39864 4.0454 +54617 0.024035 0.3981 4.3979 +54616 0.024159 0.39773 4.7529 +54615 0.024365 0.39753 5.1056 +54614 0.024652 0.39749 5.4586 +54613 0.02488 0.39762 5.8117 +54612 0.02522 0.39789 6.1652 +54611 0.025518 0.39829 0.23087 +54610 0.025942 0.39881 0.58211 +54609 0.026307 0.39944 0.93096 +54608 0.026698 0.40016 1.2765 +54607 0.027188 0.40097 1.6226 +54606 0.027637 0.40186 1.966 +54605 0.028064 0.40282 2.3079 +54604 0.028582 0.40383 2.6477 +54603 0.029043 0.40489 2.9855 +54602 0.029559 0.40597 3.3236 +54601 0.030005 0.40706 3.6577 +54600 0.030515 0.40813 3.9902 +54599 0.031028 0.40916 4.3246 +54598 0.031458 0.41012 4.6521 +54597 0.031972 0.41099 4.9827 +54596 0.032457 0.41174 5.3091 +54595 0.032896 0.41236 5.6358 +54594 0.033358 0.41281 5.9605 +54593 0.033817 0.41309 6.2826 +54592 0.034229 0.41317 0.32432 +54591 0.034676 0.41304 0.6443 +54590 0.035052 0.41269 0.96446 +54589 0.035491 0.4121 1.2855 +54588 0.03584 0.41128 1.6034 +54587 0.036192 0.41022 1.9223 +54586 0.036581 0.40894 2.2395 +54585 0.036848 0.40745 2.5571 +54584 0.037146 0.40579 2.8754 +54583 0.037409 0.404 3.1908 +54582 0.037652 0.40211 3.5098 +54581 0.037821 0.40019 3.8279 +54580 0.037993 0.39829 4.1443 +54579 0.038168 0.39648 4.4655 +54578 0.038264 0.39481 4.7831 +54577 0.038351 0.39334 5.1035 +54576 0.038438 0.39212 5.4231 +54575 0.03852 0.39122 5.7432 +54574 0.038482 0.39066 6.0637 +54573 0.038544 0.39047 0.098943 +54572 0.038498 0.39069 0.41935 +54571 0.038462 0.39131 0.73818 +54570 0.0384 0.39234 1.0549 +54569 0.038301 0.39376 1.3717 +54568 0.0382 0.39553 1.6876 +54567 0.038028 0.3976 2.0005 +54566 0.037852 0.39992 2.3127 +54565 0.037694 0.40242 2.6227 +54564 0.03737 0.40501 2.9318 +54563 0.037155 0.40762 3.238 +54562 0.036853 0.41016 3.5435 +54561 0.036484 0.41256 3.8473 +54560 0.036159 0.41475 4.1499 +54559 0.035725 0.41667 4.4498 +54558 0.035372 0.41827 4.7517 +54557 0.034862 0.4195 5.0495 +54556 0.034392 0.42033 5.348 +54555 0.033956 0.42074 5.647 +54554 0.033388 0.42072 5.9441 +54553 0.032853 0.42026 6.2416 +54552 0.032343 0.41938 0.25474 +54551 0.0317 0.41809 0.55337 +54550 0.031138 0.41643 0.85052 +54549 0.030482 0.41445 1.147 +54548 0.029834 0.41219 1.447 +54547 0.029138 0.40973 1.7458 +54546 0.02839 0.40713 2.0441 +54545 0.027699 0.40449 2.3466 +54544 0.02686 0.40187 2.6467 +54543 0.026054 0.39935 2.9499 +54542 0.025231 0.39702 3.253 +54541 0.024351 0.39492 3.556 +54540 0.023436 0.39313 3.8633 +54539 0.022517 0.39167 4.1642 +54538 0.021595 0.39058 4.4722 +54537 0.0206 0.38989 4.7766 +54536 0.019621 0.38959 5.0777 +54535 0.018602 0.38968 5.383 +54534 0.017606 0.39016 5.6836 +54533 0.016508 0.39098 5.9817 +54532 0.015492 0.39213 6.2776 +54531 0.014406 0.39355 0.28624 +54530 0.013279 0.3952 0.57493 +54529 0.012198 0.39703 0.85394 +54528 0.011084 0.39896 1.1253 +54527 0.009913 0.40094 1.3932 +54526 0.008817 0.40292 1.6341 +54525 0.007675 0.40483 1.8643 +54524 0.006619 0.40663 2.0664 +54523 0.005582 0.40829 2.2175 +54522 0.004754 0.40977 2.31 +54521 0.004198 0.41107 2.3431 +54520 0.004034 0.41217 2.2818 +54519 0.004363 0.41307 2.2663 +54518 0.005101 0.41376 2.3069 +54517 0.006071 0.41425 2.413 +54516 0.007233 0.41453 2.5874 +54515 0.008492 0.41462 2.7942 +54514 0.009781 0.41451 3.0239 +54513 0.011119 0.41421 3.276 +54512 0.01255 0.41374 3.5361 +54511 0.013874 0.41309 3.8098 +54510 0.015323 0.4123 4.0847 +54509 0.016755 0.41137 4.3692 +54508 0.018138 0.41032 4.6576 +54507 0.01961 0.40918 4.9471 +54506 0.021021 0.40798 5.2393 +54505 0.022491 0.40672 5.5384 +54504 0.023886 0.40544 5.8341 +54503 0.025328 0.40414 6.1325 +54502 0.026787 0.40285 0.15273 +54501 0.028131 0.40159 0.45268 +54500 0.029563 0.40037 0.75724 +54499 0.030958 0.39921 1.0607 +54498 0.03227 0.39814 1.366 +54497 0.033619 0.39717 1.6726 +54496 0.03492 0.39634 1.9779 +54495 0.036173 0.39568 2.2872 +54494 0.037425 0.3952 2.5949 +54493 0.038566 0.39493 2.9031 +54492 0.039809 0.39488 3.2136 +54491 0.040877 0.39507 3.523 +54490 0.041961 0.39549 3.8325 +54489 0.043067 0.39615 4.1431 +54488 0.044036 0.39703 4.4522 +54487 0.04503 0.3981 4.7627 +54486 0.045976 0.39935 5.0701 +54485 0.046877 0.40073 5.3798 +54484 0.047722 0.40223 5.6873 +54483 0.048544 0.40379 5.9933 +54482 0.049307 0.40539 0.016913 +54481 0.050032 0.40696 0.32187 +54480 0.050667 0.40847 0.62616 +54479 0.051318 0.40986 0.92972 +54478 0.051883 0.4111 1.2322 +54477 0.052357 0.41214 1.535 +54476 0.052823 0.41295 1.8356 +54475 0.053274 0.41349 2.1369 +54474 0.053539 0.41376 2.4383 +54473 0.053891 0.41374 2.7376 +54472 0.05411 0.41342 3.039 +54471 0.054319 0.41281 3.3396 +54470 0.054453 0.41194 3.6402 +54469 0.054532 0.41082 3.9411 +54468 0.054648 0.40949 4.2434 +54467 0.054578 0.40798 4.5447 +54466 0.05458 0.40635 4.8476 +54465 0.054499 0.40465 5.1503 +54464 0.054326 0.40292 5.4545 +54463 0.054189 0.40123 5.759 +54462 0.053938 0.39964 6.0629 +54461 0.053685 0.3982 0.086405 +54460 0.053363 0.39697 0.39173 +54459 0.052972 0.39599 0.69759 +54458 0.052647 0.3953 1.0047 +54457 0.052138 0.39493 1.3107 +54456 0.05165 0.39488 1.6168 +54455 0.05122 0.39517 1.9226 +54454 0.05057 0.39577 2.2279 +54453 0.050032 0.39667 2.5323 +54452 0.049385 0.39782 2.8352 +54451 0.048743 0.39919 3.1382 +54450 0.04806 0.40072 3.4399 +54449 0.047314 0.40236 3.7383 +54448 0.046627 0.40406 4.0388 +54447 0.045831 0.40575 4.3352 +54446 0.045046 0.40738 4.6314 +54445 0.044263 0.40891 4.9257 +54444 0.04343 0.41027 5.219 +54443 0.042545 0.41143 5.5116 +54442 0.04172 0.41236 5.8014 +54441 0.040816 0.41301 6.0916 +54440 0.03989 0.41339 0.097918 +54439 0.038967 0.41346 0.38421 +54438 0.038029 0.41325 0.67287 +54437 0.037046 0.41275 0.95912 +54436 0.036065 0.412 1.2449 +54435 0.035037 0.41101 1.5314 +54434 0.03409 0.40983 1.8165 +54433 0.032984 0.40849 2.1028 +54432 0.032004 0.40704 2.3867 +54431 0.030981 0.40552 2.6723 +54430 0.029903 0.40397 2.9569 +54429 0.028899 0.40244 3.24 +54428 0.027843 0.40097 3.5221 +54427 0.026811 0.39959 3.8066 +54426 0.025764 0.39835 4.085 +54425 0.024732 0.39727 4.3645 +54424 0.023741 0.3964 4.6433 +54423 0.022685 0.39575 4.9165 +54422 0.021694 0.39533 5.1888 +54421 0.020769 0.39516 5.4574 +54420 0.019738 0.39524 5.7211 +54419 0.018852 0.39555 5.9807 +54418 0.017964 0.39608 6.2332 +54417 0.017086 0.3968 0.19823 +54416 0.016311 0.39769 0.4395 +54415 0.015557 0.39871 0.66766 +54414 0.014928 0.39984 0.89815 +54413 0.014334 0.40105 1.1117 +54412 0.013901 0.4023 1.3195 +54411 0.013559 0.40357 1.527 +54410 0.013381 0.40484 1.7214 +54409 0.013292 0.40609 1.9185 +54408 0.013463 0.40729 2.1146 +54407 0.01366 0.40843 2.3125 +54406 0.01405 0.40949 2.5149 +54405 0.014627 0.41044 2.7245 +54404 0.015225 0.41127 2.9405 +54403 0.015958 0.41196 3.1655 +54402 0.016848 0.4125 3.3942 +54401 0.017708 0.41287 3.6352 +54400 0.01871 0.41306 3.88 +54399 0.019726 0.41308 4.1288 +54398 0.020817 0.41292 4.3876 +54397 0.021907 0.41259 4.6492 +54396 0.023027 0.4121 4.9118 +54395 0.024209 0.41145 5.1851 +54394 0.025335 0.41065 5.4561 +54393 0.026488 0.40972 5.7335 +54392 0.027692 0.40866 6.0128 +54391 0.02883 0.40748 0.011638 +54390 0.029964 0.4062 0.29688 +54389 0.031131 0.40485 0.58316 +54388 0.032226 0.40343 0.87252 +54387 0.033336 0.40198 1.1652 +54386 0.034377 0.40054 1.4568 +54385 0.035454 0.39913 1.7535 +54384 0.036455 0.3978 2.0513 +54383 0.037426 0.39658 2.3494 +54382 0.038387 0.3955 2.6511 +54381 0.039339 0.39459 2.9531 +54380 0.040178 0.3939 3.2574 +54379 0.041064 0.39343 3.5611 +54378 0.041916 0.39322 3.8672 +54377 0.04263 0.39326 4.174 +54376 0.043444 0.39356 4.4796 +54375 0.04411 0.39414 4.7869 +54374 0.044775 0.39497 5.0944 +54373 0.045382 0.39604 5.4011 +54372 0.04591 0.39733 5.7076 +54371 0.04649 0.39881 6.0149 +54370 0.046874 0.40044 0.037207 +54369 0.047292 0.40219 0.34317 +54368 0.047693 0.40401 0.64763 +54367 0.047927 0.40583 0.95272 +54366 0.04819 0.40763 1.2559 +54365 0.048397 0.40935 1.5584 +54364 0.048482 0.41095 1.8621 +54363 0.048609 0.41238 2.1631 +54362 0.048563 0.4136 2.4644 +54361 0.0486 0.4146 2.7663 +54360 0.048474 0.41534 3.0668 +54359 0.048346 0.4158 3.3675 +54358 0.048216 0.41597 3.6682 +54357 0.047947 0.41586 3.9683 +54356 0.047691 0.41546 4.2698 +54355 0.04738 0.41478 4.569 +54354 0.047008 0.41383 4.8711 +54353 0.046586 0.41265 5.1726 +54352 0.046097 0.41126 5.4735 +54351 0.045635 0.40971 5.7768 +54350 0.045055 0.40803 6.0805 +54349 0.044418 0.40626 0.099992 +54348 0.043843 0.40447 0.40597 +54347 0.043117 0.4027 0.71101 +54346 0.042403 0.401 1.0177 +54345 0.041651 0.39941 1.3246 +54344 0.040884 0.39796 1.6324 +54343 0.040031 0.3967 1.9421 +54342 0.039226 0.39566 2.2492 +54341 0.038341 0.39487 2.5594 +54340 0.037463 0.39433 2.8688 +54339 0.036545 0.39406 3.1775 +54338 0.035586 0.39406 3.4865 +54337 0.034688 0.39432 3.7949 +54336 0.033633 0.39483 4.1034 +54335 0.032666 0.39557 4.4103 +54334 0.031683 0.3965 4.7165 +54333 0.030588 0.3976 5.0234 +54332 0.029578 0.39881 5.3273 +54331 0.028512 0.40011 5.6302 +54330 0.027437 0.40145 5.9353 +54329 0.026349 0.40279 6.2346 +54328 0.025239 0.4041 0.25341 +54327 0.024172 0.40535 0.55323 +54326 0.023046 0.40652 0.85194 +54325 0.021896 0.40756 1.1506 +54324 0.020875 0.40848 1.4467 +54323 0.019677 0.40925 1.7458 +54322 0.018611 0.40986 2.0409 +54321 0.017511 0.4103 2.3353 +54320 0.016412 0.41058 2.6322 +54319 0.015331 0.41068 2.9271 +54318 0.014229 0.41063 3.2163 +54317 0.013199 0.41042 3.5134 +54316 0.012106 0.41007 3.8025 +54315 0.011021 0.4096 4.092 +54314 0.010029 0.40902 4.3816 +54313 0.008932 0.40836 4.6675 +54312 0.007895 0.40763 4.951 +54311 0.006891 0.40685 5.2309 +54310 0.005841 0.40605 5.4992 +54309 0.004846 0.40524 5.7745 +54308 0.003827 0.40444 5.9991 +54307 0.002888 0.40368 6.2226 +54306 0.001947 0.40295 0.064637 +54305 0.00122 0.40228 6.1783 +54304 0.001032 0.40168 5.5966 +54303 0.001616 0.40116 5.3065 +54302 0.00251 0.40072 5.3394 +54301 0.003381 0.40039 5.5447 +54300 0.004298 0.40016 5.78 +54299 0.005252 0.40003 6.0329 +54298 0.006147 0.40001 0.033848 +54297 0.007068 0.4001 0.31501 +54296 0.007949 0.40029 0.59789 +54295 0.00886 0.40056 0.89667 +54294 0.009724 0.40092 1.1886 +54293 0.010561 0.40135 1.4855 +54292 0.011446 0.40184 1.7853 +54291 0.012277 0.40237 2.0826 +54290 0.013062 0.40294 2.3875 +54289 0.013904 0.40352 2.6834 +54288 0.014697 0.4041 2.9885 +54287 0.015432 0.40468 3.291 +54286 0.016227 0.40523 3.5902 +54285 0.01692 0.40574 3.8954 +54284 0.017682 0.4062 4.1977 +54283 0.018304 0.40659 4.5004 +54282 0.019002 0.40691 4.8034 +54281 0.019658 0.40714 5.1082 +54280 0.020214 0.40728 5.4117 +54279 0.020837 0.40731 5.7163 +54278 0.02139 0.40725 6.0199 +54277 0.021888 0.40708 0.04446 +54276 0.022398 0.4068 0.3482 +54275 0.022835 0.40644 0.65464 +54274 0.023285 0.40598 0.96377 +54273 0.023632 0.40546 1.2709 +54272 0.023986 0.40487 1.5791 +54271 0.024375 0.40424 1.8915 +54270 0.024575 0.40358 2.2004 +54269 0.024886 0.40292 2.5133 +54268 0.025112 0.40227 2.8245 +54267 0.025279 0.40166 3.1385 +54266 0.025428 0.4011 3.4526 +54265 0.025539 0.40062 3.7654 +54264 0.025604 0.40023 4.0838 +54263 0.025642 0.39995 4.3985 +54262 0.025586 0.39979 4.7155 +54261 0.025594 0.39976 5.0344 +54260 0.025466 0.39987 5.3526 +54259 0.025323 0.40011 5.6717 +54258 0.0252 0.40048 5.9912 +54257 0.024953 0.40098 0.028219 +54256 0.024716 0.40158 0.35031 +54255 0.024425 0.40228 0.66882 +54254 0.024122 0.40304 0.99245 +54253 0.02374 0.40386 1.3157 +54252 0.02334 0.40471 1.6358 +54251 0.022943 0.40557 1.9624 +54250 0.02248 0.4064 2.2854 +54249 0.021979 0.4072 2.6115 +54248 0.021477 0.40793 2.9376 +54247 0.020985 0.40857 3.2644 +54246 0.020365 0.40911 3.5958 +54245 0.019836 0.40953 3.9232 +54244 0.01924 0.40981 4.257 +54243 0.018644 0.40994 4.5929 +54242 0.018026 0.40993 4.9273 +54241 0.017412 0.40976 5.2673 +54240 0.016841 0.40945 5.6117 +54239 0.016174 0.40899 5.9552 +54238 0.015604 0.4084 0.024087 +54237 0.015028 0.40768 0.37549 +54236 0.014436 0.40686 0.73837 +54235 0.013915 0.40595 1.1005 +54234 0.013416 0.40498 1.469 +54233 0.012971 0.40397 1.8485 +54232 0.012598 0.40293 2.2262 +54231 0.012219 0.40191 2.6135 +54230 0.012039 0.40092 3.0014 +54229 0.011815 0.39999 3.3976 +54228 0.011708 0.39915 3.7939 +54227 0.011719 0.39841 4.1876 +54226 0.011784 0.39779 4.5884 +54225 0.011938 0.39732 4.9848 +54224 0.012148 0.397 5.3718 +54223 0.012508 0.39684 5.765 +54222 0.012847 0.39685 6.1462 +54221 0.01326 0.39702 0.24215 +54220 0.01375 0.39736 0.61422 +54219 0.01428 0.39785 0.98102 +54218 0.014788 0.39848 1.3476 +54217 0.015385 0.39924 1.7006 +54216 0.015977 0.40011 2.0557 +54215 0.016603 0.40108 2.4044 +54214 0.017217 0.40211 2.7468 +54213 0.017834 0.40319 3.0873 +54212 0.01853 0.4043 3.4222 +54211 0.019086 0.4054 3.756 +54210 0.019738 0.40648 4.0838 +54209 0.020382 0.40751 4.4094 +54208 0.020932 0.40847 4.7351 +54207 0.021556 0.40934 5.0546 +54206 0.022103 0.4101 5.3726 +54205 0.022693 0.41074 5.6918 +54204 0.023207 0.41124 6.0045 +54203 0.023719 0.41159 0.035488 +54202 0.024261 0.41178 0.3471 +54201 0.024728 0.41181 0.65697 +54200 0.025158 0.41168 0.96757 +54199 0.025666 0.41138 1.2728 +54198 0.026041 0.41093 1.5831 +54197 0.026456 0.41032 1.8885 +54196 0.02684 0.40957 2.1935 +54195 0.027208 0.4087 2.5004 +54194 0.027563 0.40773 2.8056 +54193 0.027835 0.40667 3.109 +54192 0.028209 0.40556 3.4149 +54191 0.028448 0.40441 3.7188 +54190 0.028685 0.40325 4.0233 +54189 0.028971 0.40211 4.3272 +54188 0.029152 0.40101 4.6319 +54187 0.029333 0.39998 4.9363 +54186 0.029529 0.39903 5.2402 +54185 0.029638 0.39821 5.5443 +54184 0.02981 0.39751 5.8497 +54183 0.029839 0.39696 6.1526 +54182 0.029965 0.39657 0.17348 +54181 0.030016 0.39634 0.47854 +54180 0.03001 0.39629 0.78054 +54179 0.030041 0.3964 1.0848 +54178 0.030045 0.39668 1.3861 +54177 0.029965 0.39712 1.6898 +54176 0.029916 0.3977 1.9895 +54175 0.02984 0.39841 2.29 +54174 0.029685 0.39923 2.5917 +54173 0.029552 0.40014 2.8888 +54172 0.029358 0.40112 3.1877 +54171 0.029189 0.40214 3.4865 +54170 0.028926 0.40318 3.7822 +54169 0.028663 0.40422 4.0788 +54168 0.028443 0.40524 4.3738 +54167 0.028085 0.40621 4.6682 +54166 0.027763 0.40712 4.9622 +54165 0.027427 0.40796 5.2524 +54164 0.027017 0.40869 5.5466 +54163 0.026587 0.40932 5.8356 +54162 0.026158 0.40983 6.124 +54161 0.025656 0.41022 0.13258 +54160 0.025169 0.41047 0.41796 +54159 0.024583 0.41059 0.70617 +54158 0.024081 0.41058 0.99182 +54157 0.023454 0.41044 1.2774 +54156 0.022817 0.41019 1.5608 +54155 0.022236 0.40982 1.8433 +54154 0.02152 0.40936 2.1241 +54153 0.020855 0.4088 2.4049 +54152 0.020148 0.40816 2.6793 +54151 0.019431 0.40746 2.9563 +54150 0.01871 0.4067 3.229 +54149 0.017938 0.4059 3.4954 +54148 0.017233 0.40508 3.7619 +54147 0.016495 0.40424 4.0243 +54146 0.015713 0.40341 4.276 +54145 0.015075 0.4026 4.5292 +54144 0.014355 0.40183 4.7707 +54143 0.013718 0.40111 5.0079 +54142 0.013161 0.40045 5.2352 +54141 0.012678 0.39987 5.455 +54140 0.012227 0.39938 5.6704 +54139 0.012002 0.39898 5.8717 +54138 0.011808 0.39868 6.0731 +54137 0.011802 0.3985 6.2721 +54136 0.01193 0.39843 0.18199 +54135 0.01221 0.39848 0.38223 +54134 0.012634 0.39864 0.5895 +54133 0.013163 0.39892 0.79638 +54132 0.013834 0.39932 1.0184 +54131 0.014631 0.39981 1.2464 +54130 0.015435 0.4004 1.481 +54129 0.016397 0.40108 1.7246 +54128 0.017417 0.40181 1.9756 +54127 0.018397 0.4026 2.2312 +54126 0.019546 0.40341 2.4927 +54125 0.020645 0.40424 2.7582 +54124 0.021784 0.40504 3.0288 +54123 0.022948 0.40582 3.3015 +54122 0.024127 0.40654 3.5755 +54121 0.025311 0.40718 3.8577 +54120 0.026459 0.40774 4.1352 +54119 0.027645 0.40819 4.4185 +54118 0.028835 0.40853 4.7039 +54117 0.029959 0.40874 4.9887 +54116 0.031086 0.40882 5.2761 +54115 0.032276 0.40877 5.5646 +54114 0.033296 0.40859 5.8542 +54113 0.034419 0.40828 6.1451 +54112 0.035459 0.40786 0.15267 +54111 0.036457 0.40734 0.44717 +54110 0.037453 0.40673 0.74036 +54109 0.03839 0.40606 1.0347 +54108 0.039318 0.40534 1.3322 +54107 0.040219 0.4046 1.6279 +54106 0.041013 0.40387 1.9261 +54105 0.041911 0.40317 2.2239 +54104 0.042632 0.40251 2.5232 +54103 0.04336 0.40193 2.8224 +54102 0.044099 0.40143 3.1215 +54101 0.044711 0.40104 3.4222 +54100 0.045324 0.40076 3.7229 +54099 0.045887 0.40062 4.0218 +54098 0.046411 0.4006 4.3238 +54097 0.046879 0.40071 4.6233 +54096 0.047289 0.40095 4.9232 +54095 0.047685 0.4013 5.2229 +54094 0.048036 0.40176 5.5223 +54093 0.048258 0.40229 5.8209 +54092 0.048562 0.40289 6.1187 +54091 0.048728 0.40352 0.13359 +54090 0.048863 0.40416 0.43062 +54089 0.048994 0.40479 0.72683 +54088 0.049054 0.40538 1.0223 +54087 0.04909 0.40592 1.3187 +54086 0.049057 0.40637 1.6121 +54085 0.04904 0.40673 1.9063 +54084 0.048955 0.40699 2.2009 +54083 0.048816 0.40713 2.4928 +54082 0.048682 0.40716 2.7865 +54081 0.048534 0.40707 3.0784 +54080 0.048284 0.40688 3.3709 +54079 0.048079 0.40658 3.6626 +54078 0.047837 0.40619 3.9535 +54077 0.047524 0.40572 4.2456 +54076 0.047244 0.40519 4.5364 +54075 0.046878 0.40462 4.8261 +54074 0.046568 0.40403 5.1185 +54073 0.046135 0.40342 5.4076 +54072 0.045742 0.40284 5.6981 +54071 0.045359 0.40229 5.9887 +54070 0.044875 0.4018 6.2782 +54069 0.044403 0.40137 0.2851 +54068 0.04401 0.40101 0.57341 +54067 0.043453 0.40075 0.86344 +54066 0.042995 0.40057 1.1513 +54065 0.04249 0.40049 1.4384 +54064 0.041969 0.40049 1.7267 +54063 0.041451 0.40058 2.0126 +54062 0.040896 0.40076 2.2978 +54061 0.040382 0.401 2.584 +54060 0.039837 0.40132 2.8673 +54059 0.039237 0.40169 3.1515 +54058 0.038755 0.40212 3.433 +54057 0.038163 0.40258 3.7155 +54056 0.03758 0.40307 3.9957 +54055 0.037075 0.40359 4.2748 +54054 0.036468 0.40411 4.5536 +54053 0.035933 0.40463 4.8318 +54052 0.035344 0.40515 5.1067 +54051 0.034818 0.40565 5.3831 +54050 0.034248 0.40614 5.6579 +54049 0.033682 0.40661 5.9296 +54048 0.033161 0.40705 6.203 +54047 0.032633 0.40747 0.19 +54046 0.03207 0.40785 0.45986 +54045 0.03158 0.40819 0.72782 +54044 0.031101 0.40848 0.99461 +54043 0.030566 0.40871 1.2611 +54042 0.03014 0.40889 1.524 +54041 0.029691 0.40898 1.7867 +54040 0.02927 0.40899 2.0495 +54039 0.028875 0.40891 2.3072 +54038 0.028538 0.40874 2.5656 +54037 0.028214 0.40846 2.8246 +54036 0.027927 0.40807 3.0772 +54035 0.027686 0.40757 3.3335 +54034 0.027526 0.40697 3.586 +54033 0.027344 0.40626 3.8389 +54032 0.027257 0.40545 4.0907 +54031 0.02727 0.40456 4.3425 +54030 0.027222 0.4036 4.5948 +54029 0.027356 0.40257 4.8475 +54028 0.027484 0.40152 5.0991 +54027 0.027691 0.40044 5.3555 +54026 0.027959 0.39939 5.6099 +54025 0.028276 0.39839 5.8661 +54024 0.028685 0.39747 6.1271 +54023 0.029103 0.39666 0.10373 +54022 0.029579 0.39601 0.36608 +54021 0.030201 0.39554 0.63302 +54020 0.030711 0.39528 0.89886 +54019 0.031392 0.39525 1.1688 +54018 0.032093 0.39545 1.4392 +54017 0.032788 0.3959 1.7122 +54016 0.033528 0.39659 1.9872 +54015 0.034338 0.39751 2.2605 +54014 0.035093 0.39863 2.5394 +54013 0.035917 0.39994 2.8161 +54012 0.036705 0.40141 3.0943 +54011 0.03755 0.40299 3.3748 +54010 0.038356 0.40463 3.6546 +54009 0.039131 0.40631 3.935 +54008 0.040008 0.40796 4.2169 +54007 0.040762 0.40954 4.4983 +54006 0.041537 0.41101 4.781 +54005 0.042343 0.41232 5.0629 +54004 0.043069 0.41342 5.3467 +54003 0.043784 0.41429 5.6308 +54002 0.044503 0.4149 5.914 +54001 0.045165 0.41524 6.2003 +54000 0.045824 0.41529 0.20252 +53999 0.046426 0.41506 0.48922 +53998 0.047016 0.41454 0.77666 +53997 0.04762 0.41376 1.0656 +53996 0.048057 0.41273 1.3549 +53995 0.048615 0.41148 1.645 +53994 0.049048 0.41006 1.9371 +53993 0.049418 0.40848 2.2296 +53992 0.049803 0.4068 2.5234 +53991 0.050123 0.40507 2.8178 +53990 0.050366 0.40333 3.1151 +53989 0.050588 0.40163 3.4108 +53988 0.050745 0.40003 3.7093 +53987 0.050875 0.39856 4.0088 +53986 0.050906 0.39727 4.3077 +53985 0.050905 0.39619 4.6084 +53984 0.050904 0.39535 4.9096 +53983 0.050747 0.39476 5.2104 +53982 0.050625 0.39443 5.5127 +53981 0.050444 0.39436 5.8128 +53980 0.050188 0.39454 6.1158 +53979 0.049902 0.39495 0.13277 +53978 0.049586 0.39556 0.43252 +53977 0.049207 0.39636 0.73388 +53976 0.048806 0.39731 1.0318 +53975 0.048304 0.39837 1.3304 +53974 0.047888 0.39952 1.6283 +53973 0.047295 0.40073 1.9245 +53972 0.046745 0.40195 2.2205 +53971 0.046186 0.40317 2.5148 +53970 0.045528 0.40436 2.8089 +53969 0.044883 0.40548 3.1021 +53968 0.044213 0.40653 3.3922 +53967 0.043514 0.40748 3.6847 +53966 0.042782 0.40832 3.9739 +53965 0.042017 0.40905 4.2621 +53964 0.041267 0.40967 4.5508 +53963 0.040485 0.41016 4.8376 +53962 0.039623 0.41053 5.1239 +53961 0.038872 0.41079 5.4087 +53960 0.038015 0.41093 5.6941 +53959 0.037147 0.41097 5.9773 +53958 0.036369 0.41089 6.2598 +53957 0.035479 0.41071 0.25844 +53956 0.03466 0.41043 0.53982 +53955 0.033804 0.41006 0.81843 +53954 0.032975 0.40959 1.0975 +53953 0.032149 0.40904 1.376 +53952 0.03131 0.4084 1.6513 +53951 0.030491 0.40768 1.9276 +53950 0.029741 0.40688 2.2017 +53949 0.028886 0.40603 2.4756 +53948 0.028167 0.40512 2.7469 +53947 0.027437 0.40416 3.0183 +53946 0.026667 0.40318 3.2888 +53945 0.026006 0.4022 3.5572 +53944 0.025333 0.40122 3.8237 +53943 0.024677 0.40029 4.0935 +53942 0.024069 0.39941 4.3565 +53941 0.023489 0.39862 4.6223 +53940 0.022962 0.39795 4.8873 +53939 0.022435 0.39742 5.1487 +53938 0.021953 0.39706 5.4109 +53937 0.021578 0.39688 5.6724 +53936 0.02112 0.39689 5.9308 +53935 0.020784 0.39711 6.1909 +53934 0.020496 0.39754 0.16257 +53933 0.020189 0.39817 0.42157 +53932 0.019947 0.39899 0.67536 +53931 0.019794 0.39998 0.9276 +53930 0.019586 0.4011 1.1836 +53929 0.019507 0.40235 1.433 +53928 0.019385 0.40367 1.6832 +53927 0.019379 0.40503 1.935 +53926 0.019346 0.40638 2.1832 +53925 0.019347 0.40769 2.4313 +53924 0.019461 0.40891 2.6822 +53923 0.019506 0.40999 2.9294 +53922 0.019635 0.41091 3.1804 +53921 0.019829 0.41161 3.4294 +53920 0.020001 0.41208 3.6813 +53919 0.020215 0.4123 3.9349 +53918 0.020503 0.41224 4.1853 +53917 0.020772 0.41192 4.4439 +53916 0.021087 0.41133 4.7008 +53915 0.021406 0.41049 4.9577 +53914 0.02179 0.40943 5.2214 +53913 0.022152 0.40818 5.4856 +53912 0.02252 0.40677 5.7495 +53911 0.022981 0.40527 6.0212 +53910 0.02337 0.40372 0.007603 +53909 0.023808 0.40217 0.28281 +53908 0.024276 0.40068 0.55803 +53907 0.024741 0.3993 0.83695 +53906 0.025162 0.39808 1.1187 +53905 0.025675 0.39708 1.3994 +53904 0.026098 0.39633 1.685 +53903 0.026578 0.39586 1.9716 +53902 0.026993 0.3957 2.258 +53901 0.027437 0.39584 2.5472 +53900 0.027876 0.3963 2.8381 +53899 0.028232 0.39705 3.1281 +53898 0.028642 0.39806 3.42 +53897 0.029051 0.3993 3.7123 +53896 0.029324 0.40072 4.0055 +53895 0.029728 0.40227 4.2976 +53894 0.030019 0.4039 4.5911 +53893 0.030302 0.40553 4.8848 +53892 0.030593 0.40713 5.1782 +53891 0.030815 0.40863 5.4702 +53890 0.031082 0.40998 5.7665 +53889 0.03123 0.41115 6.0583 +53888 0.031419 0.41211 0.069902 +53887 0.031596 0.41281 0.36469 +53886 0.031664 0.41325 0.65912 +53885 0.031747 0.41341 0.95518 +53884 0.031848 0.41329 1.2498 +53883 0.031801 0.41289 1.5482 +53882 0.031804 0.41224 1.8452 +53881 0.031743 0.41134 2.1425 +53880 0.031631 0.41024 2.4441 +53879 0.031495 0.40896 2.7437 +53878 0.031279 0.40755 3.0452 +53877 0.031101 0.40606 3.3498 +53876 0.030791 0.40452 3.6531 +53875 0.030478 0.40299 3.9597 +53874 0.030151 0.40151 4.2666 +53873 0.029747 0.40013 4.5748 +53872 0.029304 0.39886 4.8865 +53871 0.02886 0.39776 5.1943 +53870 0.028378 0.39684 5.509 +53869 0.027826 0.39613 5.8212 +53868 0.027281 0.39563 6.1335 +53867 0.026696 0.39535 0.16552 +53866 0.026104 0.39529 0.48014 +53865 0.02539 0.39545 0.79433 +53864 0.02478 0.39581 1.1096 +53863 0.024059 0.39636 1.4252 +53862 0.023296 0.39708 1.7412 +53861 0.022577 0.39795 2.0564 +53860 0.021795 0.39893 2.3723 +53859 0.020976 0.40001 2.6904 +53858 0.020181 0.40117 3.0048 +53857 0.019317 0.40237 3.3231 +53856 0.018524 0.4036 3.6415 +53855 0.017602 0.40484 3.9596 +53854 0.016755 0.40606 4.2782 +53853 0.015927 0.40725 4.6001 +53852 0.014969 0.40839 4.9209 +53851 0.014144 0.40947 5.2456 +53850 0.013252 0.41047 5.568 +53849 0.012368 0.41137 5.9007 +53848 0.011501 0.41217 6.228 +53847 0.010628 0.41285 0.27887 +53846 0.0098 0.4134 0.62211 +53845 0.008953 0.41379 0.96406 +53844 0.008099 0.41403 1.3209 +53843 0.007377 0.41409 1.681 +53842 0.00658 0.41397 2.0645 +53841 0.005881 0.41366 2.4606 +53840 0.005282 0.41315 2.8716 +53839 0.004742 0.41244 3.3275 +53838 0.00436 0.41154 3.7992 +53837 0.004062 0.41044 4.2943 +53836 0.00405 0.40915 4.8006 +53835 0.004144 0.4077 5.309 +53834 0.004329 0.40611 5.7965 +53833 0.004742 0.40439 6.2401 +53832 0.005137 0.40259 0.39531 +53831 0.005645 0.40076 0.8017 +53830 0.006128 0.39892 1.1882 +53829 0.006651 0.39714 1.5628 +53828 0.007222 0.39547 1.9258 +53827 0.007691 0.39396 2.2811 +53826 0.008243 0.39266 2.6294 +53825 0.008743 0.39161 2.9657 +53824 0.009238 0.39087 3.3114 +53823 0.0097 0.39046 3.6407 +53822 0.010166 0.39042 3.9694 +53821 0.010626 0.39075 4.3026 +53820 0.011041 0.39146 4.6239 +53819 0.011422 0.39255 4.947 +53818 0.011895 0.39399 5.2664 +53817 0.012207 0.39575 5.5841 +53816 0.012584 0.39778 5.8974 +53815 0.012943 0.40003 6.2069 +53814 0.013228 0.40243 0.23375 +53813 0.013532 0.40492 0.54171 +53812 0.013779 0.40742 0.84108 +53811 0.014033 0.40987 1.1477 +53810 0.014258 0.41219 1.4465 +53809 0.014408 0.41431 1.7451 +53808 0.014633 0.41618 2.0421 +53807 0.014781 0.41773 2.34 +53806 0.014856 0.41893 2.6344 +53805 0.015058 0.41975 2.9281 +53804 0.015094 0.42015 3.2227 +53803 0.015191 0.42013 3.5173 +53802 0.015251 0.41969 3.8086 +53801 0.015286 0.41884 4.1025 +53800 0.015328 0.41759 4.3989 +53799 0.015301 0.416 4.6891 +53798 0.015313 0.41409 4.9867 +53797 0.01529 0.41192 5.2815 +53796 0.015212 0.40956 5.578 +53795 0.01515 0.40706 5.8761 +53794 0.01509 0.40452 6.1719 +53793 0.014935 0.402 0.19307 +53792 0.014819 0.39958 0.49001 +53791 0.014667 0.39733 0.79195 +53790 0.014478 0.39533 1.0988 +53789 0.014266 0.39363 1.4 +53788 0.014033 0.39229 1.7047 +53787 0.013824 0.39133 2.0151 +53786 0.013487 0.39077 2.318 +53785 0.013224 0.39063 2.6278 +53784 0.012919 0.3909 2.9337 +53783 0.012554 0.39155 3.2427 +53782 0.012178 0.39255 3.5514 +53781 0.011828 0.39386 3.854 +53780 0.011382 0.39542 4.167 +53779 0.010972 0.39719 4.4708 +53778 0.010488 0.39909 4.7749 +53777 0.010043 0.40106 5.0836 +53776 0.009516 0.40304 5.3871 +53775 0.008957 0.40497 5.6892 +53774 0.008447 0.40679 5.9954 +53773 0.007825 0.40846 0.013749 +53772 0.007179 0.40994 0.32095 +53771 0.006587 0.4112 0.61751 +53770 0.00587 0.41221 0.93077 +53769 0.005171 0.41297 1.2349 +53768 0.004459 0.41346 1.54 +53767 0.003679 0.41369 1.856 +53766 0.002953 0.41367 2.1847 +53765 0.002074 0.41341 2.5121 +53764 0.001329 0.41294 2.9046 +53763 0.000539 0.41227 3.5894 +53762 0.000556 0.41143 5.8611 +53761 0.001336 0.41045 0.21515 +53760 0.002218 0.40936 0.62063 +53759 0.00316 0.4082 0.94762 +53758 0.004044 0.40699 1.292 +53757 0.004977 0.40576 1.6087 +53756 0.005924 0.40455 1.9199 +53755 0.00688 0.40338 2.2459 +53754 0.007846 0.40227 2.5559 +53753 0.00878 0.40125 2.8706 +53752 0.009819 0.40033 3.1856 +53751 0.010769 0.39953 3.4981 +53750 0.011744 0.39885 3.8118 +53749 0.012773 0.3983 4.124 +53748 0.013728 0.3979 4.4355 +53747 0.014734 0.39763 4.7519 +53746 0.015677 0.39752 5.0591 +53745 0.016696 0.39755 5.3737 +53744 0.017633 0.39774 5.6866 +53743 0.018571 0.39807 5.995 +53742 0.019524 0.39855 0.025311 +53741 0.020461 0.39918 0.33488 +53740 0.021309 0.39993 0.64594 +53739 0.022231 0.40081 0.95503 +53738 0.023087 0.4018 1.2647 +53737 0.023891 0.40288 1.5751 +53736 0.024714 0.40402 1.8823 +53735 0.025506 0.40521 2.1901 +53734 0.02626 0.40642 2.5002 +53733 0.026991 0.40762 2.8048 +53732 0.027687 0.40878 3.1127 +53731 0.028426 0.40987 3.4181 +53730 0.02904 0.41087 3.7236 +53729 0.02966 0.41173 4.0272 +53728 0.030336 0.41243 4.3307 +53727 0.030803 0.41294 4.6341 +53726 0.03139 0.41322 4.9357 +53725 0.031855 0.41327 5.2368 +53724 0.032297 0.41306 5.5397 +53723 0.03271 0.41259 5.8399 +53722 0.033042 0.41184 6.1408 +53721 0.033403 0.41084 0.16024 +53720 0.03367 0.40959 0.4607 +53719 0.033877 0.40812 0.76346 +53718 0.034143 0.40646 1.0648 +53717 0.034268 0.40465 1.3685 +53716 0.03438 0.40274 1.672 +53715 0.034511 0.40078 1.9746 +53714 0.034529 0.39884 2.2809 +53713 0.034568 0.39697 2.5859 +53712 0.03452 0.39525 2.8908 +53711 0.034506 0.39373 3.1979 +53710 0.034422 0.39248 3.5052 +53709 0.034259 0.39156 3.8104 +53708 0.03419 0.39101 4.1186 +53707 0.033965 0.39086 4.4244 +53706 0.033767 0.39114 4.7306 +53705 0.033536 0.39185 5.0356 +53704 0.033279 0.39298 5.3391 +53703 0.032961 0.3945 5.6435 +53702 0.032654 0.39638 5.9429 +53701 0.032293 0.39855 6.2432 +53700 0.031941 0.40095 0.25875 +53699 0.031505 0.40351 0.55334 +53698 0.031108 0.40614 0.84751 +53697 0.03069 0.40878 1.1402 +53696 0.030187 0.41133 1.4291 +53695 0.029736 0.41372 1.7179 +53694 0.029281 0.41588 2.0027 +53693 0.028736 0.41775 2.2889 +53692 0.028264 0.41925 2.5697 +53691 0.02775 0.42036 2.8508 +53690 0.027212 0.42103 3.1314 +53689 0.026709 0.42124 3.4085 +53688 0.026126 0.42098 3.6848 +53687 0.025652 0.42026 3.9625 +53686 0.025047 0.41908 4.2365 +53685 0.024499 0.41749 4.5114 +53684 0.023999 0.41553 4.7853 +53683 0.0234 0.41324 5.06 +53682 0.022838 0.4107 5.3334 +53681 0.022351 0.40797 5.6049 +53680 0.021741 0.40513 5.8811 +53679 0.021236 0.40226 6.1525 +53678 0.020695 0.39945 0.14155 +53677 0.020168 0.39677 0.41597 +53676 0.019672 0.39431 0.68737 +53675 0.019128 0.39213 0.95793 +53674 0.018705 0.39031 1.2305 +53673 0.018198 0.3889 1.4991 +53672 0.017746 0.38794 1.7675 +53671 0.017363 0.38745 2.0341 +53670 0.016944 0.38744 2.2969 +53669 0.016561 0.3879 2.5616 +53668 0.016251 0.3888 2.8155 +53667 0.015936 0.39011 3.0742 +53666 0.015647 0.39176 3.3265 +53665 0.015436 0.3937 3.572 +53664 0.015234 0.39587 3.8196 +53663 0.015103 0.3982 4.0627 +53662 0.014967 0.40061 4.298 +53661 0.014967 0.40305 4.5386 +53660 0.014956 0.40545 4.7719 +53659 0.015002 0.40776 5.0053 +53658 0.015145 0.40993 5.239 +53657 0.01535 0.41191 5.4711 +53656 0.015528 0.41367 5.7059 +53655 0.015888 0.41518 5.9389 +53654 0.016222 0.41641 6.1758 +53653 0.016622 0.41736 0.13336 +53652 0.017098 0.418 0.37204 +53651 0.017621 0.41834 0.61738 +53650 0.01817 0.41837 0.86724 +53649 0.018789 0.41812 1.1146 +53648 0.019421 0.41759 1.3705 +53647 0.020148 0.4168 1.6285 +53646 0.020808 0.41579 1.8879 +53645 0.021598 0.41456 2.1518 +53644 0.022379 0.41315 2.4194 +53643 0.023138 0.41159 2.6879 +53642 0.023978 0.40989 2.9619 +53641 0.024803 0.4081 3.2346 +53640 0.025629 0.40625 3.5151 +53639 0.026455 0.40435 3.7935 +53638 0.027307 0.40244 4.0753 +53637 0.028124 0.40057 4.363 +53636 0.028936 0.39876 4.6481 +53635 0.02973 0.39705 4.9382 +53634 0.030572 0.39547 5.2311 +53633 0.031307 0.39407 5.5243 +53632 0.032069 0.39288 5.8203 +53631 0.032887 0.39193 6.1174 +53630 0.033551 0.39124 0.13363 +53629 0.034306 0.39084 0.43388 +53628 0.035003 0.39075 0.73366 +53627 0.03566 0.39097 1.0373 +53626 0.036312 0.39151 1.3393 +53625 0.036926 0.39237 1.6414 +53624 0.03753 0.39353 1.9463 +53623 0.038102 0.39498 2.2481 +53622 0.038585 0.39667 2.552 +53621 0.039154 0.39859 2.8536 +53620 0.039588 0.40068 3.1566 +53619 0.039986 0.40289 3.4576 +53618 0.040443 0.40516 3.7576 +53617 0.040734 0.40744 4.058 +53616 0.041066 0.40967 4.357 +53615 0.041308 0.41178 4.6542 +53614 0.041533 0.41371 4.9524 +53613 0.041707 0.41541 5.2492 +53612 0.041796 0.41684 5.5449 +53611 0.041895 0.41794 5.8407 +53610 0.041946 0.41868 6.1366 +53609 0.041861 0.41904 0.14847 +53608 0.041868 0.419 0.44361 +53607 0.041738 0.41856 0.73889 +53606 0.041581 0.41771 1.0351 +53605 0.041387 0.41647 1.3308 +53604 0.041177 0.41487 1.6265 +53603 0.040886 0.41295 1.926 +53602 0.04056 0.41076 2.2218 +53601 0.040216 0.40836 2.522 +53600 0.039825 0.40581 2.8222 +53599 0.03936 0.4032 3.1225 +53598 0.038877 0.40061 3.4255 +53597 0.0384 0.39812 3.728 +53596 0.037784 0.39582 4.033 +53595 0.037219 0.39377 4.3383 +53594 0.036592 0.39207 4.6429 +53593 0.035927 0.39076 4.9511 +53592 0.035246 0.38988 5.257 +53591 0.034504 0.38947 5.5626 +53590 0.033813 0.38955 5.8706 +53589 0.033002 0.39012 6.1746 +53588 0.032213 0.39114 0.19644 +53587 0.031449 0.3926 0.4994 +53586 0.03059 0.39442 0.80092 +53585 0.029727 0.39654 1.1012 +53584 0.028938 0.3989 1.3967 +53583 0.028024 0.4014 1.6946 +53582 0.02717 0.40397 1.9859 +53581 0.026286 0.40651 2.2759 +53580 0.025397 0.40894 2.5641 +53579 0.024529 0.41119 2.8496 +53578 0.023567 0.4132 3.1306 +53577 0.022734 0.4149 3.4116 +53576 0.021809 0.41625 3.6887 +53575 0.020877 0.41721 3.964 +53574 0.020041 0.41776 4.2356 +53573 0.019141 0.4179 4.5068 +53572 0.018245 0.41762 4.7747 +53571 0.017438 0.41694 5.0382 +53570 0.016568 0.41588 5.3013 +53569 0.015789 0.41448 5.5631 +53568 0.014971 0.41278 5.8162 +53567 0.014251 0.41084 6.0723 +53566 0.013535 0.40871 0.040392 +53565 0.012854 0.40646 0.28395 +53564 0.01223 0.40416 0.52972 +53563 0.011705 0.40189 0.7658 +53562 0.011129 0.39971 1.0021 +53561 0.01072 0.39769 1.2291 +53560 0.010348 0.39588 1.4542 +53559 0.009991 0.39435 1.6778 +53558 0.009782 0.39313 1.8924 +53557 0.009628 0.39225 2.1056 +53556 0.009512 0.39173 2.3265 +53555 0.009526 0.39157 2.532 +53554 0.009592 0.39177 2.7498 +53553 0.00971 0.39232 2.9703 +53552 0.009925 0.39318 3.1859 +53551 0.010152 0.39433 3.4129 +53550 0.010509 0.39573 3.6431 +53549 0.010805 0.39733 3.875 +53548 0.01121 0.3991 4.113 +53547 0.01167 0.40098 4.3575 +53546 0.01206 0.40293 4.6019 +53545 0.012567 0.40488 4.8553 +53544 0.013079 0.4068 5.1057 +53543 0.013573 0.40865 5.3674 +53542 0.014104 0.41037 5.6256 +53541 0.014678 0.41194 5.8867 +53540 0.015207 0.41332 6.1562 +53539 0.015793 0.41449 0.13771 +53538 0.016338 0.41544 0.40664 +53537 0.016961 0.41614 0.6812 +53536 0.017493 0.41659 0.95202 +53535 0.018082 0.41677 1.2281 +53534 0.018699 0.4167 1.5052 +53533 0.019253 0.41635 1.7832 +53532 0.019806 0.41575 2.0644 +53531 0.020435 0.4149 2.3429 +53530 0.020947 0.4138 2.6286 +53529 0.021506 0.41247 2.9121 +53528 0.022018 0.41093 3.1966 +53527 0.022536 0.40921 3.4865 +53526 0.023015 0.40733 3.7765 +53525 0.023446 0.40533 4.0666 +53524 0.02394 0.40325 4.3633 +53523 0.024339 0.40113 4.6583 +53522 0.024723 0.39902 4.9575 +53521 0.025158 0.39697 5.2571 +53520 0.025505 0.39503 5.5605 +53519 0.025838 0.39325 5.865 +53518 0.026215 0.39168 6.17 +53517 0.026481 0.39037 0.19498 +53516 0.026816 0.38936 0.50443 +53515 0.027037 0.38869 0.81388 +53514 0.027304 0.38839 1.1248 +53513 0.027554 0.3885 1.4381 +53512 0.027673 0.38901 1.749 +53511 0.027891 0.38994 2.0621 +53510 0.028013 0.39127 2.3747 +53509 0.028073 0.39298 2.6875 +53508 0.02815 0.39503 2.9993 +53507 0.028173 0.39736 3.31 +53506 0.028135 0.39992 3.6239 +53505 0.028082 0.40264 3.9321 +53504 0.02798 0.40545 4.2431 +53503 0.027874 0.40828 4.5541 +53502 0.027691 0.41104 4.862 +53501 0.027484 0.41367 5.171 +53500 0.027322 0.4161 5.4795 +53499 0.026992 0.41826 5.7872 +53498 0.026749 0.42009 6.0956 +53497 0.026436 0.42153 0.11792 +53496 0.026091 0.42256 0.42778 +53495 0.025711 0.42313 0.73491 +53494 0.02532 0.42322 1.0411 +53493 0.024905 0.42283 1.3532 +53492 0.024447 0.42195 1.6605 +53491 0.023936 0.4206 1.9721 +53490 0.023473 0.41881 2.2843 +53489 0.022891 0.41662 2.5984 +53488 0.022314 0.41408 2.9153 +53487 0.021743 0.41128 3.2332 +53486 0.02111 0.40825 3.5557 +53485 0.020481 0.40511 3.8823 +53484 0.019825 0.40193 4.2067 +53483 0.019199 0.3988 4.5417 +53482 0.018531 0.39581 4.8764 +53481 0.017852 0.39306 5.2143 +53480 0.017208 0.39061 5.557 +53479 0.01659 0.38855 5.9033 +53478 0.015863 0.38694 6.2548 +53477 0.015298 0.38583 0.322 +53476 0.014661 0.38526 0.6812 +53475 0.014037 0.38523 1.0426 +53474 0.013489 0.38575 1.4036 +53473 0.012898 0.3868 1.7717 +53472 0.012414 0.38832 2.1435 +53471 0.011869 0.39026 2.5151 +53470 0.011416 0.39255 2.8935 +53469 0.011035 0.39511 3.273 +53468 0.010619 0.39786 3.66 +53467 0.010343 0.40071 4.0473 +53466 0.010095 0.40358 4.4324 +53465 0.009953 0.40638 4.8311 +53464 0.009841 0.40906 5.2168 +53463 0.009822 0.41153 5.6054 +53462 0.00991 0.41375 5.9941 +53461 0.010004 0.41566 0.089543 +53460 0.010156 0.41722 0.47076 +53459 0.010414 0.41841 0.83548 +53458 0.010657 0.41921 1.2084 +53457 0.01095 0.4196 1.5669 +53456 0.011276 0.41959 1.9202 +53455 0.011612 0.4192 2.2738 +53454 0.012003 0.41844 2.6193 +53453 0.012297 0.41734 2.962 +53452 0.012724 0.41595 3.3003 +53451 0.013091 0.4143 3.637 +53450 0.013419 0.41244 3.9735 +53449 0.013811 0.41042 4.3016 +53448 0.014191 0.4083 4.6335 +53447 0.014516 0.40612 4.9649 +53446 0.014893 0.40395 5.2873 +53445 0.015217 0.40182 5.6166 +53444 0.015597 0.39981 5.9404 +53443 0.015877 0.39794 6.264 +53442 0.016206 0.39628 0.30251 +53441 0.01655 0.39484 0.62427 +53440 0.016768 0.39368 0.9441 +53439 0.017084 0.3928 1.2637 +53438 0.017305 0.39224 1.5794 +53437 0.01754 0.392 1.8995 +53436 0.017732 0.39207 2.2142 +53435 0.017897 0.39245 2.5279 +53434 0.018103 0.39313 2.8455 +53433 0.01821 0.39408 3.157 +53432 0.018318 0.39527 3.4695 +53431 0.018506 0.39667 3.7806 +53430 0.018541 0.39824 4.0912 +53429 0.018626 0.39994 4.3995 +53428 0.018739 0.40173 4.7053 +53427 0.018738 0.40356 5.013 +53426 0.018814 0.4054 5.3168 +53425 0.01879 0.4072 5.6185 +53424 0.018821 0.40892 5.9217 +53423 0.018796 0.41051 6.2231 +53422 0.018709 0.41194 0.23688 +53421 0.018717 0.41316 0.53798 +53420 0.018592 0.41415 0.83371 +53419 0.018482 0.41487 1.1323 +53418 0.018368 0.41532 1.4264 +53417 0.018218 0.41548 1.7229 +53416 0.018001 0.41533 2.0205 +53415 0.017822 0.41489 2.3122 +53414 0.017568 0.41416 2.6107 +53413 0.017323 0.41315 2.9075 +53412 0.017006 0.41188 3.2021 +53411 0.016721 0.41038 3.5018 +53410 0.016397 0.40868 3.7996 +53409 0.016013 0.40682 4.099 +53408 0.015637 0.40485 4.4 +53407 0.015273 0.40281 4.6991 +53406 0.014797 0.40075 5.0063 +53405 0.014379 0.39876 5.3048 +53404 0.013906 0.39687 5.6103 +53403 0.013409 0.39516 5.9173 +53402 0.012884 0.39369 6.2198 +53401 0.012313 0.3925 0.24051 +53400 0.011794 0.39165 0.54972 +53399 0.011111 0.39116 0.85061 +53398 0.010495 0.39105 1.1554 +53397 0.009849 0.39135 1.4572 +53396 0.009093 0.39204 1.7592 +53395 0.008369 0.39311 2.0574 +53394 0.007626 0.39452 2.3481 +53393 0.006791 0.39625 2.6454 +53392 0.006004 0.39823 2.9255 +53391 0.005129 0.40042 3.1967 +53390 0.004295 0.40275 3.4614 +53389 0.003429 0.40515 3.694 +53388 0.002526 0.40756 3.8588 +53387 0.001807 0.40991 3.9356 +53386 0.001215 0.41212 3.662 +53385 0.00135 0.41414 3.1819 +53384 0.002009 0.4159 3.0552 +53383 0.002919 0.41735 3.1424 +53382 0.00385 0.41845 3.3302 +53381 0.004898 0.41917 3.5833 +53380 0.00589 0.41947 3.8334 +53379 0.006947 0.41936 4.1065 +53378 0.008051 0.41883 4.3901 +53377 0.009117 0.4179 4.6722 +53376 0.010194 0.41658 4.963 +53375 0.011369 0.41492 5.2513 +53374 0.01242 0.41294 5.5483 +53373 0.013565 0.4107 5.8437 +53372 0.014676 0.40826 6.1387 +53371 0.015793 0.40566 0.15918 +53370 0.016892 0.403 0.46045 +53369 0.017977 0.40033 0.7612 +53368 0.019097 0.39773 1.0704 +53367 0.020147 0.39528 1.3746 +53366 0.021183 0.39305 1.6845 +53365 0.022257 0.39111 1.9935 +53364 0.023241 0.38952 2.3053 +53363 0.02422 0.38833 2.6183 +53362 0.025217 0.38758 2.9305 +53361 0.026141 0.38729 3.2447 +53360 0.027096 0.38746 3.5604 +53359 0.027963 0.38809 3.8724 +53358 0.028895 0.38916 4.1873 +53357 0.02975 0.39063 4.5007 +53356 0.030576 0.39247 4.8117 +53355 0.031412 0.3946 5.1231 +53354 0.032227 0.39698 5.432 +53353 0.032928 0.39953 5.741 +53352 0.033697 0.4022 6.0459 +53351 0.034401 0.40489 0.068105 +53350 0.035002 0.40755 0.37209 +53349 0.03566 0.41011 0.67261 +53348 0.036196 0.41251 0.97319 +53347 0.036755 0.41469 1.273 +53346 0.037217 0.4166 1.5704 +53345 0.037643 0.41819 1.8673 +53344 0.03811 0.41945 2.164 +53343 0.038401 0.42035 2.4592 +53342 0.038752 0.42085 2.7546 +53341 0.039066 0.42097 3.048 +53340 0.039266 0.4207 3.3438 +53339 0.03949 0.42004 3.6371 +53338 0.039675 0.41902 3.9306 +53337 0.039782 0.41766 4.2265 +53336 0.039916 0.41599 4.5196 +53335 0.039922 0.41404 4.8147 +53334 0.040026 0.41185 5.1103 +53333 0.039967 0.40948 5.406 +53332 0.039927 0.40698 5.7024 +53331 0.03991 0.40441 5.9994 +53330 0.039766 0.40183 0.013776 +53329 0.039648 0.3993 0.31313 +53328 0.03949 0.39688 0.61035 +53327 0.039301 0.39464 0.9114 +53326 0.03908 0.39264 1.2116 +53325 0.038805 0.39091 1.5111 +53324 0.038579 0.38951 1.8127 +53323 0.038262 0.38848 2.1141 +53322 0.037907 0.38784 2.4138 +53321 0.037644 0.3876 2.7156 +53320 0.037247 0.38779 3.0149 +53319 0.036887 0.38839 3.3147 +53318 0.036512 0.38938 3.6122 +53317 0.036132 0.39075 3.909 +53316 0.03569 0.39245 4.2055 +53315 0.035301 0.39443 4.4974 +53314 0.034848 0.39665 4.7902 +53313 0.034425 0.39903 5.08 +53312 0.033942 0.40152 5.3673 +53311 0.033472 0.40405 5.653 +53310 0.033044 0.40657 5.9371 +53309 0.032481 0.409 6.2186 +53308 0.032022 0.4113 0.21488 +53307 0.031538 0.41341 0.49254 +53306 0.030972 0.41528 0.76942 +53305 0.030488 0.41687 1.0431 +53304 0.029968 0.41816 1.3155 +53303 0.029432 0.4191 1.589 +53302 0.028925 0.41968 1.8571 +53301 0.028385 0.41988 2.1269 +53300 0.027911 0.4197 2.3955 +53299 0.027385 0.41915 2.6621 +53298 0.026851 0.41823 2.9279 +53297 0.026461 0.41696 3.1939 +53296 0.02589 0.41538 3.4586 +53295 0.025471 0.41352 3.7228 +53294 0.025034 0.41144 3.9853 +53293 0.02458 0.40919 4.2494 +53292 0.024165 0.40682 4.512 +53291 0.023781 0.4044 4.7712 +53290 0.023394 0.40199 5.0359 +53289 0.023048 0.39966 5.2941 +53288 0.022697 0.39747 5.5534 +53287 0.022431 0.39548 5.8144 +53286 0.022138 0.39373 6.0707 +53285 0.021895 0.39228 0.045306 +53284 0.021729 0.39117 0.30213 +53283 0.021574 0.39043 0.55655 +53282 0.021437 0.39007 0.81365 +53281 0.021443 0.39012 1.064 +53280 0.021417 0.39056 1.3203 +53279 0.021474 0.39138 1.5722 +53278 0.021629 0.39256 1.823 +53277 0.021793 0.39405 2.0762 +53276 0.022069 0.3958 2.3292 +53275 0.022354 0.39777 2.5784 +53274 0.022779 0.39987 2.8332 +53273 0.023208 0.40206 3.0858 +53272 0.023696 0.40427 3.3385 +53271 0.0243 0.40642 3.5942 +53270 0.024919 0.40847 3.8494 +53269 0.025548 0.41036 4.1068 +53268 0.02632 0.41205 4.3643 +53267 0.027056 0.41349 4.6243 +53266 0.027833 0.41465 4.8862 +53265 0.028676 0.41551 5.1481 +53264 0.029507 0.41605 5.4126 +53263 0.030389 0.41626 5.6808 +53262 0.031229 0.41614 5.9471 +53261 0.03216 0.4157 6.2182 +53260 0.033044 0.41494 0.20842 +53259 0.033926 0.4139 0.48115 +53258 0.034831 0.41259 0.75931 +53257 0.035755 0.41105 1.037 +53256 0.036598 0.40933 1.319 +53255 0.037496 0.40747 1.6015 +53254 0.038387 0.40553 1.8867 +53253 0.039195 0.40356 2.175 +53252 0.040061 0.40162 2.464 +53251 0.040855 0.39976 2.7548 +53250 0.041685 0.39804 3.0498 +53249 0.042423 0.39651 3.3435 +53248 0.043165 0.39521 3.6404 +53247 0.043952 0.39418 3.9387 +53246 0.044601 0.39345 4.2375 +53245 0.045264 0.39303 4.5373 +53244 0.045987 0.39295 4.8373 +53243 0.046498 0.39321 5.1385 +53242 0.047128 0.39378 5.4388 +53241 0.047624 0.39467 5.7389 +53240 0.048109 0.39584 6.0402 +53239 0.04855 0.39725 0.056608 +53238 0.048903 0.39886 0.35544 +53237 0.049283 0.40063 0.65527 +53236 0.04956 0.4025 0.95254 +53235 0.049764 0.40443 1.2503 +53234 0.050023 0.40635 1.546 +53233 0.050125 0.40822 1.8422 +53232 0.050208 0.40999 2.1368 +53231 0.050293 0.41161 2.4302 +53230 0.050258 0.41304 2.7239 +53229 0.050234 0.41424 3.0166 +53228 0.050105 0.41518 3.3076 +53227 0.049999 0.41583 3.5993 +53226 0.049803 0.41618 3.8907 +53225 0.049545 0.41621 4.1801 +53224 0.049314 0.41591 4.4712 +53223 0.048988 0.41531 4.7609 +53222 0.048623 0.4144 5.0513 +53221 0.048232 0.4132 5.3413 +53220 0.047835 0.41175 5.6312 +53219 0.047319 0.41007 5.9231 +53218 0.046847 0.40821 6.2127 +53217 0.046309 0.4062 0.22122 +53216 0.045746 0.4041 0.51387 +53215 0.045141 0.40197 0.80516 +53214 0.044525 0.39985 1.0979 +53213 0.043913 0.39781 1.392 +53212 0.043197 0.39591 1.6842 +53211 0.042538 0.39419 1.9789 +53210 0.041855 0.39273 2.2718 +53209 0.041098 0.39155 2.5664 +53208 0.040383 0.39071 2.8595 +53207 0.039654 0.39022 3.1517 +53206 0.038876 0.39012 3.4453 +53205 0.038157 0.39041 3.7358 +53204 0.037347 0.39107 4.025 +53203 0.036651 0.3921 4.3147 +53202 0.035839 0.39348 4.6005 +53201 0.035075 0.39515 4.8851 +53200 0.034377 0.39707 5.1679 +53199 0.033582 0.39919 5.4483 +53198 0.032833 0.40146 5.7266 +53197 0.03219 0.40381 6.0009 +53196 0.031413 0.40619 6.2757 +53195 0.030773 0.40853 0.26243 +53194 0.030101 0.41077 0.52994 +53193 0.029469 0.41287 0.79648 +53192 0.02887 0.41475 1.0604 +53191 0.028247 0.41639 1.3199 +53190 0.02775 0.41773 1.5813 +53189 0.027198 0.41873 1.8378 +53188 0.026699 0.41939 2.0941 +53187 0.026289 0.41967 2.3489 +53186 0.025868 0.41958 2.6021 +53185 0.025459 0.41912 2.8561 +53184 0.025175 0.41829 3.1061 +53183 0.024857 0.41713 3.3593 +53182 0.02458 0.41566 3.6109 +53181 0.024383 0.41392 3.8609 +53180 0.024175 0.41193 4.1138 +53179 0.024042 0.40977 4.3668 +53178 0.02389 0.40747 4.6181 +53177 0.023833 0.40508 4.8738 +53176 0.023784 0.40267 5.1287 +53175 0.023744 0.40029 5.3849 +53174 0.02376 0.398 5.6432 +53173 0.023859 0.39587 5.902 +53172 0.023857 0.39395 6.1643 +53171 0.02403 0.39229 0.14135 +53170 0.024168 0.39094 0.40614 +53169 0.024313 0.38993 0.6718 +53168 0.024548 0.38929 0.93695 +53167 0.024775 0.38903 1.2038 +53166 0.025045 0.38917 1.4747 +53165 0.025332 0.38968 1.7411 +53164 0.025653 0.39055 2.0122 +53163 0.026036 0.39175 2.2835 +53162 0.02637 0.39324 2.5533 +53161 0.026793 0.39498 2.8251 +53160 0.027249 0.39692 3.097 +53159 0.027651 0.399 3.3681 +53158 0.028145 0.40119 3.6415 +53157 0.028633 0.40341 3.9109 +53156 0.029125 0.40562 4.1859 +53155 0.029617 0.40778 4.4566 +53154 0.030152 0.40984 4.7282 +53153 0.030647 0.41174 5.0032 +53152 0.031173 0.41346 5.2746 +53151 0.031649 0.41495 5.5487 +53150 0.032221 0.41618 5.8237 +53149 0.032672 0.41714 6.0985 +53148 0.033171 0.4178 0.091491 +53147 0.033725 0.41815 0.36801 +53146 0.034155 0.41818 0.64641 +53145 0.034652 0.41791 0.9259 +53144 0.035133 0.41732 1.2044 +53143 0.035576 0.41645 1.4874 +53142 0.036019 0.4153 1.7699 +53141 0.036427 0.41391 2.053 +53140 0.036854 0.4123 2.3402 +53139 0.037241 0.4105 2.6268 +53138 0.037556 0.40857 2.9159 +53137 0.037965 0.40654 3.206 +53136 0.038249 0.40446 3.499 +53135 0.038502 0.40238 3.7921 +53134 0.038835 0.40036 4.0875 +53133 0.039001 0.39845 4.3844 +53132 0.039234 0.39668 4.6831 +53131 0.039366 0.39512 4.9819 +53130 0.03951 0.3938 5.2827 +53129 0.039592 0.39276 5.5853 +53128 0.039615 0.39202 5.8868 +53127 0.039629 0.39162 6.1908 +53126 0.039617 0.39156 0.21138 +53125 0.039474 0.39184 0.51551 +53124 0.039385 0.39246 0.81961 +53123 0.039223 0.39339 1.1235 +53122 0.038966 0.39462 1.4281 +53121 0.038715 0.3961 1.731 +53120 0.038431 0.39779 2.0329 +53119 0.038055 0.39964 2.3374 +53118 0.037673 0.4016 2.6362 +53117 0.037239 0.40361 2.9377 +53116 0.036786 0.40561 3.2372 +53115 0.036257 0.40755 3.5348 +53114 0.03568 0.40937 3.8327 +53113 0.035161 0.41103 4.1286 +53112 0.034454 0.41248 4.4246 +53111 0.033823 0.41369 4.7195 +53110 0.03313 0.41462 5.0122 +53109 0.032387 0.41524 5.3075 +53108 0.031625 0.41556 5.5996 +53107 0.030825 0.41555 5.8905 +53106 0.030026 0.41522 6.1848 +53105 0.029159 0.41458 0.19129 +53104 0.028257 0.41365 0.48327 +53103 0.027399 0.41245 0.77455 +53102 0.026445 0.41102 1.0657 +53101 0.025475 0.40941 1.3575 +53100 0.024572 0.40766 1.6473 +53099 0.023547 0.40583 1.9403 +53098 0.022581 0.40398 2.2306 +53097 0.021582 0.40216 2.5202 +53096 0.020586 0.40043 2.8103 +53095 0.019609 0.39886 3.1008 +53094 0.01854 0.39748 3.3848 +53093 0.017608 0.39633 3.6723 +53092 0.01659 0.39546 3.9553 +53091 0.015573 0.39488 4.2344 +53090 0.014643 0.39462 4.5108 +53089 0.013694 0.39467 4.7826 +53088 0.012719 0.39503 5.0497 +53087 0.011896 0.39569 5.3061 +53086 0.011001 0.39661 5.5582 +53085 0.010216 0.39776 5.8016 +53084 0.009469 0.39911 6.0271 +53083 0.008792 0.4006 6.2459 +53082 0.008209 0.40218 0.17082 +53081 0.00771 0.4038 0.35536 +53080 0.007315 0.4054 0.53841 +53079 0.007113 0.40693 0.70853 +53078 0.006922 0.40837 0.87118 +53077 0.006972 0.40965 1.0363 +53076 0.007111 0.41075 1.2085 +53075 0.007294 0.41165 1.3845 +53074 0.007642 0.41231 1.576 +53073 0.008059 0.41274 1.7755 +53072 0.00842 0.41293 1.9916 +53071 0.008958 0.41286 2.211 +53070 0.009434 0.41256 2.445 +53069 0.009924 0.41204 2.6868 +53068 0.010462 0.4113 2.9334 +53067 0.010952 0.41039 3.1842 +53066 0.01149 0.40931 3.4491 +53065 0.011953 0.4081 3.7069 +53064 0.012453 0.40681 3.9746 +53063 0.012949 0.40545 4.2481 +53062 0.013368 0.40408 4.5178 +53061 0.013808 0.40272 4.7959 +53060 0.01428 0.40141 5.0729 +53059 0.014628 0.40018 5.3551 +53058 0.015029 0.39906 5.636 +53057 0.015439 0.39808 5.9188 +53056 0.015736 0.39726 6.2067 +53055 0.016113 0.39661 0.20829 +53054 0.016398 0.39614 0.49441 +53053 0.016723 0.39587 0.7858 +53052 0.016987 0.3958 1.0727 +53051 0.017237 0.39592 1.3624 +53050 0.017511 0.39624 1.6542 +53049 0.017732 0.39675 1.9435 +53048 0.017905 0.39743 2.2363 +53047 0.018177 0.39827 2.5242 +53046 0.018318 0.39925 2.8186 +53045 0.018482 0.40036 3.1086 +53044 0.018671 0.40156 3.3972 +53043 0.018788 0.40285 3.6897 +53042 0.018921 0.40419 3.98 +53041 0.018998 0.40556 4.2665 +53040 0.019106 0.40694 4.5589 +53039 0.019151 0.40829 4.8467 +53038 0.019158 0.40959 5.1357 +53037 0.019216 0.41081 5.4246 +53036 0.0192 0.41193 5.7138 +53035 0.019138 0.41292 6.0029 +53034 0.019148 0.41374 0.008132 +53033 0.019038 0.41439 0.29684 +53032 0.018983 0.41482 0.58873 +53031 0.01884 0.41503 0.87578 +53030 0.01874 0.415 1.1666 +53029 0.018585 0.41473 1.4604 +53028 0.01839 0.4142 1.7481 +53027 0.018218 0.41342 2.0434 +53026 0.018019 0.41239 2.3356 +53025 0.017742 0.41113 2.6307 +53024 0.017503 0.40967 2.9257 +53023 0.017236 0.40802 3.221 +53022 0.016875 0.40622 3.5216 +53021 0.016565 0.40432 3.8187 +53020 0.016172 0.40236 4.1188 +53019 0.015782 0.40038 4.4241 +53018 0.015333 0.39845 4.7262 +53017 0.014849 0.39661 5.0312 +53016 0.014407 0.39494 5.3414 +53015 0.013811 0.39346 5.6485 +53014 0.013262 0.39225 5.961 +53013 0.012704 0.39135 6.2716 +53012 0.012039 0.39078 0.30594 +53011 0.011375 0.39059 0.62128 +53010 0.010742 0.39077 0.93485 +53009 0.009979 0.39134 1.262 +53008 0.009279 0.39228 1.5778 +53007 0.00849 0.39356 1.9025 +53006 0.007737 0.39516 2.2299 +53005 0.006934 0.39703 2.5601 +53004 0.006069 0.39911 2.8945 +53003 0.005296 0.40133 3.2387 +53002 0.004417 0.40366 3.5957 +53001 0.003563 0.406 3.9878 +53000 0.002759 0.40829 4.399 +52999 0.002001 0.41048 4.9518 +52998 0.001461 0.4125 5.7166 +52997 0.001399 0.41429 0.4125 +52996 0.001952 0.4158 1.2051 +52995 0.002741 0.417 1.7405 +52994 0.003677 0.41785 2.201 +52993 0.004571 0.41834 2.5647 +52992 0.005569 0.41845 2.9213 +52991 0.006578 0.41819 3.2581 +52990 0.007546 0.41757 3.5818 +52989 0.008531 0.41661 3.9066 +52988 0.009558 0.41535 4.2161 +52987 0.010512 0.41382 4.5367 +52986 0.011499 0.41208 4.8478 +52985 0.012446 0.41017 5.1571 +52984 0.013433 0.40815 5.4728 +52983 0.014366 0.40608 5.7836 +52982 0.015252 0.40403 6.0941 +52981 0.016238 0.40205 0.12479 +52980 0.01708 0.40019 0.43643 +52979 0.017951 0.39851 0.74974 +52978 0.018829 0.39706 1.0621 +52977 0.019632 0.39586 1.3755 +52976 0.020444 0.39494 1.6911 +52975 0.021204 0.39432 2.0015 +52974 0.021976 0.39399 2.3171 +52973 0.022695 0.39397 2.6298 +52972 0.023381 0.39421 2.9411 +52971 0.024038 0.39472 3.2534 +52970 0.02472 0.39544 3.5632 +52969 0.025238 0.39634 3.8742 +52968 0.025843 0.39739 4.1809 +52967 0.026377 0.39855 4.4893 +52966 0.026809 0.39977 4.7966 +52965 0.027279 0.40103 5.1007 +52964 0.027674 0.40227 5.4048 +52963 0.028033 0.40348 5.7106 +52962 0.028343 0.40463 6.0105 +52961 0.028615 0.40568 0.030245 +52960 0.028894 0.40664 0.33127 +52959 0.029057 0.40747 0.63106 +52958 0.029225 0.40818 0.93062 +52957 0.02942 0.40876 1.2291 +52956 0.029456 0.40922 1.5274 +52955 0.02958 0.40955 1.8249 +52954 0.029597 0.40977 2.1197 +52953 0.029626 0.40988 2.4176 +52952 0.029591 0.40989 2.7118 +52951 0.029533 0.40982 3.005 +52950 0.029482 0.40967 3.301 +52949 0.029352 0.40945 3.5926 +52948 0.029183 0.40916 3.8856 +52947 0.02909 0.40881 4.1773 +52946 0.028838 0.40841 4.469 +52945 0.028634 0.40795 4.7595 +52944 0.028421 0.40744 5.0489 +52943 0.028127 0.40689 5.3387 +52942 0.027874 0.40629 5.6285 +52941 0.027532 0.40566 5.9145 +52940 0.02725 0.40499 6.2037 +52939 0.026898 0.4043 0.2081 +52938 0.026519 0.40359 0.49284 +52937 0.026202 0.40288 0.78067 +52936 0.025819 0.40218 1.0653 +52935 0.025414 0.4015 1.351 +52934 0.025075 0.40086 1.6339 +52933 0.024694 0.40029 1.918 +52932 0.024263 0.3998 2.2012 +52931 0.023936 0.39941 2.4807 diff --git a/genie-paleo/fkl_pp30/orbits_La2004_57.93_52.91Ma_new.dat b/genie-paleo/fkl_pp30/orbits_La2004_57.93_52.91Ma_new.dat new file mode 100644 index 000000000..36c648b59 --- /dev/null +++ b/genie-paleo/fkl_pp30/orbits_La2004_57.93_52.91Ma_new.dat @@ -0,0 +1,5000 @@ +57930 0.020588 0.4051 3.1923 +57929 0.020354 0.4056 3.4941 +57928 0.020078 0.40604 3.7958 +57927 0.019799 0.4064 4.1025 +57926 0.019438 0.40669 4.403 +57925 0.019085 0.40688 4.7088 +57924 0.018735 0.40699 5.0136 +57923 0.018257 0.40701 5.3193 +57922 0.017837 0.40695 5.625 +57921 0.017404 0.4068 5.9318 +57920 0.016841 0.40659 6.241 +57919 0.016378 0.4063 0.26624 +57918 0.015815 0.40596 0.57388 +57917 0.01528 0.40556 0.8887 +57916 0.014696 0.40512 1.1976 +57915 0.014098 0.40465 1.5102 +57914 0.01352 0.40415 1.8256 +57913 0.012883 0.40364 2.1389 +57912 0.01221 0.40311 2.4578 +57911 0.011626 0.40259 2.7726 +57910 0.010909 0.40208 3.0973 +57909 0.010251 0.40159 3.4199 +57908 0.009585 0.40112 3.7417 +57907 0.008913 0.40069 4.076 +57906 0.008222 0.40031 4.4119 +57905 0.007523 0.39998 4.7421 +57904 0.006901 0.39973 5.098 +57903 0.006204 0.39954 5.4487 +57902 0.005551 0.39945 5.818 +57901 0.00496 0.39945 6.2014 +57900 0.004382 0.39956 0.31946 +57899 0.003857 0.39977 0.76515 +57898 0.003439 0.40011 1.2124 +57897 0.00313 0.40055 1.7227 +57896 0.00298 0.40111 2.2538 +57895 0.00293 0.40178 2.7866 +57894 0.003088 0.40254 3.3154 +57893 0.003366 0.40338 3.794 +57892 0.003721 0.40429 4.2735 +57891 0.004134 0.40524 4.6855 +57890 0.004597 0.40621 5.0821 +57889 0.005121 0.40718 5.4673 +57888 0.0056 0.4081 5.8218 +57887 0.006081 0.40897 6.1733 +57886 0.006655 0.40975 0.22314 +57885 0.007093 0.41041 0.55852 +57884 0.00761 0.41094 0.88042 +57883 0.008091 0.4113 1.196 +57882 0.008556 0.41149 1.5121 +57881 0.00904 0.41149 1.825 +57880 0.00943 0.41129 2.1251 +57879 0.009929 0.41089 2.4344 +57878 0.010321 0.4103 2.7345 +57877 0.010692 0.40952 3.0339 +57876 0.011129 0.40857 3.3318 +57875 0.011487 0.40747 3.6295 +57874 0.011809 0.40626 3.9271 +57873 0.012206 0.40496 4.22 +57872 0.012506 0.40361 4.5165 +57871 0.012856 0.40224 4.8138 +57870 0.013149 0.40091 5.1042 +57869 0.013484 0.39964 5.4011 +57868 0.013791 0.39847 5.6965 +57867 0.014083 0.39744 5.988 +57866 0.014376 0.39659 0.001597 +57865 0.014725 0.39594 0.29262 +57864 0.014964 0.39551 0.58974 +57863 0.015285 0.39532 0.87971 +57862 0.015605 0.39536 1.1729 +57861 0.015847 0.39565 1.4675 +57860 0.016169 0.39616 1.7564 +57859 0.016431 0.39688 2.047 +57858 0.01673 0.39779 2.3408 +57857 0.016973 0.39885 2.6277 +57856 0.017242 0.40003 2.9171 +57855 0.017546 0.40129 3.2079 +57854 0.017754 0.40259 3.4943 +57853 0.018016 0.40391 3.7833 +57852 0.018303 0.40518 4.0689 +57851 0.018502 0.40639 4.3573 +57850 0.018747 0.4075 4.6432 +57849 0.018992 0.40847 4.927 +57848 0.019175 0.4093 5.2155 +57847 0.019411 0.40997 5.4998 +57846 0.019552 0.41046 5.784 +57845 0.019796 0.41077 6.0718 +57844 0.019917 0.4109 0.074171 +57843 0.020065 0.41086 0.35871 +57842 0.020262 0.41066 0.64727 +57841 0.020341 0.41031 0.93176 +57840 0.020467 0.40984 1.2212 +57839 0.020581 0.40925 1.5054 +57838 0.020647 0.40858 1.7946 +57837 0.020701 0.40785 2.083 +57836 0.02074 0.40708 2.3686 +57835 0.020756 0.40629 2.6584 +57834 0.020758 0.40551 2.9474 +57833 0.020679 0.40475 3.2338 +57832 0.020672 0.40403 3.524 +57831 0.020578 0.40336 3.8115 +57830 0.020437 0.40275 4.1006 +57829 0.020339 0.4022 4.3871 +57828 0.020205 0.40173 4.6754 +57827 0.019957 0.40134 4.9635 +57826 0.019835 0.40102 5.2471 +57825 0.019574 0.40078 5.5341 +57824 0.019356 0.40061 5.8185 +57823 0.019096 0.40051 6.1002 +57822 0.018822 0.40047 0.098105 +57821 0.018575 0.40049 0.37969 +57820 0.018237 0.40056 0.65487 +57819 0.017954 0.40068 0.93214 +57818 0.017683 0.40083 1.2045 +57817 0.017325 0.40103 1.4765 +57816 0.017039 0.40126 1.7445 +57815 0.016775 0.40152 2.009 +57814 0.016438 0.40181 2.2749 +57813 0.016203 0.40213 2.533 +57812 0.015941 0.40247 2.7897 +57811 0.015725 0.40284 3.0473 +57810 0.015525 0.40322 3.2973 +57809 0.015356 0.40361 3.5457 +57808 0.015286 0.40401 3.7976 +57807 0.015167 0.40441 4.0395 +57806 0.015164 0.40481 4.2861 +57805 0.015227 0.40518 4.5296 +57804 0.015302 0.40553 4.7732 +57803 0.015415 0.40585 5.0178 +57802 0.015695 0.40612 5.259 +57801 0.015884 0.40634 5.5079 +57800 0.016223 0.4065 5.753 +57799 0.016583 0.40659 5.9998 +57798 0.016977 0.40662 6.2536 +57797 0.017422 0.40657 0.22249 +57796 0.017899 0.40646 0.4758 +57795 0.018429 0.40627 0.73784 +57794 0.018973 0.40603 0.99611 +57793 0.019513 0.40572 1.2601 +57792 0.020169 0.40537 1.526 +57791 0.020735 0.40499 1.7939 +57790 0.021354 0.40458 2.0646 +57789 0.022016 0.40418 2.3366 +57788 0.022618 0.40379 2.6107 +57787 0.023257 0.40344 2.8897 +57786 0.023879 0.40314 3.1646 +57785 0.024521 0.4029 3.4474 +57784 0.025129 0.40274 3.7289 +57783 0.025726 0.40266 4.0105 +57782 0.026353 0.40267 4.2957 +57781 0.026954 0.40277 4.581 +57780 0.027472 0.40296 4.8659 +57779 0.02811 0.40323 5.1527 +57778 0.02862 0.40356 5.4395 +57777 0.029136 0.40394 5.7266 +57776 0.029672 0.40437 6.0137 +57775 0.030158 0.4048 0.017127 +57774 0.030619 0.40523 0.3062 +57773 0.031069 0.40563 0.59138 +57772 0.03151 0.40598 0.87899 +57771 0.031921 0.40626 1.1667 +57770 0.032298 0.40645 1.452 +57769 0.032655 0.40653 1.7391 +57768 0.033058 0.4065 2.0251 +57767 0.033312 0.40636 2.3115 +57766 0.033647 0.40609 2.597 +57765 0.033968 0.40571 2.8832 +57764 0.034171 0.40522 3.1696 +57763 0.034476 0.40464 3.4558 +57762 0.034692 0.40398 3.7409 +57761 0.034927 0.40328 4.0293 +57760 0.035134 0.40254 4.3145 +57759 0.035327 0.40182 4.6015 +57758 0.035549 0.40112 4.8896 +57757 0.035722 0.40048 5.1762 +57756 0.035859 0.39994 5.4642 +57755 0.03613 0.3995 5.7516 +57754 0.036227 0.3992 6.0403 +57753 0.036423 0.39905 0.045008 +57752 0.03663 0.39906 0.33186 +57751 0.036783 0.39924 0.62089 +57750 0.036961 0.39959 0.90799 +57749 0.03714 0.4001 1.1935 +57748 0.037309 0.40076 1.4823 +57747 0.037479 0.40154 1.767 +57746 0.037608 0.40243 2.0531 +57745 0.037817 0.40339 2.3389 +57744 0.037946 0.40439 2.6237 +57743 0.038083 0.4054 2.9082 +57742 0.038278 0.40639 3.1923 +57741 0.038397 0.40732 3.4756 +57740 0.03855 0.40816 3.7602 +57739 0.038677 0.4089 4.0414 +57738 0.038834 0.4095 4.3256 +57737 0.038935 0.40994 4.6088 +57736 0.039059 0.41023 4.8903 +57735 0.039174 0.41034 5.1746 +57734 0.039298 0.41028 5.4576 +57733 0.039348 0.41005 5.7411 +57732 0.039471 0.40967 6.0248 +57731 0.039558 0.40914 0.026404 +57730 0.039565 0.40849 0.31119 +57729 0.039669 0.40775 0.59623 +57728 0.039677 0.40693 0.88196 +57727 0.039688 0.40607 1.1692 +57726 0.039684 0.40519 1.4555 +57725 0.039657 0.40431 1.7425 +57724 0.039623 0.40347 2.0322 +57723 0.039528 0.40268 2.319 +57722 0.039436 0.40195 2.6085 +57721 0.039366 0.40132 2.8978 +57720 0.039169 0.40078 3.1871 +57719 0.039023 0.40035 3.4762 +57718 0.038886 0.40003 3.7657 +57717 0.038593 0.39981 4.0552 +57716 0.038426 0.3997 4.3443 +57715 0.03813 0.39969 4.6318 +57714 0.037859 0.39977 4.9214 +57713 0.03755 0.39992 5.2084 +57712 0.037203 0.40014 5.4948 +57711 0.036892 0.40041 5.7825 +57710 0.036513 0.40072 6.067 +57709 0.036097 0.40106 0.068988 +57708 0.035787 0.40142 0.35231 +57707 0.03531 0.40179 0.63548 +57706 0.034907 0.40217 0.91735 +57705 0.034513 0.40254 1.1968 +57704 0.034063 0.40292 1.4775 +57703 0.033617 0.40329 1.7562 +57702 0.033208 0.40366 2.0312 +57701 0.032772 0.40404 2.31 +57700 0.032354 0.40442 2.5832 +57699 0.031924 0.40481 2.8571 +57698 0.031551 0.40519 3.1298 +57697 0.031179 0.40558 3.4011 +57696 0.030767 0.40598 3.671 +57695 0.030505 0.40636 3.94 +57694 0.030163 0.40674 4.2078 +57693 0.029883 0.40709 4.4752 +57692 0.029665 0.40742 4.7398 +57691 0.029456 0.40771 5.0048 +57690 0.029281 0.40795 5.27 +57689 0.029148 0.40814 5.5309 +57688 0.029063 0.40825 5.795 +57687 0.029011 0.40827 6.0575 +57686 0.028975 0.40821 0.035299 +57685 0.029004 0.40806 0.2983 +57684 0.029099 0.4078 0.56088 +57683 0.029129 0.40745 0.8236 +57682 0.029317 0.407 1.0872 +57681 0.029472 0.40647 1.3515 +57680 0.029654 0.40586 1.6174 +57679 0.029886 0.4052 1.8838 +57678 0.030149 0.40449 2.1501 +57677 0.03041 0.40376 2.4222 +57676 0.030694 0.40304 2.6899 +57675 0.031013 0.40235 2.9629 +57674 0.031343 0.4017 3.2375 +57673 0.031659 0.40113 3.5112 +57672 0.031993 0.40065 3.7878 +57671 0.032396 0.40028 4.0661 +57670 0.032681 0.40004 4.3442 +57669 0.033064 0.39994 4.6248 +57668 0.033438 0.39997 4.9045 +57667 0.033742 0.40014 5.1875 +57666 0.034108 0.40043 5.469 +57665 0.034444 0.40084 5.7509 +57664 0.03474 0.40134 6.0351 +57663 0.035085 0.40192 0.034443 +57662 0.035308 0.40255 0.31704 +57661 0.035666 0.4032 0.60132 +57660 0.035851 0.40385 0.88422 +57659 0.036081 0.40446 1.1671 +57658 0.036345 0.40502 1.4509 +57657 0.036483 0.40549 1.7338 +57656 0.036657 0.40587 2.0179 +57655 0.036848 0.40614 2.2995 +57654 0.036948 0.40629 2.5844 +57653 0.037079 0.40631 2.8673 +57652 0.03718 0.40622 3.1498 +57651 0.03727 0.40601 3.4344 +57650 0.037357 0.40571 3.718 +57649 0.037368 0.40532 4.0013 +57648 0.037476 0.40488 4.286 +57647 0.037489 0.4044 4.5707 +57646 0.037491 0.40392 4.8552 +57645 0.037563 0.40346 5.1404 +57644 0.037562 0.40304 5.4254 +57643 0.037562 0.4027 5.712 +57642 0.037586 0.40245 5.9959 +57641 0.037611 0.40232 6.2825 +57640 0.03758 0.4023 0.28533 +57639 0.037613 0.40242 0.56944 +57638 0.037581 0.40266 0.85587 +57637 0.037618 0.40302 1.1406 +57636 0.037557 0.40348 1.4255 +57635 0.037568 0.40404 1.7099 +57634 0.037582 0.40466 1.9945 +57633 0.037512 0.40533 2.2784 +57632 0.037525 0.406 2.5623 +57631 0.037522 0.40665 2.8447 +57630 0.037477 0.40725 3.1297 +57629 0.03747 0.40776 3.4112 +57628 0.037446 0.40817 3.6941 +57627 0.037438 0.40845 3.9784 +57626 0.037391 0.40859 4.2603 +57625 0.037358 0.40857 4.5435 +57624 0.037389 0.40839 4.8287 +57623 0.037287 0.40805 5.1113 +57622 0.037296 0.40756 5.397 +57621 0.037276 0.40694 5.6812 +57620 0.03721 0.40619 5.9678 +57619 0.037162 0.40535 6.2544 +57618 0.037123 0.40445 0.25692 +57617 0.03702 0.40352 0.54687 +57616 0.036958 0.40258 0.83476 +57615 0.036801 0.40168 1.1241 +57614 0.036735 0.40084 1.4158 +57613 0.036555 0.4001 1.7068 +57612 0.03637 0.39948 1.9987 +57611 0.036249 0.39899 2.2923 +57610 0.035993 0.39866 2.5853 +57609 0.035773 0.39849 2.88 +57608 0.035548 0.39848 3.1729 +57607 0.035259 0.39863 3.4684 +57606 0.034956 0.39894 3.7631 +57605 0.034645 0.39938 4.0559 +57604 0.034295 0.39995 4.3519 +57603 0.03394 0.40061 4.6452 +57602 0.033512 0.40134 4.9386 +57601 0.033116 0.40212 5.2314 +57600 0.032694 0.40292 5.5246 +57599 0.032146 0.40371 5.8162 +57598 0.031726 0.40448 6.1071 +57597 0.031174 0.4052 0.11499 +57596 0.030612 0.40586 0.40542 +57595 0.030067 0.40644 0.69383 +57594 0.029486 0.40694 0.9825 +57593 0.028856 0.40735 1.2721 +57592 0.028255 0.40767 1.5568 +57591 0.027599 0.40791 1.8447 +57590 0.02698 0.40806 2.1301 +57589 0.02628 0.40814 2.4142 +57588 0.025614 0.40815 2.6982 +57587 0.024968 0.40811 2.981 +57586 0.024229 0.40802 3.2628 +57585 0.023571 0.4079 3.5443 +57584 0.022901 0.40774 3.8213 +57583 0.022203 0.40756 4.1028 +57582 0.021542 0.40736 4.3766 +57581 0.02089 0.40714 4.6506 +57580 0.02025 0.40689 4.9255 +57579 0.019615 0.40663 5.1942 +57578 0.018979 0.40634 5.4618 +57577 0.018454 0.40602 5.73 +57576 0.017812 0.40567 5.9915 +57575 0.017309 0.40528 6.2544 +57574 0.016823 0.40484 0.22945 +57573 0.016327 0.40437 0.48705 +57572 0.015888 0.40386 0.7434 +57571 0.015543 0.4033 0.99233 +57570 0.015165 0.40272 1.2486 +57569 0.014878 0.40212 1.4967 +57568 0.014623 0.40151 1.7444 +57567 0.014428 0.40091 1.9962 +57566 0.014277 0.40034 2.2443 +57565 0.014123 0.39981 2.492 +57564 0.014121 0.39936 2.7453 +57563 0.014051 0.399 2.9961 +57562 0.014053 0.39874 3.2491 +57561 0.014148 0.39862 3.506 +57560 0.014192 0.39863 3.7623 +57559 0.01429 0.39878 4.0244 +57558 0.014448 0.3991 4.2828 +57557 0.014566 0.39956 4.5495 +57556 0.014729 0.40018 4.8155 +57555 0.014888 0.40092 5.081 +57554 0.015051 0.40178 5.3513 +57553 0.015246 0.40273 5.6246 +57552 0.015341 0.40375 5.8925 +57551 0.015566 0.40479 6.1686 +57550 0.015683 0.40583 0.15983 +57549 0.015791 0.40683 0.43359 +57548 0.015941 0.40775 0.71038 +57547 0.016052 0.40858 0.98639 +57546 0.016087 0.40927 1.2654 +57545 0.016213 0.4098 1.5409 +57544 0.016242 0.41015 1.8206 +57543 0.016285 0.41032 2.1018 +57542 0.016316 0.41029 2.3791 +57541 0.016327 0.41006 2.6607 +57540 0.016341 0.40965 2.9439 +57539 0.016317 0.40907 3.2232 +57538 0.016279 0.40835 3.508 +57537 0.016305 0.40749 3.7898 +57536 0.016189 0.40654 4.0762 +57535 0.016173 0.40554 4.3589 +57534 0.016148 0.40452 4.645 +57533 0.016017 0.40351 4.9321 +57532 0.016003 0.40256 5.2181 +57531 0.015892 0.4017 5.5028 +57530 0.015835 0.40097 5.7938 +57529 0.015717 0.40038 6.0788 +57528 0.015612 0.39997 0.082862 +57527 0.015536 0.39974 0.37365 +57526 0.015382 0.3997 0.65954 +57525 0.01526 0.39984 0.95017 +57524 0.015186 0.40015 1.2372 +57523 0.015019 0.40062 1.5281 +57522 0.014896 0.40121 1.8172 +57521 0.014815 0.40189 2.1028 +57520 0.014664 0.40264 2.3958 +57519 0.014555 0.40342 2.6836 +57518 0.014416 0.40419 2.9695 +57517 0.014334 0.40492 3.2622 +57516 0.014183 0.40558 3.5506 +57515 0.014053 0.40614 3.8383 +57514 0.013971 0.40658 4.1327 +57513 0.013824 0.40688 4.4204 +57512 0.0137 0.40703 4.7165 +57511 0.013606 0.40702 5.0063 +57510 0.013489 0.40686 5.303 +57509 0.013342 0.40656 5.6001 +57508 0.013255 0.40613 5.894 +57507 0.013106 0.4056 6.1954 +57506 0.01301 0.40499 0.2142 +57505 0.012823 0.40432 0.51421 +57504 0.012721 0.40363 0.82083 +57503 0.012581 0.40295 1.1291 +57502 0.01237 0.40231 1.4382 +57501 0.012246 0.40173 1.7507 +57500 0.012097 0.40124 2.066 +57499 0.011855 0.40086 2.3868 +57498 0.011742 0.40061 2.7039 +57497 0.011522 0.40049 3.0295 +57496 0.011361 0.40051 3.3574 +57495 0.011167 0.40066 3.6852 +57494 0.010969 0.40094 4.0154 +57493 0.010851 0.40134 4.3541 +57492 0.010603 0.40184 4.687 +57491 0.010464 0.40242 5.0289 +57490 0.010317 0.40305 5.3682 +57489 0.010121 0.40372 5.7161 +57488 0.00998 0.4044 6.0627 +57487 0.009855 0.40506 0.125 +57486 0.009722 0.40569 0.48531 +57485 0.009625 0.40626 0.83517 +57484 0.009521 0.40676 1.193 +57483 0.009513 0.40719 1.5542 +57482 0.009458 0.40752 1.9136 +57481 0.009437 0.40777 2.2779 +57480 0.009523 0.40792 2.6375 +57479 0.009547 0.40799 3.0044 +57478 0.009672 0.40797 3.3684 +57477 0.009792 0.40788 3.7286 +57476 0.00998 0.40771 4.0912 +57475 0.010212 0.40749 4.4535 +57474 0.01037 0.40722 4.8069 +57473 0.010722 0.4069 5.1625 +57472 0.01097 0.40655 5.5156 +57471 0.011243 0.40617 5.865 +57470 0.011586 0.40577 6.2105 +57469 0.011916 0.40536 0.27093 +57468 0.012232 0.40493 0.618 +57467 0.012582 0.40449 0.95261 +57466 0.012925 0.40403 1.2934 +57465 0.013306 0.40357 1.6294 +57464 0.013624 0.40309 1.9623 +57463 0.013988 0.4026 2.2948 +57462 0.014374 0.40209 2.6245 +57461 0.014667 0.40158 2.9537 +57460 0.015041 0.40107 3.2816 +57459 0.015365 0.40057 3.6031 +57458 0.015701 0.40008 3.9324 +57457 0.01599 0.39962 4.252 +57456 0.016296 0.39921 4.5719 +57455 0.0166 0.39886 4.8951 +57454 0.016848 0.39858 5.2108 +57453 0.017068 0.39841 5.5294 +57452 0.017366 0.39834 5.8444 +57451 0.017507 0.39841 6.16 +57450 0.017716 0.39861 0.19079 +57449 0.01789 0.39896 0.50133 +57448 0.018022 0.39946 0.81367 +57447 0.018157 0.40012 1.1248 +57446 0.018232 0.40092 1.4293 +57445 0.018366 0.40185 1.7396 +57444 0.018412 0.40291 2.0437 +57443 0.018445 0.40405 2.3463 +57442 0.018525 0.40526 2.6492 +57441 0.018547 0.4065 2.9481 +57440 0.018516 0.40773 3.2479 +57439 0.018571 0.40893 3.5414 +57438 0.018548 0.41004 3.8377 +57437 0.018495 0.41104 4.1305 +57436 0.018509 0.41189 4.4192 +57435 0.018425 0.41255 4.71 +57434 0.018415 0.413 4.9978 +57433 0.018307 0.41322 5.2833 +57432 0.018258 0.4132 5.5688 +57431 0.018209 0.41293 5.8538 +57430 0.01808 0.41241 6.1365 +57429 0.018016 0.41164 0.13675 +57428 0.017963 0.41065 0.41706 +57427 0.017822 0.40946 0.70206 +57426 0.017759 0.4081 0.98015 +57425 0.017674 0.4066 1.2622 +57424 0.017561 0.40501 1.5454 +57423 0.017475 0.40337 1.8246 +57422 0.017364 0.40174 2.1055 +57421 0.017316 0.40017 2.3907 +57420 0.017176 0.39871 2.6694 +57419 0.017112 0.3974 2.953 +57418 0.017066 0.39628 3.2345 +57417 0.016962 0.3954 3.5163 +57416 0.016883 0.39477 3.7981 +57415 0.016859 0.39442 4.0766 +57414 0.016739 0.39435 4.3593 +57413 0.016699 0.39455 4.6381 +57412 0.016602 0.39503 4.914 +57411 0.016556 0.39576 5.196 +57410 0.016453 0.3967 5.4711 +57409 0.016379 0.39783 5.745 +57408 0.016326 0.3991 6.0237 +57407 0.016234 0.40047 0.010676 +57406 0.016132 0.4019 0.2853 +57405 0.016105 0.40333 0.55407 +57404 0.015993 0.40473 0.82511 +57403 0.015898 0.40605 1.0938 +57402 0.015865 0.40726 1.3584 +57401 0.01574 0.40833 1.6259 +57400 0.015695 0.40923 1.8909 +57399 0.015592 0.40994 2.1512 +57398 0.015545 0.41045 2.4144 +57397 0.015487 0.41076 2.6764 +57396 0.015381 0.41087 2.9315 +57395 0.015394 0.41079 3.1921 +57394 0.015333 0.41053 3.4477 +57393 0.015276 0.41012 3.7027 +57392 0.015318 0.40957 3.9565 +57391 0.015321 0.40891 4.2102 +57390 0.015311 0.40816 4.463 +57389 0.01544 0.40736 4.7133 +57388 0.015482 0.40652 4.9649 +57387 0.015634 0.40567 5.2176 +57386 0.015774 0.40483 5.4664 +57385 0.015988 0.40404 5.7179 +57384 0.016228 0.40329 5.9728 +57383 0.016491 0.40262 6.2218 +57382 0.016816 0.40203 0.19519 +57381 0.017217 0.40154 0.45025 +57380 0.017564 0.40114 0.70767 +57379 0.018044 0.40083 0.96651 +57378 0.01856 0.40063 1.228 +57377 0.019037 0.40052 1.4917 +57376 0.019638 0.4005 1.7564 +57375 0.020256 0.40055 2.0225 +57374 0.020852 0.40068 2.2945 +57373 0.021546 0.40087 2.5623 +57372 0.022219 0.40112 2.8363 +57371 0.022945 0.40141 3.1117 +57370 0.023672 0.40174 3.3873 +57369 0.024384 0.4021 3.6642 +57368 0.025234 0.40249 3.9452 +57367 0.025926 0.4029 4.2248 +57366 0.026737 0.40332 4.507 +57365 0.027554 0.40375 4.7894 +57364 0.028296 0.40419 5.074 +57363 0.029092 0.40461 5.3592 +57362 0.029882 0.40502 5.6432 +57361 0.030621 0.4054 5.9326 +57360 0.031389 0.40575 6.2188 +57359 0.032111 0.40605 0.22372 +57358 0.032868 0.4063 0.51461 +57357 0.033572 0.40648 0.80344 +57356 0.034239 0.40659 1.0945 +57355 0.034986 0.40663 1.3858 +57354 0.035599 0.40657 1.6774 +57353 0.036252 0.40643 1.9703 +57352 0.03688 0.40621 2.2622 +57351 0.037465 0.40589 2.556 +57350 0.038031 0.40548 2.8512 +57349 0.038551 0.405 3.1432 +57348 0.039101 0.40445 3.4403 +57347 0.03955 0.40384 3.7352 +57346 0.040001 0.4032 4.0306 +57345 0.040429 0.40254 4.3275 +57344 0.040827 0.40189 4.624 +57343 0.041112 0.40127 4.9214 +57342 0.041479 0.40071 5.2183 +57341 0.041727 0.40022 5.5165 +57340 0.041937 0.39984 5.8148 +57339 0.042151 0.39959 6.1123 +57338 0.042302 0.39947 0.12738 +57337 0.04241 0.39951 0.42646 +57336 0.042503 0.39971 0.72344 +57335 0.042525 0.40009 1.0215 +57334 0.042599 0.40062 1.3192 +57333 0.042517 0.40131 1.6159 +57332 0.042507 0.40214 1.9115 +57331 0.042475 0.40309 2.2076 +57330 0.04231 0.40413 2.5015 +57329 0.042248 0.40522 2.7955 +57328 0.042088 0.40633 3.0866 +57327 0.041913 0.40743 3.3795 +57326 0.041724 0.40847 3.6688 +57325 0.041497 0.40942 3.9576 +57324 0.041277 0.41025 4.2472 +57323 0.041007 0.41091 4.5335 +57322 0.040696 0.41139 4.8204 +57321 0.040482 0.41166 5.1065 +57320 0.040103 0.41171 5.3917 +57319 0.039791 0.41152 5.6767 +57318 0.039509 0.41109 5.9603 +57317 0.039118 0.41044 6.2453 +57316 0.038785 0.40956 0.24624 +57315 0.038424 0.40849 0.52838 +57314 0.038072 0.40724 0.81418 +57313 0.037675 0.40585 1.0974 +57312 0.037301 0.40436 1.3807 +57311 0.036936 0.40281 1.667 +57310 0.036543 0.40125 1.9501 +57309 0.036133 0.39972 2.2366 +57308 0.03579 0.39829 2.5208 +57307 0.035398 0.39698 2.8072 +57306 0.03498 0.39586 3.0931 +57305 0.03465 0.39494 3.3779 +57304 0.034232 0.39427 3.6641 +57303 0.033874 0.39387 3.9502 +57302 0.033464 0.39374 4.2337 +57301 0.033114 0.3939 4.5193 +57300 0.032728 0.39433 4.8037 +57299 0.032324 0.39504 5.0858 +57298 0.031972 0.39599 5.3688 +57297 0.031616 0.39717 5.6502 +57296 0.03118 0.39853 5.9303 +57295 0.030865 0.40004 6.2093 +57294 0.030469 0.40166 0.20384 +57293 0.030089 0.40333 0.48109 +57292 0.029725 0.40501 0.75594 +57291 0.02937 0.40665 1.0289 +57290 0.028997 0.40822 1.3042 +57289 0.028634 0.40966 1.5727 +57288 0.028274 0.41095 1.8436 +57287 0.027953 0.41205 2.113 +57286 0.027561 0.41295 2.3792 +57285 0.027225 0.41362 2.6451 +57284 0.026932 0.41406 2.9108 +57283 0.026527 0.41425 3.1736 +57282 0.026249 0.41421 3.4371 +57281 0.025937 0.41394 3.6971 +57280 0.025614 0.41344 3.9594 +57279 0.025343 0.41274 4.2183 +57278 0.025081 0.41185 4.4756 +57277 0.024824 0.41079 4.7363 +57276 0.024623 0.40959 4.9917 +57275 0.024398 0.40828 5.2488 +57274 0.024282 0.40688 5.5062 +57273 0.024138 0.40543 5.7623 +57272 0.024015 0.40395 6.0186 +57271 0.024072 0.4025 6.2757 +57270 0.023994 0.40109 0.25034 +57269 0.024078 0.39976 0.50784 +57268 0.024227 0.39855 0.76561 +57267 0.024351 0.39746 1.026 +57266 0.024572 0.39653 1.2866 +57265 0.024854 0.39577 1.5455 +57264 0.025144 0.39519 1.8108 +57263 0.025523 0.3948 2.0731 +57262 0.025889 0.39461 2.3381 +57261 0.026368 0.39463 2.6054 +57260 0.02684 0.39484 2.8737 +57259 0.027312 0.39525 3.1424 +57258 0.02793 0.39584 3.4144 +57257 0.028469 0.39661 3.6859 +57256 0.029058 0.39754 3.9606 +57255 0.029709 0.39862 4.2336 +57254 0.030331 0.39981 4.5105 +57253 0.030953 0.40109 4.7877 +57252 0.031627 0.40244 5.0642 +57251 0.032265 0.40381 5.3442 +57250 0.032941 0.40519 5.6244 +57249 0.033563 0.40654 5.9039 +57248 0.034253 0.40783 6.1866 +57247 0.034897 0.40903 0.18532 +57246 0.035523 0.41011 0.46848 +57245 0.036156 0.41104 0.75226 +57244 0.036825 0.41181 1.0361 +57243 0.037359 0.4124 1.3226 +57242 0.03799 0.41278 1.6067 +57241 0.038557 0.41296 1.894 +57240 0.039078 0.41291 2.1819 +57239 0.039611 0.41265 2.469 +57238 0.040076 0.41217 2.7577 +57237 0.040579 0.41149 3.0488 +57236 0.040946 0.41062 3.3382 +57235 0.041355 0.40957 3.6301 +57234 0.041738 0.40838 3.9233 +57233 0.041992 0.40707 4.2164 +57232 0.042303 0.40569 4.5119 +57231 0.042538 0.40426 4.8065 +57230 0.042702 0.40282 5.1045 +57229 0.042874 0.40143 5.4021 +57228 0.042965 0.40011 5.6999 +57227 0.04305 0.39891 6.0009 +57226 0.043082 0.39786 0.017292 +57225 0.043012 0.39699 0.31786 +57224 0.043055 0.39634 0.62002 +57223 0.042878 0.39592 0.92153 +57222 0.042767 0.39575 1.2233 +57221 0.042632 0.39583 1.5254 +57220 0.042387 0.39616 1.8272 +57219 0.042162 0.39673 2.1296 +57218 0.041896 0.39752 2.4287 +57217 0.041599 0.3985 2.731 +57216 0.041259 0.39963 3.0299 +57215 0.040883 0.40088 3.3279 +57214 0.040503 0.4022 3.6263 +57213 0.040076 0.40355 3.923 +57212 0.039575 0.4049 4.2186 +57211 0.039136 0.40618 4.5137 +57210 0.038608 0.40737 4.8075 +57209 0.038044 0.40843 5.1018 +57208 0.037513 0.40933 5.3927 +57207 0.036948 0.41004 5.6857 +57206 0.036304 0.41053 5.9772 +57205 0.035739 0.41081 6.2665 +57204 0.035066 0.41085 0.27471 +57203 0.034468 0.41066 0.56456 +57202 0.033764 0.41025 0.85407 +57201 0.033116 0.40964 1.1435 +57200 0.032468 0.40885 1.4336 +57199 0.031725 0.4079 1.7226 +57198 0.031071 0.40683 2.0127 +57197 0.030372 0.40568 2.301 +57196 0.029643 0.40447 2.5926 +57195 0.02894 0.40326 2.8812 +57194 0.028224 0.40208 3.17 +57193 0.027508 0.40097 3.4624 +57192 0.026765 0.39996 3.75 +57191 0.02603 0.3991 4.04 +57190 0.025349 0.39839 4.3307 +57189 0.024557 0.39787 4.619 +57188 0.023842 0.39755 4.9079 +57187 0.023167 0.39744 5.1967 +57186 0.022364 0.39755 5.4842 +57185 0.021697 0.39786 5.7721 +57184 0.020958 0.39837 6.0558 +57183 0.020255 0.39907 0.059745 +57182 0.019528 0.39992 0.34339 +57181 0.018824 0.4009 0.62237 +57180 0.018129 0.40198 0.90724 +57179 0.017423 0.40313 1.1829 +57178 0.016689 0.4043 1.4608 +57177 0.016046 0.40547 1.7351 +57176 0.015318 0.4066 2.0079 +57175 0.014601 0.40766 2.2777 +57174 0.01397 0.40863 2.5437 +57173 0.013247 0.40948 2.8083 +57172 0.012563 0.41018 3.0699 +57171 0.011925 0.41074 3.3211 +57170 0.01124 0.41112 3.5771 +57169 0.010612 0.41132 3.821 +57168 0.009971 0.41134 4.0585 +57167 0.009378 0.41117 4.2911 +57166 0.008846 0.41082 4.5189 +57165 0.008255 0.41029 4.7268 +57164 0.007867 0.40959 4.9373 +57163 0.00745 0.40874 5.1317 +57162 0.007117 0.40775 5.3165 +57161 0.00695 0.40664 5.4965 +57160 0.00685 0.40545 5.6709 +57159 0.006812 0.4042 5.8451 +57158 0.00701 0.40291 6.0208 +57157 0.007202 0.40162 6.2054 +57156 0.00753 0.40036 0.12003 +57155 0.007968 0.39915 0.32101 +57154 0.008438 0.39803 0.53954 +57153 0.008974 0.39703 0.77248 +57152 0.00957 0.39616 1.0044 +57151 0.010174 0.39546 1.2567 +57150 0.010839 0.39495 1.5126 +57149 0.011473 0.39463 1.7741 +57148 0.01215 0.39454 2.0433 +57147 0.012886 0.39468 2.3181 +57146 0.013471 0.39506 2.5959 +57145 0.014227 0.39567 2.8762 +57144 0.014884 0.39652 3.1621 +57143 0.015507 0.39757 3.4487 +57142 0.016187 0.39882 3.7381 +57141 0.0168 0.40024 4.0271 +57140 0.017411 0.40178 4.3235 +57139 0.017987 0.40341 4.6136 +57138 0.018553 0.40509 4.9096 +57137 0.019125 0.40679 5.2068 +57136 0.019615 0.40845 5.5019 +57135 0.020107 0.41003 5.7989 +57134 0.020644 0.4115 6.0969 +57133 0.021021 0.41281 0.1114 +57132 0.021475 0.41395 0.41038 +57131 0.021881 0.41485 0.70673 +57130 0.02223 0.41551 1.0087 +57129 0.022557 0.4159 1.3066 +57128 0.022875 0.416 1.605 +57127 0.02312 0.4158 1.9085 +57126 0.023356 0.41531 2.2068 +57125 0.023497 0.41452 2.5099 +57124 0.023692 0.41346 2.8128 +57123 0.023752 0.41214 3.1166 +57122 0.023796 0.4106 3.4226 +57121 0.023844 0.40887 3.7285 +57120 0.023805 0.407 4.0374 +57119 0.023737 0.40504 4.3488 +57118 0.02364 0.40303 4.6568 +57117 0.023525 0.40103 4.9729 +57116 0.023341 0.39909 5.2868 +57115 0.023127 0.39727 5.6014 +57114 0.022904 0.39561 5.9202 +57113 0.022652 0.39417 6.2386 +57112 0.022287 0.39299 0.27594 +57111 0.022015 0.3921 0.59598 +57110 0.021644 0.39154 0.91945 +57109 0.021211 0.39132 1.2425 +57108 0.020854 0.39144 1.5651 +57107 0.020362 0.3919 1.8896 +57106 0.019931 0.39269 2.2152 +57105 0.019403 0.39377 2.539 +57104 0.018883 0.39511 2.8639 +57103 0.018388 0.39667 3.1916 +57102 0.01776 0.39839 3.5164 +57101 0.017211 0.40023 3.8449 +57100 0.016649 0.40213 4.1713 +57099 0.016003 0.40403 4.5041 +57098 0.015427 0.4059 4.8322 +57097 0.01483 0.40769 5.1643 +57096 0.014215 0.40934 5.5019 +57095 0.013643 0.41083 5.8359 +57094 0.013005 0.41212 6.1755 +57093 0.012506 0.41319 0.2364 +57092 0.011885 0.414 0.58266 +57091 0.011366 0.41456 0.93454 +57090 0.010892 0.41485 1.289 +57089 0.0104 0.41486 1.6522 +57088 0.009981 0.41463 2.0213 +57087 0.009591 0.41414 2.3868 +57086 0.009292 0.41343 2.7723 +57085 0.009017 0.41253 3.1546 +57084 0.008772 0.41145 3.5422 +57083 0.008704 0.41023 3.9341 +57082 0.008641 0.4089 4.3322 +57081 0.008619 0.4075 4.7274 +57080 0.0088 0.40605 5.1192 +57079 0.008934 0.40459 5.5128 +57078 0.009234 0.40315 5.8999 +57077 0.009522 0.40177 6.2792 +57076 0.009913 0.40048 0.37042 +57075 0.010377 0.3993 0.74111 +57074 0.010775 0.39826 1.1012 +57073 0.011316 0.39738 1.459 +57072 0.011829 0.39669 1.8073 +57071 0.01235 0.39619 2.1574 +57070 0.012903 0.39589 2.4982 +57069 0.013457 0.3958 2.8335 +57068 0.014059 0.39592 3.1742 +57067 0.014604 0.39623 3.5024 +57066 0.015192 0.39673 3.8315 +57065 0.015839 0.3974 4.1592 +57064 0.016392 0.39823 4.4817 +57063 0.016998 0.39918 4.8037 +57062 0.017663 0.40025 5.1212 +57061 0.01821 0.40139 5.4397 +57060 0.018871 0.40259 5.7543 +57059 0.019452 0.40382 6.0659 +57058 0.02009 0.40504 0.095449 +57057 0.020696 0.40623 0.40621 +57056 0.021262 0.40736 0.71184 +57055 0.021936 0.4084 1.0217 +57054 0.022486 0.40931 1.3258 +57053 0.023068 0.41008 1.6317 +57052 0.02368 0.41068 1.9344 +57051 0.024234 0.4111 2.2379 +57050 0.024761 0.41132 2.5414 +57049 0.025327 0.41134 2.8415 +57048 0.025833 0.41114 3.1448 +57047 0.026345 0.41075 3.4475 +57046 0.026805 0.41016 3.7477 +57045 0.027301 0.40939 4.0518 +57044 0.027752 0.40846 4.3539 +57043 0.028173 0.40737 4.657 +57042 0.028577 0.40618 4.9609 +57041 0.029026 0.4049 5.2639 +57040 0.029328 0.40358 5.5709 +57039 0.029718 0.40226 5.8737 +57038 0.030053 0.40097 6.1806 +57037 0.030324 0.39977 0.20479 +57036 0.030615 0.3987 0.51057 +57035 0.030834 0.39779 0.81778 +57034 0.031096 0.39709 1.1272 +57033 0.031217 0.39661 1.4339 +57032 0.031375 0.39639 1.7426 +57031 0.03153 0.39642 2.0509 +57030 0.031539 0.39673 2.3589 +57029 0.0316 0.39729 2.6671 +57028 0.031611 0.39809 2.9734 +57027 0.031537 0.39912 3.2818 +57026 0.03148 0.40033 3.5871 +57025 0.031326 0.40169 3.892 +57024 0.031191 0.40315 4.198 +57023 0.030989 0.40468 4.501 +57022 0.030682 0.40621 4.8034 +57021 0.030495 0.40771 5.1054 +57020 0.030088 0.40911 5.4067 +57019 0.029738 0.41037 5.7058 +57018 0.029364 0.41146 6.0047 +57017 0.028874 0.41233 0.019003 +57016 0.028418 0.41295 0.31739 +57015 0.027863 0.41329 0.61045 +57014 0.027327 0.41336 0.90751 +57013 0.026699 0.41313 1.2014 +57012 0.026031 0.41263 1.4933 +57011 0.025367 0.41186 1.7872 +57010 0.024644 0.41084 2.0787 +57009 0.023829 0.40962 2.3697 +57008 0.02308 0.40821 2.6599 +57007 0.022238 0.40666 2.9488 +57006 0.021358 0.40501 3.239 +57005 0.020486 0.40332 3.523 +57004 0.019598 0.40162 3.8095 +57003 0.018635 0.39998 4.0947 +57002 0.017744 0.39843 4.3713 +57001 0.01677 0.39704 4.6517 +57000 0.015877 0.39584 4.9238 +56999 0.014911 0.39488 5.1916 +56998 0.014013 0.39419 5.4524 +56997 0.013172 0.39378 5.7064 +56996 0.012271 0.39368 5.9498 +56995 0.011521 0.39387 6.1828 +56994 0.010834 0.39435 0.11592 +56993 0.010179 0.3951 0.32612 +56992 0.009722 0.39609 0.51292 +56991 0.009392 0.39728 0.69072 +56990 0.009198 0.39864 0.86372 +56989 0.009241 0.40012 1.0247 +56988 0.00943 0.4017 1.1893 +56987 0.009823 0.40331 1.3696 +56986 0.010334 0.40494 1.5484 +56985 0.011027 0.40653 1.7457 +56984 0.011808 0.40805 1.9606 +56983 0.012663 0.40948 2.1766 +56982 0.013586 0.41077 2.4123 +56981 0.014616 0.4119 2.6521 +56980 0.015611 0.41284 2.9023 +56979 0.016649 0.41359 3.1572 +56978 0.017803 0.41411 3.4178 +56977 0.018812 0.41442 3.6851 +56976 0.019962 0.4145 3.9539 +56975 0.02106 0.41436 4.2257 +56974 0.022155 0.41402 4.5045 +56973 0.023265 0.41346 4.7816 +56972 0.024353 0.41273 5.0616 +56971 0.025453 0.41182 5.3468 +56970 0.026534 0.41077 5.6297 +56969 0.027552 0.40958 5.9167 +56968 0.028675 0.40828 6.2041 +56967 0.029645 0.40689 0.20999 +56966 0.030663 0.40542 0.50055 +56965 0.031672 0.40391 0.791 +56964 0.032611 0.40238 1.0838 +56963 0.033548 0.40087 1.3785 +56962 0.034437 0.3994 1.6707 +56961 0.035344 0.398 1.9687 +56960 0.03618 0.39672 2.2648 +56959 0.036984 0.39558 2.5616 +56958 0.037834 0.39461 2.8607 +56957 0.038598 0.39383 3.1599 +56956 0.039322 0.39329 3.4587 +56955 0.040125 0.39298 3.7592 +56954 0.040798 0.39292 4.0591 +56953 0.041515 0.39313 4.36 +56952 0.042193 0.3936 4.6595 +56951 0.042869 0.39433 4.9595 +56950 0.043494 0.39532 5.2604 +56949 0.044123 0.39654 5.5582 +56948 0.044732 0.39797 5.8577 +56947 0.045331 0.39958 6.1556 +56946 0.045876 0.40133 0.16938 +56945 0.046412 0.40318 0.46571 +56944 0.046998 0.40509 0.76097 +56943 0.047414 0.407 1.056 +56942 0.047932 0.40886 1.349 +56941 0.048402 0.41063 1.642 +56940 0.048776 0.41225 1.9347 +56939 0.049222 0.41369 2.2256 +56938 0.049565 0.4149 2.5163 +56937 0.049944 0.41585 2.8082 +56936 0.050253 0.41651 3.0974 +56935 0.050536 0.41686 3.3881 +56934 0.050868 0.41689 3.6783 +56933 0.051077 0.41658 3.9688 +56932 0.051277 0.41596 4.2595 +56931 0.051565 0.41502 4.5498 +56930 0.051641 0.41378 4.8425 +56929 0.051831 0.41229 5.1344 +56928 0.051924 0.41056 5.4271 +56927 0.052012 0.40866 5.7222 +56926 0.052054 0.40664 6.017 +56925 0.052044 0.40455 0.029352 +56924 0.052072 0.40246 0.32787 +56923 0.05197 0.40044 0.62528 +56922 0.051862 0.39854 0.92533 +56921 0.051771 0.39683 1.2255 +56920 0.051553 0.39535 1.527 +56919 0.051357 0.39416 1.8294 +56918 0.051099 0.39328 2.1315 +56917 0.050806 0.39275 2.4345 +56916 0.050485 0.39256 2.7388 +56915 0.050066 0.39273 3.0403 +56914 0.049715 0.39324 3.3441 +56913 0.049216 0.39406 3.6465 +56912 0.048716 0.39518 3.9475 +56911 0.048192 0.39654 4.2489 +56910 0.047637 0.39808 4.5482 +56909 0.046961 0.39976 4.8473 +56908 0.046343 0.40152 5.1438 +56907 0.045652 0.40328 5.4402 +56906 0.044866 0.40501 5.7351 +56905 0.044123 0.40664 6.0275 +56904 0.043271 0.40813 0.036418 +56903 0.042431 0.40944 0.32759 +56902 0.041511 0.41053 0.61604 +56901 0.040557 0.4114 0.90418 +56900 0.039636 0.41202 1.1915 +56899 0.038574 0.41238 1.4767 +56898 0.037552 0.41249 1.7616 +56897 0.036547 0.41236 2.044 +56896 0.0354 0.41199 2.3275 +56895 0.034343 0.41141 2.607 +56894 0.033257 0.41064 2.8861 +56893 0.032098 0.40971 3.1646 +56892 0.031033 0.40867 3.4395 +56891 0.029844 0.40753 3.7128 +56890 0.02881 0.40636 3.9855 +56889 0.027653 0.40518 4.2537 +56888 0.026577 0.40403 4.5194 +56887 0.025581 0.40296 4.7832 +56886 0.024532 0.40198 5.0414 +56885 0.023578 0.40113 5.2973 +56884 0.022734 0.40042 5.5457 +56883 0.021879 0.39986 5.7931 +56882 0.021161 0.39945 6.0338 +56881 0.020537 0.39919 6.2662 +56880 0.020025 0.39908 0.21723 +56879 0.019601 0.3991 0.44365 +56878 0.019361 0.39924 0.6646 +56877 0.019215 0.39951 0.89105 +56876 0.019242 0.39988 1.1089 +56875 0.019355 0.40036 1.3327 +56874 0.019682 0.40091 1.5563 +56873 0.020087 0.40154 1.7842 +56872 0.020571 0.40221 2.0148 +56871 0.021285 0.40292 2.2508 +56870 0.021971 0.40364 2.4907 +56869 0.022787 0.40437 2.7369 +56868 0.023699 0.40507 2.9845 +56867 0.024623 0.40574 3.2397 +56866 0.025611 0.40636 3.4984 +56865 0.02664 0.40693 3.7582 +56864 0.027691 0.40744 4.0248 +56863 0.028774 0.40788 4.2934 +56862 0.029813 0.40826 4.5634 +56861 0.030949 0.40855 4.8376 +56860 0.032026 0.40877 5.1138 +56859 0.033057 0.40888 5.3907 +56858 0.03418 0.4089 5.6712 +56857 0.035206 0.40881 5.9517 +56856 0.036237 0.4086 6.2353 +56855 0.037233 0.40826 0.23552 +56854 0.038252 0.4078 0.52041 +56853 0.039162 0.4072 0.80901 +56852 0.040099 0.40649 1.0945 +56851 0.040986 0.40566 1.3848 +56850 0.04185 0.40474 1.6753 +56849 0.042663 0.40375 1.966 +56848 0.043445 0.4027 2.2587 +56847 0.044256 0.40164 2.5526 +56846 0.044921 0.4006 2.8469 +56845 0.04565 0.39959 3.143 +56844 0.046335 0.39866 3.4385 +56843 0.046926 0.39783 3.7371 +56842 0.047555 0.39715 4.0345 +56841 0.048115 0.39663 4.333 +56840 0.048663 0.39631 4.6332 +56839 0.049194 0.39621 4.9323 +56838 0.049608 0.39635 5.2318 +56837 0.050166 0.39674 5.5323 +56836 0.050488 0.39738 5.8318 +56835 0.05089 0.39826 6.1312 +56834 0.051285 0.39937 0.14721 +56833 0.051545 0.40067 0.44619 +56832 0.05185 0.40214 0.74458 +56831 0.052113 0.40373 1.0409 +56830 0.052312 0.40538 1.339 +56829 0.052522 0.40707 1.6345 +56828 0.052637 0.40872 1.9294 +56827 0.052805 0.4103 2.2243 +56826 0.052877 0.41175 2.5184 +56825 0.052899 0.41302 2.8114 +56824 0.053005 0.41408 3.1046 +56823 0.05296 0.41488 3.3971 +56822 0.052944 0.41539 3.6895 +56821 0.052901 0.4156 3.9813 +56820 0.052827 0.41548 4.2735 +56819 0.052715 0.41504 4.5668 +56818 0.052569 0.41428 4.8579 +56817 0.052437 0.41321 5.152 +56816 0.052217 0.41187 5.4458 +56815 0.052004 0.41028 5.7396 +56814 0.051731 0.4085 6.0356 +56813 0.051478 0.40657 0.048275 +56812 0.051103 0.40455 0.34637 +56811 0.050771 0.4025 0.64448 +56810 0.0504 0.40048 0.9442 +56809 0.049936 0.39856 1.246 +56808 0.049501 0.39679 1.5477 +56807 0.049017 0.39523 1.8502 +56806 0.048496 0.39393 2.156 +56805 0.047926 0.39292 2.4592 +56804 0.047336 0.39223 2.7653 +56803 0.046751 0.39189 3.0715 +56802 0.046048 0.39191 3.3771 +56801 0.045356 0.39226 3.6835 +56800 0.0447 0.39296 3.9894 +56799 0.043863 0.39395 4.2953 +56798 0.043149 0.39521 4.6003 +56797 0.042301 0.39669 4.9036 +56796 0.041457 0.39833 5.208 +56795 0.04058 0.40009 5.5099 +56794 0.039621 0.40192 5.8105 +56793 0.038697 0.40374 6.1119 +56792 0.037688 0.40552 0.12749 +56791 0.036604 0.40721 0.42621 +56790 0.035629 0.40878 0.72308 +56789 0.034456 0.41018 1.0206 +56788 0.033339 0.4114 1.3159 +56787 0.032221 0.4124 1.6106 +56786 0.031 0.41318 1.905 +56785 0.029816 0.41373 2.1989 +56784 0.02855 0.41403 2.4892 +56783 0.02734 0.4141 2.7824 +56782 0.026038 0.41395 3.073 +56781 0.024726 0.41359 3.3608 +56780 0.023446 0.41304 3.6508 +56779 0.022122 0.41232 3.9361 +56778 0.020754 0.41147 4.2221 +56777 0.019429 0.41051 4.5033 +56776 0.018098 0.40947 4.7829 +56775 0.016705 0.40837 5.0614 +56774 0.015403 0.40724 5.3286 +56773 0.014065 0.4061 5.595 +56772 0.012764 0.40496 5.8546 +56771 0.011486 0.40384 6.0951 +56770 0.010296 0.40275 0.046078 +56769 0.009156 0.40171 0.25942 +56768 0.008126 0.40073 0.44009 +56767 0.007249 0.39983 0.6023 +56766 0.006663 0.39901 0.71772 +56765 0.006234 0.3983 0.81162 +56764 0.006247 0.3977 0.8881 +56763 0.006559 0.39721 0.98248 +56762 0.007092 0.39686 1.0992 +56761 0.007913 0.39665 1.2578 +56760 0.008864 0.39657 1.4416 +56759 0.009843 0.39662 1.661 +56758 0.010976 0.39681 1.8917 +56757 0.012118 0.39714 2.1412 +56756 0.013234 0.39759 2.4061 +56755 0.014403 0.39817 2.672 +56754 0.015579 0.39887 2.9496 +56753 0.016698 0.3997 3.2351 +56752 0.017843 0.40063 3.516 +56751 0.01893 0.40165 3.8086 +56750 0.020051 0.40275 4.099 +56749 0.021084 0.40392 4.3932 +56748 0.022096 0.4051 4.6873 +56747 0.023167 0.40629 4.983 +56746 0.024039 0.40745 5.2804 +56745 0.025021 0.40853 5.5774 +56744 0.025892 0.40952 5.8739 +56743 0.026728 0.41037 6.1737 +56742 0.027543 0.41108 0.18877 +56741 0.028279 0.4116 0.48644 +56740 0.02905 0.41194 0.78785 +56739 0.02969 0.41208 1.0864 +56738 0.030312 0.412 1.3868 +56737 0.030977 0.41171 1.688 +56736 0.031479 0.41121 1.9891 +56735 0.032 0.41052 2.2912 +56734 0.032513 0.40964 2.5929 +56733 0.03291 0.40859 2.8972 +56732 0.033346 0.40741 3.2011 +56731 0.033663 0.40614 3.5048 +56730 0.034018 0.4048 3.8108 +56729 0.034297 0.40344 4.1184 +56728 0.034486 0.40212 4.4237 +56727 0.034773 0.40086 4.7333 +56726 0.034887 0.39973 5.0417 +56725 0.035027 0.39875 5.3515 +56724 0.035139 0.39797 5.6614 +56723 0.035215 0.39741 5.9718 +56722 0.035201 0.39708 0.000947 +56721 0.035227 0.39701 0.31047 +56720 0.03518 0.39718 0.62285 +56719 0.035113 0.3976 0.93455 +56718 0.034992 0.39824 1.2445 +56717 0.034859 0.39907 1.5564 +56716 0.034717 0.40007 1.8669 +56715 0.034494 0.40119 2.1769 +56714 0.034259 0.4024 2.4875 +56713 0.034066 0.40364 2.7957 +56712 0.033734 0.40487 3.1075 +56711 0.033474 0.40605 3.4142 +56710 0.033175 0.40712 3.7232 +56709 0.032821 0.40806 4.0326 +56708 0.032501 0.40883 4.3395 +56707 0.032081 0.4094 4.6474 +56706 0.031763 0.40975 4.9564 +56705 0.03128 0.40988 5.2642 +56704 0.030866 0.40978 5.5737 +56703 0.030468 0.40946 5.8829 +56702 0.029955 0.40894 6.1943 +56701 0.0295 0.40824 0.22297 +56700 0.029039 0.40739 0.53399 +56699 0.02853 0.40642 0.85034 +56698 0.02804 0.40537 1.1645 +56697 0.027496 0.40427 1.4808 +56696 0.027012 0.40318 1.8003 +56695 0.026475 0.40212 2.1201 +56694 0.025882 0.40114 2.4419 +56693 0.025419 0.40028 2.7652 +56692 0.024819 0.39956 3.0922 +56691 0.02428 0.39902 3.4189 +56690 0.023772 0.39867 3.7483 +56689 0.023195 0.39851 4.0793 +56688 0.022714 0.39856 4.4136 +56687 0.022136 0.3988 4.7461 +56686 0.021669 0.39923 5.0829 +56685 0.021159 0.39981 5.4221 +56684 0.020629 0.40052 5.76 +56683 0.020181 0.40133 6.102 +56682 0.019736 0.40222 0.16111 +56681 0.019234 0.40315 0.50828 +56680 0.018853 0.40408 0.85296 +56679 0.018449 0.405 1.202 +56678 0.01808 0.40586 1.5553 +56677 0.017735 0.40665 1.9061 +56676 0.017432 0.40735 2.2607 +56675 0.017214 0.40794 2.6205 +56674 0.016938 0.40842 2.976 +56673 0.016811 0.40876 3.3389 +56672 0.016698 0.40898 3.6977 +56671 0.016617 0.40907 4.0617 +56670 0.016597 0.40903 4.4245 +56669 0.016625 0.40889 4.7838 +56668 0.016719 0.40864 5.1507 +56667 0.016842 0.40831 5.51 +56666 0.016965 0.40792 5.8711 +56665 0.017254 0.40747 6.2316 +56664 0.017447 0.40698 0.307 +56663 0.01773 0.40647 0.66347 +56662 0.018074 0.40594 1.0179 +56661 0.018375 0.40539 1.3718 +56660 0.018771 0.40484 1.7249 +56659 0.019098 0.40428 2.0717 +56658 0.019535 0.40372 2.4214 +56657 0.019924 0.40315 2.7685 +56656 0.020304 0.40259 3.1114 +56655 0.020759 0.40204 3.4559 +56654 0.021158 0.40149 3.7959 +56653 0.021556 0.40096 4.1382 +56652 0.021953 0.40046 4.4749 +56651 0.022372 0.39998 4.8116 +56650 0.022717 0.39953 5.1518 +56649 0.023067 0.39913 5.4835 +56648 0.023428 0.39877 5.8197 +56647 0.02376 0.39848 6.1542 +56646 0.02402 0.39827 0.20276 +56645 0.024313 0.39815 0.5361 +56644 0.024595 0.39814 0.86713 +56643 0.024762 0.39825 1.1978 +56642 0.024987 0.3985 1.5288 +56641 0.025118 0.3989 1.8559 +56640 0.025269 0.39945 2.1874 +56639 0.025329 0.40015 2.5136 +56638 0.025372 0.40099 2.8399 +56637 0.025411 0.40196 3.1685 +56636 0.02538 0.40304 3.4925 +56635 0.025287 0.4042 3.8184 +56634 0.025267 0.40542 4.1404 +56633 0.025096 0.40666 4.4654 +56632 0.024929 0.4079 4.7867 +56631 0.024766 0.40908 5.1059 +56630 0.0245 0.41019 5.4283 +56629 0.02423 0.41118 5.7475 +56628 0.023914 0.41203 6.0646 +56627 0.023579 0.41269 0.1021 +56626 0.023198 0.41315 0.41814 +56625 0.022745 0.41339 0.73748 +56624 0.022318 0.41338 1.0539 +56623 0.021863 0.41312 1.3723 +56622 0.021268 0.4126 1.6915 +56621 0.020789 0.41183 2.0082 +56620 0.020176 0.41084 2.3296 +56619 0.019593 0.40964 2.6506 +56618 0.018945 0.40826 2.9713 +56617 0.018287 0.40676 3.2946 +56616 0.01766 0.40518 3.6218 +56615 0.016883 0.40355 3.9462 +56614 0.016211 0.40193 4.2761 +56613 0.015475 0.40037 4.608 +56612 0.014676 0.39891 4.9428 +56611 0.013955 0.3976 5.2804 +56610 0.013151 0.39648 5.6188 +56609 0.012382 0.39559 5.9682 +56608 0.011593 0.39494 0.031863 +56607 0.010775 0.39456 0.38643 +56606 0.010046 0.39445 0.74952 +56605 0.009232 0.39463 1.1207 +56604 0.008456 0.39506 1.5009 +56603 0.007829 0.39574 1.8915 +56602 0.007087 0.39663 2.3097 +56601 0.006536 0.39769 2.7337 +56600 0.00605 0.39888 3.1824 +56599 0.005721 0.40016 3.6557 +56598 0.005554 0.40148 4.1434 +56597 0.005491 0.4028 4.6316 +56596 0.005759 0.40408 5.1141 +56595 0.006063 0.40528 5.5848 +56594 0.00656 0.40637 6.0332 +56593 0.007171 0.40734 0.16969 +56592 0.007849 0.40815 0.57531 +56591 0.008633 0.4088 0.96247 +56590 0.009397 0.40928 1.333 +56589 0.010237 0.40959 1.6946 +56588 0.011155 0.40974 2.0424 +56587 0.011967 0.40973 2.3921 +56586 0.0129 0.40959 2.7248 +56585 0.013828 0.40932 3.0591 +56584 0.014721 0.40896 3.3902 +56583 0.01569 0.40852 3.714 +56582 0.016572 0.40804 4.0362 +56581 0.017593 0.40752 4.3583 +56580 0.018465 0.407 4.6757 +56579 0.019408 0.40649 4.9925 +56578 0.02039 0.40601 5.308 +56577 0.021271 0.40556 5.6226 +56576 0.022215 0.40515 5.9367 +56575 0.023147 0.40478 6.2468 +56574 0.024052 0.40445 0.27802 +56573 0.024976 0.40415 0.58841 +56572 0.02585 0.40387 0.89758 +56571 0.026785 0.40362 1.2092 +56570 0.02766 0.40337 1.5184 +56569 0.028492 0.40313 1.8274 +56568 0.029442 0.40288 2.1364 +56567 0.030242 0.40263 2.4458 +56566 0.031089 0.40236 2.754 +56565 0.031967 0.40209 3.0627 +56564 0.032747 0.4018 3.3706 +56563 0.033599 0.40151 3.6803 +56562 0.034342 0.40122 3.9873 +56561 0.035171 0.40094 4.2961 +56560 0.035913 0.4007 4.6054 +56559 0.036627 0.4005 4.9124 +56558 0.037357 0.40036 5.222 +56557 0.038071 0.4003 5.5299 +56556 0.038687 0.40032 5.8392 +56555 0.03935 0.40043 6.1469 +56554 0.039969 0.40064 0.17229 +56553 0.040516 0.40096 0.48187 +56552 0.041075 0.40137 0.78901 +56551 0.041594 0.40187 1.0968 +56550 0.042071 0.40244 1.4066 +56549 0.042508 0.40308 1.7126 +56548 0.042917 0.40376 2.0212 +56547 0.043341 0.40446 2.3279 +56546 0.043657 0.40515 2.6351 +56545 0.043955 0.40582 2.9416 +56544 0.044312 0.40642 3.2467 +56543 0.044464 0.40695 3.5535 +56542 0.044706 0.40738 3.858 +56541 0.044831 0.4077 4.1626 +56540 0.044952 0.40788 4.4688 +56539 0.044999 0.40792 4.7726 +56538 0.044977 0.40782 5.0774 +56537 0.044986 0.40758 5.3831 +56536 0.044875 0.40722 5.6875 +56535 0.044712 0.40674 5.9935 +56534 0.044584 0.40617 0.014715 +56533 0.044302 0.40552 0.32173 +56532 0.044021 0.40484 0.62765 +56531 0.043709 0.40414 0.93325 +56530 0.043287 0.40345 1.2408 +56529 0.042882 0.40282 1.5478 +56528 0.042338 0.40225 1.8548 +56527 0.041859 0.40179 2.162 +56526 0.04127 0.40144 2.4704 +56525 0.040576 0.40122 2.7766 +56524 0.039992 0.40114 3.0842 +56523 0.039224 0.40121 3.3907 +56522 0.038452 0.40142 3.6967 +56521 0.037651 0.40175 4.002 +56520 0.0368 0.4022 4.3062 +56519 0.035893 0.40274 4.6112 +56518 0.034959 0.40335 4.912 +56517 0.033968 0.404 5.2142 +56516 0.03299 0.40465 5.5149 +56515 0.031896 0.40527 5.8127 +56514 0.030832 0.40585 6.1102 +56513 0.029747 0.40634 0.12317 +56512 0.028555 0.40673 0.41689 +56511 0.02742 0.40699 0.71015 +56510 0.026242 0.40712 0.99844 +56509 0.025014 0.40711 1.2901 +56508 0.023799 0.40696 1.5742 +56507 0.022589 0.40667 1.8575 +56506 0.021346 0.40625 2.1403 +56505 0.020122 0.40572 2.4149 +56504 0.018861 0.4051 2.6883 +56503 0.017707 0.40442 2.9572 +56502 0.016458 0.4037 3.2175 +56501 0.0153 0.40297 3.4734 +56500 0.014223 0.40226 3.7171 +56499 0.013141 0.40161 3.9548 +56498 0.012144 0.40103 4.1767 +56497 0.011342 0.40054 4.3807 +56496 0.010544 0.40018 4.5785 +56495 0.010017 0.39994 4.7523 +56494 0.00963 0.39985 4.9131 +56493 0.009481 0.39988 5.0717 +56492 0.009549 0.40005 5.226 +56491 0.009839 0.40034 5.3804 +56490 0.010339 0.40074 5.5615 +56489 0.010977 0.40122 5.7429 +56488 0.011763 0.40178 5.9466 +56487 0.012665 0.40237 6.1669 +56486 0.01364 0.40299 0.11092 +56485 0.01462 0.40362 0.35396 +56484 0.015748 0.40422 0.60251 +56483 0.016805 0.40479 0.86079 +56482 0.017896 0.40531 1.1252 +56481 0.019053 0.40576 1.3913 +56480 0.020145 0.40614 1.6659 +56479 0.021243 0.40645 1.9431 +56478 0.022363 0.40668 2.2188 +56477 0.02345 0.40683 2.5043 +56476 0.024522 0.40691 2.7863 +56475 0.025565 0.40693 3.0719 +56474 0.026623 0.4069 3.3595 +56473 0.027661 0.40683 3.6483 +56472 0.028589 0.40673 3.9372 +56471 0.029644 0.40662 4.228 +56470 0.030546 0.4065 4.5195 +56469 0.031469 0.40638 4.8117 +56468 0.032375 0.40627 5.1041 +56467 0.033235 0.40617 5.3972 +56466 0.034078 0.40607 5.6925 +56465 0.034883 0.40598 5.9854 +56464 0.03567 0.40588 6.2803 +56463 0.036468 0.40576 0.29335 +56462 0.03714 0.40563 0.58758 +56461 0.037909 0.40546 0.88346 +56460 0.038594 0.40525 1.1801 +56459 0.039226 0.40498 1.4754 +56458 0.039895 0.40466 1.7731 +56457 0.040525 0.40428 2.0683 +56456 0.041104 0.40383 2.3674 +56455 0.041678 0.40332 2.6634 +56454 0.042236 0.40276 2.9612 +56453 0.042745 0.40215 3.2606 +56452 0.043242 0.40151 3.5579 +56451 0.043654 0.40086 3.8575 +56450 0.044152 0.40023 4.1574 +56449 0.044491 0.39962 4.4577 +56448 0.04485 0.39908 4.7586 +56447 0.045254 0.39862 5.0592 +56446 0.045498 0.39826 5.3623 +56445 0.0458 0.39804 5.6642 +56444 0.046067 0.39797 5.9657 +56443 0.046265 0.39805 6.2702 +56442 0.046455 0.39831 0.28888 +56441 0.046601 0.39874 0.59207 +56440 0.046737 0.39934 0.89595 +56439 0.046831 0.4001 1.198 +56438 0.046841 0.401 1.502 +56437 0.046935 0.40202 1.8035 +56436 0.046905 0.40313 2.1069 +56435 0.046854 0.4043 2.4083 +56434 0.046828 0.4055 2.7093 +56433 0.046687 0.40669 3.0104 +56432 0.046591 0.40783 3.3113 +56431 0.046356 0.40889 3.6102 +56430 0.046189 0.40983 3.9101 +56429 0.045912 0.41063 4.2102 +56428 0.045583 0.41127 4.5083 +56427 0.045286 0.41171 4.8077 +56426 0.044894 0.41196 5.1068 +56425 0.044424 0.412 5.4059 +56424 0.04401 0.41183 5.7054 +56423 0.043473 0.41146 6.0047 +56422 0.04293 0.41091 0.022583 +56421 0.042319 0.41018 0.32283 +56420 0.041709 0.4093 0.62339 +56419 0.041045 0.4083 0.92734 +56418 0.040312 0.4072 1.2277 +56417 0.039577 0.40605 1.5323 +56416 0.038827 0.40486 1.8356 +56415 0.037965 0.40368 2.14 +56414 0.037106 0.40254 2.4449 +56413 0.036259 0.40147 2.7495 +56412 0.035257 0.40049 3.0564 +56411 0.034331 0.39964 3.3617 +56410 0.033305 0.39892 3.6667 +56409 0.032269 0.39835 3.9747 +56408 0.03119 0.39794 4.2792 +56407 0.030062 0.39768 4.5849 +56406 0.02896 0.39758 4.8911 +56405 0.027767 0.39762 5.1947 +56404 0.026552 0.3978 5.5005 +56403 0.025385 0.3981 5.8017 +56402 0.02412 0.3985 6.106 +56401 0.022832 0.399 0.12405 +56400 0.021616 0.39956 0.42099 +56399 0.020292 0.40017 0.7231 +56398 0.019009 0.40081 1.017 +56397 0.017688 0.40148 1.3101 +56396 0.016399 0.40215 1.6016 +56395 0.0151 0.40281 1.8893 +56394 0.013727 0.40345 2.1691 +56393 0.012493 0.40408 2.4473 +56392 0.011161 0.40467 2.7145 +56391 0.009877 0.40524 2.9739 +56390 0.008667 0.40578 3.2144 +56389 0.007469 0.40629 3.4371 +56388 0.006338 0.40676 3.6315 +56387 0.005396 0.40721 3.7694 +56386 0.004595 0.40762 3.8534 +56385 0.004146 0.40799 3.8798 +56384 0.00411 0.40831 3.8421 +56383 0.004473 0.40858 3.8629 +56382 0.005144 0.40879 3.9347 +56381 0.006056 0.40893 4.0654 +56380 0.007006 0.409 4.2529 +56379 0.008092 0.40898 4.473 +56378 0.009129 0.40888 4.706 +56377 0.010248 0.40869 4.9654 +56376 0.011336 0.4084 5.2309 +56375 0.012371 0.40802 5.5041 +56374 0.013471 0.40755 5.7844 +56373 0.014528 0.40699 6.0698 +56372 0.015471 0.40634 0.075366 +56371 0.016537 0.40562 0.36568 +56370 0.01746 0.40484 0.66031 +56369 0.018387 0.40401 0.95754 +56368 0.019284 0.40316 1.254 +56367 0.020149 0.40231 1.553 +56366 0.020983 0.40148 1.857 +56365 0.021744 0.4007 2.1552 +56364 0.022524 0.4 2.4601 +56363 0.02324 0.3994 2.7639 +56362 0.023898 0.39892 3.067 +56361 0.024531 0.39858 3.3735 +56360 0.025159 0.39839 3.6765 +56359 0.025676 0.39837 3.9847 +56358 0.026199 0.3985 4.2895 +56357 0.026697 0.39881 4.5943 +56356 0.027118 0.39926 4.9028 +56355 0.027531 0.39986 5.207 +56354 0.027871 0.40059 5.5121 +56353 0.028257 0.40141 5.8192 +56352 0.028494 0.40231 6.1225 +56351 0.028763 0.40325 0.14463 +56350 0.029027 0.40421 0.44864 +56349 0.029196 0.40514 0.75253 +56348 0.029346 0.40602 1.0567 +56347 0.02953 0.40681 1.3573 +56346 0.0296 0.40749 1.6627 +56345 0.0297 0.40805 1.9637 +56344 0.029728 0.40845 2.2653 +56343 0.029765 0.40869 2.5679 +56342 0.029762 0.40877 2.8699 +56341 0.029661 0.40868 3.1711 +56340 0.02966 0.40843 3.4738 +56339 0.02952 0.40803 3.7765 +56338 0.029366 0.4075 4.0801 +56337 0.029265 0.40687 4.3826 +56336 0.029061 0.40615 4.6883 +56335 0.02885 0.40538 4.993 +56334 0.028652 0.40458 5.2981 +56333 0.028371 0.40379 5.605 +56332 0.028163 0.40303 5.9129 +56331 0.027802 0.40233 6.2199 +56330 0.027545 0.40172 0.24566 +56329 0.027222 0.40123 0.55602 +56328 0.026845 0.40086 0.86532 +56327 0.026516 0.40063 1.1771 +56326 0.026149 0.40055 1.4866 +56325 0.025749 0.40062 1.8013 +56324 0.02534 0.40083 2.1112 +56323 0.024937 0.40116 2.4233 +56322 0.024493 0.40161 2.7395 +56321 0.024021 0.40216 3.05 +56320 0.023553 0.40277 3.3653 +56319 0.023099 0.40343 3.681 +56318 0.022548 0.40412 3.9956 +56317 0.022055 0.40481 4.3133 +56316 0.021566 0.40547 4.63 +56315 0.020989 0.40609 4.9499 +56314 0.020489 0.40664 5.2705 +56313 0.019917 0.40711 5.5892 +56312 0.019401 0.40748 5.9159 +56311 0.018817 0.40774 6.2399 +56310 0.018255 0.40789 0.28234 +56309 0.017728 0.40792 0.61551 +56308 0.017157 0.40783 0.94555 +56307 0.016583 0.40763 1.2842 +56306 0.01609 0.40733 1.6198 +56305 0.015548 0.40693 1.9659 +56304 0.015015 0.40646 2.312 +56303 0.014565 0.40592 2.6594 +56302 0.014076 0.40533 3.0177 +56301 0.013661 0.40471 3.3761 +56300 0.013227 0.40407 3.7374 +56299 0.012895 0.40343 4.1075 +56298 0.012583 0.40279 4.4785 +56297 0.012285 0.40218 4.8576 +56296 0.012084 0.40161 5.2352 +56295 0.011976 0.40108 5.6178 +56294 0.011852 0.40061 6.01 +56293 0.01187 0.4002 0.1065 +56292 0.01193 0.39986 0.49726 +56291 0.012097 0.3996 0.88311 +56290 0.012274 0.39943 1.2654 +56289 0.012537 0.39936 1.6453 +56288 0.012917 0.39937 2.0212 +56287 0.013203 0.39948 2.3957 +56286 0.013657 0.39968 2.7626 +56285 0.014074 0.39997 3.1256 +56284 0.014547 0.40036 3.4895 +56283 0.015041 0.40083 3.844 +56282 0.015513 0.40139 4.1971 +56281 0.016086 0.40203 4.5478 +56280 0.016585 0.40274 4.8923 +56279 0.017098 0.40353 5.2375 +56278 0.017661 0.40436 5.5741 +56277 0.018176 0.40525 5.9135 +56276 0.018667 0.40615 6.2493 +56275 0.019184 0.40707 0.29413 +56274 0.019682 0.40797 0.6286 +56273 0.020149 0.40883 0.95442 +56272 0.02059 0.40963 1.2805 +56271 0.021041 0.41035 1.6047 +56270 0.021479 0.41096 1.9269 +56269 0.02179 0.41144 2.2482 +56268 0.022215 0.41178 2.5657 +56267 0.022504 0.41196 2.8849 +56266 0.022788 0.41197 3.2023 +56265 0.02305 0.41179 3.5172 +56264 0.023264 0.41142 3.8321 +56263 0.02347 0.41086 4.1487 +56262 0.023586 0.41011 4.4605 +56261 0.023702 0.40919 4.7749 +56260 0.023823 0.40809 5.0879 +56259 0.023785 0.40686 5.4012 +56258 0.02382 0.4055 5.7134 +56257 0.0238 0.40406 6.0264 +56256 0.023671 0.40257 0.056355 +56255 0.023608 0.40107 0.36925 +56254 0.023418 0.3996 0.68014 +56253 0.023278 0.39821 0.99541 +56252 0.023018 0.39694 1.306 +56251 0.022752 0.39582 1.6181 +56250 0.0225 0.3949 1.9316 +56249 0.022137 0.3942 2.2423 +56248 0.021753 0.39375 2.5544 +56247 0.02143 0.39356 2.8635 +56246 0.020951 0.39366 3.1751 +56245 0.020523 0.39404 3.4834 +56244 0.020052 0.39469 3.7885 +56243 0.019548 0.39561 4.0964 +56242 0.019018 0.39677 4.4007 +56241 0.018436 0.39813 4.6995 +56240 0.017905 0.39966 5.0033 +56239 0.017263 0.40132 5.2992 +56238 0.016636 0.40306 5.5945 +56237 0.016022 0.40482 5.889 +56236 0.015359 0.40656 6.177 +56235 0.014669 0.40823 0.18495 +56234 0.014012 0.40979 0.46423 +56233 0.01333 0.41119 0.74753 +56232 0.012614 0.41241 1.0256 +56231 0.011936 0.41342 1.2931 +56230 0.011211 0.4142 1.5639 +56229 0.010554 0.41472 1.8267 +56228 0.009806 0.41499 2.0793 +56227 0.009173 0.41499 2.3294 +56226 0.00852 0.41473 2.57 +56225 0.007856 0.41423 2.798 +56224 0.007303 0.41348 3.0165 +56223 0.00679 0.41252 3.216 +56222 0.006272 0.41138 3.4096 +56221 0.005957 0.41008 3.5735 +56220 0.005666 0.40867 3.7301 +56219 0.005513 0.40718 3.8798 +56218 0.005512 0.40566 4.0145 +56217 0.005645 0.40414 4.1564 +56216 0.005868 0.40266 4.323 +56215 0.006247 0.40125 4.4802 +56214 0.006694 0.39995 4.6724 +56213 0.007233 0.39879 4.8789 +56212 0.007798 0.39778 5.0903 +56211 0.008451 0.39694 5.3223 +56210 0.009134 0.3963 5.5657 +56209 0.009812 0.39586 5.8091 +56208 0.010538 0.39562 6.0691 +56207 0.011318 0.39558 0.044119 +56206 0.012022 0.39575 0.3129 +56205 0.012814 0.39611 0.58048 +56204 0.013617 0.39664 0.85326 +56203 0.014358 0.39734 1.1301 +56202 0.015197 0.39817 1.4065 +56201 0.015972 0.39912 1.6828 +56200 0.016815 0.40016 1.9669 +56199 0.0176 0.40126 2.2459 +56198 0.018424 0.4024 2.5263 +56197 0.019292 0.40354 2.8131 +56196 0.020072 0.40468 3.0938 +56195 0.020918 0.40578 3.3793 +56194 0.021797 0.40682 3.664 +56193 0.022595 0.40779 3.9496 +56192 0.023446 0.40867 4.2363 +56191 0.024326 0.40945 4.5208 +56190 0.025128 0.41009 4.8097 +56189 0.026007 0.4106 5.0964 +56188 0.02681 0.41097 5.3829 +56187 0.027684 0.41117 5.6728 +56186 0.028492 0.41122 5.9616 +56185 0.02929 0.4111 6.2497 +56184 0.030161 0.41082 0.25847 +56183 0.030928 0.41038 0.54785 +56182 0.031717 0.4098 0.84075 +56181 0.032536 0.40908 1.1313 +56180 0.033289 0.40823 1.4253 +56179 0.034018 0.40729 1.7191 +56178 0.034786 0.40626 2.0122 +56177 0.035467 0.40517 2.3086 +56176 0.036177 0.40405 2.6047 +56175 0.036807 0.40293 2.901 +56174 0.03747 0.40184 3.1995 +56173 0.038093 0.40081 3.4981 +56172 0.038645 0.39987 3.7979 +56171 0.039218 0.39905 4.0976 +56170 0.03979 0.39838 4.3986 +56169 0.040206 0.39789 4.7008 +56168 0.040739 0.39759 5.0012 +56167 0.041154 0.39749 5.304 +56166 0.041547 0.39761 5.6066 +56165 0.041917 0.39795 5.9082 +56164 0.042243 0.39849 6.2097 +56163 0.042574 0.39922 0.2298 +56162 0.04278 0.40012 0.52948 +56161 0.043027 0.40117 0.83095 +56160 0.043226 0.40232 1.1307 +56159 0.043321 0.40355 1.4298 +56158 0.043435 0.40482 1.7289 +56157 0.043502 0.40608 2.0252 +56156 0.043478 0.4073 2.3232 +56155 0.043458 0.40842 2.6186 +56154 0.043351 0.40942 2.9128 +56153 0.043251 0.41027 3.2085 +56152 0.043056 0.41092 3.5012 +56151 0.042805 0.41136 3.7937 +56150 0.042627 0.41156 4.0869 +56149 0.042244 0.41152 4.378 +56148 0.041931 0.41123 4.6696 +56147 0.041571 0.41071 4.9601 +56146 0.04113 0.40995 5.2509 +56145 0.040681 0.40899 5.5422 +56144 0.040207 0.40786 5.8302 +56143 0.039698 0.40658 6.1224 +56142 0.039155 0.40519 0.12796 +56141 0.038581 0.40374 0.41731 +56140 0.038014 0.40227 0.70704 +56139 0.037426 0.40084 0.99602 +56138 0.036745 0.39948 1.2843 +56137 0.036184 0.39826 1.5723 +56136 0.035516 0.3972 1.8598 +56135 0.034835 0.39635 2.1466 +56134 0.034225 0.39575 2.4308 +56133 0.033554 0.39541 2.716 +56132 0.032878 0.39535 2.9986 +56131 0.032261 0.39557 3.2787 +56130 0.031577 0.39607 3.5584 +56129 0.031001 0.39683 3.8359 +56128 0.030327 0.39783 4.1101 +56127 0.029776 0.39903 4.3828 +56126 0.029226 0.40039 4.6539 +56125 0.028661 0.40188 4.9208 +56124 0.028191 0.40345 5.187 +56123 0.027769 0.40504 5.4486 +56122 0.027317 0.40663 5.7113 +56121 0.026985 0.40816 5.9679 +56120 0.026687 0.40959 6.2245 +56119 0.026404 0.41089 0.19782 +56118 0.026216 0.41201 0.44932 +56117 0.026054 0.41293 0.70145 +56116 0.025985 0.41363 0.95525 +56115 0.025911 0.41409 1.2041 +56114 0.025942 0.4143 1.4559 +56113 0.026041 0.41425 1.708 +56112 0.026127 0.41395 1.9588 +56111 0.026297 0.41341 2.213 +56110 0.02655 0.41265 2.4649 +56109 0.02676 0.41168 2.7222 +56108 0.027049 0.41053 2.9782 +56107 0.0274 0.40924 3.2357 +56106 0.02769 0.40783 3.4984 +56105 0.028097 0.40634 3.7597 +56104 0.028436 0.4048 4.0236 +56103 0.028883 0.40324 4.2919 +56102 0.029257 0.4017 4.5595 +56101 0.029673 0.40021 4.8296 +56100 0.030145 0.3988 5.1031 +56099 0.03054 0.3975 5.3759 +56098 0.030961 0.39634 5.653 +56097 0.03145 0.39535 5.9286 +56096 0.031842 0.39454 6.2083 +56095 0.03229 0.39395 0.20489 +56094 0.032731 0.39359 0.48408 +56093 0.033169 0.39346 0.76643 +56092 0.033597 0.39357 1.0487 +56091 0.033998 0.39393 1.3288 +56090 0.034462 0.39452 1.6133 +56089 0.034854 0.39534 1.8949 +56088 0.035242 0.39637 2.1775 +56087 0.035693 0.39759 2.4601 +56086 0.036089 0.39897 2.7426 +56085 0.036451 0.4005 3.0245 +56084 0.036916 0.40213 3.3059 +56083 0.037274 0.40384 3.5871 +56082 0.037688 0.40558 3.8685 +56081 0.038073 0.40733 4.1477 +56080 0.03848 0.40905 4.4277 +56079 0.038866 0.41069 4.7079 +56078 0.039245 0.41221 4.9854 +56077 0.039629 0.41359 5.2648 +56076 0.040046 0.41479 5.543 +56075 0.040374 0.41576 5.8211 +56074 0.040765 0.41649 6.0988 +56073 0.041184 0.41695 0.093805 +56072 0.041472 0.41712 0.37238 +56071 0.04189 0.41698 0.6501 +56070 0.042229 0.41655 0.92896 +56069 0.04256 0.41581 1.209 +56068 0.042912 0.41477 1.4884 +56067 0.043207 0.41346 1.7688 +56066 0.043562 0.41189 2.0523 +56065 0.043817 0.41011 2.334 +56064 0.044102 0.40814 2.6188 +56063 0.044424 0.40603 2.9045 +56062 0.044638 0.40384 3.1917 +56061 0.044873 0.40163 3.4803 +56060 0.045168 0.39945 3.7694 +56059 0.045303 0.39738 4.0619 +56058 0.045546 0.39546 4.354 +56057 0.045684 0.39377 4.6473 +56056 0.045852 0.39236 4.9437 +56055 0.045964 0.39126 5.2391 +56054 0.046053 0.39053 5.5355 +56053 0.046172 0.39018 5.8341 +56052 0.046204 0.39022 6.1308 +56051 0.046218 0.39067 0.14627 +56050 0.046271 0.39149 0.44292 +56049 0.046206 0.39267 0.74057 +56048 0.046151 0.39417 1.0373 +56047 0.046068 0.39594 1.332 +56046 0.045939 0.39793 1.6272 +56045 0.045779 0.40007 1.9215 +56044 0.045558 0.40231 2.2123 +56043 0.045369 0.40456 2.5051 +56042 0.045075 0.40677 2.7947 +56041 0.044764 0.40888 3.0833 +56040 0.044446 0.41081 3.3712 +56039 0.044093 0.41254 3.658 +56038 0.04363 0.414 3.9439 +56037 0.043263 0.41516 4.2281 +56036 0.042777 0.416 4.5128 +56035 0.042277 0.4165 4.7963 +56034 0.041795 0.41666 5.0788 +56033 0.04124 0.41648 5.3607 +56032 0.040715 0.41597 5.6438 +56031 0.040109 0.41515 5.9243 +56030 0.039534 0.41406 6.2057 +56029 0.038958 0.41273 0.20447 +56028 0.03829 0.4112 0.48453 +56027 0.037683 0.40953 0.76611 +56026 0.037086 0.40775 1.0462 +56025 0.03638 0.40592 1.3278 +56024 0.035777 0.40411 1.6075 +56023 0.035138 0.40235 1.8874 +56022 0.034467 0.4007 2.1682 +56021 0.033864 0.3992 2.4472 +56020 0.033185 0.39789 2.725 +56019 0.032626 0.3968 3.0051 +56018 0.031966 0.39595 3.2812 +56017 0.031388 0.39536 3.5582 +56016 0.030863 0.39504 3.8343 +56015 0.03029 0.39498 4.1085 +56014 0.029768 0.39517 4.3827 +56013 0.02937 0.39561 4.6533 +56012 0.028878 0.39627 4.926 +56011 0.028504 0.39712 5.1948 +56010 0.028165 0.39814 5.4612 +56009 0.027852 0.39929 5.7301 +56008 0.027578 0.40053 5.9943 +56007 0.027353 0.40184 6.2573 +56006 0.027172 0.40316 0.23962 +56005 0.027039 0.40448 0.49992 +56004 0.026886 0.40575 0.76288 +56003 0.026876 0.40694 1.0235 +56002 0.026815 0.40803 1.2855 +56001 0.026788 0.409 1.5466 +56000 0.026871 0.40983 1.8078 +55999 0.026889 0.4105 2.0699 +55998 0.026983 0.41101 2.3339 +55997 0.027074 0.41134 2.5948 +55996 0.02721 0.41149 2.8609 +55995 0.027327 0.41146 3.1266 +55994 0.02746 0.41124 3.3911 +55993 0.027623 0.41085 3.6605 +55992 0.027781 0.41028 3.9291 +55991 0.02789 0.40956 4.1991 +55990 0.028079 0.40868 4.4708 +55989 0.028224 0.40767 4.744 +55988 0.028314 0.40654 5.0185 +55987 0.028492 0.40533 5.2939 +55986 0.02859 0.40405 5.5705 +55985 0.028699 0.40274 5.8504 +55984 0.028787 0.40143 6.1284 +55983 0.028891 0.40017 0.12537 +55982 0.028951 0.39897 0.40935 +55981 0.029002 0.39789 0.68896 +55980 0.029044 0.39695 0.97386 +55979 0.029101 0.39619 1.2575 +55978 0.029069 0.39563 1.542 +55977 0.029081 0.39531 1.8267 +55976 0.029109 0.39524 2.112 +55975 0.02901 0.39544 2.3974 +55974 0.029028 0.3959 2.6829 +55973 0.028962 0.39663 2.9662 +55972 0.028903 0.39762 3.2526 +55971 0.028845 0.39884 3.5352 +55970 0.028752 0.40027 3.8175 +55969 0.028705 0.40186 4.1009 +55968 0.028602 0.40359 4.3813 +55967 0.028473 0.40539 4.6611 +55966 0.028476 0.40722 4.9409 +55965 0.028283 0.40903 5.2187 +55964 0.028223 0.41075 5.4958 +55963 0.028154 0.41233 5.7713 +55962 0.028028 0.41373 6.0472 +55961 0.027931 0.4149 0.038762 +55960 0.027857 0.4158 0.31011 +55959 0.027748 0.41638 0.58605 +55958 0.027666 0.41663 0.85746 +55957 0.027544 0.41654 1.1302 +55956 0.027486 0.41608 1.4041 +55955 0.02739 0.41527 1.6773 +55954 0.02726 0.41411 1.9513 +55953 0.027245 0.41264 2.2264 +55952 0.027127 0.41088 2.5022 +55951 0.027041 0.40889 2.7801 +55950 0.026992 0.4067 3.057 +55949 0.026913 0.40439 3.3375 +55948 0.026826 0.40201 3.6199 +55947 0.026758 0.39964 3.9002 +55946 0.026688 0.39736 4.1869 +55945 0.026606 0.39522 4.4724 +55944 0.026513 0.39331 4.7593 +55943 0.026419 0.39169 5.049 +55942 0.026369 0.39041 5.3391 +55941 0.026187 0.38952 5.6309 +55940 0.026129 0.38905 5.9224 +55939 0.025994 0.38902 6.2156 +55938 0.025827 0.38944 0.22622 +55937 0.025688 0.39029 0.51892 +55936 0.025518 0.39154 0.81095 +55935 0.025323 0.39316 1.1068 +55934 0.025105 0.39509 1.3958 +55933 0.02488 0.39728 1.6884 +55932 0.024655 0.39965 1.98 +55931 0.024349 0.40213 2.268 +55930 0.02407 0.40466 2.5571 +55929 0.023801 0.40715 2.8451 +55928 0.023414 0.40955 3.1306 +55927 0.023112 0.41178 3.4173 +55926 0.022749 0.41379 3.699 +55925 0.022363 0.41554 3.985 +55924 0.021972 0.41698 4.2657 +55923 0.021565 0.41809 4.5454 +55922 0.021139 0.41884 4.8282 +55921 0.020711 0.41922 5.1059 +55920 0.020201 0.41923 5.3842 +55919 0.019811 0.41888 5.663 +55918 0.019259 0.41819 5.9405 +55917 0.018772 0.41716 6.2171 +55916 0.018311 0.41584 0.21051 +55915 0.017755 0.41427 0.48728 +55914 0.017248 0.41247 0.76433 +55913 0.01675 0.41051 1.036 +55912 0.016221 0.40842 1.315 +55911 0.015705 0.40626 1.5884 +55910 0.015191 0.40408 1.8595 +55909 0.014693 0.40193 2.1351 +55908 0.014216 0.39985 2.4062 +55907 0.013677 0.39789 2.6767 +55906 0.013267 0.39611 2.946 +55905 0.0128 0.39453 3.2157 +55904 0.012324 0.39319 3.4817 +55903 0.011988 0.39211 3.7465 +55902 0.011565 0.39133 4.0095 +55901 0.011213 0.39084 4.2738 +55900 0.010904 0.39067 4.5279 +55899 0.010616 0.39081 4.788 +55898 0.010342 0.39124 5.0447 +55897 0.010132 0.39196 5.2932 +55896 0.009909 0.39295 5.5489 +55895 0.009798 0.39419 5.7986 +55894 0.009595 0.39564 6.0474 +55893 0.009529 0.39727 0.013711 +55892 0.00946 0.39904 0.26369 +55891 0.009349 0.40092 0.51285 +55890 0.009339 0.40287 0.76298 +55889 0.009332 0.40483 1.0117 +55888 0.009261 0.40678 1.2699 +55887 0.009294 0.40867 1.5176 +55886 0.00928 0.41045 1.7747 +55885 0.009276 0.4121 2.0356 +55884 0.009267 0.41357 2.2893 +55883 0.009261 0.41483 2.549 +55882 0.00926 0.41585 2.8166 +55881 0.009204 0.4166 3.0712 +55880 0.009168 0.41706 3.3407 +55879 0.009142 0.41723 3.6027 +55878 0.009035 0.41708 3.8705 +55877 0.008941 0.41662 4.1362 +55876 0.008886 0.41584 4.4012 +55875 0.008696 0.41477 4.673 +55874 0.008594 0.41342 4.9387 +55873 0.008413 0.41182 5.2026 +55872 0.008242 0.41 5.4767 +55871 0.008033 0.40801 5.7406 +55870 0.007802 0.40588 6.0026 +55869 0.007601 0.40369 6.2761 +55868 0.007321 0.40149 0.25028 +55867 0.007059 0.39934 0.51434 +55866 0.006828 0.3973 0.77432 +55865 0.006531 0.39545 1.0298 +55864 0.006245 0.39383 1.285 +55863 0.006041 0.39251 1.5259 +55862 0.005742 0.39152 1.7742 +55861 0.005524 0.39091 2.009 +55860 0.005323 0.3907 2.2284 +55859 0.005149 0.3909 2.4541 +55858 0.004995 0.39151 2.6708 +55857 0.004902 0.3925 2.8594 +55856 0.004867 0.39386 3.0774 +55855 0.004868 0.39552 3.2649 +55854 0.004915 0.39745 3.4609 +55853 0.005064 0.39957 3.6652 +55852 0.005231 0.40182 3.8675 +55851 0.005415 0.40412 4.0725 +55850 0.005741 0.4064 4.2948 +55849 0.006007 0.40858 4.5113 +55848 0.006324 0.41061 4.7457 +55847 0.006712 0.41242 4.9753 +55846 0.007059 0.41396 5.2181 +55845 0.007429 0.41518 5.4667 +55844 0.007828 0.41604 5.712 +55843 0.008199 0.41653 5.9696 +55842 0.008605 0.41663 6.2342 +55841 0.008945 0.41634 0.20534 +55840 0.009366 0.41566 0.47896 +55839 0.009718 0.41463 0.74822 +55838 0.010059 0.41328 1.0191 +55837 0.010425 0.41164 1.2969 +55836 0.010782 0.40977 1.5739 +55835 0.011037 0.40772 1.8571 +55834 0.011403 0.40557 2.1366 +55833 0.011663 0.40338 2.4228 +55832 0.011917 0.40122 2.7113 +55831 0.012183 0.39917 2.9973 +55830 0.012389 0.39728 3.2859 +55829 0.012625 0.39563 3.581 +55828 0.012764 0.39426 3.8684 +55827 0.012944 0.39322 4.1608 +55826 0.01311 0.39254 4.4551 +55825 0.013173 0.39225 4.7445 +55824 0.01329 0.39233 5.0373 +55823 0.013391 0.3928 5.326 +55822 0.013389 0.39362 5.6182 +55821 0.013455 0.39476 5.9042 +55820 0.013477 0.39618 6.1898 +55819 0.013445 0.39783 0.19367 +55818 0.01347 0.39964 0.47521 +55817 0.013395 0.40157 0.75364 +55816 0.013419 0.40355 1.0355 +55815 0.013323 0.40553 1.3098 +55814 0.013276 0.40743 1.5834 +55813 0.01326 0.40922 1.857 +55812 0.013173 0.41085 2.1258 +55811 0.013093 0.41226 2.3959 +55810 0.013112 0.41345 2.658 +55809 0.013014 0.41437 2.9266 +55808 0.012982 0.41501 3.1879 +55807 0.012974 0.41537 3.446 +55806 0.012937 0.41543 3.7093 +55805 0.012923 0.41521 3.967 +55804 0.012912 0.4147 4.2215 +55803 0.012926 0.41394 4.484 +55802 0.012946 0.41293 4.7377 +55801 0.012931 0.41172 4.9974 +55800 0.013023 0.41032 5.2544 +55799 0.013064 0.40877 5.5146 +55798 0.013091 0.4071 5.7744 +55797 0.013238 0.40536 6.0345 +55796 0.013292 0.40358 0.013168 +55795 0.013416 0.4018 0.27974 +55794 0.013531 0.40005 0.53979 +55793 0.013681 0.39838 0.8091 +55792 0.013814 0.39682 1.0784 +55791 0.013964 0.39541 1.3433 +55790 0.014135 0.39419 1.6178 +55789 0.014327 0.39318 1.8886 +55788 0.014459 0.39241 2.1614 +55787 0.014674 0.3919 2.4355 +55786 0.014874 0.39167 2.7101 +55785 0.015005 0.39172 2.9863 +55784 0.015235 0.39206 3.2606 +55783 0.015398 0.3927 3.5359 +55782 0.015568 0.39361 3.8147 +55781 0.015726 0.39478 4.0875 +55780 0.0159 0.39621 4.3621 +55779 0.016048 0.39785 4.6417 +55778 0.016173 0.39967 4.9106 +55777 0.016313 0.40165 5.1867 +55776 0.016465 0.40373 5.4592 +55775 0.016547 0.40587 5.73 +55774 0.016668 0.40802 5.9999 +55773 0.016825 0.41013 6.2691 +55772 0.016861 0.41215 0.25335 +55771 0.017023 0.41402 0.52032 +55770 0.017114 0.41571 0.78281 +55769 0.017226 0.41715 1.0495 +55768 0.017351 0.41832 1.3109 +55767 0.017471 0.41917 1.5706 +55766 0.017631 0.41968 1.8343 +55765 0.017781 0.41981 2.0927 +55764 0.017918 0.41956 2.3511 +55763 0.018193 0.41892 2.6121 +55762 0.018329 0.41789 2.87 +55761 0.018583 0.41649 3.1292 +55760 0.018873 0.41474 3.3888 +55759 0.019115 0.41267 3.6494 +55758 0.019407 0.41032 3.9125 +55757 0.019769 0.40776 4.1723 +55756 0.020072 0.40504 4.4407 +55755 0.020459 0.40222 4.7065 +55754 0.020827 0.3994 4.9749 +55753 0.021249 0.39665 5.2482 +55752 0.021684 0.39404 5.5226 +55751 0.022084 0.39168 5.7981 +55750 0.022621 0.38963 6.0789 +55749 0.023074 0.38796 0.076707 +55748 0.023558 0.38673 0.36099 +55747 0.024127 0.386 0.64587 +55746 0.024646 0.38577 0.93322 +55745 0.025174 0.38608 1.2226 +55744 0.025767 0.38692 1.5095 +55743 0.026318 0.38824 1.8011 +55742 0.026892 0.39003 2.0906 +55741 0.02747 0.39221 2.3796 +55740 0.02803 0.39472 2.6697 +55739 0.028657 0.39749 2.9588 +55738 0.02915 0.40042 3.2469 +55737 0.029765 0.40341 3.5341 +55736 0.030317 0.4064 3.8213 +55735 0.030814 0.40928 4.1074 +55734 0.031357 0.41199 4.3928 +55733 0.03187 0.41444 4.6768 +55732 0.032318 0.41657 4.9637 +55731 0.032785 0.41833 5.2459 +55730 0.033223 0.41968 5.531 +55729 0.033638 0.4206 5.8167 +55728 0.034008 0.42106 6.1002 +55727 0.034362 0.42106 0.10257 +55726 0.034743 0.42061 0.38938 +55725 0.034997 0.41974 0.67488 +55724 0.035305 0.41846 0.96351 +55723 0.035578 0.41682 1.2504 +55722 0.035782 0.41487 1.5413 +55721 0.03598 0.41268 1.8312 +55720 0.036162 0.4103 2.1216 +55719 0.036269 0.4078 2.4162 +55718 0.036387 0.40526 2.7088 +55717 0.036391 0.40275 3.0034 +55716 0.036479 0.40035 3.3006 +55715 0.036408 0.39811 3.597 +55714 0.03635 0.3961 3.8949 +55713 0.036309 0.39437 4.1938 +55712 0.036144 0.39297 4.4927 +55711 0.035995 0.39192 4.7931 +55710 0.035838 0.39125 5.0907 +55709 0.035613 0.39096 5.3917 +55708 0.035379 0.39104 5.6901 +55707 0.035117 0.39148 5.987 +55706 0.034832 0.39224 0.001995 +55705 0.034548 0.3933 0.29766 +55704 0.034163 0.39461 0.59209 +55703 0.033876 0.39612 0.88491 +55702 0.033506 0.39778 1.1774 +55701 0.033074 0.39953 1.4667 +55700 0.032761 0.40134 1.7547 +55699 0.032313 0.40314 2.0413 +55698 0.031901 0.40489 2.3266 +55697 0.031485 0.40655 2.6084 +55696 0.031054 0.40809 2.89 +55695 0.030604 0.40948 3.1709 +55694 0.030165 0.41069 3.4473 +55693 0.029697 0.4117 3.7255 +55692 0.029291 0.41251 4.0008 +55691 0.028787 0.41309 4.2754 +55690 0.028368 0.41346 4.5483 +55689 0.027961 0.41359 4.8208 +55688 0.02748 0.4135 5.0925 +55687 0.027098 0.41319 5.363 +55686 0.026707 0.41266 5.6312 +55685 0.026298 0.41194 5.9033 +55684 0.025942 0.41104 6.1694 +55683 0.025599 0.40998 0.15458 +55682 0.025277 0.40877 0.42389 +55681 0.024961 0.40746 0.6896 +55680 0.024663 0.40606 0.9567 +55679 0.024463 0.4046 1.225 +55678 0.024159 0.40313 1.4902 +55677 0.023968 0.40166 1.7584 +55676 0.023803 0.40024 2.0234 +55675 0.023606 0.39889 2.2916 +55674 0.023442 0.39766 2.5585 +55673 0.023354 0.39657 2.8233 +55672 0.023194 0.39565 3.0936 +55671 0.023123 0.39495 3.3593 +55670 0.023009 0.39447 3.6263 +55669 0.022968 0.39425 3.8961 +55668 0.022898 0.3943 4.1635 +55667 0.022827 0.39463 4.4308 +55666 0.022869 0.39525 4.7009 +55665 0.022808 0.39614 4.9677 +55664 0.022823 0.3973 5.2363 +55663 0.022884 0.39869 5.5034 +55662 0.022906 0.40029 5.7702 +55661 0.022971 0.40205 6.0381 +55660 0.023075 0.40393 0.017654 +55659 0.023174 0.40586 0.2847 +55658 0.023312 0.4078 0.54861 +55657 0.023443 0.40969 0.81002 +55656 0.02364 0.41147 1.0734 +55655 0.023847 0.41308 1.3362 +55654 0.024008 0.41448 1.5947 +55653 0.024323 0.41561 1.8573 +55652 0.024547 0.41645 2.1172 +55651 0.024824 0.41695 2.3776 +55650 0.025154 0.41709 2.6382 +55649 0.025489 0.41685 2.8992 +55648 0.025793 0.41622 3.1625 +55647 0.026207 0.41522 3.4235 +55646 0.026558 0.41385 3.6888 +55645 0.026969 0.41215 3.9555 +55644 0.027373 0.41014 4.2222 +55643 0.027798 0.40789 4.4926 +55642 0.028265 0.40545 4.7659 +55641 0.028691 0.4029 5.0398 +55640 0.029167 0.4003 5.3178 +55639 0.029713 0.39775 5.5975 +55638 0.030132 0.39532 5.881 +55637 0.030703 0.3931 6.1648 +55636 0.031237 0.39118 0.1694 +55635 0.031731 0.38962 0.45888 +55634 0.032318 0.38848 0.74991 +55633 0.03283 0.3878 1.0411 +55632 0.033412 0.38762 1.337 +55631 0.033919 0.38796 1.6298 +55630 0.034463 0.3888 1.9249 +55629 0.035024 0.39011 2.2212 +55628 0.0355 0.39187 2.5155 +55627 0.03599 0.39402 2.8113 +55626 0.036534 0.39647 3.1049 +55625 0.036941 0.39916 3.4 +55624 0.037395 0.40201 3.6933 +55623 0.03784 0.40492 3.9846 +55622 0.038209 0.4078 4.2784 +55621 0.038592 0.41057 4.569 +55620 0.038911 0.41315 4.859 +55619 0.039269 0.41547 5.151 +55618 0.039521 0.41746 5.44 +55617 0.039783 0.41908 5.73 +55616 0.040046 0.42029 6.0205 +55615 0.04023 0.42107 0.026387 +55614 0.040397 0.42139 0.31829 +55613 0.040565 0.42126 0.60703 +55612 0.040685 0.42069 0.89968 +55611 0.040739 0.41969 1.1914 +55610 0.040807 0.41829 1.4831 +55609 0.040798 0.41655 1.7775 +55608 0.04079 0.41449 2.0723 +55607 0.040653 0.41219 2.3675 +55606 0.040581 0.40971 2.6648 +55605 0.040408 0.40712 2.9637 +55604 0.040146 0.40448 3.2633 +55603 0.039928 0.40188 3.5646 +55602 0.039634 0.39937 3.8675 +55601 0.039237 0.39703 4.1721 +55600 0.03891 0.39491 4.4767 +55599 0.038449 0.39306 4.7833 +55598 0.038029 0.39153 5.0913 +55597 0.037517 0.39034 5.3988 +55596 0.036999 0.38953 5.7064 +55595 0.036499 0.38909 6.0165 +55594 0.035856 0.38903 0.039879 +55593 0.035282 0.38933 0.34888 +55592 0.034671 0.38998 0.65528 +55591 0.033961 0.39095 0.96251 +55590 0.03329 0.3922 1.2677 +55589 0.032591 0.39369 1.571 +55588 0.031818 0.39539 1.8759 +55587 0.031077 0.39724 2.1762 +55586 0.030242 0.39919 2.4761 +55585 0.029472 0.4012 2.7762 +55584 0.028596 0.40324 3.0726 +55583 0.027713 0.40526 3.3689 +55582 0.026896 0.40721 3.6639 +55581 0.025951 0.40908 3.957 +55580 0.025065 0.41082 4.25 +55579 0.024177 0.41242 4.5384 +55578 0.02327 0.41384 4.8295 +55577 0.022339 0.41506 5.1175 +55576 0.021451 0.41605 5.3994 +55575 0.020555 0.41681 5.6879 +55574 0.019645 0.41731 5.9675 +55573 0.018739 0.41754 6.2472 +55572 0.017873 0.4175 0.24255 +55571 0.016998 0.41717 0.51769 +55570 0.016082 0.41658 0.79014 +55569 0.015285 0.41571 1.06 +55568 0.014404 0.4146 1.3261 +55567 0.013579 0.41324 1.5917 +55566 0.012786 0.41167 1.8473 +55565 0.012006 0.40991 2.1037 +55564 0.011246 0.40799 2.356 +55563 0.010533 0.40595 2.5952 +55562 0.009841 0.40383 2.8354 +55561 0.009245 0.40167 3.0697 +55560 0.008603 0.39954 3.2881 +55559 0.008145 0.39747 3.5075 +55558 0.007693 0.39554 3.718 +55557 0.007311 0.39381 3.9158 +55556 0.007071 0.39232 4.116 +55555 0.006921 0.39114 4.3047 +55554 0.006786 0.3903 4.4996 +55553 0.006863 0.38984 4.6906 +55552 0.006957 0.38978 4.8864 +55551 0.007127 0.39014 5.095 +55550 0.007395 0.3909 5.3028 +55549 0.007732 0.39205 5.5195 +55548 0.008071 0.39355 5.7559 +55547 0.008497 0.39537 5.9797 +55546 0.008937 0.39745 6.2252 +55545 0.009413 0.39972 0.19015 +55544 0.009896 0.40213 0.4365 +55543 0.010387 0.4046 0.69267 +55542 0.010955 0.40706 0.95224 +55541 0.011401 0.40943 1.211 +55540 0.011968 0.41165 1.4747 +55539 0.012501 0.41364 1.7408 +55538 0.012974 0.41535 2.0077 +55537 0.013525 0.41673 2.2792 +55536 0.014013 0.41773 2.5469 +55535 0.014526 0.41831 2.8252 +55534 0.015006 0.41847 3.0988 +55533 0.015486 0.41821 3.3749 +55532 0.015986 0.41752 3.6587 +55531 0.016433 0.41643 3.9389 +55530 0.016865 0.41498 4.223 +55529 0.017397 0.41321 4.5119 +55528 0.017755 0.41118 4.801 +55527 0.018228 0.40895 5.0928 +55526 0.018678 0.40658 5.3864 +55525 0.01907 0.40416 5.6837 +55524 0.019487 0.40177 5.9835 +55523 0.019898 0.39947 6.2806 +55522 0.02028 0.39734 0.3036 +55521 0.020658 0.39547 0.60586 +55520 0.020977 0.39389 0.9115 +55519 0.021335 0.39268 1.2196 +55518 0.021633 0.39188 1.5284 +55517 0.021866 0.39149 1.8384 +55516 0.02218 0.39155 2.1493 +55515 0.022387 0.39203 2.4614 +55514 0.022578 0.3929 2.7757 +55513 0.022789 0.39414 3.0855 +55512 0.022954 0.39568 3.4014 +55511 0.023075 0.39747 3.7146 +55510 0.023223 0.39943 4.0263 +55509 0.023295 0.4015 4.3413 +55508 0.023428 0.40361 4.6539 +55507 0.023431 0.40569 4.9678 +55506 0.023517 0.40768 5.2801 +55505 0.023569 0.40952 5.5937 +55504 0.02352 0.41116 5.9072 +55503 0.023562 0.41256 6.2199 +55502 0.023511 0.41368 0.24913 +55501 0.023464 0.41451 0.56523 +55500 0.023372 0.41501 0.87804 +55499 0.02326 0.4152 1.1923 +55498 0.023172 0.41506 1.5115 +55497 0.022955 0.41462 1.8267 +55496 0.022795 0.41388 2.1468 +55495 0.022631 0.4129 2.4677 +55494 0.022349 0.41168 2.7912 +55493 0.022141 0.41029 3.1163 +55492 0.02191 0.40875 3.4427 +55491 0.021606 0.40712 3.7747 +55490 0.021396 0.40543 4.1059 +55489 0.02106 0.40375 4.4398 +55488 0.020855 0.40209 4.7777 +55487 0.020551 0.40051 5.1176 +55486 0.020259 0.39903 5.4578 +55485 0.020067 0.3977 5.8024 +55484 0.019766 0.39654 6.1475 +55483 0.019539 0.39557 0.21352 +55482 0.019321 0.39482 0.55964 +55481 0.019106 0.3943 0.9125 +55480 0.018898 0.39402 1.2648 +55479 0.018694 0.39398 1.6156 +55478 0.018545 0.39419 1.9713 +55477 0.018395 0.39462 2.3275 +55476 0.018201 0.39527 2.6823 +55475 0.018154 0.39612 3.0399 +55474 0.018039 0.39716 3.3967 +55473 0.017988 0.39836 3.7561 +55472 0.017961 0.39969 4.1131 +55471 0.017995 0.40114 4.4682 +55470 0.018065 0.40269 4.8295 +55469 0.018129 0.40429 5.1796 +55468 0.018284 0.40592 5.5347 +55467 0.018465 0.40756 5.8859 +55466 0.018608 0.40916 6.2338 +55465 0.01883 0.4107 0.29778 +55464 0.019077 0.41213 0.64013 +55463 0.019269 0.41343 0.98495 +55462 0.019551 0.41455 1.3235 +55461 0.019778 0.41547 1.6603 +55460 0.02007 0.41617 1.9989 +55459 0.020333 0.41661 2.3315 +55458 0.020569 0.41678 2.6641 +55457 0.020912 0.41667 2.9956 +55456 0.021135 0.41627 3.3249 +55455 0.021425 0.41558 3.6542 +55454 0.021711 0.41459 3.9797 +55453 0.021985 0.41332 4.3072 +55452 0.022258 0.41178 4.6344 +55451 0.022513 0.41 4.9549 +55450 0.022821 0.40802 5.2827 +55449 0.023042 0.40586 5.6045 +55448 0.02329 0.40359 5.9269 +55447 0.023529 0.40126 6.2503 +55446 0.023753 0.39893 0.2885 +55445 0.023893 0.39668 0.61215 +55444 0.024108 0.39457 0.93275 +55443 0.02424 0.39266 1.2557 +55442 0.024355 0.39104 1.5796 +55441 0.024461 0.38974 1.9001 +55440 0.024554 0.38881 2.2231 +55439 0.024621 0.3883 2.5468 +55438 0.024651 0.38822 2.8666 +55437 0.024671 0.38859 3.1892 +55436 0.024743 0.38941 3.509 +55435 0.024677 0.39065 3.8294 +55434 0.024701 0.39228 4.1457 +55433 0.024703 0.39427 4.4625 +55432 0.024604 0.39656 4.7772 +55431 0.024608 0.39908 5.0887 +55430 0.02448 0.40175 5.3975 +55429 0.024414 0.4045 5.7073 +55428 0.024262 0.40724 6.0117 +55427 0.024089 0.40991 0.032095 +55426 0.023966 0.41241 0.33493 +55425 0.023718 0.41468 0.63535 +55424 0.023468 0.41666 0.93477 +55423 0.023291 0.41831 1.2311 +55422 0.022944 0.41958 1.5301 +55421 0.022661 0.42044 1.8253 +55420 0.022348 0.42089 2.1196 +55419 0.021978 0.4209 2.4168 +55418 0.021628 0.4205 2.7112 +55417 0.021184 0.41969 3.005 +55416 0.020831 0.41848 3.3023 +55415 0.02036 0.41694 3.5979 +55414 0.019899 0.41507 3.8931 +55413 0.019478 0.41295 4.1913 +55412 0.018951 0.41063 4.4863 +55411 0.018463 0.40818 4.7871 +55410 0.01792 0.40566 5.0814 +55409 0.017383 0.40316 5.3809 +55408 0.016778 0.40074 5.6818 +55407 0.016165 0.39847 5.9763 +55406 0.015529 0.39641 6.2779 +55405 0.014879 0.39462 0.29376 +55404 0.014122 0.39314 0.59043 +55403 0.013453 0.392 0.88929 +55402 0.012692 0.39122 1.1853 +55401 0.011885 0.39081 1.4804 +55400 0.011108 0.39077 1.7724 +55399 0.010294 0.39107 2.0589 +55398 0.009417 0.3917 2.3497 +55397 0.008584 0.39263 2.6212 +55396 0.007689 0.39383 2.8944 +55395 0.006835 0.39525 3.1563 +55394 0.005945 0.39685 3.3952 +55393 0.005085 0.39858 3.6065 +55392 0.004334 0.40039 3.7926 +55391 0.003564 0.40222 3.8918 +55390 0.003076 0.40402 3.923 +55389 0.002918 0.40575 3.8725 +55388 0.003087 0.40737 3.7973 +55387 0.003702 0.40885 3.8161 +55386 0.004529 0.41015 3.9229 +55385 0.00549 0.41126 4.0761 +55384 0.006563 0.41218 4.2901 +55383 0.007728 0.41288 4.5161 +55382 0.008871 0.41336 4.7691 +55381 0.010101 0.41364 5.0281 +55380 0.011386 0.41371 5.2966 +55379 0.012585 0.41357 5.575 +55378 0.013904 0.41324 5.8529 +55377 0.015171 0.41273 6.1365 +55376 0.016466 0.41204 0.14374 +55375 0.017743 0.4112 0.43282 +55374 0.01901 0.41022 0.72396 +55373 0.020361 0.40912 1.0227 +55372 0.021574 0.40793 1.3176 +55371 0.022876 0.40668 1.6171 +55370 0.024189 0.40539 1.9179 +55369 0.025403 0.40409 2.2198 +55368 0.026681 0.40281 2.5236 +55367 0.027958 0.40159 2.8267 +55366 0.029144 0.40044 3.1342 +55365 0.030421 0.39939 3.4401 +55364 0.031576 0.39846 3.7469 +55363 0.032827 0.39767 4.0559 +55362 0.033979 0.39705 4.3647 +55361 0.035103 0.39661 4.673 +55360 0.036316 0.39636 4.9833 +55359 0.037369 0.39632 5.292 +55358 0.038453 0.3965 5.6023 +55357 0.039525 0.39689 5.9104 +55356 0.040521 0.39749 6.2205 +55355 0.041483 0.39828 0.2463 +55354 0.042415 0.39925 0.55394 +55353 0.043313 0.40038 0.86276 +55352 0.044173 0.40162 1.1705 +55351 0.044938 0.40295 1.4766 +55350 0.045749 0.40433 1.7837 +55349 0.046454 0.40572 2.0889 +55348 0.047121 0.40708 2.394 +55347 0.047741 0.40838 2.6979 +55346 0.048371 0.40957 3.0009 +55345 0.048844 0.41062 3.3052 +55344 0.049368 0.41149 3.6057 +55343 0.049822 0.41216 3.908 +55342 0.050193 0.4126 4.2097 +55341 0.05056 0.41278 4.5096 +55340 0.05083 0.4127 4.8102 +55339 0.051132 0.41236 5.1108 +55338 0.051265 0.41175 5.4105 +55337 0.051422 0.41089 5.7111 +55336 0.051562 0.40981 6.0112 +55335 0.051536 0.40853 0.029101 +55334 0.051571 0.40709 0.33038 +55333 0.051517 0.40554 0.63119 +55332 0.051412 0.40391 0.93455 +55331 0.051282 0.40226 1.2362 +55330 0.051056 0.40063 1.5393 +55329 0.050867 0.39909 1.8437 +55328 0.050581 0.39767 2.1473 +55327 0.050209 0.39644 2.4519 +55326 0.049959 0.39542 2.7563 +55325 0.049473 0.39467 3.0619 +55324 0.049081 0.39421 3.3661 +55323 0.048639 0.39406 3.6705 +55322 0.048109 0.39424 3.9746 +55321 0.047612 0.39474 4.2785 +55320 0.047004 0.39555 4.5795 +55319 0.046455 0.39665 4.8819 +55318 0.045797 0.398 5.1818 +55317 0.045107 0.39956 5.4801 +55316 0.044467 0.40127 5.7778 +55315 0.043724 0.40308 6.0736 +55314 0.042949 0.40493 0.084513 +55313 0.04222 0.40678 0.37707 +55312 0.041405 0.40857 0.66786 +55311 0.040595 0.41025 0.95833 +55310 0.039748 0.41177 1.2444 +55309 0.038925 0.41309 1.5317 +55308 0.038025 0.41418 1.8171 +55307 0.037173 0.415 2.0989 +55306 0.036256 0.41554 2.3824 +55305 0.035403 0.41577 2.6623 +55304 0.034452 0.4157 2.9424 +55303 0.033557 0.41531 3.22 +55302 0.032683 0.41462 3.497 +55301 0.031704 0.41366 3.7736 +55300 0.030818 0.41246 4.0476 +55299 0.029902 0.41104 4.3203 +55298 0.028961 0.40945 4.5947 +55297 0.02805 0.40774 4.8635 +55296 0.027134 0.40596 5.1333 +55295 0.02625 0.40414 5.4033 +55294 0.025346 0.40233 5.6678 +55293 0.024465 0.40058 5.933 +55292 0.023686 0.39892 6.1958 +55291 0.022815 0.39739 0.1727 +55290 0.022062 0.39603 0.42945 +55289 0.021382 0.39488 0.6837 +55288 0.020631 0.39395 0.93443 +55287 0.020066 0.39328 1.1829 +55286 0.019487 0.39288 1.4236 +55285 0.019033 0.39276 1.6662 +55284 0.018617 0.39293 1.9021 +55283 0.018341 0.39337 2.1317 +55282 0.018147 0.39406 2.3664 +55281 0.018063 0.39499 2.5904 +55280 0.018067 0.39613 2.8171 +55279 0.018261 0.39743 3.0442 +55278 0.018488 0.39887 3.2687 +55277 0.018854 0.40041 3.4964 +55276 0.019383 0.402 3.7262 +55275 0.019944 0.40363 3.9583 +55274 0.020609 0.40525 4.1953 +55273 0.021449 0.40684 4.4323 +55272 0.022248 0.40838 4.6773 +55271 0.023198 0.40983 4.9237 +55270 0.024172 0.41117 5.1727 +55269 0.025212 0.41237 5.4275 +55268 0.026291 0.4134 5.686 +55267 0.027362 0.41425 5.9439 +55266 0.028561 0.41489 6.2104 +55265 0.029693 0.4153 0.19311 +55264 0.030857 0.41549 0.46228 +55263 0.032111 0.41543 0.73504 +55262 0.033298 0.41515 1.0099 +55261 0.034504 0.41464 1.2867 +55260 0.03578 0.41391 1.5658 +55259 0.03696 0.41298 1.8471 +55258 0.038215 0.41186 2.1313 +55257 0.039406 0.41058 2.4157 +55256 0.040628 0.40916 2.703 +55255 0.041819 0.40762 2.9933 +55254 0.04296 0.40599 3.2829 +55253 0.044145 0.4043 3.5764 +55252 0.04528 0.40259 3.8706 +55251 0.046355 0.40089 4.1666 +55250 0.04743 0.39926 4.4641 +55249 0.048522 0.39772 4.7627 +55248 0.049447 0.39632 5.0642 +55247 0.050449 0.3951 5.3646 +55246 0.051377 0.39409 5.668 +55245 0.052222 0.39332 5.9725 +55244 0.053086 0.39282 6.2765 +55243 0.05383 0.39258 0.29888 +55242 0.054624 0.39263 0.60568 +55241 0.055275 0.39297 0.91121 +55240 0.055907 0.39358 1.2182 +55239 0.056543 0.39445 1.524 +55238 0.057027 0.39556 1.8311 +55237 0.057505 0.39689 2.1369 +55236 0.057976 0.39839 2.4414 +55235 0.058269 0.40004 2.7477 +55234 0.058616 0.40178 3.0513 +55233 0.058818 0.40357 3.3547 +55232 0.059052 0.40536 3.6584 +55231 0.059134 0.40709 3.9601 +55230 0.059175 0.40873 4.2614 +55229 0.059236 0.41024 4.5628 +55228 0.059116 0.41157 4.8626 +55227 0.058998 0.41269 5.1629 +55226 0.058844 0.4136 5.4616 +55225 0.058577 0.41425 5.7612 +55224 0.058309 0.41466 6.0599 +55223 0.057925 0.41481 0.074781 +55222 0.05754 0.41469 0.37331 +55221 0.05709 0.41433 0.67258 +55220 0.056506 0.41371 0.96994 +55219 0.056016 0.41287 1.269 +55218 0.055334 0.41183 1.5683 +55217 0.054646 0.41061 1.8672 +55216 0.053941 0.40925 2.1673 +55215 0.053164 0.40779 2.467 +55214 0.052308 0.40627 2.7687 +55213 0.05146 0.40473 3.069 +55212 0.050566 0.40323 3.3709 +55211 0.049587 0.40179 3.6736 +55210 0.048611 0.40045 3.9748 +55209 0.047562 0.39926 4.2782 +55208 0.046542 0.39822 4.5809 +55207 0.045403 0.39737 4.8834 +55206 0.044277 0.39673 5.1863 +55205 0.043176 0.3963 5.4884 +55204 0.041944 0.39609 5.7909 +55203 0.040774 0.3961 6.0921 +55202 0.03957 0.39633 0.10783 +55201 0.038315 0.39676 0.40949 +55200 0.03706 0.39738 0.70542 +55199 0.03579 0.39816 1.0022 +55198 0.034491 0.39907 1.2981 +55197 0.033192 0.40008 1.5902 +55196 0.031819 0.40116 1.8827 +55195 0.030583 0.40226 2.1715 +55194 0.029176 0.40337 2.4601 +55193 0.027861 0.40445 2.745 +55192 0.02658 0.40547 3.0269 +55191 0.025224 0.40642 3.3082 +55190 0.023924 0.40726 3.5851 +55189 0.022628 0.40799 3.8565 +55188 0.021352 0.4086 4.1291 +55187 0.020108 0.40907 4.3937 +55186 0.018828 0.4094 4.6535 +55185 0.017701 0.40958 4.9106 +55184 0.016507 0.40962 5.1603 +55183 0.015398 0.40951 5.3998 +55182 0.014405 0.40926 5.637 +55181 0.013401 0.40887 5.8577 +55180 0.012534 0.40837 6.0763 +55179 0.011779 0.40776 6.2745 +55178 0.011149 0.40706 0.18529 +55177 0.010622 0.4063 0.36863 +55176 0.010349 0.4055 0.53625 +55175 0.010177 0.40468 0.70847 +55174 0.010227 0.40386 0.87758 +55173 0.01044 0.40307 1.0448 +55172 0.010819 0.40232 1.2297 +55171 0.01135 0.40163 1.4222 +55170 0.011974 0.40102 1.621 +55169 0.012734 0.40049 1.8395 +55168 0.013564 0.40007 2.0656 +55167 0.014399 0.39976 2.3007 +55166 0.015387 0.39957 2.5468 +55165 0.016348 0.39951 2.8003 +55164 0.017296 0.39959 3.059 +55163 0.018384 0.39981 3.3253 +55162 0.019383 0.40015 3.5939 +55161 0.020444 0.40063 3.87 +55160 0.021476 0.40121 4.145 +55159 0.022563 0.4019 4.4248 +55158 0.023582 0.40265 4.7099 +55157 0.024629 0.40346 4.9899 +55156 0.025656 0.40429 5.2786 +55155 0.026686 0.40514 5.5656 +55154 0.027664 0.40596 5.8539 +55153 0.028655 0.40675 6.1441 +55152 0.029654 0.40748 0.15153 +55151 0.030548 0.40813 0.44404 +55150 0.031495 0.40869 0.73678 +55149 0.032414 0.40913 1.029 +55148 0.033248 0.40945 1.3255 +55147 0.034109 0.40963 1.6189 +55146 0.03491 0.40966 1.9154 +55145 0.035719 0.40954 2.2128 +55144 0.036461 0.40926 2.5101 +55143 0.037134 0.40883 2.8082 +55142 0.03794 0.40826 3.1084 +55141 0.038488 0.40755 3.4087 +55140 0.039149 0.40673 3.7096 +55139 0.039759 0.40581 4.0118 +55138 0.040257 0.40482 4.3158 +55137 0.0408 0.40378 4.6201 +55136 0.041247 0.40273 4.9243 +55135 0.041664 0.40169 5.2322 +55134 0.04206 0.40068 5.5389 +55133 0.042341 0.39974 5.8473 +55132 0.042687 0.39889 6.1567 +55131 0.042888 0.39815 0.18404 +55130 0.043043 0.39755 0.49515 +55129 0.043257 0.39711 0.80677 +55128 0.043288 0.39685 1.1198 +55127 0.04334 0.39677 1.4332 +55126 0.043321 0.39689 1.7466 +55125 0.04327 0.3972 2.0611 +55124 0.043165 0.3977 2.3768 +55123 0.042964 0.39837 2.6901 +55122 0.042817 0.39919 3.0065 +55121 0.042534 0.40014 3.3216 +55120 0.042235 0.4012 3.636 +55119 0.041879 0.40234 3.9519 +55118 0.041509 0.40353 4.2661 +55117 0.041034 0.40474 4.5826 +55116 0.040566 0.40595 4.8964 +55115 0.040043 0.40714 5.2111 +55114 0.039459 0.40826 5.5277 +55113 0.038842 0.4093 5.8414 +55112 0.038189 0.41024 6.1561 +55111 0.037515 0.41105 0.18986 +55110 0.036723 0.41171 0.5037 +55109 0.035966 0.4122 0.82121 +55108 0.035181 0.41252 1.1372 +55107 0.03428 0.41266 1.4559 +55106 0.033428 0.41261 1.7747 +55105 0.03257 0.41237 2.094 +55104 0.031609 0.41196 2.4172 +55103 0.03073 0.41137 2.7385 +55102 0.029727 0.41063 3.0633 +55101 0.02883 0.40975 3.3902 +55100 0.02784 0.40873 3.718 +55099 0.026836 0.40761 4.0491 +55098 0.02591 0.40639 4.3814 +55097 0.024922 0.40511 4.7181 +55096 0.023933 0.40378 5.0578 +55095 0.023015 0.40244 5.3962 +55094 0.022066 0.40111 5.7458 +55093 0.021129 0.39983 6.093 +55092 0.020238 0.39862 0.16166 +55091 0.019362 0.39752 0.52081 +55090 0.01855 0.39655 0.88267 +55089 0.017697 0.39574 1.251 +55088 0.017012 0.3951 1.6218 +55087 0.016336 0.39466 2.0017 +55086 0.015705 0.39442 2.3862 +55085 0.015245 0.39439 2.7722 +55084 0.01479 0.39457 3.1654 +55083 0.014518 0.39496 3.5617 +55082 0.014268 0.39556 3.9579 +55081 0.01416 0.39635 4.3546 +55080 0.014205 0.39732 4.751 +55079 0.014211 0.39846 5.1462 +55078 0.014422 0.39974 5.5358 +55077 0.014678 0.40113 5.9191 +55076 0.014984 0.40261 0.02179 +55075 0.015356 0.40413 0.39335 +55074 0.015786 0.40566 0.76417 +55073 0.016268 0.40716 1.1305 +55072 0.016769 0.4086 1.4872 +55071 0.017261 0.40993 1.8454 +55070 0.017878 0.41114 2.1913 +55069 0.018424 0.41219 2.5399 +55068 0.019005 0.41306 2.8804 +55067 0.019618 0.41373 3.2159 +55066 0.020211 0.41419 3.5516 +55065 0.020824 0.41441 3.8819 +55064 0.021348 0.41441 4.2082 +55063 0.021974 0.41417 4.5351 +55062 0.022522 0.41369 4.8583 +55061 0.023012 0.41298 5.1806 +55060 0.023576 0.41207 5.4996 +55059 0.024061 0.41096 5.8207 +55058 0.024484 0.4097 6.1396 +55057 0.02499 0.4083 0.17331 +55056 0.025338 0.40682 0.49252 +55055 0.025779 0.40528 0.81072 +55054 0.026095 0.40373 1.1289 +55053 0.026446 0.40221 1.4461 +55052 0.026803 0.40076 1.7661 +55051 0.027015 0.39941 2.0834 +55050 0.027336 0.39819 2.4026 +55049 0.027575 0.39713 2.7199 +55048 0.027757 0.39626 3.0394 +55047 0.027949 0.39559 3.3573 +55046 0.028093 0.39513 3.674 +55045 0.028226 0.3949 3.9942 +55044 0.028276 0.3949 4.3098 +55043 0.028311 0.39511 4.6272 +55042 0.028378 0.39554 4.9457 +55041 0.028299 0.39615 5.2613 +55040 0.028244 0.39693 5.5778 +55039 0.0282 0.39786 5.8931 +55038 0.028017 0.39889 6.209 +55037 0.027898 0.4 0.24114 +55036 0.027663 0.40115 0.55347 +55035 0.027459 0.40233 0.86936 +55034 0.027161 0.40349 1.1841 +55033 0.026848 0.40462 1.4953 +55032 0.026561 0.4057 1.8126 +55031 0.026149 0.4067 2.1243 +55030 0.025762 0.40761 2.4399 +55029 0.025361 0.40841 2.7532 +55028 0.024903 0.40909 3.0676 +55027 0.024379 0.40965 3.3837 +55026 0.023888 0.41007 3.6968 +55025 0.023318 0.41036 4.0143 +55024 0.022732 0.4105 4.3318 +55023 0.022077 0.41051 4.6476 +55022 0.02143 0.41039 4.9694 +55021 0.020744 0.41015 5.29 +55020 0.019986 0.40981 5.6136 +55019 0.019218 0.40937 5.9397 +55018 0.018488 0.40885 6.268 +55017 0.017598 0.40825 0.32119 +55016 0.016829 0.40759 0.65338 +55015 0.015983 0.40687 0.99723 +55014 0.015125 0.40611 1.3453 +55013 0.01431 0.40531 1.6962 +55012 0.013437 0.40449 2.0564 +55011 0.01268 0.40366 2.4264 +55010 0.011826 0.40283 2.8047 +55009 0.011103 0.40202 3.1963 +55008 0.010452 0.40125 3.5966 +55007 0.009819 0.40054 4.0204 +55006 0.009353 0.39991 4.4525 +55005 0.009013 0.39937 4.8957 +55004 0.008874 0.39893 5.3604 +55003 0.008878 0.39861 5.8194 +55002 0.009093 0.39842 0.000446 +55001 0.009548 0.39836 0.45107 +55000 0.010136 0.39843 0.8926 +54999 0.010883 0.39865 1.3242 +54998 0.011773 0.39901 1.7284 +54997 0.012803 0.39951 2.1304 +54996 0.013866 0.40014 2.5136 +54995 0.015023 0.40089 2.8853 +54994 0.016224 0.40174 3.2508 +54993 0.017493 0.40268 3.6034 +54992 0.0187 0.40367 3.9566 +54991 0.019988 0.40469 4.2971 +54990 0.021303 0.4057 4.6364 +54989 0.022566 0.40668 4.974 +54988 0.023856 0.40757 5.3037 +54987 0.025141 0.40836 5.6327 +54986 0.026473 0.40902 5.9611 +54985 0.027697 0.40953 3.9e-05 +54984 0.028981 0.40986 0.32399 +54983 0.030269 0.41 0.64398 +54982 0.031469 0.40995 0.96465 +54981 0.032706 0.4097 1.2827 +54980 0.033935 0.40927 1.5995 +54979 0.03508 0.40865 1.9183 +54978 0.0363 0.40786 2.2331 +54977 0.037361 0.40693 2.5492 +54976 0.03852 0.40587 2.8649 +54975 0.039562 0.40472 3.1804 +54974 0.040554 0.40353 3.4958 +54973 0.041603 0.40232 3.8106 +54972 0.042496 0.40114 4.1268 +54971 0.043385 0.40005 4.443 +54970 0.044274 0.39908 4.7573 +54969 0.045052 0.39826 5.0749 +54968 0.0458 0.39764 5.3902 +54967 0.046511 0.39724 5.7061 +54966 0.047168 0.39706 6.0222 +54965 0.047805 0.39713 0.054307 +54964 0.048291 0.39744 0.36957 +54963 0.048862 0.39798 0.68372 +54962 0.049321 0.39874 0.99817 +54961 0.049693 0.39969 1.3108 +54960 0.050102 0.4008 1.6229 +54959 0.050397 0.40204 1.9336 +54958 0.050689 0.40336 2.2443 +54957 0.05088 0.40472 2.5521 +54956 0.051063 0.40608 2.8591 +54955 0.051194 0.40739 3.1672 +54954 0.051221 0.40861 3.4709 +54953 0.051265 0.40969 3.7757 +54952 0.051243 0.4106 4.0791 +54951 0.051106 0.41132 4.3816 +54950 0.051016 0.41181 4.6838 +54949 0.050843 0.41208 4.9844 +54948 0.050575 0.41211 5.2857 +54947 0.050338 0.41191 5.5865 +54946 0.04997 0.41148 5.8857 +54945 0.049663 0.41084 6.1873 +54944 0.049189 0.41002 0.20339 +54943 0.048728 0.40903 0.50383 +54942 0.048285 0.40791 0.8052 +54941 0.047719 0.40669 1.1055 +54940 0.047131 0.4054 1.4072 +54939 0.046604 0.40408 1.7071 +54938 0.04592 0.40277 2.0099 +54937 0.045264 0.4015 2.3107 +54936 0.044569 0.40031 2.6111 +54935 0.043816 0.39923 2.9141 +54934 0.043038 0.39828 3.215 +54933 0.042225 0.39748 3.5156 +54932 0.041395 0.39685 3.8178 +54931 0.04052 0.3964 4.1173 +54930 0.03959 0.39611 4.419 +54929 0.038701 0.396 4.7171 +54928 0.037755 0.39606 5.0168 +54927 0.036715 0.39627 5.315 +54926 0.035778 0.39664 5.611 +54925 0.034715 0.39715 5.908 +54924 0.0337 0.39779 6.2028 +54923 0.032611 0.39855 0.21226 +54922 0.031551 0.39941 0.50421 +54921 0.030486 0.40035 0.79545 +54920 0.029322 0.40137 1.0818 +54919 0.028251 0.40243 1.3684 +54918 0.027113 0.40352 1.652 +54917 0.025935 0.40462 1.9326 +54916 0.024819 0.40571 2.2107 +54915 0.023652 0.40678 2.4841 +54914 0.022467 0.40781 2.7572 +54913 0.021325 0.4088 3.0225 +54912 0.020152 0.40973 3.2838 +54911 0.019034 0.4106 3.543 +54910 0.017869 0.41139 3.7914 +54909 0.016798 0.41209 4.0329 +54908 0.015791 0.41267 4.272 +54907 0.01475 0.41313 4.4905 +54906 0.013887 0.41343 4.7074 +54905 0.013107 0.41356 4.9068 +54904 0.012432 0.41351 5.096 +54903 0.011933 0.41324 5.2725 +54902 0.011696 0.41276 5.4388 +54901 0.011539 0.41207 5.6032 +54900 0.011741 0.41117 5.7648 +54899 0.012113 0.41006 5.9302 +54898 0.012668 0.40878 6.1099 +54897 0.013464 0.40734 0.015123 +54896 0.014387 0.40576 0.21611 +54895 0.015466 0.40409 0.43448 +54894 0.016639 0.40234 0.66187 +54893 0.017882 0.40056 0.89796 +54892 0.019279 0.39878 1.1522 +54891 0.020609 0.39706 1.406 +54890 0.022082 0.39544 1.6713 +54889 0.023563 0.39397 1.9433 +54888 0.025042 0.3927 2.2187 +54887 0.026527 0.3917 2.5015 +54886 0.02811 0.39099 2.7845 +54885 0.029573 0.39063 3.0753 +54884 0.031108 0.39064 3.3664 +54883 0.032645 0.39102 3.6591 +54882 0.034139 0.39178 3.9565 +54881 0.035647 0.39289 4.2527 +54880 0.037109 0.39432 4.5503 +54879 0.038631 0.39603 4.8502 +54878 0.040076 0.39798 5.1481 +54877 0.041482 0.4001 5.4475 +54876 0.04295 0.40234 5.746 +54875 0.04433 0.40464 6.0447 +54874 0.045669 0.40692 0.059883 +54873 0.047039 0.40914 0.35608 +54872 0.048302 0.41123 0.6547 +54871 0.049564 0.41313 0.95088 +54870 0.050793 0.41479 1.2472 +54869 0.051937 0.41615 1.5432 +54868 0.053121 0.41719 1.8397 +54867 0.054121 0.41787 2.1355 +54866 0.055223 0.41818 2.4311 +54865 0.056186 0.4181 2.7283 +54864 0.05706 0.41765 3.0248 +54863 0.057975 0.41685 3.3227 +54862 0.058793 0.41572 3.6206 +54861 0.059519 0.4143 3.9206 +54860 0.060233 0.41264 4.2203 +54859 0.060874 0.41078 4.5216 +54858 0.061486 0.40879 4.8248 +54857 0.061978 0.4067 5.1275 +54856 0.062434 0.40459 5.4322 +54855 0.062879 0.40251 5.7388 +54854 0.063165 0.40052 6.0448 +54853 0.063467 0.39868 0.070421 +54852 0.06369 0.39703 0.37807 +54851 0.063828 0.39563 0.68866 +54850 0.063916 0.39451 0.99836 +54849 0.063964 0.3937 1.3076 +54848 0.063892 0.39321 1.6196 +54847 0.0638 0.39305 1.9291 +54846 0.0636 0.3932 2.2396 +54845 0.063424 0.39364 2.55 +54844 0.063074 0.39433 2.8588 +54843 0.062727 0.39525 3.1683 +54842 0.062366 0.39636 3.476 +54841 0.061879 0.39761 3.7833 +54840 0.061359 0.39895 4.0902 +54839 0.060801 0.40036 4.3943 +54838 0.060196 0.40178 4.7001 +54837 0.05951 0.40319 5.003 +54836 0.05878 0.40454 5.3049 +54835 0.058012 0.40582 5.6073 +54834 0.057208 0.40698 5.9079 +54833 0.056291 0.408 6.2083 +54832 0.055429 0.40888 0.22379 +54831 0.05448 0.4096 0.52366 +54830 0.053431 0.41016 0.82166 +54829 0.05249 0.41055 1.1191 +54828 0.051373 0.4108 1.417 +54827 0.050292 0.4109 1.7141 +54826 0.049174 0.41086 2.0106 +54825 0.048018 0.4107 2.3066 +54824 0.046861 0.41042 2.6031 +54823 0.045627 0.41003 2.8979 +54822 0.044402 0.40954 3.1935 +54821 0.043217 0.40896 3.4879 +54820 0.041881 0.40828 3.7824 +54819 0.040637 0.40753 4.0756 +54818 0.039365 0.40672 4.3686 +54817 0.038016 0.40586 4.6617 +54816 0.036723 0.40496 4.953 +54815 0.035366 0.40405 5.2427 +54814 0.034048 0.40314 5.5356 +54813 0.032662 0.40225 5.8225 +54812 0.031319 0.40139 6.1109 +54811 0.029976 0.40058 0.11559 +54810 0.028584 0.39984 0.39953 +54809 0.027226 0.39917 0.68401 +54808 0.025923 0.3986 0.96437 +54807 0.024518 0.39814 1.2438 +54806 0.023217 0.3978 1.5212 +54805 0.021907 0.3976 1.7911 +54804 0.020631 0.39756 2.0628 +54803 0.019345 0.3977 2.3264 +54802 0.018148 0.39803 2.5817 +54801 0.016977 0.39855 2.8385 +54800 0.015868 0.39927 3.078 +54799 0.014793 0.40018 3.3132 +54798 0.013873 0.40124 3.5371 +54797 0.013006 0.40244 3.749 +54796 0.012236 0.40373 3.9468 +54795 0.011737 0.40508 4.1346 +54794 0.011263 0.40644 4.3102 +54793 0.011074 0.40777 4.4792 +54792 0.011096 0.40904 4.6437 +54791 0.011269 0.41019 4.8089 +54790 0.011658 0.41119 4.9859 +54789 0.012246 0.41202 5.1629 +54788 0.012965 0.41264 5.3606 +54787 0.013803 0.41303 5.5669 +54786 0.014748 0.41316 5.779 +54785 0.015791 0.41302 6.0105 +54784 0.016864 0.41259 6.2482 +54783 0.017996 0.41187 0.20592 +54782 0.019195 0.41086 0.46326 +54781 0.020365 0.4096 0.72005 +54780 0.021575 0.40809 0.98683 +54779 0.02283 0.40639 1.257 +54778 0.024081 0.40455 1.5326 +54777 0.025266 0.40262 1.8131 +54776 0.026585 0.40068 2.0957 +54775 0.027779 0.39879 2.3837 +54774 0.029029 0.39703 2.6743 +54773 0.030235 0.39545 2.9671 +54772 0.031439 0.39411 3.2635 +54771 0.032668 0.39307 3.5629 +54770 0.033801 0.39237 3.8621 +54769 0.034968 0.39202 4.164 +54768 0.036153 0.39206 4.4681 +54767 0.037179 0.39248 4.7718 +54766 0.038345 0.39328 5.0758 +54765 0.039372 0.39444 5.3813 +54764 0.040369 0.39594 5.6862 +54763 0.041396 0.39772 5.9917 +54762 0.042329 0.39973 0.011564 +54761 0.04327 0.40191 0.31776 +54760 0.044107 0.40419 0.61975 +54759 0.044964 0.40649 0.92303 +54758 0.04578 0.40873 1.2261 +54757 0.046489 0.41085 1.5269 +54756 0.04718 0.41276 1.8294 +54755 0.047904 0.41443 2.1298 +54754 0.048481 0.41581 2.4314 +54753 0.049066 0.41685 2.7321 +54752 0.049614 0.41754 3.0318 +54751 0.050092 0.41786 3.3347 +54750 0.050547 0.41781 3.635 +54749 0.050924 0.4174 3.9361 +54748 0.051296 0.41663 4.2397 +54747 0.051553 0.41553 4.5418 +54746 0.051806 0.41413 4.8462 +54745 0.052006 0.41246 5.1509 +54744 0.052118 0.41057 5.4565 +54743 0.052176 0.40851 5.7652 +54742 0.052219 0.40635 6.072 +54741 0.052192 0.40415 0.10033 +54740 0.05207 0.40197 0.41129 +54739 0.051955 0.39988 0.72367 +54738 0.05176 0.39793 1.0381 +54737 0.05155 0.39619 1.3531 +54736 0.051185 0.39468 1.6691 +54735 0.050901 0.39344 1.986 +54734 0.050522 0.39251 2.3044 +54733 0.050039 0.39187 2.6224 +54732 0.049603 0.39155 2.9408 +54731 0.04908 0.39154 3.2602 +54730 0.048484 0.39183 3.5796 +54729 0.047934 0.39241 3.8978 +54728 0.047234 0.39325 4.2165 +54727 0.046599 0.39432 4.5354 +54726 0.04583 0.39559 4.8533 +54725 0.045072 0.39702 5.1702 +54724 0.044327 0.39858 5.4885 +54723 0.043408 0.40022 5.8044 +54722 0.042607 0.40191 6.1216 +54721 0.041705 0.4036 0.15322 +54720 0.040758 0.40527 0.47019 +54719 0.039835 0.40688 0.78547 +54718 0.038862 0.40841 1.0999 +54717 0.037903 0.40985 1.4168 +54716 0.036893 0.41116 1.731 +54715 0.035845 0.41235 2.0466 +54714 0.034908 0.41339 2.3625 +54713 0.033817 0.41427 2.6778 +54712 0.032789 0.41497 2.994 +54711 0.031781 0.41548 3.3096 +54710 0.030694 0.41579 3.6271 +54709 0.029667 0.41587 3.9449 +54708 0.028568 0.41574 4.2609 +54707 0.027549 0.41539 4.5819 +54706 0.026443 0.41481 4.903 +54705 0.02535 0.41402 5.2225 +54704 0.024334 0.41303 5.5495 +54703 0.023228 0.41184 5.8744 +54702 0.022188 0.41048 6.2046 +54701 0.021155 0.40896 0.25249 +54700 0.02015 0.4073 0.58769 +54699 0.019137 0.40553 0.92964 +54698 0.01821 0.40367 1.2696 +54697 0.017286 0.40175 1.6187 +54696 0.016435 0.39982 1.9721 +54695 0.015569 0.39793 2.3274 +54694 0.01483 0.39613 2.6903 +54693 0.014123 0.39447 3.0577 +54692 0.013403 0.39302 3.4302 +54691 0.012817 0.39181 3.8095 +54690 0.012277 0.3909 4.1894 +54689 0.011774 0.39034 4.586 +54688 0.011355 0.39013 4.9751 +54687 0.011039 0.39031 5.3761 +54686 0.010806 0.39086 5.7815 +54685 0.010642 0.39178 6.1823 +54684 0.010552 0.39304 0.30847 +54683 0.010638 0.39463 0.70731 +54682 0.010717 0.39649 1.1109 +54681 0.010919 0.39858 1.5063 +54680 0.011168 0.40085 1.8912 +54679 0.011537 0.40324 2.2784 +54678 0.011902 0.40568 2.6536 +54677 0.012285 0.4081 3.0177 +54676 0.012804 0.41044 3.3834 +54675 0.013231 0.41262 3.7363 +54674 0.013725 0.41457 4.0876 +54673 0.014221 0.41623 4.43 +54672 0.014711 0.41756 4.7711 +54671 0.015197 0.4185 5.1121 +54670 0.015684 0.41904 5.4413 +54669 0.016177 0.41916 5.7775 +54668 0.016662 0.41886 6.1076 +54667 0.017138 0.41815 0.15319 +54666 0.017599 0.41706 0.48252 +54665 0.018107 0.41563 0.80713 +54664 0.018514 0.41389 1.1386 +54663 0.018978 0.4119 1.4625 +54662 0.019445 0.40971 1.7886 +54661 0.019833 0.40738 2.1184 +54660 0.020233 0.40498 2.4428 +54659 0.020614 0.40258 2.771 +54658 0.021019 0.40026 3.1016 +54657 0.021299 0.3981 3.4282 +54656 0.021629 0.39615 3.7602 +54655 0.021947 0.3945 4.09 +54654 0.022197 0.39319 4.4228 +54653 0.02242 0.39228 4.7557 +54652 0.022668 0.39177 5.0863 +54651 0.022836 0.39169 5.4238 +54650 0.023043 0.39202 5.7558 +54649 0.023158 0.39272 6.0899 +54648 0.023338 0.39377 0.14147 +54647 0.023459 0.39511 0.47607 +54646 0.023525 0.39668 0.80902 +54645 0.023694 0.39843 1.1416 +54644 0.023725 0.40028 1.4753 +54643 0.023781 0.40218 1.8084 +54642 0.023877 0.40408 2.1379 +54641 0.023888 0.40591 2.4716 +54640 0.023906 0.40762 2.8019 +54639 0.023912 0.40917 3.1329 +54638 0.023879 0.41051 3.4643 +54637 0.023908 0.41161 3.7957 +54636 0.023765 0.41243 4.1283 +54635 0.023766 0.41298 4.4604 +54634 0.023701 0.41323 4.7956 +54633 0.023585 0.4132 5.1312 +54632 0.023547 0.4129 5.468 +54631 0.023453 0.41236 5.8052 +54630 0.023428 0.41159 6.1481 +54629 0.023326 0.41066 0.20417 +54628 0.023286 0.40959 0.54713 +54627 0.023304 0.40841 0.89445 +54626 0.023219 0.40718 1.2387 +54625 0.023263 0.40591 1.587 +54624 0.023294 0.40465 1.9351 +54623 0.023291 0.40342 2.2863 +54622 0.0234 0.40225 2.6365 +54621 0.023454 0.40116 2.9867 +54620 0.023562 0.40019 3.3406 +54619 0.023708 0.39934 3.6923 +54618 0.02378 0.39864 4.0454 +54617 0.024035 0.3981 4.3979 +54616 0.024159 0.39773 4.7529 +54615 0.024365 0.39753 5.1056 +54614 0.024652 0.39749 5.4586 +54613 0.02488 0.39762 5.8117 +54612 0.02522 0.39789 6.1652 +54611 0.025518 0.39829 0.23087 +54610 0.025942 0.39881 0.58211 +54609 0.026307 0.39944 0.93096 +54608 0.026698 0.40016 1.2765 +54607 0.027188 0.40097 1.6226 +54606 0.027637 0.40186 1.966 +54605 0.028064 0.40282 2.3079 +54604 0.028582 0.40383 2.6477 +54603 0.029043 0.40489 2.9855 +54602 0.029559 0.40597 3.3236 +54601 0.030005 0.40706 3.6577 +54600 0.030515 0.40813 3.9902 +54599 0.031028 0.40916 4.3246 +54598 0.031458 0.41012 4.6521 +54597 0.031972 0.41099 4.9827 +54596 0.032457 0.41174 5.3091 +54595 0.032896 0.41236 5.6358 +54594 0.033358 0.41281 5.9605 +54593 0.033817 0.41309 6.2826 +54592 0.034229 0.41317 0.32432 +54591 0.034676 0.41304 0.6443 +54590 0.035052 0.41269 0.96446 +54589 0.035491 0.4121 1.2855 +54588 0.03584 0.41128 1.6034 +54587 0.036192 0.41022 1.9223 +54586 0.036581 0.40894 2.2395 +54585 0.036848 0.40745 2.5571 +54584 0.037146 0.40579 2.8754 +54583 0.037409 0.404 3.1908 +54582 0.037652 0.40211 3.5098 +54581 0.037821 0.40019 3.8279 +54580 0.037993 0.39829 4.1443 +54579 0.038168 0.39648 4.4655 +54578 0.038264 0.39481 4.7831 +54577 0.038351 0.39334 5.1035 +54576 0.038438 0.39212 5.4231 +54575 0.03852 0.39122 5.7432 +54574 0.038482 0.39066 6.0637 +54573 0.038544 0.39047 0.098943 +54572 0.038498 0.39069 0.41935 +54571 0.038462 0.39131 0.73818 +54570 0.0384 0.39234 1.0549 +54569 0.038301 0.39376 1.3717 +54568 0.0382 0.39553 1.6876 +54567 0.038028 0.3976 2.0005 +54566 0.037852 0.39992 2.3127 +54565 0.037694 0.40242 2.6227 +54564 0.03737 0.40501 2.9318 +54563 0.037155 0.40762 3.238 +54562 0.036853 0.41016 3.5435 +54561 0.036484 0.41256 3.8473 +54560 0.036159 0.41475 4.1499 +54559 0.035725 0.41667 4.4498 +54558 0.035372 0.41827 4.7517 +54557 0.034862 0.4195 5.0495 +54556 0.034392 0.42033 5.348 +54555 0.033956 0.42074 5.647 +54554 0.033388 0.42072 5.9441 +54553 0.032853 0.42026 6.2416 +54552 0.032343 0.41938 0.25474 +54551 0.0317 0.41809 0.55337 +54550 0.031138 0.41643 0.85052 +54549 0.030482 0.41445 1.147 +54548 0.029834 0.41219 1.447 +54547 0.029138 0.40973 1.7458 +54546 0.02839 0.40713 2.0441 +54545 0.027699 0.40449 2.3466 +54544 0.02686 0.40187 2.6467 +54543 0.026054 0.39935 2.9499 +54542 0.025231 0.39702 3.253 +54541 0.024351 0.39492 3.556 +54540 0.023436 0.39313 3.8633 +54539 0.022517 0.39167 4.1642 +54538 0.021595 0.39058 4.4722 +54537 0.0206 0.38989 4.7766 +54536 0.019621 0.38959 5.0777 +54535 0.018602 0.38968 5.383 +54534 0.017606 0.39016 5.6836 +54533 0.016508 0.39098 5.9817 +54532 0.015492 0.39213 6.2776 +54531 0.014406 0.39355 0.28624 +54530 0.013279 0.3952 0.57493 +54529 0.012198 0.39703 0.85394 +54528 0.011084 0.39896 1.1253 +54527 0.009913 0.40094 1.3932 +54526 0.008817 0.40292 1.6341 +54525 0.007675 0.40483 1.8643 +54524 0.006619 0.40663 2.0664 +54523 0.005582 0.40829 2.2175 +54522 0.004754 0.40977 2.31 +54521 0.004198 0.41107 2.3431 +54520 0.004034 0.41217 2.2818 +54519 0.004363 0.41307 2.2663 +54518 0.005101 0.41376 2.3069 +54517 0.006071 0.41425 2.413 +54516 0.007233 0.41453 2.5874 +54515 0.008492 0.41462 2.7942 +54514 0.009781 0.41451 3.0239 +54513 0.011119 0.41421 3.276 +54512 0.01255 0.41374 3.5361 +54511 0.013874 0.41309 3.8098 +54510 0.015323 0.4123 4.0847 +54509 0.016755 0.41137 4.3692 +54508 0.018138 0.41032 4.6576 +54507 0.01961 0.40918 4.9471 +54506 0.021021 0.40798 5.2393 +54505 0.022491 0.40672 5.5384 +54504 0.023886 0.40544 5.8341 +54503 0.025328 0.40414 6.1325 +54502 0.026787 0.40285 0.15273 +54501 0.028131 0.40159 0.45268 +54500 0.029563 0.40037 0.75724 +54499 0.030958 0.39921 1.0607 +54498 0.03227 0.39814 1.366 +54497 0.033619 0.39717 1.6726 +54496 0.03492 0.39634 1.9779 +54495 0.036173 0.39568 2.2872 +54494 0.037425 0.3952 2.5949 +54493 0.038566 0.39493 2.9031 +54492 0.039809 0.39488 3.2136 +54491 0.040877 0.39507 3.523 +54490 0.041961 0.39549 3.8325 +54489 0.043067 0.39615 4.1431 +54488 0.044036 0.39703 4.4522 +54487 0.04503 0.3981 4.7627 +54486 0.045976 0.39935 5.0701 +54485 0.046877 0.40073 5.3798 +54484 0.047722 0.40223 5.6873 +54483 0.048544 0.40379 5.9933 +54482 0.049307 0.40539 0.016913 +54481 0.050032 0.40696 0.32187 +54480 0.050667 0.40847 0.62616 +54479 0.051318 0.40986 0.92972 +54478 0.051883 0.4111 1.2322 +54477 0.052357 0.41214 1.535 +54476 0.052823 0.41295 1.8356 +54475 0.053274 0.41349 2.1369 +54474 0.053539 0.41376 2.4383 +54473 0.053891 0.41374 2.7376 +54472 0.05411 0.41342 3.039 +54471 0.054319 0.41281 3.3396 +54470 0.054453 0.41194 3.6402 +54469 0.054532 0.41082 3.9411 +54468 0.054648 0.40949 4.2434 +54467 0.054578 0.40798 4.5447 +54466 0.05458 0.40635 4.8476 +54465 0.054499 0.40465 5.1503 +54464 0.054326 0.40292 5.4545 +54463 0.054189 0.40123 5.759 +54462 0.053938 0.39964 6.0629 +54461 0.053685 0.3982 0.086405 +54460 0.053363 0.39697 0.39173 +54459 0.052972 0.39599 0.69759 +54458 0.052647 0.3953 1.0047 +54457 0.052138 0.39493 1.3107 +54456 0.05165 0.39488 1.6168 +54455 0.05122 0.39517 1.9226 +54454 0.05057 0.39577 2.2279 +54453 0.050032 0.39667 2.5323 +54452 0.049385 0.39782 2.8352 +54451 0.048743 0.39919 3.1382 +54450 0.04806 0.40072 3.4399 +54449 0.047314 0.40236 3.7383 +54448 0.046627 0.40406 4.0388 +54447 0.045831 0.40575 4.3352 +54446 0.045046 0.40738 4.6314 +54445 0.044263 0.40891 4.9257 +54444 0.04343 0.41027 5.219 +54443 0.042545 0.41143 5.5116 +54442 0.04172 0.41236 5.8014 +54441 0.040816 0.41301 6.0916 +54440 0.03989 0.41339 0.097918 +54439 0.038967 0.41346 0.38421 +54438 0.038029 0.41325 0.67287 +54437 0.037046 0.41275 0.95912 +54436 0.036065 0.412 1.2449 +54435 0.035037 0.41101 1.5314 +54434 0.03409 0.40983 1.8165 +54433 0.032984 0.40849 2.1028 +54432 0.032004 0.40704 2.3867 +54431 0.030981 0.40552 2.6723 +54430 0.029903 0.40397 2.9569 +54429 0.028899 0.40244 3.24 +54428 0.027843 0.40097 3.5221 +54427 0.026811 0.39959 3.8066 +54426 0.025764 0.39835 4.085 +54425 0.024732 0.39727 4.3645 +54424 0.023741 0.3964 4.6433 +54423 0.022685 0.39575 4.9165 +54422 0.021694 0.39533 5.1888 +54421 0.020769 0.39516 5.4574 +54420 0.019738 0.39524 5.7211 +54419 0.018852 0.39555 5.9807 +54418 0.017964 0.39608 6.2332 +54417 0.017086 0.3968 0.19823 +54416 0.016311 0.39769 0.4395 +54415 0.015557 0.39871 0.66766 +54414 0.014928 0.39984 0.89815 +54413 0.014334 0.40105 1.1117 +54412 0.013901 0.4023 1.3195 +54411 0.013559 0.40357 1.527 +54410 0.013381 0.40484 1.7214 +54409 0.013292 0.40609 1.9185 +54408 0.013463 0.40729 2.1146 +54407 0.01366 0.40843 2.3125 +54406 0.01405 0.40949 2.5149 +54405 0.014627 0.41044 2.7245 +54404 0.015225 0.41127 2.9405 +54403 0.015958 0.41196 3.1655 +54402 0.016848 0.4125 3.3942 +54401 0.017708 0.41287 3.6352 +54400 0.01871 0.41306 3.88 +54399 0.019726 0.41308 4.1288 +54398 0.020817 0.41292 4.3876 +54397 0.021907 0.41259 4.6492 +54396 0.023027 0.4121 4.9118 +54395 0.024209 0.41145 5.1851 +54394 0.025335 0.41065 5.4561 +54393 0.026488 0.40972 5.7335 +54392 0.027692 0.40866 6.0128 +54391 0.02883 0.40748 0.011638 +54390 0.029964 0.4062 0.29688 +54389 0.031131 0.40485 0.58316 +54388 0.032226 0.40343 0.87252 +54387 0.033336 0.40198 1.1652 +54386 0.034377 0.40054 1.4568 +54385 0.035454 0.39913 1.7535 +54384 0.036455 0.3978 2.0513 +54383 0.037426 0.39658 2.3494 +54382 0.038387 0.3955 2.6511 +54381 0.039339 0.39459 2.9531 +54380 0.040178 0.3939 3.2574 +54379 0.041064 0.39343 3.5611 +54378 0.041916 0.39322 3.8672 +54377 0.04263 0.39326 4.174 +54376 0.043444 0.39356 4.4796 +54375 0.04411 0.39414 4.7869 +54374 0.044775 0.39497 5.0944 +54373 0.045382 0.39604 5.4011 +54372 0.04591 0.39733 5.7076 +54371 0.04649 0.39881 6.0149 +54370 0.046874 0.40044 0.037207 +54369 0.047292 0.40219 0.34317 +54368 0.047693 0.40401 0.64763 +54367 0.047927 0.40583 0.95272 +54366 0.04819 0.40763 1.2559 +54365 0.048397 0.40935 1.5584 +54364 0.048482 0.41095 1.8621 +54363 0.048609 0.41238 2.1631 +54362 0.048563 0.4136 2.4644 +54361 0.0486 0.4146 2.7663 +54360 0.048474 0.41534 3.0668 +54359 0.048346 0.4158 3.3675 +54358 0.048216 0.41597 3.6682 +54357 0.047947 0.41586 3.9683 +54356 0.047691 0.41546 4.2698 +54355 0.04738 0.41478 4.569 +54354 0.047008 0.41383 4.8711 +54353 0.046586 0.41265 5.1726 +54352 0.046097 0.41126 5.4735 +54351 0.045635 0.40971 5.7768 +54350 0.045055 0.40803 6.0805 +54349 0.044418 0.40626 0.099992 +54348 0.043843 0.40447 0.40597 +54347 0.043117 0.4027 0.71101 +54346 0.042403 0.401 1.0177 +54345 0.041651 0.39941 1.3246 +54344 0.040884 0.39796 1.6324 +54343 0.040031 0.3967 1.9421 +54342 0.039226 0.39566 2.2492 +54341 0.038341 0.39487 2.5594 +54340 0.037463 0.39433 2.8688 +54339 0.036545 0.39406 3.1775 +54338 0.035586 0.39406 3.4865 +54337 0.034688 0.39432 3.7949 +54336 0.033633 0.39483 4.1034 +54335 0.032666 0.39557 4.4103 +54334 0.031683 0.3965 4.7165 +54333 0.030588 0.3976 5.0234 +54332 0.029578 0.39881 5.3273 +54331 0.028512 0.40011 5.6302 +54330 0.027437 0.40145 5.9353 +54329 0.026349 0.40279 6.2346 +54328 0.025239 0.4041 0.25341 +54327 0.024172 0.40535 0.55323 +54326 0.023046 0.40652 0.85194 +54325 0.021896 0.40756 1.1506 +54324 0.020875 0.40848 1.4467 +54323 0.019677 0.40925 1.7458 +54322 0.018611 0.40986 2.0409 +54321 0.017511 0.4103 2.3353 +54320 0.016412 0.41058 2.6322 +54319 0.015331 0.41068 2.9271 +54318 0.014229 0.41063 3.2163 +54317 0.013199 0.41042 3.5134 +54316 0.012106 0.41007 3.8025 +54315 0.011021 0.4096 4.092 +54314 0.010029 0.40902 4.3816 +54313 0.008932 0.40836 4.6675 +54312 0.007895 0.40763 4.951 +54311 0.006891 0.40685 5.2309 +54310 0.005841 0.40605 5.4992 +54309 0.004846 0.40524 5.7745 +54308 0.003827 0.40444 5.9991 +54307 0.002888 0.40368 6.2226 +54306 0.001947 0.40295 0.064637 +54305 0.00122 0.40228 6.1783 +54304 0.001032 0.40168 5.5966 +54303 0.001616 0.40116 5.3065 +54302 0.00251 0.40072 5.3394 +54301 0.003381 0.40039 5.5447 +54300 0.004298 0.40016 5.78 +54299 0.005252 0.40003 6.0329 +54298 0.006147 0.40001 0.033848 +54297 0.007068 0.4001 0.31501 +54296 0.007949 0.40029 0.59789 +54295 0.00886 0.40056 0.89667 +54294 0.009724 0.40092 1.1886 +54293 0.010561 0.40135 1.4855 +54292 0.011446 0.40184 1.7853 +54291 0.012277 0.40237 2.0826 +54290 0.013062 0.40294 2.3875 +54289 0.013904 0.40352 2.6834 +54288 0.014697 0.4041 2.9885 +54287 0.015432 0.40468 3.291 +54286 0.016227 0.40523 3.5902 +54285 0.01692 0.40574 3.8954 +54284 0.017682 0.4062 4.1977 +54283 0.018304 0.40659 4.5004 +54282 0.019002 0.40691 4.8034 +54281 0.019658 0.40714 5.1082 +54280 0.020214 0.40728 5.4117 +54279 0.020837 0.40731 5.7163 +54278 0.02139 0.40725 6.0199 +54277 0.021888 0.40708 0.04446 +54276 0.022398 0.4068 0.3482 +54275 0.022835 0.40644 0.65464 +54274 0.023285 0.40598 0.96377 +54273 0.023632 0.40546 1.2709 +54272 0.023986 0.40487 1.5791 +54271 0.024375 0.40424 1.8915 +54270 0.024575 0.40358 2.2004 +54269 0.024886 0.40292 2.5133 +54268 0.025112 0.40227 2.8245 +54267 0.025279 0.40166 3.1385 +54266 0.025428 0.4011 3.4526 +54265 0.025539 0.40062 3.7654 +54264 0.025604 0.40023 4.0838 +54263 0.025642 0.39995 4.3985 +54262 0.025586 0.39979 4.7155 +54261 0.025594 0.39976 5.0344 +54260 0.025466 0.39987 5.3526 +54259 0.025323 0.40011 5.6717 +54258 0.0252 0.40048 5.9912 +54257 0.024953 0.40098 0.028219 +54256 0.024716 0.40158 0.35031 +54255 0.024425 0.40228 0.66882 +54254 0.024122 0.40304 0.99245 +54253 0.02374 0.40386 1.3157 +54252 0.02334 0.40471 1.6358 +54251 0.022943 0.40557 1.9624 +54250 0.02248 0.4064 2.2854 +54249 0.021979 0.4072 2.6115 +54248 0.021477 0.40793 2.9376 +54247 0.020985 0.40857 3.2644 +54246 0.020365 0.40911 3.5958 +54245 0.019836 0.40953 3.9232 +54244 0.01924 0.40981 4.257 +54243 0.018644 0.40994 4.5929 +54242 0.018026 0.40993 4.9273 +54241 0.017412 0.40976 5.2673 +54240 0.016841 0.40945 5.6117 +54239 0.016174 0.40899 5.9552 +54238 0.015604 0.4084 0.024087 +54237 0.015028 0.40768 0.37549 +54236 0.014436 0.40686 0.73837 +54235 0.013915 0.40595 1.1005 +54234 0.013416 0.40498 1.469 +54233 0.012971 0.40397 1.8485 +54232 0.012598 0.40293 2.2262 +54231 0.012219 0.40191 2.6135 +54230 0.012039 0.40092 3.0014 +54229 0.011815 0.39999 3.3976 +54228 0.011708 0.39915 3.7939 +54227 0.011719 0.39841 4.1876 +54226 0.011784 0.39779 4.5884 +54225 0.011938 0.39732 4.9848 +54224 0.012148 0.397 5.3718 +54223 0.012508 0.39684 5.765 +54222 0.012847 0.39685 6.1462 +54221 0.01326 0.39702 0.24215 +54220 0.01375 0.39736 0.61422 +54219 0.01428 0.39785 0.98102 +54218 0.014788 0.39848 1.3476 +54217 0.015385 0.39924 1.7006 +54216 0.015977 0.40011 2.0557 +54215 0.016603 0.40108 2.4044 +54214 0.017217 0.40211 2.7468 +54213 0.017834 0.40319 3.0873 +54212 0.01853 0.4043 3.4222 +54211 0.019086 0.4054 3.756 +54210 0.019738 0.40648 4.0838 +54209 0.020382 0.40751 4.4094 +54208 0.020932 0.40847 4.7351 +54207 0.021556 0.40934 5.0546 +54206 0.022103 0.4101 5.3726 +54205 0.022693 0.41074 5.6918 +54204 0.023207 0.41124 6.0045 +54203 0.023719 0.41159 0.035488 +54202 0.024261 0.41178 0.3471 +54201 0.024728 0.41181 0.65697 +54200 0.025158 0.41168 0.96757 +54199 0.025666 0.41138 1.2728 +54198 0.026041 0.41093 1.5831 +54197 0.026456 0.41032 1.8885 +54196 0.02684 0.40957 2.1935 +54195 0.027208 0.4087 2.5004 +54194 0.027563 0.40773 2.8056 +54193 0.027835 0.40667 3.109 +54192 0.028209 0.40556 3.4149 +54191 0.028448 0.40441 3.7188 +54190 0.028685 0.40325 4.0233 +54189 0.028971 0.40211 4.3272 +54188 0.029152 0.40101 4.6319 +54187 0.029333 0.39998 4.9363 +54186 0.029529 0.39903 5.2402 +54185 0.029638 0.39821 5.5443 +54184 0.02981 0.39751 5.8497 +54183 0.029839 0.39696 6.1526 +54182 0.029965 0.39657 0.17348 +54181 0.030016 0.39634 0.47854 +54180 0.03001 0.39629 0.78054 +54179 0.030041 0.3964 1.0848 +54178 0.030045 0.39668 1.3861 +54177 0.029965 0.39712 1.6898 +54176 0.029916 0.3977 1.9895 +54175 0.02984 0.39841 2.29 +54174 0.029685 0.39923 2.5917 +54173 0.029552 0.40014 2.8888 +54172 0.029358 0.40112 3.1877 +54171 0.029189 0.40214 3.4865 +54170 0.028926 0.40318 3.7822 +54169 0.028663 0.40422 4.0788 +54168 0.028443 0.40524 4.3738 +54167 0.028085 0.40621 4.6682 +54166 0.027763 0.40712 4.9622 +54165 0.027427 0.40796 5.2524 +54164 0.027017 0.40869 5.5466 +54163 0.026587 0.40932 5.8356 +54162 0.026158 0.40983 6.124 +54161 0.025656 0.41022 0.13258 +54160 0.025169 0.41047 0.41796 +54159 0.024583 0.41059 0.70617 +54158 0.024081 0.41058 0.99182 +54157 0.023454 0.41044 1.2774 +54156 0.022817 0.41019 1.5608 +54155 0.022236 0.40982 1.8433 +54154 0.02152 0.40936 2.1241 +54153 0.020855 0.4088 2.4049 +54152 0.020148 0.40816 2.6793 +54151 0.019431 0.40746 2.9563 +54150 0.01871 0.4067 3.229 +54149 0.017938 0.4059 3.4954 +54148 0.017233 0.40508 3.7619 +54147 0.016495 0.40424 4.0243 +54146 0.015713 0.40341 4.276 +54145 0.015075 0.4026 4.5292 +54144 0.014355 0.40183 4.7707 +54143 0.013718 0.40111 5.0079 +54142 0.013161 0.40045 5.2352 +54141 0.012678 0.39987 5.455 +54140 0.012227 0.39938 5.6704 +54139 0.012002 0.39898 5.8717 +54138 0.011808 0.39868 6.0731 +54137 0.011802 0.3985 6.2721 +54136 0.01193 0.39843 0.18199 +54135 0.01221 0.39848 0.38223 +54134 0.012634 0.39864 0.5895 +54133 0.013163 0.39892 0.79638 +54132 0.013834 0.39932 1.0184 +54131 0.014631 0.39981 1.2464 +54130 0.015435 0.4004 1.481 +54129 0.016397 0.40108 1.7246 +54128 0.017417 0.40181 1.9756 +54127 0.018397 0.4026 2.2312 +54126 0.019546 0.40341 2.4927 +54125 0.020645 0.40424 2.7582 +54124 0.021784 0.40504 3.0288 +54123 0.022948 0.40582 3.3015 +54122 0.024127 0.40654 3.5755 +54121 0.025311 0.40718 3.8577 +54120 0.026459 0.40774 4.1352 +54119 0.027645 0.40819 4.4185 +54118 0.028835 0.40853 4.7039 +54117 0.029959 0.40874 4.9887 +54116 0.031086 0.40882 5.2761 +54115 0.032276 0.40877 5.5646 +54114 0.033296 0.40859 5.8542 +54113 0.034419 0.40828 6.1451 +54112 0.035459 0.40786 0.15267 +54111 0.036457 0.40734 0.44717 +54110 0.037453 0.40673 0.74036 +54109 0.03839 0.40606 1.0347 +54108 0.039318 0.40534 1.3322 +54107 0.040219 0.4046 1.6279 +54106 0.041013 0.40387 1.9261 +54105 0.041911 0.40317 2.2239 +54104 0.042632 0.40251 2.5232 +54103 0.04336 0.40193 2.8224 +54102 0.044099 0.40143 3.1215 +54101 0.044711 0.40104 3.4222 +54100 0.045324 0.40076 3.7229 +54099 0.045887 0.40062 4.0218 +54098 0.046411 0.4006 4.3238 +54097 0.046879 0.40071 4.6233 +54096 0.047289 0.40095 4.9232 +54095 0.047685 0.4013 5.2229 +54094 0.048036 0.40176 5.5223 +54093 0.048258 0.40229 5.8209 +54092 0.048562 0.40289 6.1187 +54091 0.048728 0.40352 0.13359 +54090 0.048863 0.40416 0.43062 +54089 0.048994 0.40479 0.72683 +54088 0.049054 0.40538 1.0223 +54087 0.04909 0.40592 1.3187 +54086 0.049057 0.40637 1.6121 +54085 0.04904 0.40673 1.9063 +54084 0.048955 0.40699 2.2009 +54083 0.048816 0.40713 2.4928 +54082 0.048682 0.40716 2.7865 +54081 0.048534 0.40707 3.0784 +54080 0.048284 0.40688 3.3709 +54079 0.048079 0.40658 3.6626 +54078 0.047837 0.40619 3.9535 +54077 0.047524 0.40572 4.2456 +54076 0.047244 0.40519 4.5364 +54075 0.046878 0.40462 4.8261 +54074 0.046568 0.40403 5.1185 +54073 0.046135 0.40342 5.4076 +54072 0.045742 0.40284 5.6981 +54071 0.045359 0.40229 5.9887 +54070 0.044875 0.4018 6.2782 +54069 0.044403 0.40137 0.2851 +54068 0.04401 0.40101 0.57341 +54067 0.043453 0.40075 0.86344 +54066 0.042995 0.40057 1.1513 +54065 0.04249 0.40049 1.4384 +54064 0.041969 0.40049 1.7267 +54063 0.041451 0.40058 2.0126 +54062 0.040896 0.40076 2.2978 +54061 0.040382 0.401 2.584 +54060 0.039837 0.40132 2.8673 +54059 0.039237 0.40169 3.1515 +54058 0.038755 0.40212 3.433 +54057 0.038163 0.40258 3.7155 +54056 0.03758 0.40307 3.9957 +54055 0.037075 0.40359 4.2748 +54054 0.036468 0.40411 4.5536 +54053 0.035933 0.40463 4.8318 +54052 0.035344 0.40515 5.1067 +54051 0.034818 0.40565 5.3831 +54050 0.034248 0.40614 5.6579 +54049 0.033682 0.40661 5.9296 +54048 0.033161 0.40705 6.203 +54047 0.032633 0.40747 0.19 +54046 0.03207 0.40785 0.45986 +54045 0.03158 0.40819 0.72782 +54044 0.031101 0.40848 0.99461 +54043 0.030566 0.40871 1.2611 +54042 0.03014 0.40889 1.524 +54041 0.029691 0.40898 1.7867 +54040 0.02927 0.40899 2.0495 +54039 0.028875 0.40891 2.3072 +54038 0.028538 0.40874 2.5656 +54037 0.028214 0.40846 2.8246 +54036 0.027927 0.40807 3.0772 +54035 0.027686 0.40757 3.3335 +54034 0.027526 0.40697 3.586 +54033 0.027344 0.40626 3.8389 +54032 0.027257 0.40545 4.0907 +54031 0.02727 0.40456 4.3425 +54030 0.027222 0.4036 4.5948 +54029 0.027356 0.40257 4.8475 +54028 0.027484 0.40152 5.0991 +54027 0.027691 0.40044 5.3555 +54026 0.027959 0.39939 5.6099 +54025 0.028276 0.39839 5.8661 +54024 0.028685 0.39747 6.1271 +54023 0.029103 0.39666 0.10373 +54022 0.029579 0.39601 0.36608 +54021 0.030201 0.39554 0.63302 +54020 0.030711 0.39528 0.89886 +54019 0.031392 0.39525 1.1688 +54018 0.032093 0.39545 1.4392 +54017 0.032788 0.3959 1.7122 +54016 0.033528 0.39659 1.9872 +54015 0.034338 0.39751 2.2605 +54014 0.035093 0.39863 2.5394 +54013 0.035917 0.39994 2.8161 +54012 0.036705 0.40141 3.0943 +54011 0.03755 0.40299 3.3748 +54010 0.038356 0.40463 3.6546 +54009 0.039131 0.40631 3.935 +54008 0.040008 0.40796 4.2169 +54007 0.040762 0.40954 4.4983 +54006 0.041537 0.41101 4.781 +54005 0.042343 0.41232 5.0629 +54004 0.043069 0.41342 5.3467 +54003 0.043784 0.41429 5.6308 +54002 0.044503 0.4149 5.914 +54001 0.045165 0.41524 6.2003 +54000 0.045824 0.41529 0.20252 +53999 0.046426 0.41506 0.48922 +53998 0.047016 0.41454 0.77666 +53997 0.04762 0.41376 1.0656 +53996 0.048057 0.41273 1.3549 +53995 0.048615 0.41148 1.645 +53994 0.049048 0.41006 1.9371 +53993 0.049418 0.40848 2.2296 +53992 0.049803 0.4068 2.5234 +53991 0.050123 0.40507 2.8178 +53990 0.050366 0.40333 3.1151 +53989 0.050588 0.40163 3.4108 +53988 0.050745 0.40003 3.7093 +53987 0.050875 0.39856 4.0088 +53986 0.050906 0.39727 4.3077 +53985 0.050905 0.39619 4.6084 +53984 0.050904 0.39535 4.9096 +53983 0.050747 0.39476 5.2104 +53982 0.050625 0.39443 5.5127 +53981 0.050444 0.39436 5.8128 +53980 0.050188 0.39454 6.1158 +53979 0.049902 0.39495 0.13277 +53978 0.049586 0.39556 0.43252 +53977 0.049207 0.39636 0.73388 +53976 0.048806 0.39731 1.0318 +53975 0.048304 0.39837 1.3304 +53974 0.047888 0.39952 1.6283 +53973 0.047295 0.40073 1.9245 +53972 0.046745 0.40195 2.2205 +53971 0.046186 0.40317 2.5148 +53970 0.045528 0.40436 2.8089 +53969 0.044883 0.40548 3.1021 +53968 0.044213 0.40653 3.3922 +53967 0.043514 0.40748 3.6847 +53966 0.042782 0.40832 3.9739 +53965 0.042017 0.40905 4.2621 +53964 0.041267 0.40967 4.5508 +53963 0.040485 0.41016 4.8376 +53962 0.039623 0.41053 5.1239 +53961 0.038872 0.41079 5.4087 +53960 0.038015 0.41093 5.6941 +53959 0.037147 0.41097 5.9773 +53958 0.036369 0.41089 6.2598 +53957 0.035479 0.41071 0.25844 +53956 0.03466 0.41043 0.53982 +53955 0.033804 0.41006 0.81843 +53954 0.032975 0.40959 1.0975 +53953 0.032149 0.40904 1.376 +53952 0.03131 0.4084 1.6513 +53951 0.030491 0.40768 1.9276 +53950 0.029741 0.40688 2.2017 +53949 0.028886 0.40603 2.4756 +53948 0.028167 0.40512 2.7469 +53947 0.027437 0.40416 3.0183 +53946 0.026667 0.40318 3.2888 +53945 0.026006 0.4022 3.5572 +53944 0.025333 0.40122 3.8237 +53943 0.024677 0.40029 4.0935 +53942 0.024069 0.39941 4.3565 +53941 0.023489 0.39862 4.6223 +53940 0.022962 0.39795 4.8873 +53939 0.022435 0.39742 5.1487 +53938 0.021953 0.39706 5.4109 +53937 0.021578 0.39688 5.6724 +53936 0.02112 0.39689 5.9308 +53935 0.020784 0.39711 6.1909 +53934 0.020496 0.39754 0.16257 +53933 0.020189 0.39817 0.42157 +53932 0.019947 0.39899 0.67536 +53931 0.019794 0.39998 0.9276 +53930 0.019586 0.4011 1.1836 +53929 0.019507 0.40235 1.433 +53928 0.019385 0.40367 1.6832 +53927 0.019379 0.40503 1.935 +53926 0.019346 0.40638 2.1832 +53925 0.019347 0.40769 2.4313 +53924 0.019461 0.40891 2.6822 +53923 0.019506 0.40999 2.9294 +53922 0.019635 0.41091 3.1804 +53921 0.019829 0.41161 3.4294 +53920 0.020001 0.41208 3.6813 +53919 0.020215 0.4123 3.9349 +53918 0.020503 0.41224 4.1853 +53917 0.020772 0.41192 4.4439 +53916 0.021087 0.41133 4.7008 +53915 0.021406 0.41049 4.9577 +53914 0.02179 0.40943 5.2214 +53913 0.022152 0.40818 5.4856 +53912 0.02252 0.40677 5.7495 +53911 0.022981 0.40527 6.0212 +53910 0.02337 0.40372 0.007603 +53909 0.023808 0.40217 0.28281 +53908 0.024276 0.40068 0.55803 +53907 0.024741 0.3993 0.83695 +53906 0.025162 0.39808 1.1187 +53905 0.025675 0.39708 1.3994 +53904 0.026098 0.39633 1.685 +53903 0.026578 0.39586 1.9716 +53902 0.026993 0.3957 2.258 +53901 0.027437 0.39584 2.5472 +53900 0.027876 0.3963 2.8381 +53899 0.028232 0.39705 3.1281 +53898 0.028642 0.39806 3.42 +53897 0.029051 0.3993 3.7123 +53896 0.029324 0.40072 4.0055 +53895 0.029728 0.40227 4.2976 +53894 0.030019 0.4039 4.5911 +53893 0.030302 0.40553 4.8848 +53892 0.030593 0.40713 5.1782 +53891 0.030815 0.40863 5.4702 +53890 0.031082 0.40998 5.7665 +53889 0.03123 0.41115 6.0583 +53888 0.031419 0.41211 0.069902 +53887 0.031596 0.41281 0.36469 +53886 0.031664 0.41325 0.65912 +53885 0.031747 0.41341 0.95518 +53884 0.031848 0.41329 1.2498 +53883 0.031801 0.41289 1.5482 +53882 0.031804 0.41224 1.8452 +53881 0.031743 0.41134 2.1425 +53880 0.031631 0.41024 2.4441 +53879 0.031495 0.40896 2.7437 +53878 0.031279 0.40755 3.0452 +53877 0.031101 0.40606 3.3498 +53876 0.030791 0.40452 3.6531 +53875 0.030478 0.40299 3.9597 +53874 0.030151 0.40151 4.2666 +53873 0.029747 0.40013 4.5748 +53872 0.029304 0.39886 4.8865 +53871 0.02886 0.39776 5.1943 +53870 0.028378 0.39684 5.509 +53869 0.027826 0.39613 5.8212 +53868 0.027281 0.39563 6.1335 +53867 0.026696 0.39535 0.16552 +53866 0.026104 0.39529 0.48014 +53865 0.02539 0.39545 0.79433 +53864 0.02478 0.39581 1.1096 +53863 0.024059 0.39636 1.4252 +53862 0.023296 0.39708 1.7412 +53861 0.022577 0.39795 2.0564 +53860 0.021795 0.39893 2.3723 +53859 0.020976 0.40001 2.6904 +53858 0.020181 0.40117 3.0048 +53857 0.019317 0.40237 3.3231 +53856 0.018524 0.4036 3.6415 +53855 0.017602 0.40484 3.9596 +53854 0.016755 0.40606 4.2782 +53853 0.015927 0.40725 4.6001 +53852 0.014969 0.40839 4.9209 +53851 0.014144 0.40947 5.2456 +53850 0.013252 0.41047 5.568 +53849 0.012368 0.41137 5.9007 +53848 0.011501 0.41217 6.228 +53847 0.010628 0.41285 0.27887 +53846 0.0098 0.4134 0.62211 +53845 0.008953 0.41379 0.96406 +53844 0.008099 0.41403 1.3209 +53843 0.007377 0.41409 1.681 +53842 0.00658 0.41397 2.0645 +53841 0.005881 0.41366 2.4606 +53840 0.005282 0.41315 2.8716 +53839 0.004742 0.41244 3.3275 +53838 0.00436 0.41154 3.7992 +53837 0.004062 0.41044 4.2943 +53836 0.00405 0.40915 4.8006 +53835 0.004144 0.4077 5.309 +53834 0.004329 0.40611 5.7965 +53833 0.004742 0.40439 6.2401 +53832 0.005137 0.40259 0.39531 +53831 0.005645 0.40076 0.8017 +53830 0.006128 0.39892 1.1882 +53829 0.006651 0.39714 1.5628 +53828 0.007222 0.39547 1.9258 +53827 0.007691 0.39396 2.2811 +53826 0.008243 0.39266 2.6294 +53825 0.008743 0.39161 2.9657 +53824 0.009238 0.39087 3.3114 +53823 0.0097 0.39046 3.6407 +53822 0.010166 0.39042 3.9694 +53821 0.010626 0.39075 4.3026 +53820 0.011041 0.39146 4.6239 +53819 0.011422 0.39255 4.947 +53818 0.011895 0.39399 5.2664 +53817 0.012207 0.39575 5.5841 +53816 0.012584 0.39778 5.8974 +53815 0.012943 0.40003 6.2069 +53814 0.013228 0.40243 0.23375 +53813 0.013532 0.40492 0.54171 +53812 0.013779 0.40742 0.84108 +53811 0.014033 0.40987 1.1477 +53810 0.014258 0.41219 1.4465 +53809 0.014408 0.41431 1.7451 +53808 0.014633 0.41618 2.0421 +53807 0.014781 0.41773 2.34 +53806 0.014856 0.41893 2.6344 +53805 0.015058 0.41975 2.9281 +53804 0.015094 0.42015 3.2227 +53803 0.015191 0.42013 3.5173 +53802 0.015251 0.41969 3.8086 +53801 0.015286 0.41884 4.1025 +53800 0.015328 0.41759 4.3989 +53799 0.015301 0.416 4.6891 +53798 0.015313 0.41409 4.9867 +53797 0.01529 0.41192 5.2815 +53796 0.015212 0.40956 5.578 +53795 0.01515 0.40706 5.8761 +53794 0.01509 0.40452 6.1719 +53793 0.014935 0.402 0.19307 +53792 0.014819 0.39958 0.49001 +53791 0.014667 0.39733 0.79195 +53790 0.014478 0.39533 1.0988 +53789 0.014266 0.39363 1.4 +53788 0.014033 0.39229 1.7047 +53787 0.013824 0.39133 2.0151 +53786 0.013487 0.39077 2.318 +53785 0.013224 0.39063 2.6278 +53784 0.012919 0.3909 2.9337 +53783 0.012554 0.39155 3.2427 +53782 0.012178 0.39255 3.5514 +53781 0.011828 0.39386 3.854 +53780 0.011382 0.39542 4.167 +53779 0.010972 0.39719 4.4708 +53778 0.010488 0.39909 4.7749 +53777 0.010043 0.40106 5.0836 +53776 0.009516 0.40304 5.3871 +53775 0.008957 0.40497 5.6892 +53774 0.008447 0.40679 5.9954 +53773 0.007825 0.40846 0.013749 +53772 0.007179 0.40994 0.32095 +53771 0.006587 0.4112 0.61751 +53770 0.00587 0.41221 0.93077 +53769 0.005171 0.41297 1.2349 +53768 0.004459 0.41346 1.54 +53767 0.003679 0.41369 1.856 +53766 0.002953 0.41367 2.1847 +53765 0.002074 0.41341 2.5121 +53764 0.001329 0.41294 2.9046 +53763 0.000539 0.41227 3.5894 +53762 0.000556 0.41143 5.8611 +53761 0.001336 0.41045 0.21515 +53760 0.002218 0.40936 0.62063 +53759 0.00316 0.4082 0.94762 +53758 0.004044 0.40699 1.292 +53757 0.004977 0.40576 1.6087 +53756 0.005924 0.40455 1.9199 +53755 0.00688 0.40338 2.2459 +53754 0.007846 0.40227 2.5559 +53753 0.00878 0.40125 2.8706 +53752 0.009819 0.40033 3.1856 +53751 0.010769 0.39953 3.4981 +53750 0.011744 0.39885 3.8118 +53749 0.012773 0.3983 4.124 +53748 0.013728 0.3979 4.4355 +53747 0.014734 0.39763 4.7519 +53746 0.015677 0.39752 5.0591 +53745 0.016696 0.39755 5.3737 +53744 0.017633 0.39774 5.6866 +53743 0.018571 0.39807 5.995 +53742 0.019524 0.39855 0.025311 +53741 0.020461 0.39918 0.33488 +53740 0.021309 0.39993 0.64594 +53739 0.022231 0.40081 0.95503 +53738 0.023087 0.4018 1.2647 +53737 0.023891 0.40288 1.5751 +53736 0.024714 0.40402 1.8823 +53735 0.025506 0.40521 2.1901 +53734 0.02626 0.40642 2.5002 +53733 0.026991 0.40762 2.8048 +53732 0.027687 0.40878 3.1127 +53731 0.028426 0.40987 3.4181 +53730 0.02904 0.41087 3.7236 +53729 0.02966 0.41173 4.0272 +53728 0.030336 0.41243 4.3307 +53727 0.030803 0.41294 4.6341 +53726 0.03139 0.41322 4.9357 +53725 0.031855 0.41327 5.2368 +53724 0.032297 0.41306 5.5397 +53723 0.03271 0.41259 5.8399 +53722 0.033042 0.41184 6.1408 +53721 0.033403 0.41084 0.16024 +53720 0.03367 0.40959 0.4607 +53719 0.033877 0.40812 0.76346 +53718 0.034143 0.40646 1.0648 +53717 0.034268 0.40465 1.3685 +53716 0.03438 0.40274 1.672 +53715 0.034511 0.40078 1.9746 +53714 0.034529 0.39884 2.2809 +53713 0.034568 0.39697 2.5859 +53712 0.03452 0.39525 2.8908 +53711 0.034506 0.39373 3.1979 +53710 0.034422 0.39248 3.5052 +53709 0.034259 0.39156 3.8104 +53708 0.03419 0.39101 4.1186 +53707 0.033965 0.39086 4.4244 +53706 0.033767 0.39114 4.7306 +53705 0.033536 0.39185 5.0356 +53704 0.033279 0.39298 5.3391 +53703 0.032961 0.3945 5.6435 +53702 0.032654 0.39638 5.9429 +53701 0.032293 0.39855 6.2432 +53700 0.031941 0.40095 0.25875 +53699 0.031505 0.40351 0.55334 +53698 0.031108 0.40614 0.84751 +53697 0.03069 0.40878 1.1402 +53696 0.030187 0.41133 1.4291 +53695 0.029736 0.41372 1.7179 +53694 0.029281 0.41588 2.0027 +53693 0.028736 0.41775 2.2889 +53692 0.028264 0.41925 2.5697 +53691 0.02775 0.42036 2.8508 +53690 0.027212 0.42103 3.1314 +53689 0.026709 0.42124 3.4085 +53688 0.026126 0.42098 3.6848 +53687 0.025652 0.42026 3.9625 +53686 0.025047 0.41908 4.2365 +53685 0.024499 0.41749 4.5114 +53684 0.023999 0.41553 4.7853 +53683 0.0234 0.41324 5.06 +53682 0.022838 0.4107 5.3334 +53681 0.022351 0.40797 5.6049 +53680 0.021741 0.40513 5.8811 +53679 0.021236 0.40226 6.1525 +53678 0.020695 0.39945 0.14155 +53677 0.020168 0.39677 0.41597 +53676 0.019672 0.39431 0.68737 +53675 0.019128 0.39213 0.95793 +53674 0.018705 0.39031 1.2305 +53673 0.018198 0.3889 1.4991 +53672 0.017746 0.38794 1.7675 +53671 0.017363 0.38745 2.0341 +53670 0.016944 0.38744 2.2969 +53669 0.016561 0.3879 2.5616 +53668 0.016251 0.3888 2.8155 +53667 0.015936 0.39011 3.0742 +53666 0.015647 0.39176 3.3265 +53665 0.015436 0.3937 3.572 +53664 0.015234 0.39587 3.8196 +53663 0.015103 0.3982 4.0627 +53662 0.014967 0.40061 4.298 +53661 0.014967 0.40305 4.5386 +53660 0.014956 0.40545 4.7719 +53659 0.015002 0.40776 5.0053 +53658 0.015145 0.40993 5.239 +53657 0.01535 0.41191 5.4711 +53656 0.015528 0.41367 5.7059 +53655 0.015888 0.41518 5.9389 +53654 0.016222 0.41641 6.1758 +53653 0.016622 0.41736 0.13336 +53652 0.017098 0.418 0.37204 +53651 0.017621 0.41834 0.61738 +53650 0.01817 0.41837 0.86724 +53649 0.018789 0.41812 1.1146 +53648 0.019421 0.41759 1.3705 +53647 0.020148 0.4168 1.6285 +53646 0.020808 0.41579 1.8879 +53645 0.021598 0.41456 2.1518 +53644 0.022379 0.41315 2.4194 +53643 0.023138 0.41159 2.6879 +53642 0.023978 0.40989 2.9619 +53641 0.024803 0.4081 3.2346 +53640 0.025629 0.40625 3.5151 +53639 0.026455 0.40435 3.7935 +53638 0.027307 0.40244 4.0753 +53637 0.028124 0.40057 4.363 +53636 0.028936 0.39876 4.6481 +53635 0.02973 0.39705 4.9382 +53634 0.030572 0.39547 5.2311 +53633 0.031307 0.39407 5.5243 +53632 0.032069 0.39288 5.8203 +53631 0.032887 0.39193 6.1174 +53630 0.033551 0.39124 0.13363 +53629 0.034306 0.39084 0.43388 +53628 0.035003 0.39075 0.73366 +53627 0.03566 0.39097 1.0373 +53626 0.036312 0.39151 1.3393 +53625 0.036926 0.39237 1.6414 +53624 0.03753 0.39353 1.9463 +53623 0.038102 0.39498 2.2481 +53622 0.038585 0.39667 2.552 +53621 0.039154 0.39859 2.8536 +53620 0.039588 0.40068 3.1566 +53619 0.039986 0.40289 3.4576 +53618 0.040443 0.40516 3.7576 +53617 0.040734 0.40744 4.058 +53616 0.041066 0.40967 4.357 +53615 0.041308 0.41178 4.6542 +53614 0.041533 0.41371 4.9524 +53613 0.041707 0.41541 5.2492 +53612 0.041796 0.41684 5.5449 +53611 0.041895 0.41794 5.8407 +53610 0.041946 0.41868 6.1366 +53609 0.041861 0.41904 0.14847 +53608 0.041868 0.419 0.44361 +53607 0.041738 0.41856 0.73889 +53606 0.041581 0.41771 1.0351 +53605 0.041387 0.41647 1.3308 +53604 0.041177 0.41487 1.6265 +53603 0.040886 0.41295 1.926 +53602 0.04056 0.41076 2.2218 +53601 0.040216 0.40836 2.522 +53600 0.039825 0.40581 2.8222 +53599 0.03936 0.4032 3.1225 +53598 0.038877 0.40061 3.4255 +53597 0.0384 0.39812 3.728 +53596 0.037784 0.39582 4.033 +53595 0.037219 0.39377 4.3383 +53594 0.036592 0.39207 4.6429 +53593 0.035927 0.39076 4.9511 +53592 0.035246 0.38988 5.257 +53591 0.034504 0.38947 5.5626 +53590 0.033813 0.38955 5.8706 +53589 0.033002 0.39012 6.1746 +53588 0.032213 0.39114 0.19644 +53587 0.031449 0.3926 0.4994 +53586 0.03059 0.39442 0.80092 +53585 0.029727 0.39654 1.1012 +53584 0.028938 0.3989 1.3967 +53583 0.028024 0.4014 1.6946 +53582 0.02717 0.40397 1.9859 +53581 0.026286 0.40651 2.2759 +53580 0.025397 0.40894 2.5641 +53579 0.024529 0.41119 2.8496 +53578 0.023567 0.4132 3.1306 +53577 0.022734 0.4149 3.4116 +53576 0.021809 0.41625 3.6887 +53575 0.020877 0.41721 3.964 +53574 0.020041 0.41776 4.2356 +53573 0.019141 0.4179 4.5068 +53572 0.018245 0.41762 4.7747 +53571 0.017438 0.41694 5.0382 +53570 0.016568 0.41588 5.3013 +53569 0.015789 0.41448 5.5631 +53568 0.014971 0.41278 5.8162 +53567 0.014251 0.41084 6.0723 +53566 0.013535 0.40871 0.040392 +53565 0.012854 0.40646 0.28395 +53564 0.01223 0.40416 0.52972 +53563 0.011705 0.40189 0.7658 +53562 0.011129 0.39971 1.0021 +53561 0.01072 0.39769 1.2291 +53560 0.010348 0.39588 1.4542 +53559 0.009991 0.39435 1.6778 +53558 0.009782 0.39313 1.8924 +53557 0.009628 0.39225 2.1056 +53556 0.009512 0.39173 2.3265 +53555 0.009526 0.39157 2.532 +53554 0.009592 0.39177 2.7498 +53553 0.00971 0.39232 2.9703 +53552 0.009925 0.39318 3.1859 +53551 0.010152 0.39433 3.4129 +53550 0.010509 0.39573 3.6431 +53549 0.010805 0.39733 3.875 +53548 0.01121 0.3991 4.113 +53547 0.01167 0.40098 4.3575 +53546 0.01206 0.40293 4.6019 +53545 0.012567 0.40488 4.8553 +53544 0.013079 0.4068 5.1057 +53543 0.013573 0.40865 5.3674 +53542 0.014104 0.41037 5.6256 +53541 0.014678 0.41194 5.8867 +53540 0.015207 0.41332 6.1562 +53539 0.015793 0.41449 0.13771 +53538 0.016338 0.41544 0.40664 +53537 0.016961 0.41614 0.6812 +53536 0.017493 0.41659 0.95202 +53535 0.018082 0.41677 1.2281 +53534 0.018699 0.4167 1.5052 +53533 0.019253 0.41635 1.7832 +53532 0.019806 0.41575 2.0644 +53531 0.020435 0.4149 2.3429 +53530 0.020947 0.4138 2.6286 +53529 0.021506 0.41247 2.9121 +53528 0.022018 0.41093 3.1966 +53527 0.022536 0.40921 3.4865 +53526 0.023015 0.40733 3.7765 +53525 0.023446 0.40533 4.0666 +53524 0.02394 0.40325 4.3633 +53523 0.024339 0.40113 4.6583 +53522 0.024723 0.39902 4.9575 +53521 0.025158 0.39697 5.2571 +53520 0.025505 0.39503 5.5605 +53519 0.025838 0.39325 5.865 +53518 0.026215 0.39168 6.17 +53517 0.026481 0.39037 0.19498 +53516 0.026816 0.38936 0.50443 +53515 0.027037 0.38869 0.81388 +53514 0.027304 0.38839 1.1248 +53513 0.027554 0.3885 1.4381 +53512 0.027673 0.38901 1.749 +53511 0.027891 0.38994 2.0621 +53510 0.028013 0.39127 2.3747 +53509 0.028073 0.39298 2.6875 +53508 0.02815 0.39503 2.9993 +53507 0.028173 0.39736 3.31 +53506 0.028135 0.39992 3.6239 +53505 0.028082 0.40264 3.9321 +53504 0.02798 0.40545 4.2431 +53503 0.027874 0.40828 4.5541 +53502 0.027691 0.41104 4.862 +53501 0.027484 0.41367 5.171 +53500 0.027322 0.4161 5.4795 +53499 0.026992 0.41826 5.7872 +53498 0.026749 0.42009 6.0956 +53497 0.026436 0.42153 0.11792 +53496 0.026091 0.42256 0.42778 +53495 0.025711 0.42313 0.73491 +53494 0.02532 0.42322 1.0411 +53493 0.024905 0.42283 1.3532 +53492 0.024447 0.42195 1.6605 +53491 0.023936 0.4206 1.9721 +53490 0.023473 0.41881 2.2843 +53489 0.022891 0.41662 2.5984 +53488 0.022314 0.41408 2.9153 +53487 0.021743 0.41128 3.2332 +53486 0.02111 0.40825 3.5557 +53485 0.020481 0.40511 3.8823 +53484 0.019825 0.40193 4.2067 +53483 0.019199 0.3988 4.5417 +53482 0.018531 0.39581 4.8764 +53481 0.017852 0.39306 5.2143 +53480 0.017208 0.39061 5.557 +53479 0.01659 0.38855 5.9033 +53478 0.015863 0.38694 6.2548 +53477 0.015298 0.38583 0.322 +53476 0.014661 0.38526 0.6812 +53475 0.014037 0.38523 1.0426 +53474 0.013489 0.38575 1.4036 +53473 0.012898 0.3868 1.7717 +53472 0.012414 0.38832 2.1435 +53471 0.011869 0.39026 2.5151 +53470 0.011416 0.39255 2.8935 +53469 0.011035 0.39511 3.273 +53468 0.010619 0.39786 3.66 +53467 0.010343 0.40071 4.0473 +53466 0.010095 0.40358 4.4324 +53465 0.009953 0.40638 4.8311 +53464 0.009841 0.40906 5.2168 +53463 0.009822 0.41153 5.6054 +53462 0.00991 0.41375 5.9941 +53461 0.010004 0.41566 0.089543 +53460 0.010156 0.41722 0.47076 +53459 0.010414 0.41841 0.83548 +53458 0.010657 0.41921 1.2084 +53457 0.01095 0.4196 1.5669 +53456 0.011276 0.41959 1.9202 +53455 0.011612 0.4192 2.2738 +53454 0.012003 0.41844 2.6193 +53453 0.012297 0.41734 2.962 +53452 0.012724 0.41595 3.3003 +53451 0.013091 0.4143 3.637 +53450 0.013419 0.41244 3.9735 +53449 0.013811 0.41042 4.3016 +53448 0.014191 0.4083 4.6335 +53447 0.014516 0.40612 4.9649 +53446 0.014893 0.40395 5.2873 +53445 0.015217 0.40182 5.6166 +53444 0.015597 0.39981 5.9404 +53443 0.015877 0.39794 6.264 +53442 0.016206 0.39628 0.30251 +53441 0.01655 0.39484 0.62427 +53440 0.016768 0.39368 0.9441 +53439 0.017084 0.3928 1.2637 +53438 0.017305 0.39224 1.5794 +53437 0.01754 0.392 1.8995 +53436 0.017732 0.39207 2.2142 +53435 0.017897 0.39245 2.5279 +53434 0.018103 0.39313 2.8455 +53433 0.01821 0.39408 3.157 +53432 0.018318 0.39527 3.4695 +53431 0.018506 0.39667 3.7806 +53430 0.018541 0.39824 4.0912 +53429 0.018626 0.39994 4.3995 +53428 0.018739 0.40173 4.7053 +53427 0.018738 0.40356 5.013 +53426 0.018814 0.4054 5.3168 +53425 0.01879 0.4072 5.6185 +53424 0.018821 0.40892 5.9217 +53423 0.018796 0.41051 6.2231 +53422 0.018709 0.41194 0.23688 +53421 0.018717 0.41316 0.53798 +53420 0.018592 0.41415 0.83371 +53419 0.018482 0.41487 1.1323 +53418 0.018368 0.41532 1.4264 +53417 0.018218 0.41548 1.7229 +53416 0.018001 0.41533 2.0205 +53415 0.017822 0.41489 2.3122 +53414 0.017568 0.41416 2.6107 +53413 0.017323 0.41315 2.9075 +53412 0.017006 0.41188 3.2021 +53411 0.016721 0.41038 3.5018 +53410 0.016397 0.40868 3.7996 +53409 0.016013 0.40682 4.099 +53408 0.015637 0.40485 4.4 +53407 0.015273 0.40281 4.6991 +53406 0.014797 0.40075 5.0063 +53405 0.014379 0.39876 5.3048 +53404 0.013906 0.39687 5.6103 +53403 0.013409 0.39516 5.9173 +53402 0.012884 0.39369 6.2198 +53401 0.012313 0.3925 0.24051 +53400 0.011794 0.39165 0.54972 +53399 0.011111 0.39116 0.85061 +53398 0.010495 0.39105 1.1554 +53397 0.009849 0.39135 1.4572 +53396 0.009093 0.39204 1.7592 +53395 0.008369 0.39311 2.0574 +53394 0.007626 0.39452 2.3481 +53393 0.006791 0.39625 2.6454 +53392 0.006004 0.39823 2.9255 +53391 0.005129 0.40042 3.1967 +53390 0.004295 0.40275 3.4614 +53389 0.003429 0.40515 3.694 +53388 0.002526 0.40756 3.8588 +53387 0.001807 0.40991 3.9356 +53386 0.001215 0.41212 3.662 +53385 0.00135 0.41414 3.1819 +53384 0.002009 0.4159 3.0552 +53383 0.002919 0.41735 3.1424 +53382 0.00385 0.41845 3.3302 +53381 0.004898 0.41917 3.5833 +53380 0.00589 0.41947 3.8334 +53379 0.006947 0.41936 4.1065 +53378 0.008051 0.41883 4.3901 +53377 0.009117 0.4179 4.6722 +53376 0.010194 0.41658 4.963 +53375 0.011369 0.41492 5.2513 +53374 0.01242 0.41294 5.5483 +53373 0.013565 0.4107 5.8437 +53372 0.014676 0.40826 6.1387 +53371 0.015793 0.40566 0.15918 +53370 0.016892 0.403 0.46045 +53369 0.017977 0.40033 0.7612 +53368 0.019097 0.39773 1.0704 +53367 0.020147 0.39528 1.3746 +53366 0.021183 0.39305 1.6845 +53365 0.022257 0.39111 1.9935 +53364 0.023241 0.38952 2.3053 +53363 0.02422 0.38833 2.6183 +53362 0.025217 0.38758 2.9305 +53361 0.026141 0.38729 3.2447 +53360 0.027096 0.38746 3.5604 +53359 0.027963 0.38809 3.8724 +53358 0.028895 0.38916 4.1873 +53357 0.02975 0.39063 4.5007 +53356 0.030576 0.39247 4.8117 +53355 0.031412 0.3946 5.1231 +53354 0.032227 0.39698 5.432 +53353 0.032928 0.39953 5.741 +53352 0.033697 0.4022 6.0459 +53351 0.034401 0.40489 0.068105 +53350 0.035002 0.40755 0.37209 +53349 0.03566 0.41011 0.67261 +53348 0.036196 0.41251 0.97319 +53347 0.036755 0.41469 1.273 +53346 0.037217 0.4166 1.5704 +53345 0.037643 0.41819 1.8673 +53344 0.03811 0.41945 2.164 +53343 0.038401 0.42035 2.4592 +53342 0.038752 0.42085 2.7546 +53341 0.039066 0.42097 3.048 +53340 0.039266 0.4207 3.3438 +53339 0.03949 0.42004 3.6371 +53338 0.039675 0.41902 3.9306 +53337 0.039782 0.41766 4.2265 +53336 0.039916 0.41599 4.5196 +53335 0.039922 0.41404 4.8147 +53334 0.040026 0.41185 5.1103 +53333 0.039967 0.40948 5.406 +53332 0.039927 0.40698 5.7024 +53331 0.03991 0.40441 5.9994 +53330 0.039766 0.40183 0.013776 +53329 0.039648 0.3993 0.31313 +53328 0.03949 0.39688 0.61035 +53327 0.039301 0.39464 0.9114 +53326 0.03908 0.39264 1.2116 +53325 0.038805 0.39091 1.5111 +53324 0.038579 0.38951 1.8127 +53323 0.038262 0.38848 2.1141 +53322 0.037907 0.38784 2.4138 +53321 0.037644 0.3876 2.7156 +53320 0.037247 0.38779 3.0149 +53319 0.036887 0.38839 3.3147 +53318 0.036512 0.38938 3.6122 +53317 0.036132 0.39075 3.909 +53316 0.03569 0.39245 4.2055 +53315 0.035301 0.39443 4.4974 +53314 0.034848 0.39665 4.7902 +53313 0.034425 0.39903 5.08 +53312 0.033942 0.40152 5.3673 +53311 0.033472 0.40405 5.653 +53310 0.033044 0.40657 5.9371 +53309 0.032481 0.409 6.2186 +53308 0.032022 0.4113 0.21488 +53307 0.031538 0.41341 0.49254 +53306 0.030972 0.41528 0.76942 +53305 0.030488 0.41687 1.0431 +53304 0.029968 0.41816 1.3155 +53303 0.029432 0.4191 1.589 +53302 0.028925 0.41968 1.8571 +53301 0.028385 0.41988 2.1269 +53300 0.027911 0.4197 2.3955 +53299 0.027385 0.41915 2.6621 +53298 0.026851 0.41823 2.9279 +53297 0.026461 0.41696 3.1939 +53296 0.02589 0.41538 3.4586 +53295 0.025471 0.41352 3.7228 +53294 0.025034 0.41144 3.9853 +53293 0.02458 0.40919 4.2494 +53292 0.024165 0.40682 4.512 +53291 0.023781 0.4044 4.7712 +53290 0.023394 0.40199 5.0359 +53289 0.023048 0.39966 5.2941 +53288 0.022697 0.39747 5.5534 +53287 0.022431 0.39548 5.8144 +53286 0.022138 0.39373 6.0707 +53285 0.021895 0.39228 0.045306 +53284 0.021729 0.39117 0.30213 +53283 0.021574 0.39043 0.55655 +53282 0.021437 0.39007 0.81365 +53281 0.021443 0.39012 1.064 +53280 0.021417 0.39056 1.3203 +53279 0.021474 0.39138 1.5722 +53278 0.021629 0.39256 1.823 +53277 0.021793 0.39405 2.0762 +53276 0.022069 0.3958 2.3292 +53275 0.022354 0.39777 2.5784 +53274 0.022779 0.39987 2.8332 +53273 0.023208 0.40206 3.0858 +53272 0.023696 0.40427 3.3385 +53271 0.0243 0.40642 3.5942 +53270 0.024919 0.40847 3.8494 +53269 0.025548 0.41036 4.1068 +53268 0.02632 0.41205 4.3643 +53267 0.027056 0.41349 4.6243 +53266 0.027833 0.41465 4.8862 +53265 0.028676 0.41551 5.1481 +53264 0.029507 0.41605 5.4126 +53263 0.030389 0.41626 5.6808 +53262 0.031229 0.41614 5.9471 +53261 0.03216 0.4157 6.2182 +53260 0.033044 0.41494 0.20842 +53259 0.033926 0.4139 0.48115 +53258 0.034831 0.41259 0.75931 +53257 0.035755 0.41105 1.037 +53256 0.036598 0.40933 1.319 +53255 0.037496 0.40747 1.6015 +53254 0.038387 0.40553 1.8867 +53253 0.039195 0.40356 2.175 +53252 0.040061 0.40162 2.464 +53251 0.040855 0.39976 2.7548 +53250 0.041685 0.39804 3.0498 +53249 0.042423 0.39651 3.3435 +53248 0.043165 0.39521 3.6404 +53247 0.043952 0.39418 3.9387 +53246 0.044601 0.39345 4.2375 +53245 0.045264 0.39303 4.5373 +53244 0.045987 0.39295 4.8373 +53243 0.046498 0.39321 5.1385 +53242 0.047128 0.39378 5.4388 +53241 0.047624 0.39467 5.7389 +53240 0.048109 0.39584 6.0402 +53239 0.04855 0.39725 0.056608 +53238 0.048903 0.39886 0.35544 +53237 0.049283 0.40063 0.65527 +53236 0.04956 0.4025 0.95254 +53235 0.049764 0.40443 1.2503 +53234 0.050023 0.40635 1.546 +53233 0.050125 0.40822 1.8422 +53232 0.050208 0.40999 2.1368 +53231 0.050293 0.41161 2.4302 +53230 0.050258 0.41304 2.7239 +53229 0.050234 0.41424 3.0166 +53228 0.050105 0.41518 3.3076 +53227 0.049999 0.41583 3.5993 +53226 0.049803 0.41618 3.8907 +53225 0.049545 0.41621 4.1801 +53224 0.049314 0.41591 4.4712 +53223 0.048988 0.41531 4.7609 +53222 0.048623 0.4144 5.0513 +53221 0.048232 0.4132 5.3413 +53220 0.047835 0.41175 5.6312 +53219 0.047319 0.41007 5.9231 +53218 0.046847 0.40821 6.2127 +53217 0.046309 0.4062 0.22122 +53216 0.045746 0.4041 0.51387 +53215 0.045141 0.40197 0.80516 +53214 0.044525 0.39985 1.0979 +53213 0.043913 0.39781 1.392 +53212 0.043197 0.39591 1.6842 +53211 0.042538 0.39419 1.9789 +53210 0.041855 0.39273 2.2718 +53209 0.041098 0.39155 2.5664 +53208 0.040383 0.39071 2.8595 +53207 0.039654 0.39022 3.1517 +53206 0.038876 0.39012 3.4453 +53205 0.038157 0.39041 3.7358 +53204 0.037347 0.39107 4.025 +53203 0.036651 0.3921 4.3147 +53202 0.035839 0.39348 4.6005 +53201 0.035075 0.39515 4.8851 +53200 0.034377 0.39707 5.1679 +53199 0.033582 0.39919 5.4483 +53198 0.032833 0.40146 5.7266 +53197 0.03219 0.40381 6.0009 +53196 0.031413 0.40619 6.2757 +53195 0.030773 0.40853 0.26243 +53194 0.030101 0.41077 0.52994 +53193 0.029469 0.41287 0.79648 +53192 0.02887 0.41475 1.0604 +53191 0.028247 0.41639 1.3199 +53190 0.02775 0.41773 1.5813 +53189 0.027198 0.41873 1.8378 +53188 0.026699 0.41939 2.0941 +53187 0.026289 0.41967 2.3489 +53186 0.025868 0.41958 2.6021 +53185 0.025459 0.41912 2.8561 +53184 0.025175 0.41829 3.1061 +53183 0.024857 0.41713 3.3593 +53182 0.02458 0.41566 3.6109 +53181 0.024383 0.41392 3.8609 +53180 0.024175 0.41193 4.1138 +53179 0.024042 0.40977 4.3668 +53178 0.02389 0.40747 4.6181 +53177 0.023833 0.40508 4.8738 +53176 0.023784 0.40267 5.1287 +53175 0.023744 0.40029 5.3849 +53174 0.02376 0.398 5.6432 +53173 0.023859 0.39587 5.902 +53172 0.023857 0.39395 6.1643 +53171 0.02403 0.39229 0.14135 +53170 0.024168 0.39094 0.40614 +53169 0.024313 0.38993 0.6718 +53168 0.024548 0.38929 0.93695 +53167 0.024775 0.38903 1.2038 +53166 0.025045 0.38917 1.4747 +53165 0.025332 0.38968 1.7411 +53164 0.025653 0.39055 2.0122 +53163 0.026036 0.39175 2.2835 +53162 0.02637 0.39324 2.5533 +53161 0.026793 0.39498 2.8251 +53160 0.027249 0.39692 3.097 +53159 0.027651 0.399 3.3681 +53158 0.028145 0.40119 3.6415 +53157 0.028633 0.40341 3.9109 +53156 0.029125 0.40562 4.1859 +53155 0.029617 0.40778 4.4566 +53154 0.030152 0.40984 4.7282 +53153 0.030647 0.41174 5.0032 +53152 0.031173 0.41346 5.2746 +53151 0.031649 0.41495 5.5487 +53150 0.032221 0.41618 5.8237 +53149 0.032672 0.41714 6.0985 +53148 0.033171 0.4178 0.091491 +53147 0.033725 0.41815 0.36801 +53146 0.034155 0.41818 0.64641 +53145 0.034652 0.41791 0.9259 +53144 0.035133 0.41732 1.2044 +53143 0.035576 0.41645 1.4874 +53142 0.036019 0.4153 1.7699 +53141 0.036427 0.41391 2.053 +53140 0.036854 0.4123 2.3402 +53139 0.037241 0.4105 2.6268 +53138 0.037556 0.40857 2.9159 +53137 0.037965 0.40654 3.206 +53136 0.038249 0.40446 3.499 +53135 0.038502 0.40238 3.7921 +53134 0.038835 0.40036 4.0875 +53133 0.039001 0.39845 4.3844 +53132 0.039234 0.39668 4.6831 +53131 0.039366 0.39512 4.9819 +53130 0.03951 0.3938 5.2827 +53129 0.039592 0.39276 5.5853 +53128 0.039615 0.39202 5.8868 +53127 0.039629 0.39162 6.1908 +53126 0.039617 0.39156 0.21138 +53125 0.039474 0.39184 0.51551 +53124 0.039385 0.39246 0.81961 +53123 0.039223 0.39339 1.1235 +53122 0.038966 0.39462 1.4281 +53121 0.038715 0.3961 1.731 +53120 0.038431 0.39779 2.0329 +53119 0.038055 0.39964 2.3374 +53118 0.037673 0.4016 2.6362 +53117 0.037239 0.40361 2.9377 +53116 0.036786 0.40561 3.2372 +53115 0.036257 0.40755 3.5348 +53114 0.03568 0.40937 3.8327 +53113 0.035161 0.41103 4.1286 +53112 0.034454 0.41248 4.4246 +53111 0.033823 0.41369 4.7195 +53110 0.03313 0.41462 5.0122 +53109 0.032387 0.41524 5.3075 +53108 0.031625 0.41556 5.5996 +53107 0.030825 0.41555 5.8905 +53106 0.030026 0.41522 6.1848 +53105 0.029159 0.41458 0.19129 +53104 0.028257 0.41365 0.48327 +53103 0.027399 0.41245 0.77455 +53102 0.026445 0.41102 1.0657 +53101 0.025475 0.40941 1.3575 +53100 0.024572 0.40766 1.6473 +53099 0.023547 0.40583 1.9403 +53098 0.022581 0.40398 2.2306 +53097 0.021582 0.40216 2.5202 +53096 0.020586 0.40043 2.8103 +53095 0.019609 0.39886 3.1008 +53094 0.01854 0.39748 3.3848 +53093 0.017608 0.39633 3.6723 +53092 0.01659 0.39546 3.9553 +53091 0.015573 0.39488 4.2344 +53090 0.014643 0.39462 4.5108 +53089 0.013694 0.39467 4.7826 +53088 0.012719 0.39503 5.0497 +53087 0.011896 0.39569 5.3061 +53086 0.011001 0.39661 5.5582 +53085 0.010216 0.39776 5.8016 +53084 0.009469 0.39911 6.0271 +53083 0.008792 0.4006 6.2459 +53082 0.008209 0.40218 0.17082 +53081 0.00771 0.4038 0.35536 +53080 0.007315 0.4054 0.53841 +53079 0.007113 0.40693 0.70853 +53078 0.006922 0.40837 0.87118 +53077 0.006972 0.40965 1.0363 +53076 0.007111 0.41075 1.2085 +53075 0.007294 0.41165 1.3845 +53074 0.007642 0.41231 1.576 +53073 0.008059 0.41274 1.7755 +53072 0.00842 0.41293 1.9916 +53071 0.008958 0.41286 2.211 +53070 0.009434 0.41256 2.445 +53069 0.009924 0.41204 2.6868 +53068 0.010462 0.4113 2.9334 +53067 0.010952 0.41039 3.1842 +53066 0.01149 0.40931 3.4491 +53065 0.011953 0.4081 3.7069 +53064 0.012453 0.40681 3.9746 +53063 0.012949 0.40545 4.2481 +53062 0.013368 0.40408 4.5178 +53061 0.013808 0.40272 4.7959 +53060 0.01428 0.40141 5.0729 +53059 0.014628 0.40018 5.3551 +53058 0.015029 0.39906 5.636 +53057 0.015439 0.39808 5.9188 +53056 0.015736 0.39726 6.2067 +53055 0.016113 0.39661 0.20829 +53054 0.016398 0.39614 0.49441 +53053 0.016723 0.39587 0.7858 +53052 0.016987 0.3958 1.0727 +53051 0.017237 0.39592 1.3624 +53050 0.017511 0.39624 1.6542 +53049 0.017732 0.39675 1.9435 +53048 0.017905 0.39743 2.2363 +53047 0.018177 0.39827 2.5242 +53046 0.018318 0.39925 2.8186 +53045 0.018482 0.40036 3.1086 +53044 0.018671 0.40156 3.3972 +53043 0.018788 0.40285 3.6897 +53042 0.018921 0.40419 3.98 +53041 0.018998 0.40556 4.2665 +53040 0.019106 0.40694 4.5589 +53039 0.019151 0.40829 4.8467 +53038 0.019158 0.40959 5.1357 +53037 0.019216 0.41081 5.4246 +53036 0.0192 0.41193 5.7138 +53035 0.019138 0.41292 6.0029 +53034 0.019148 0.41374 0.008132 +53033 0.019038 0.41439 0.29684 +53032 0.018983 0.41482 0.58873 +53031 0.01884 0.41503 0.87578 +53030 0.01874 0.415 1.1666 +53029 0.018585 0.41473 1.4604 +53028 0.01839 0.4142 1.7481 +53027 0.018218 0.41342 2.0434 +53026 0.018019 0.41239 2.3356 +53025 0.017742 0.41113 2.6307 +53024 0.017503 0.40967 2.9257 +53023 0.017236 0.40802 3.221 +53022 0.016875 0.40622 3.5216 +53021 0.016565 0.40432 3.8187 +53020 0.016172 0.40236 4.1188 +53019 0.015782 0.40038 4.4241 +53018 0.015333 0.39845 4.7262 +53017 0.014849 0.39661 5.0312 +53016 0.014407 0.39494 5.3414 +53015 0.013811 0.39346 5.6485 +53014 0.013262 0.39225 5.961 +53013 0.012704 0.39135 6.2716 +53012 0.012039 0.39078 0.30594 +53011 0.011375 0.39059 0.62128 +53010 0.010742 0.39077 0.93485 +53009 0.009979 0.39134 1.262 +53008 0.009279 0.39228 1.5778 +53007 0.00849 0.39356 1.9025 +53006 0.007737 0.39516 2.2299 +53005 0.006934 0.39703 2.5601 +53004 0.006069 0.39911 2.8945 +53003 0.005296 0.40133 3.2387 +53002 0.004417 0.40366 3.5957 +53001 0.003563 0.406 3.9878 +53000 0.002759 0.40829 4.399 +52999 0.002001 0.41048 4.9518 +52998 0.001461 0.4125 5.7166 +52997 0.001399 0.41429 0.4125 +52996 0.001952 0.4158 1.2051 +52995 0.002741 0.417 1.7405 +52994 0.003677 0.41785 2.201 +52993 0.004571 0.41834 2.5647 +52992 0.005569 0.41845 2.9213 +52991 0.006578 0.41819 3.2581 +52990 0.007546 0.41757 3.5818 +52989 0.008531 0.41661 3.9066 +52988 0.009558 0.41535 4.2161 +52987 0.010512 0.41382 4.5367 +52986 0.011499 0.41208 4.8478 +52985 0.012446 0.41017 5.1571 +52984 0.013433 0.40815 5.4728 +52983 0.014366 0.40608 5.7836 +52982 0.015252 0.40403 6.0941 +52981 0.016238 0.40205 0.12479 +52980 0.01708 0.40019 0.43643 +52979 0.017951 0.39851 0.74974 +52978 0.018829 0.39706 1.0621 +52977 0.019632 0.39586 1.3755 +52976 0.020444 0.39494 1.6911 +52975 0.021204 0.39432 2.0015 +52974 0.021976 0.39399 2.3171 +52973 0.022695 0.39397 2.6298 +52972 0.023381 0.39421 2.9411 +52971 0.024038 0.39472 3.2534 +52970 0.02472 0.39544 3.5632 +52969 0.025238 0.39634 3.8742 +52968 0.025843 0.39739 4.1809 +52967 0.026377 0.39855 4.4893 +52966 0.026809 0.39977 4.7966 +52965 0.027279 0.40103 5.1007 +52964 0.027674 0.40227 5.4048 +52963 0.028033 0.40348 5.7106 +52962 0.028343 0.40463 6.0105 +52961 0.028615 0.40568 0.030245 +52960 0.028894 0.40664 0.33127 +52959 0.029057 0.40747 0.63106 +52958 0.029225 0.40818 0.93062 +52957 0.02942 0.40876 1.2291 +52956 0.029456 0.40922 1.5274 +52955 0.02958 0.40955 1.8249 +52954 0.029597 0.40977 2.1197 +52953 0.029626 0.40988 2.4176 +52952 0.029591 0.40989 2.7118 +52951 0.029533 0.40982 3.005 +52950 0.029482 0.40967 3.301 +52949 0.029352 0.40945 3.5926 +52948 0.029183 0.40916 3.8856 +52947 0.02909 0.40881 4.1773 +52946 0.028838 0.40841 4.469 +52945 0.028634 0.40795 4.7595 +52944 0.028421 0.40744 5.0489 +52943 0.028127 0.40689 5.3387 +52942 0.027874 0.40629 5.6285 +52941 0.027532 0.40566 5.9145 +52940 0.02725 0.40499 6.2037 +52939 0.026898 0.4043 0.2081 +52938 0.026519 0.40359 0.49284 +52937 0.026202 0.40288 0.78067 +52936 0.025819 0.40218 1.0653 +52935 0.025414 0.4015 1.351 +52934 0.025075 0.40086 1.6339 +52933 0.024694 0.40029 1.918 +52932 0.024263 0.3998 2.2012 +52931 0.023936 0.39941 2.4807 diff --git a/genie-userconfigs/EXAMPLE._rwlla.bio_orbitsNEW b/genie-userconfigs/EXAMPLE._rwlla.bio_orbitsNEW new file mode 100644 index 000000000..1df56b68f --- /dev/null +++ b/genie-userconfigs/EXAMPLE._rwlla.bio_orbitsNEW @@ -0,0 +1,54 @@ +# +# +# --- CLIMATE --------------------------------------------------------- +# +# solar constant. NOTE: modern S0 is 1368 W m-2 +ma_genie_solar_constant=1368.0 +# +# --- BIOLOGICAL NEW PRODUCTION -------------------------------- +# +# No biology +bg_par_bio_prodopt='NONE' +# +# --- ORGANIC MATTER EXPORT RATIOS ----------------------------- +# +# --- INORGANIC MATTER EXPORT RATIOS --------------------------- +# +# --- REMINERALIZATION ----------------------------------------- +# +# --- DATA SAVING ---------------------------------------------- +# +# date saving & reporting options +bg_par_data_save_level=9 +bg_ctrl_debug_lvl0=.true. +ma_debug_loop=0 +# save frequency +bg_par_infile_sig_name='save_timeseries_EVERY000100.dat' +# representative NH latitude and season to sample orbital variation of insolation +bg_par_t_sig_count_N=12 +bg_par_sig_j_N=17 +# SH latitude/season +bg_par_t_sig_count_S=12 +bg_par_sig_j_S=2 +# +# --- FORCINGS -------------------------------------------------------- +# +# use internal wind-speed +bg_ctrl_force_windspeed=.false. +#re-scale gas transfer coeff to give ~0.058 mol m-2 yr-1 uatm-1 global mean air-sea coefficient (original: 0.310) +bg_par_gastransfer_a=0.715813093980993 +# CALL NEW ORBIT CODE!!! +ea_opt_orbit_old=.false. +# set time-varying orbits +ea_38="y" +# Specify type of orbital forcing default (0), time-varying (1), alternative config (2) +ea_39=1 +# Number of data points in orbits file +ea_40=1001 +# Interval between data points in goldstein time steps (orbits change every 1000 yr) +ea_41=48000 +# filename for orbital parameters (must be in genie-embm/data/input) +ea_42="orbits_La2004_1Myr_new.dat" +# +# --- END ------------------------------------------------------ +# diff --git a/genie-userconfigs/MS/vervoortetal.2021/README.txt b/genie-userconfigs/MS/vervoortetal.2021/README.txt index ed855ec40..2030297ee 100644 --- a/genie-userconfigs/MS/vervoortetal.2021/README.txt +++ b/genie-userconfigs/MS/vervoortetal.2021/README.txt @@ -11,6 +11,7 @@ P. Vervoort, S. Kirtland Turner, F. Rochholz, A. Ridgwell 06/15/2020 -- README.txt file creation (PV) 07/01/2021 -- update (AR) 07/23/2021 -- updated with new experiment names (PV) +09/11/2023 -- add note (L.28); update experiment names ################################################################ Provided is the code used to create the model experiments presented in the paper. @@ -24,26 +25,32 @@ All experiments are run from: $HOME/cgenie.muffin/genie-main (unless a different installation directory has been used) +### NOTE ######################################################### +% 09/11/2023 - The manuscript has had some updates after publication +% in order to correct for an error in the insolation code. Commands +% below are used to run the updated simulations with corrected code +################################################################# + ### model experiments -- spinups ################################ The commands to run the spinups are listed as follows: fkl_pp30 => hemispherically symmetric continental configuration with one continent from pole-to-pole -fkl_np => hemispherically asymmetric continental configuration with one continent in the NH +fkl_np30 => hemispherically asymmetric continental configuration with one continent in the NH (1a) INITIAL SPINUP The initial, 1st-stage closed system spin-up needs 20 kyr to reach equilibrium: -./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021 fkl_pp30.SPIN1 20000 -./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021 fkl_np30.SPIN1 20000 +./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021 fkl_pp30_c.SPIN1 20000 +./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021 fkl_np30_c.SPIN1 20000 (1b) Second Stage SPINUP -The follow-on, 2nd-stage (accelerated) open system spin-up requires a long spinup time of 1.75 Myr to reach equilibrium +The follow-on, 2nd-stage (accelerated) open system spin-up requires a long spinup time of 1.5 Myr to reach equilibrium -./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021 fkl_pp30.SPIN2gl 1750000 fkl_pp30.SPIN1 -./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021 fkl_np30.SPIN2gl 1750000 fkl_np30.SPIN1 +./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021 fkl_pp30_c.SPIN2gl 1500000 fkl_pp30_c.SPIN1 +./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021 fkl_np30_c.SPIN2gl 1500000 fkl_np30_c.SPIN1 ### model experiments -- main ensemble ########################## @@ -52,28 +59,28 @@ Experiment 0-5 correspond to the numbering as described in the manuscript (2a) For EXPERIMENT 0, no carbon cycle feedbacks: -./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021 fkl_pp30_EXP0.4Ma 4000000 fkl_pp30.SPIN2gl -./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021 fkl_np30_EXP0.4Ma 4000000 fkl_np30.SPIN2gl +./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021 fkl_pp30_EXP0_c.4Ma 4000000 fkl_pp30_c.SPIN2gl +./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021 fkl_np30_EXP0_c.4Ma 4000000 fkl_np30_c.SPIN2gl (2b) For EXPERIMENT 1, climate + ocean circulation + CO2-ocean chemistry feedbacks only: -./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021 fkl_pp30_EXP1.4Ma 4000000 fkl_pp30.SPIN2gl -./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021 fkl_np30_EXP1.4Ma 4000000 fkl_np30.SPIN2gl +./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021 fkl_pp30_EXP1_c.4Ma 4000000 fkl_pp30_c.SPIN2gl +./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021 fkl_np30_EXP1_c.4Ma 4000000 fkl_np30_c.SPIN2gl (2c) For EXPERIMENT 2, EXPERIMENT 1 + primary productivity feedbacks: -./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021 fkl_pp30_EXP2.4Ma 4000000 fkl_pp30.SPIN2gl -./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021 fkl_np30_EXP2.4Ma 4000000 fkl_np30.SPIN2gl +./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021 fkl_pp30_EXP2_c.4Ma 4000000 fkl_pp30_c.SPIN2gl +./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021 fkl_np30_EXP2_c.4Ma 4000000 fkl_np30_c.SPIN2gl (2d) For EXPERIMENT 3, EXPERIMENT 2 + CaCO3 sedimentation feedbacks: -./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021 fkl_pp30_EXP3.4Ma 4000000 fkl_pp30.SPIN2gl -./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021 fkl_np30_EXP3.4Ma 4000000 fkl_np30.SPIN2gl +./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021 fkl_pp30_EXP3_c.4Ma 4000000 fkl_pp30_c.SPIN2gl +./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021 fkl_np30_EXP3_c.4Ma 4000000 fkl_np30_c.SPIN2gl (2e) For EXPERIMENT 4, EXPERIMENT 3 + weathering feedbacks: -./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021 fkl_pp30_EXP4.4Ma 4000000 fkl_pp30.SPIN2gl -./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021 fkl_np30_EXP4.4Ma 4000000 fkl_np30.SPIN2gl +./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021 fkl_pp30_EXP4_c.4Ma 4000000 fkl_pp30_c.SPIN2gl +./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021 fkl_np30_EXP4_c.4Ma 4000000 fkl_np30_c.SPIN2gl ################################################################ ################################################################ diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP0_c.4Ma b/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP0_c.4Ma new file mode 100644 index 000000000..b8ed3b28a --- /dev/null +++ b/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP0_c.4Ma @@ -0,0 +1,123 @@ +# +# +# --- CLIMATE --------------------------------------------------------- +# +# set NO CO2-climate feedback +ea_36=n +# set radiative forcing to 3x278ppm = 834 ppm (2.99x278 = 831 ppm) +ea_radfor_scl_co2=2.99 +# set seasonal cycle +ea_dosc=.true. +go_dosc=.true. +gs_dosc=.true. +# +# --- BIOLOGICAL NEW PRODUCTION --------------------------------------- +# +# FIX biological production in surface ocean w/ forcing file +bg_par_bio_prodopt="bio_POCflux" +# +# --- ORGANIC MATTER EXPORT RATIOS ------------------------------------ +# +# production fraction of dissolved organic matter +bg_par_bio_red_DOMfrac=0.66 +# +# --- INORGANIC MATTER EXPORT RATIOS ---------------------------------- +# +# fixed CaCO3:POC +bg_opt_bio_CaCO3toPOCrainratio='FIXED' +# underlying export CaCO3 as a proportion of particulate organic matter (i.e., CaCO3/POC) +bg_par_bio_red_POC_CaCO3=0.200 +# +# --- REMINERALIZATION ------------------------------------------------ +# +# DOC lifetime (yrs) +bg_par_bio_remin_DOMlifetime=0.5 +# initial fractional abundance of POC component #2 +bg_par_bio_remin_POC_frac2=0.0557 +# depth of remineralization or particulate organic matter +bg_par_bio_remin_POC_eL1=589.9451 +# remineralization length #2 for POC +bg_par_bio_remin_POC_eL2=1000000.0 +# initial fractional abundance of CaCO3 component #2 +bg_par_bio_remin_CaCO3_frac2=0.45 +# depth of remineralization or CaCO3 +bg_par_bio_remin_CaCO3_eL1=1.8905e+003 +# remineralization length #2 for CaCO3 +bg_par_bio_remin_CaCO3_eL2=1000000.0 +# +# --- SEDIMENTS ---------------------------------------------------------- +# +# sediment grid options ==> defined in base-config +sg_par_sed_Dmax_neritic=500.0 +# sediment diagenesis options +sg_par_sed_diagen_CaCO3opt="ridgwell2001lookup" +sg_ctrl_sed_bioturb=.true. +sg_ctrl_sed_bioturb_Archer=.false. +sg_par_n_sed_mix=20 +# set invarient surface bioturbation mixing rate +sg_par_sed_mix_k_sur_max=0.15 +sg_par_sed_mix_k_sur_min=0.15 +# additional detrital flux (g cm-2 kyr-1) +sg_par_sed_fdet=0.180 +# +# --- WEATHERING ------------------------------------------------------ +# +# set a CLOSED system +bg_ctrl_force_sed_closedsystem=.true. +# set NO CaCO3 and CaSiO3 weathering-temperature feedback +rg_opt_weather_T_Ca=.false. +rg_opt_weather_T_Si=.false. +# weathering reference mean global land surface temperature (C) +rg_par_ref_T0=19.47 +#CO2 outgassing rate (mol C yr-1) +rg_par_outgas_CO2=6.1537e+12 +# global carbonate and silicate weathering rate (mol Ca2+ yr-1) +# derived from diag_weather_Ca.res of spin2 +rg_par_weather_CaSiO3=6.1537e+12 +rg_par_weather_CaCO3=6.1537e+12 +# d13C values +rg_par_outgas_CO2_d13C=-6.0 +rg_par_weather_CaCO3_d13C=13.77 +# +# --- DATA SAVING ----------------------------------------------------- +# +# date saving & reporting options +bg_par_data_save_level=8 +bg_ctrl_debug_lvl0=.true. +ma_debug_loop=1 +#(saves annual averages, NOT discrete values in time) +bg_par_infile_sig_name='save_timeseries_EVERY001000_orbits.dat' +bg_par_infile_slice_name='save_timeslice_EVERY002500_orbits.dat' +# representative NH latitude and season to sample orbital variation of insolation +bg_par_t_sig_count_N=12 +bg_par_sig_j_N=17 +# SH latitude/season +bg_par_t_sig_count_S=12 +bg_par_sig_j_S=2 +# +# --- FORCINGS -------------------------------------------------------- +# +# specify POC forcing field +bg_par_forcing_name="pyyyyz.FPOC_np30.vervoortetal2021" +# re-scale gas transfer coeff to give ~0.058 mol m-2 yr-1 uatm-1 global mean air-sea coefficient (original: 0.310) +bg_par_gastransfer_a=0.715813093980993 +# select correct insolation code +ea_opt_orbit_old=.false. +# Call orbit_radfor +ea_38="y" +# Specify the type of orbital forcing default (0), time-varying (1), alternative config (2) +ea_39=1 +# Number of data points in orbits file +ea_40=5000 +# Interval between data points in goldstein time steps +ea_41=48000 +# filename for orbital parameters (must be in genie-embm/data/input) +ea_42="orbits_La2004_57.93_52.91Ma_new.dat" +# +# --- MISC ----------------------------------------------------- +# +# add ventillation tracers +bg_ctrl_force_ocn_age1=.true. +# +# --- END ------------------------------------------------------ +# \ No newline at end of file diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP1_c.4Ma b/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP1_c.4Ma new file mode 100644 index 000000000..2d45e5788 --- /dev/null +++ b/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP1_c.4Ma @@ -0,0 +1,124 @@ +# +# +# --- CLIMATE --------------------------------------------------------- +# +# set climate feedback +ea_36=y +# set seasonal cycle +ea_dosc=.true. +go_dosc=.true. +gs_dosc=.true. +# +# --- BIOLOGICAL NEW PRODUCTION --------------------------------------- +# +# FIX biological production in surface ocean w/ forcing file +bg_par_bio_prodopt="bio_POCflux" +# +# --- ORGANIC MATTER EXPORT RATIOS ------------------------------------ +# +# production fraction of dissolved organic matter +bg_par_bio_red_DOMfrac=0.66 +# +# --- INORGANIC MATTER EXPORT RATIOS ---------------------------------- +# +# fixed CaCO3:POC +bg_opt_bio_CaCO3toPOCrainratio='FIXED' +# underlying export CaCO3 as a proportion of particulate organic matter (i.e., CaCO3/POC) +bg_par_bio_red_POC_CaCO3=0.200 +# +# --- REMINERALIZATION ------------------------------------------------ +# +# DOC lifetime (yrs) +bg_par_bio_remin_DOMlifetime=0.5 +# initial fractional abundance of POC component #2 +bg_par_bio_remin_POC_frac2=0.0557 +# depth of remineralization or particulate organic matter +bg_par_bio_remin_POC_eL1=589.9451 +# remineralization length #2 for POC +bg_par_bio_remin_POC_eL2=1000000.0 +# initial fractional abundance of CaCO3 component #2 +bg_par_bio_remin_CaCO3_frac2=0.45 +# depth of remineralization or CaCO3 +bg_par_bio_remin_CaCO3_eL1=1.8905e+003 +# remineralization length #2 for CaCO3 +bg_par_bio_remin_CaCO3_eL2=1000000.0 +# +# --- SEDIMENTS ---------------------------------------------------------- +# +# sediment grid options ==> defined in base-config +sg_par_sed_Dmax_neritic=500.0 +# sediment diagenesis options +sg_par_sed_diagen_CaCO3opt="ridgwell2001lookup" +sg_ctrl_sed_bioturb=.true. +sg_ctrl_sed_bioturb_Archer=.false. +sg_par_n_sed_mix=20 +# set invarient surface bioturbation mixing rate +sg_par_sed_mix_k_sur_max=0.15 +sg_par_sed_mix_k_sur_min=0.15 +# additional detrital flux (g cm-2 kyr-1) +sg_par_sed_fdet=0.180 +# +# ******* Corg burial ******* +# N/A +# +# --- WEATHERING ------------------------------------------------------ +# +# set a CLOSED system +bg_ctrl_force_sed_closedsystem=.true. +# set NO CaCO3 and CaSiO3 weathering-temperature feedback +rg_opt_weather_T_Ca=.false. +rg_opt_weather_T_Si=.false. +# weathering reference mean global land surface temperature (C) +rg_par_ref_T0=19.47 +#CO2 outgassing rate (mol C yr-1) +rg_par_outgas_CO2=6.1537e+12 +# global carbonate and silicate weathering rate (mol Ca2+ yr-1) +# derived from diag_weather_Ca.res of spin2 +rg_par_weather_CaSiO3=6.1537e+12 +rg_par_weather_CaCO3=6.1537e+12 +# d13C values +rg_par_outgas_CO2_d13C=-6.0 +rg_par_weather_CaCO3_d13C=13.77 +# +# --- DATA SAVING ----------------------------------------------------- +# +# date saving & reporting options +bg_par_data_save_level=8 +bg_ctrl_debug_lvl0=.true. +ma_debug_loop=1 +#(saves annual averages, NOT discrete values in time) +bg_par_infile_sig_name='save_timeseries_EVERY001000_orbits.dat' +bg_par_infile_slice_name='save_timeslice_EVERY002500_orbits.dat' +# representative NH latitude and season to sample orbital variation of insolation +bg_par_t_sig_count_N=12 +bg_par_sig_j_N=17 +# SH latitude/season +bg_par_t_sig_count_S=12 +bg_par_sig_j_S=2 +# +# --- FORCINGS -------------------------------------------------------- +# +# specify POC forcing field +bg_par_forcing_name="pyyyyz.FPOC_np30.vervoortetal2021" +# re-scale gas transfer coeff to give ~0.058 mol m-2 yr-1 uatm-1 global mean air-sea coefficient (original: 0.310) +bg_par_gastransfer_a=0.715813093980993 +# select correct insolation code +ea_opt_orbit_old=.false. +# Call orbit_radfor +ea_38="y" +# Specify the type of orbital forcing default (0), time-varying (1), alternative config (2) +ea_39=1 +# Number of data points in orbits file +ea_40=5000 +# Interval between data points in goldstein time steps +ea_41=48000 +# filename for orbital parameters (must be in genie-embm/data/input) +ea_42="orbits_La2004_57.93_52.91Ma_new.dat" +# +# --- MISC ----------------------------------------------------- +# +# add ventillation tracers +bg_ctrl_force_ocn_age1=.true. +# +# --- END ------------------------------------------------------ +# \ No newline at end of file diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP2_c.4Ma b/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP2_c.4Ma new file mode 100644 index 000000000..0eeb73ef0 --- /dev/null +++ b/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP2_c.4Ma @@ -0,0 +1,121 @@ +# +# +# --- CLIMATE --------------------------------------------------------- +# +# set climate feedback +ea_36=y +# set seasonal cycle +ea_dosc=.true. +go_dosc=.true. +gs_dosc=.true. +# +# --- BIOLOGICAL NEW PRODUCTION --------------------------------------- +# +# maximum rate of conversion of dissolved PO4 into organic matter by phytoplankton (mol kg-1 yr-1) +bg_par_bio_k0_PO4=8.9876e-006 +# [PO4] M-M half-sat value (mol kg-1) +bg_par_bio_c0_PO4=8.9369e-007 +# +# --- ORGANIC MATTER EXPORT RATIOS ------------------------------------ +# +# production fraction of dissolved organic matter +bg_par_bio_red_DOMfrac=0.66 +# +# --- INORGANIC MATTER EXPORT RATIOS ---------------------------------- +# +# fixed CaCO3:POC +bg_opt_bio_CaCO3toPOCrainratio='FIXED' +# underlying export CaCO3 as a proportion of particulate organic matter (i.e., CaCO3/POC) +bg_par_bio_red_POC_CaCO3=0.200 +# +# --- REMINERALIZATION ------------------------------------------------ +# +# DOC lifetime (yrs) +bg_par_bio_remin_DOMlifetime=0.5 +# initial fractional abundance of POC component #2 +bg_par_bio_remin_POC_frac2=0.0557 +# depth of remineralization or particulate organic matter +bg_par_bio_remin_POC_eL1=589.9451 +# remineralization length #2 for POC +bg_par_bio_remin_POC_eL2=1000000.0 +# initial fractional abundance of CaCO3 component #2 +bg_par_bio_remin_CaCO3_frac2=0.45 +# depth of remineralization or CaCO3 +bg_par_bio_remin_CaCO3_eL1=1.8905e+003 +# remineralization length #2 for CaCO3 +bg_par_bio_remin_CaCO3_eL2=1000000.0 +# +# --- SEDIMENTS ---------------------------------------------------------- +# +# sediment grid options ==> defined in base-config +sg_par_sed_Dmax_neritic=500.0 +# sediment diagenesis options +sg_par_sed_diagen_CaCO3opt="ridgwell2001lookup" +sg_ctrl_sed_bioturb=.true. +sg_ctrl_sed_bioturb_Archer=.false. +sg_par_n_sed_mix=20 +# set invarient surface bioturbation mixing rate +sg_par_sed_mix_k_sur_max=0.15 +sg_par_sed_mix_k_sur_min=0.15 +# additional detrital flux (g cm-2 kyr-1) +sg_par_sed_fdet=0.180 +# +# --- WEATHERING ------------------------------------------------------ +# +# set an OPEN system +bg_ctrl_force_sed_closedsystem=.true. +# set NO CaCO3 and CaSiO3 weathering-temperature feedback +rg_opt_weather_T_Ca=.false. +rg_opt_weather_T_Si=.false. +# weathering reference mean global land surface temperature (C) +rg_par_ref_T0=19.47 +#CO2 outgassing rate (mol C yr-1) +rg_par_outgas_CO2=6.1537e+12 +# global carbonate and silicate weathering rate (mol Ca2+ yr-1) +# derived from diag_weather_Ca.res of spin2 +rg_par_weather_CaSiO3=6.1537e+12 +rg_par_weather_CaCO3=6.1537e+12 +# d13C values +rg_par_outgas_CO2_d13C=-6.0 +rg_par_weather_CaCO3_d13C=13.77 +# +# --- DATA SAVING ----------------------------------------------------- +# +# date saving & reporting options +bg_par_data_save_level=8 +bg_ctrl_debug_lvl0=.true. +ma_debug_loop=1 +#(saves annual averages, NOT discrete values in time) +bg_par_infile_sig_name='save_timeseries_EVERY001000_orbits.dat' +bg_par_infile_slice_name='save_timeslice_EVERY002500_orbits.dat' +# representative NH latitude and season to sample orbital variation of insolation +bg_par_t_sig_count_N=12 +bg_par_sig_j_N=17 +# SH latitude/season +bg_par_t_sig_count_S=12 +bg_par_sig_j_S=2 +# +# --- FORCINGS -------------------------------------------------------- +# +# re-scale gas transfer coeff to give ~0.058 mol m-2 yr-1 uatm-1 global mean air-sea coefficient (original: 0.310) +bg_par_gastransfer_a=0.715813093980993 +# select correct insolation code +ea_opt_orbit_old=.false. +# Call orbit_radfor +ea_38="y" +# Specify the type of orbital forcing default (0), time-varying (1), alternative config (2) +ea_39=1 +# Number of data points in orbits file +ea_40=5000 +# Interval between data points in goldstein time steps +ea_41=48000 +# filename for orbital parameters (must be in genie-embm/data/input) +ea_42="orbits_La2004_57.93_52.91Ma_new.dat" +# +# --- MISC ----------------------------------------------------- +# +# add ventillation tracers +bg_ctrl_force_ocn_age1=.true. +# +# --- END ------------------------------------------------------ +# \ No newline at end of file diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP3_c.4Ma b/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP3_c.4Ma new file mode 100644 index 000000000..db71dd56a --- /dev/null +++ b/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP3_c.4Ma @@ -0,0 +1,121 @@ +# +# +# --- CLIMATE --------------------------------------------------------- +# +# set climate feedback +ea_36=y +# set seasonal cycle +ea_dosc=.true. +go_dosc=.true. +gs_dosc=.true. +# +# --- BIOLOGICAL NEW PRODUCTION --------------------------------------- +# +# maximum rate of conversion of dissolved PO4 into organic matter by phytoplankton (mol kg-1 yr-1) +bg_par_bio_k0_PO4=8.9876e-006 +# [PO4] M-M half-sat value (mol kg-1) +bg_par_bio_c0_PO4=8.9369e-007 +# +# --- ORGANIC MATTER EXPORT RATIOS ------------------------------------ +# +# production fraction of dissolved organic matter +bg_par_bio_red_DOMfrac=0.66 +# +# --- INORGANIC MATTER EXPORT RATIOS ---------------------------------- +# +# fixed CaCO3:POC +bg_opt_bio_CaCO3toPOCrainratio='FIXED' +# underlying export CaCO3 as a proportion of particulate organic matter (i.e., CaCO3/POC) +bg_par_bio_red_POC_CaCO3=0.200 +# +# --- REMINERALIZATION ------------------------------------------------ +# +# DOC lifetime (yrs) +bg_par_bio_remin_DOMlifetime=0.5 +# initial fractional abundance of POC component #2 +bg_par_bio_remin_POC_frac2=0.0557 +# depth of remineralization or particulate organic matter +bg_par_bio_remin_POC_eL1=589.9451 +# remineralization length #2 for POC +bg_par_bio_remin_POC_eL2=1000000.0 +# initial fractional abundance of CaCO3 component #2 +bg_par_bio_remin_CaCO3_frac2=0.45 +# depth of remineralization or CaCO3 +bg_par_bio_remin_CaCO3_eL1=1.8905e+003 +# remineralization length #2 for CaCO3 +bg_par_bio_remin_CaCO3_eL2=1000000.0 +# +# --- SEDIMENTS ---------------------------------------------------------- +# +# sediment grid options ==> defined in base-config +sg_par_sed_Dmax_neritic=500.0 +# sediment diagenesis options +sg_par_sed_diagen_CaCO3opt="ridgwell2001lookup" +sg_ctrl_sed_bioturb=.true. +sg_ctrl_sed_bioturb_Archer=.false. +sg_par_n_sed_mix=20 +# set invarient surface bioturbation mixing rate +sg_par_sed_mix_k_sur_max=0.15 +sg_par_sed_mix_k_sur_min=0.15 +# additional detrital flux (g cm-2 kyr-1) +sg_par_sed_fdet=0.180 +# +# --- WEATHERING ------------------------------------------------------ +# +# set an OPEN system +bg_ctrl_force_sed_closedsystem=.false. +# set NO CaCO3 and CaSiO3 weathering-temperature feedback +rg_opt_weather_T_Ca=.false. +rg_opt_weather_T_Si=.false. +# weathering reference mean global land surface temperature (C) +rg_par_ref_T0=19.47 +#CO2 outgassing rate (mol C yr-1) +rg_par_outgas_CO2=6.1537e+12 +# global carbonate and silicate weathering rate (mol Ca2+ yr-1) +# derived from diag_weather_Ca.res of spin2 +rg_par_weather_CaSiO3=6.1537e+12 +rg_par_weather_CaCO3=6.1537e+12 +# d13C values +rg_par_outgas_CO2_d13C=-6.0 +rg_par_weather_CaCO3_d13C=13.77 +# +# --- DATA SAVING ----------------------------------------------------- +# +# date saving & reporting options +bg_par_data_save_level=8 +bg_ctrl_debug_lvl0=.true. +ma_debug_loop=1 +#(saves annual averages, NOT discrete values in time) +bg_par_infile_sig_name='save_timeseries_EVERY001000_orbits.dat' +bg_par_infile_slice_name='save_timeslice_EVERY002500_orbits.dat' +# representative NH latitude and season to sample orbital variation of insolation +bg_par_t_sig_count_N=12 +bg_par_sig_j_N=17 +# SH latitude/season +bg_par_t_sig_count_S=12 +bg_par_sig_j_S=2 +# +# --- FORCINGS -------------------------------------------------------- +# +# re-scale gas transfer coeff to give ~0.058 mol m-2 yr-1 uatm-1 global mean air-sea coefficient (original: 0.310) +bg_par_gastransfer_a=0.715813093980993 +# select correct insolation code +ea_opt_orbit_old=.false. +# Call orbit_radfor +ea_38="y" +# Specify the type of orbital forcing default (0), time-varying (1), alternative config (2) +ea_39=1 +# Number of data points in orbits file +ea_40=5000 +# Interval between data points in goldstein time steps +ea_41=48000 +# filename for orbital parameters (must be in genie-embm/data/input) +ea_42="orbits_La2004_57.93_52.91Ma_new.dat" +# +# --- MISC ----------------------------------------------------- +# +# add ventillation tracers +bg_ctrl_force_ocn_age1=.true. +# +# --- END ------------------------------------------------------ +# \ No newline at end of file diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP4_c.4Ma b/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP4_c.4Ma new file mode 100644 index 000000000..b2b93b4c1 --- /dev/null +++ b/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP4_c.4Ma @@ -0,0 +1,120 @@ +# +# +# --- CLIMATE --------------------------------------------------------- +# +# set climate feedback +ea_36=y +# set seasonal cycle +ea_dosc=.true. +go_dosc=.true. +gs_dosc=.true. +# +# --- BIOLOGICAL NEW PRODUCTION --------------------------------------- +# +# maximum rate of conversion of dissolved PO4 into organic matter by phytoplankton (mol kg-1 yr-1) +bg_par_bio_k0_PO4=8.9876e-006 +# [PO4] M-M half-sat value (mol kg-1) +bg_par_bio_c0_PO4=8.9369e-007 +# +# --- ORGANIC MATTER EXPORT RATIOS ------------------------------------ +# +# production fraction of dissolved organic matter +bg_par_bio_red_DOMfrac=0.66 +# +# --- INORGANIC MATTER EXPORT RATIOS ---------------------------------- +# +# fixed CaCO3:POC +bg_opt_bio_CaCO3toPOCrainratio='FIXED' +# underlying export CaCO3 as a proportion of particulate organic matter (i.e., CaCO3/POC) +bg_par_bio_red_POC_CaCO3=0.200 +# +# --- REMINERALIZATION ------------------------------------------------ +# +# DOC lifetime (yrs) +bg_par_bio_remin_DOMlifetime=0.5 +# initial fractional abundance of POC component #2 +bg_par_bio_remin_POC_frac2=0.0557 +# depth of remineralization or particulate organic matter +bg_par_bio_remin_POC_eL1=589.9451 +# remineralization length #2 for POC +bg_par_bio_remin_POC_eL2=1000000.0 +# initial fractional abundance of CaCO3 component #2 +bg_par_bio_remin_CaCO3_frac2=0.45 +# depth of remineralization or CaCO3 +bg_par_bio_remin_CaCO3_eL1=1.8905e+003 +# remineralization length #2 for CaCO3 +bg_par_bio_remin_CaCO3_eL2=1000000.0 +# +# --- SEDIMENTS ---------------------------------------------------------- +# +# sediment grid options ==> defined in base-config +sg_par_sed_Dmax_neritic=500.0 +# sediment diagenesis options +sg_par_sed_diagen_CaCO3opt="ridgwell2001lookup" +sg_ctrl_sed_bioturb=.true. +sg_ctrl_sed_bioturb_Archer=.false. +sg_par_n_sed_mix=20 +# set invarient surface bioturbation mixing rate +sg_par_sed_mix_k_sur_max=0.15 +sg_par_sed_mix_k_sur_min=0.15 +# additional detrital flux (g cm-2 kyr-1) +sg_par_sed_fdet=0.180 +# +# --- WEATHERING ------------------------------------------------------ +# +# set an OPEN system +bg_ctrl_force_sed_closedsystem=.false. +# CaCO3 and CaSiO3 weathering-temperature feedback +rg_opt_weather_T_Ca=.true. +rg_opt_weather_T_Si=.true. +# weathering reference mean global land surface temperature (C) +rg_par_ref_T0=19.47 +#CO2 outgassing rate (mol C yr-1) +rg_par_outgas_CO2=7.0e+12 +# global carbonate and silicate weathering rate (mol Ca2+ yr-1) +rg_par_weather_CaSiO3=5.6e+12 +rg_par_weather_CaCO3=7.0e+12 +# d13C values +rg_par_outgas_CO2_d13C=-6.0 +rg_par_weather_CaCO3_d13C=13.77 +# +# --- DATA SAVING ----------------------------------------------------- +# +# date saving & reporting options +bg_par_data_save_level=8 +bg_ctrl_debug_lvl0=.true. +ma_debug_loop=1 +#(saves annual averages, NOT discrete values in time) +bg_par_infile_sig_name='save_timeseries_EVERY001000_orbits.dat' +bg_par_infile_slice_name='save_timeslice_EVERY002500_orbits.dat' +# representative NH latitude and season to sample orbital variation of insolation +bg_par_t_sig_count_N=12 +bg_par_sig_j_N=17 +# SH latitude/season +bg_par_t_sig_count_S=12 +bg_par_sig_j_S=2 +# +# --- FORCINGS -------------------------------------------------------- +# +# re-scale gas transfer coeff to give ~0.058 mol m-2 yr-1 uatm-1 global mean air-sea coefficient (original: 0.310) +bg_par_gastransfer_a=0.715813093980993 +# select correct insolation code +ea_opt_orbit_old=.false. +# Call orbit_radfor +ea_38="y" +# Specify the type of orbital forcing default (0), time-varying (1), alternative config (2) +ea_39=1 +# Number of data points in orbits file +ea_40=5000 +# Interval between data points in goldstein time steps +ea_41=48000 +# filename for orbital parameters (must be in genie-embm/data/input) +ea_42="orbits_La2004_57.93_52.91Ma_new.dat" +# +# --- MISC ----------------------------------------------------- +# +# add ventillation tracers +bg_ctrl_force_ocn_age1=.true. +# +# --- END ------------------------------------------------------ +# \ No newline at end of file diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_c.SPIN1 b/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_c.SPIN1 new file mode 100644 index 000000000..c005ff8ad --- /dev/null +++ b/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_c.SPIN1 @@ -0,0 +1,122 @@ +# +# +# --- CLIMATE --------------------------------------------------------- +# +# set climate feedback +ea_36=y +# set seasonal cycle +ea_dosc=.true. +go_dosc=.true. +gs_dosc=.true. +# +# --- BIOLOGICAL NEW PRODUCTION --------------------------------------- +# +# maximum rate of conversion of dissolved PO4 into organic matter by phytoplankton (mol kg-1 yr-1) +bg_par_bio_k0_PO4=8.9876e-006 +# [PO4] M-M half-sat value (mol kg-1) +bg_par_bio_c0_PO4=8.9369e-007 +# +# --- ORGANIC MATTER EXPORT RATIOS ------------------------------------ +# +# production fraction of dissolved organic matter +bg_par_bio_red_DOMfrac=0.66 +# +# --- INORGANIC MATTER EXPORT RATIOS ---------------------------------- +# +# fixed CaCO3:POC +bg_opt_bio_CaCO3toPOCrainratio='FIXED' +# underlying export CaCO3 as a proportion of particulate organic matter (i.e., CaCO3/POC) +bg_par_bio_red_POC_CaCO3=0.200 +# +# --- REMINERALIZATION ------------------------------------------------ +# +# DOC lifetime (yrs) +bg_par_bio_remin_DOMlifetime=0.5 +# initial fractional abundance of POC component #2 +bg_par_bio_remin_POC_frac2=0.0557 +# depth of remineralization or particulate organic matter +bg_par_bio_remin_POC_eL1=589.9451 +# remineralization length #2 for POC +bg_par_bio_remin_POC_eL2=1000000.0 +# initial fractional abundance of CaCO3 component #2 +bg_par_bio_remin_CaCO3_frac2=0.45 +# depth of remineralization or CaCO3 +bg_par_bio_remin_CaCO3_eL1=1.8905e+003 +# remineralization length #2 for CaCO3 +bg_par_bio_remin_CaCO3_eL2=1000000.0 +# +# --- SEDIMENTS ---------------------------------------------------------- +# +# sediment grid options ==> defined in base-config +sg_par_sed_Dmax_neritic=500.0 +# sediment diagenesis options +sg_par_sed_diagen_CaCO3opt="ridgwell2001lookup" +sg_ctrl_sed_bioturb=.false. +sg_ctrl_sed_bioturb_Archer=.false. +sg_par_n_sed_mix=20 +# set invarient surface bioturbation mixing rate +sg_par_sed_mix_k_sur_max=0.15 +sg_par_sed_mix_k_sur_min=0.15 +# additional detrital flux (g cm-2 kyr-1) +sg_par_sed_fdet=0.180 +# +# --- WEATHERING ------------------------------------------------------ +# +# set an OPEN system +bg_ctrl_force_sed_closedsystem=true. +# NO CaCO3 and CaSiO3 weathering-temperature feedback +#rg_opt_weather_T_Ca=.true. +#rg_opt_weather_T_Si=.true. +# weathering reference mean global land surface temperature (C) +#rg_par_ref_T0=19.45 +#CO2 outgassing rate (mol C yr-1) +rg_par_outgas_CO2=7.0e+12 +# global carbonate and silicate weathering rate (mol Ca2+ yr-1) +rg_par_weather_CaSiO3=7.0e+12 +rg_par_weather_CaCO3=7.0e+12 +# d13C values +rg_par_outgas_CO2_d13C=-6.0 +rg_par_weather_CaCO3_d13C=4.161 +# +# --- GEOCHEM ACCELERATION ------------------------------------- +# +#gl_ctrl_update_pCO2=.true. +#ma_gem_notyr_min=10 +#ma_gem_notyr_max=10 +#ma_gem_yr_min=90 +#ma_gem_yr_max=90 +#ma_gem_dyr=0 +#ma_gem_adapt_auto=.false. +# +# --- DATA SAVING ----------------------------------------------------- +# +# date saving & reporting options +bg_par_data_save_level=8 +bg_ctrl_debug_lvl0=.true. +ma_debug_loop=1 +# +# --- FORCINGS -------------------------------------------------------- +# +# specify forcings +bg_par_forcing_name="pyyyyz.RpCO2_Rp13CO2" +bg_par_atm_force_scale_val_3=834.0E-06 +bg_par_atm_force_scale_val_4=-4.9 +#re-scale gas transfer coeff to give ~0.058 mol m-2 yr-1 uatm-1 global mean air-sea coefficient (original: 0.310) +bg_par_gastransfer_a=0.715813093980993 +# select correct insolation code +ea_opt_orbit_old=.false. +# choose average orbit configuration +# mean ecc, mean obl (in rad), equinox at perihelion/aphelion so hemispheres receive the same amount of sun +ea_par_orbit_osce=0.026735 +ea_par_orbit_oscobl=0.40420 +ea_par_orbit_osclonperi=3.1416 +# +# --- MISC ----------------------------------------------------- +# +# Set initial ocean alkalinity +bg_ocn_init_12=1.975E-03 +# add ventillation tracers +bg_ctrl_force_ocn_age1=.true. +# +# --- END ------------------------------------------------------ +# \ No newline at end of file diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_c.SPIN2gl b/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_c.SPIN2gl new file mode 100644 index 000000000..c52a05f96 --- /dev/null +++ b/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_c.SPIN2gl @@ -0,0 +1,116 @@ +# +# +# --- CLIMATE --------------------------------------------------------- +# +# set climate feedback +ea_36=y +# set seasonal cycle +ea_dosc=.true. +go_dosc=.true. +gs_dosc=.true. +# +# --- BIOLOGICAL NEW PRODUCTION --------------------------------------- +# +# maximum rate of conversion of dissolved PO4 into organic matter by phytoplankton (mol kg-1 yr-1) +bg_par_bio_k0_PO4=8.9876e-006 +# [PO4] M-M half-sat value (mol kg-1) +bg_par_bio_c0_PO4=8.9369e-007 +# +# --- ORGANIC MATTER EXPORT RATIOS ------------------------------------ +# +# production fraction of dissolved organic matter +bg_par_bio_red_DOMfrac=0.66 +# +# --- INORGANIC MATTER EXPORT RATIOS ---------------------------------- +# +# fixed CaCO3:POC +bg_opt_bio_CaCO3toPOCrainratio='FIXED' +# underlying export CaCO3 as a proportion of particulate organic matter (i.e., CaCO3/POC) +bg_par_bio_red_POC_CaCO3=0.200 +# +# --- REMINERALIZATION ------------------------------------------------ +# +# DOC lifetime (yrs) +bg_par_bio_remin_DOMlifetime=0.5 +# initial fractional abundance of POC component #2 +bg_par_bio_remin_POC_frac2=0.0557 +# depth of remineralization or particulate organic matter +bg_par_bio_remin_POC_eL1=589.9451 +# remineralization length #2 for POC +bg_par_bio_remin_POC_eL2=1000000.0 +# initial fractional abundance of CaCO3 component #2 +bg_par_bio_remin_CaCO3_frac2=0.45 +# depth of remineralization or CaCO3 +bg_par_bio_remin_CaCO3_eL1=1.8905e+003 +# remineralization length #2 for CaCO3 +bg_par_bio_remin_CaCO3_eL2=1000000.0 +# +# --- SEDIMENTS ---------------------------------------------------------- +# +# sediment grid options ==> defined in base-config +sg_par_sed_Dmax_neritic=500.0 +# sediment diagenesis options +sg_par_sed_diagen_CaCO3opt="ridgwell2001lookup" +sg_ctrl_sed_bioturb=.true. +sg_ctrl_sed_bioturb_Archer=.false. +sg_par_n_sed_mix=20 +# set invarient surface bioturbation mixing rate +sg_par_sed_mix_k_sur_max=0.15 +sg_par_sed_mix_k_sur_min=0.15 +# additional detrital flux (g cm-2 kyr-1) +sg_par_sed_fdet=0.180 +# +# --- WEATHERING ------------------------------------------------------ +# +# set an OPEN system +bg_ctrl_force_sed_closedsystem=.false. +# NO CaCO3 and CaSiO3 weathering-temperature feedback +rg_opt_weather_T_Ca=.true. +rg_opt_weather_T_Si=.true. +# weathering reference mean global land surface temperature (C) +rg_par_ref_T0=19.47 +#CO2 outgassing rate (mol C yr-1) +rg_par_outgas_CO2=7.0e+12 +# global carbonate and silicate weathering rate (mol Ca2+ yr-1) +rg_par_weather_CaSiO3=5.6e+12 +rg_par_weather_CaCO3=7.0e+12 +# d13C values +rg_par_outgas_CO2_d13C=-6.0 +rg_par_weather_CaCO3_d13C=13.77 +# +# --- GEOCHEM ACCELERATION ------------------------------------- +# +gl_ctrl_update_pCO2=.true. +ma_gem_notyr_min=10 +ma_gem_notyr_max=10 +ma_gem_yr_min=90 +ma_gem_yr_max=90 +ma_gem_dyr=0 +ma_gem_adapt_auto=.false. +# +# --- DATA SAVING ----------------------------------------------------- +# +# date saving & reporting options +bg_par_data_save_level=8 +bg_ctrl_debug_lvl0=.true. +ma_debug_loop=1 +# +# --- FORCINGS -------------------------------------------------------- +# +#re-scale gas transfer coeff to give ~0.058 mol m-2 yr-1 uatm-1 global mean air-sea coefficient (original: 0.310) +bg_par_gastransfer_a=0.715813093980993 +# select correct insolation code +ea_opt_orbit_old=.false. +# choose average orbit configuration +# mean ecc, mean obl (in rad), equinox at perihelion/aphelion so hemispheres receive the same amount of sun +ea_par_orbit_osce=0.026735 +ea_par_orbit_oscobl=0.40420 +ea_par_orbit_osclonperi=3.1416 +# +# --- MISC ----------------------------------------------------- +# +# add ventillation tracers +bg_ctrl_force_ocn_age1=.true. +# +# --- END ------------------------------------------------------ +# \ No newline at end of file diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP0_c.4Ma b/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP0_c.4Ma new file mode 100644 index 000000000..98a8c59c4 --- /dev/null +++ b/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP0_c.4Ma @@ -0,0 +1,123 @@ +# +# +# --- CLIMATE --------------------------------------------------------- +# +# set NO CO2-climate feedback +ea_36=n +# set radiative forcing to 3x278ppm = 834 ppm (3.00x278 = 834 ppm) +ea_radfor_scl_co2=3.00 +# set seasonal cycle +ea_dosc=.true. +go_dosc=.true. +gs_dosc=.true. +# +# --- BIOLOGICAL NEW PRODUCTION --------------------------------------- +# +# FIX biological production in surface ocean w/ forcing file +bg_par_bio_prodopt="bio_POCflux" +# +# --- ORGANIC MATTER EXPORT RATIOS ------------------------------------ +# +# production fraction of dissolved organic matter +bg_par_bio_red_DOMfrac=0.66 +# +# --- INORGANIC MATTER EXPORT RATIOS ---------------------------------- +# +# fixed CaCO3:POC +bg_opt_bio_CaCO3toPOCrainratio='FIXED' +# underlying export CaCO3 as a proportion of particulate organic matter (i.e., CaCO3/POC) +bg_par_bio_red_POC_CaCO3=0.200 +# +# --- REMINERALIZATION ------------------------------------------------ +# +# DOC lifetime (yrs) +bg_par_bio_remin_DOMlifetime=0.5 +# initial fractional abundance of POC component #2 +bg_par_bio_remin_POC_frac2=0.0557 +# depth of remineralization or particulate organic matter +bg_par_bio_remin_POC_eL1=589.9451 +# remineralization length #2 for POC +bg_par_bio_remin_POC_eL2=1000000.0 +# initial fractional abundance of CaCO3 component #2 +bg_par_bio_remin_CaCO3_frac2=0.45 +# depth of remineralization or CaCO3 +bg_par_bio_remin_CaCO3_eL1=1.8905e+003 +# remineralization length #2 for CaCO3 +bg_par_bio_remin_CaCO3_eL2=1000000.0 +# +# --- SEDIMENTS ---------------------------------------------------------- +# +# sediment grid options ==> also see base-config +sg_par_sed_Dmax_neritic=500.0 +# sediment diagenesis options +sg_par_sed_diagen_CaCO3opt="ridgwell2001lookup" +sg_ctrl_sed_bioturb=.true. +sg_ctrl_sed_bioturb_Archer=.false. +sg_par_n_sed_mix=20 +# set invarient surface bioturbation mixing rate +sg_par_sed_mix_k_sur_max=0.15 +sg_par_sed_mix_k_sur_min=0.15 +# additional detrital flux (g cm-2 kyr-1) +sg_par_sed_fdet=0.180 +# +# --- WEATHERING ------------------------------------------------------ +# +# set a CLOSED system +bg_ctrl_force_sed_closedsystem=.true. +# set NO CaCO3 and CaSiO3 weathering-temperature feedback +rg_opt_weather_T_Ca=.false. +rg_opt_weather_T_Si=.false. +# weathering reference mean global land surface temperature (C) +rg_par_ref_T0=23.6645 +#CO2 outgassing rate (mol C yr-1) +rg_par_outgas_CO2=6.9988e+12 +# global carbonate and silicate weathering rate (mol Ca2+ yr-1) +# derived from diag_weather_Ca.res of spin2 +rg_par_weather_CaSiO3=6.9988e+12 +rg_par_weather_CaCO3=6.9988e+12 +# d13C values +rg_par_outgas_CO2_d13C=-6.0 +rg_par_weather_CaCO3_d13C=13.88 +# +# --- DATA SAVING ----------------------------------------------------- +# +# date saving & reporting options +bg_par_data_save_level=8 +bg_ctrl_debug_lvl0=.true. +ma_debug_loop=1 +#(saves annual averages, NOT discrete values in time) +bg_par_infile_sig_name='save_timeseries_EVERY001000_orbits.dat' +bg_par_infile_slice_name='save_timeslice_EVERY002500_orbits.dat' +# representative NH latitude and season to sample orbital variation of insolation +bg_par_t_sig_count_N=12 +bg_par_sig_j_N=17 +# SH latitude/season +bg_par_t_sig_count_S=12 +bg_par_sig_j_S=2 +# +# --- FORCINGS -------------------------------------------------------- +# +# specify POC forcing field +bg_par_forcing_name="pyyyyz.FPOC_pp30.vervoortetal2021" +# re-scale gas transfer coeff to give ~0.058 mol m-2 yr-1 uatm-1 global mean air-sea coefficient (original: 0.310) +bg_par_gastransfer_a=0.715813093980993 +# select correct insolation code +ea_opt_orbit_old=.false. +# Call orbit_radfor +ea_38="y" +# Specify the type of orbital forcing default (0), time-varying (1), alternative config (2) +ea_39=1 +# Number of data points in orbits file +ea_40=5000 +# Interval between data points in goldstein time steps +ea_41=48000 +# filename for orbital parameters (must be in genie-embm/data/input) +ea_42="orbits_La2004_57.93_52.91Ma_new.dat" +# +# --- MISC ----------------------------------------------------- +# +# add ventillation tracers +bg_ctrl_force_ocn_age1=.true. +# +# --- END ------------------------------------------------------ +# \ No newline at end of file diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP1_c.4Ma b/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP1_c.4Ma new file mode 100644 index 000000000..7d2e879ad --- /dev/null +++ b/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP1_c.4Ma @@ -0,0 +1,124 @@ +# +# +# --- CLIMATE --------------------------------------------------------- +# +# set climate feedback +ea_36=y +# set seasonal cycle +ea_dosc=.true. +go_dosc=.true. +gs_dosc=.true. +# +# --- BIOLOGICAL NEW PRODUCTION --------------------------------------- +# +# FIX biological production in surface ocean w/ forcing file +bg_par_bio_prodopt="bio_POCflux" +# +# --- ORGANIC MATTER EXPORT RATIOS ------------------------------------ +# +# production fraction of dissolved organic matter +bg_par_bio_red_DOMfrac=0.66 +# +# --- INORGANIC MATTER EXPORT RATIOS ---------------------------------- +# +# fixed CaCO3:POC +bg_opt_bio_CaCO3toPOCrainratio='FIXED' +# underlying export CaCO3 as a proportion of particulate organic matter (i.e., CaCO3/POC) +bg_par_bio_red_POC_CaCO3=0.200 +# +# --- REMINERALIZATION ------------------------------------------------ +# +# DOC lifetime (yrs) +bg_par_bio_remin_DOMlifetime=0.5 +# initial fractional abundance of POC component #2 +bg_par_bio_remin_POC_frac2=0.0557 +# depth of remineralization or particulate organic matter +bg_par_bio_remin_POC_eL1=589.9451 +# remineralization length #2 for POC +bg_par_bio_remin_POC_eL2=1000000.0 +# initial fractional abundance of CaCO3 component #2 +bg_par_bio_remin_CaCO3_frac2=0.45 +# depth of remineralization or CaCO3 +bg_par_bio_remin_CaCO3_eL1=1.8905e+003 +# remineralization length #2 for CaCO3 +bg_par_bio_remin_CaCO3_eL2=1000000.0 +# +# --- SEDIMENTS ---------------------------------------------------------- +# +# sediment grid options ==> also see base-config +sg_par_sed_Dmax_neritic=500.0 +# sediment diagenesis options +sg_par_sed_diagen_CaCO3opt="ridgwell2001lookup" +sg_ctrl_sed_bioturb=.true. +sg_ctrl_sed_bioturb_Archer=.false. +sg_par_n_sed_mix=20 +# set invarient surface bioturbation mixing rate +sg_par_sed_mix_k_sur_max=0.15 +sg_par_sed_mix_k_sur_min=0.15 +# additional detrital flux (g cm-2 kyr-1) +sg_par_sed_fdet=0.180 +# +# ******* Corg burial ******* +# N/A +# +# --- WEATHERING ------------------------------------------------------ +# +# set a CLOSED system +bg_ctrl_force_sed_closedsystem=.true. +# set NO CaCO3 and CaSiO3 weathering-temperature feedback +rg_opt_weather_T_Ca=.false. +rg_opt_weather_T_Si=.false. +# weathering reference mean global land surface temperature (C) +rg_par_ref_T0=23.6645 +#CO2 outgassing rate (mol C yr-1) +rg_par_outgas_CO2=6.9988e+12 +# global carbonate and silicate weathering rate (mol Ca2+ yr-1) +# derived from diag_weather_Ca.res of spin2 +rg_par_weather_CaSiO3=6.9988e+12 +rg_par_weather_CaCO3=6.9988e+12 +# d13C values +rg_par_outgas_CO2_d13C=-6.0 +rg_par_weather_CaCO3_d13C=13.88 +# +# --- DATA SAVING ----------------------------------------------------- +# +# date saving & reporting options +bg_par_data_save_level=8 +bg_ctrl_debug_lvl0=.true. +ma_debug_loop=1 +#(saves annual averages, NOT discrete values in time) +bg_par_infile_sig_name='save_timeseries_EVERY001000_orbits.dat' +bg_par_infile_slice_name='save_timeslice_EVERY002500_orbits.dat' +# representative NH latitude and season to sample orbital variation of insolation +bg_par_t_sig_count_N=12 +bg_par_sig_j_N=17 +# SH latitude/season +bg_par_t_sig_count_S=12 +bg_par_sig_j_S=2 +# +# --- FORCINGS -------------------------------------------------------- +# +# specify POC forcing field +bg_par_forcing_name="pyyyyz.FPOC_pp30.vervoortetal2021" +# re-scale gas transfer coeff to give ~0.058 mol m-2 yr-1 uatm-1 global mean air-sea coefficient (original: 0.310) +bg_par_gastransfer_a=0.715813093980993 +# select correct insolation code +ea_opt_orbit_old=.false. +# Call orbit_radfor +ea_38="y" +# Specify the type of orbital forcing default (0), time-varying (1), alternative config (2) +ea_39=1 +# Number of data points in orbits file +ea_40=5000 +# Interval between data points in goldstein time steps +ea_41=48000 +# filename for orbital parameters (must be in genie-embm/data/input) +ea_42="orbits_La2004_57.93_52.91Ma_new.dat" +# +# --- MISC ----------------------------------------------------- +# +# add ventillation tracers +bg_ctrl_force_ocn_age1=.true. +# +# --- END ------------------------------------------------------ +# \ No newline at end of file diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP2_c.4Ma b/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP2_c.4Ma new file mode 100644 index 000000000..c550941a6 --- /dev/null +++ b/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP2_c.4Ma @@ -0,0 +1,121 @@ +# +# +# --- CLIMATE --------------------------------------------------------- +# +# set climate feedback +ea_36=y +# set seasonal cycle +ea_dosc=.true. +go_dosc=.true. +gs_dosc=.true. +# +# --- BIOLOGICAL NEW PRODUCTION --------------------------------------- +# +# maximum rate of conversion of dissolved PO4 into organic matter by phytoplankton (mol kg-1 yr-1) +bg_par_bio_k0_PO4=8.9876e-006 +# [PO4] M-M half-sat value (mol kg-1) +bg_par_bio_c0_PO4=8.9369e-007 +# +# --- ORGANIC MATTER EXPORT RATIOS ------------------------------------ +# +# production fraction of dissolved organic matter +bg_par_bio_red_DOMfrac=0.66 +# +# --- INORGANIC MATTER EXPORT RATIOS ---------------------------------- +# +# fixed CaCO3:POC +bg_opt_bio_CaCO3toPOCrainratio='FIXED' +# underlying export CaCO3 as a proportion of particulate organic matter (i.e., CaCO3/POC) +bg_par_bio_red_POC_CaCO3=0.200 +# +# --- REMINERALIZATION ------------------------------------------------ +# +# DOC lifetime (yrs) +bg_par_bio_remin_DOMlifetime=0.5 +# initial fractional abundance of POC component #2 +bg_par_bio_remin_POC_frac2=0.0557 +# depth of remineralization or particulate organic matter +bg_par_bio_remin_POC_eL1=589.9451 +# remineralization length #2 for POC +bg_par_bio_remin_POC_eL2=1000000.0 +# initial fractional abundance of CaCO3 component #2 +bg_par_bio_remin_CaCO3_frac2=0.45 +# depth of remineralization or CaCO3 +bg_par_bio_remin_CaCO3_eL1=1.8905e+003 +# remineralization length #2 for CaCO3 +bg_par_bio_remin_CaCO3_eL2=1000000.0 +# +# --- SEDIMENTS ---------------------------------------------------------- +# +# sediment grid options ==> also see base-config +sg_par_sed_Dmax_neritic=500.0 +# sediment diagenesis options +sg_par_sed_diagen_CaCO3opt="ridgwell2001lookup" +sg_ctrl_sed_bioturb=.true. +sg_ctrl_sed_bioturb_Archer=.false. +sg_par_n_sed_mix=20 +# set invarient surface bioturbation mixing rate +sg_par_sed_mix_k_sur_max=0.15 +sg_par_sed_mix_k_sur_min=0.15 +# additional detrital flux (g cm-2 kyr-1) +sg_par_sed_fdet=0.180 +# +# --- WEATHERING ------------------------------------------------------ +# +# set an OPEN system +bg_ctrl_force_sed_closedsystem=.true. +# set NO CaCO3 and CaSiO3 weathering-temperature feedback +rg_opt_weather_T_Ca=.false. +rg_opt_weather_T_Si=.false. +# weathering reference mean global land surface temperature (C) +rg_par_ref_T0=23.6645 +#CO2 outgassing rate (mol C yr-1) +rg_par_outgas_CO2=6.9988e+12 +# global carbonate and silicate weathering rate (mol Ca2+ yr-1) +# derived from diag_weather_Ca.res of spin2 +rg_par_weather_CaSiO3=6.9988e+12 +rg_par_weather_CaCO3=6.9988e+12 +# d13C values +rg_par_outgas_CO2_d13C=-6.0 +rg_par_weather_CaCO3_d13C=13.88 +# +# --- DATA SAVING ----------------------------------------------------- +# +# date saving & reporting options +bg_par_data_save_level=8 +bg_ctrl_debug_lvl0=.true. +ma_debug_loop=1 +#(saves annual averages, NOT discrete values in time) +bg_par_infile_sig_name='save_timeseries_EVERY001000_orbits.dat' +bg_par_infile_slice_name='save_timeslice_EVERY002500_orbits.dat' +# representative NH latitude and season to sample orbital variation of insolation +bg_par_t_sig_count_N=12 +bg_par_sig_j_N=17 +# SH latitude/season +bg_par_t_sig_count_S=12 +bg_par_sig_j_S=2 +# +# --- FORCINGS -------------------------------------------------------- +# +#re-scale gas transfer coeff to give ~0.058 mol m-2 yr-1 uatm-1 global mean air-sea coefficient (original: 0.310) +bg_par_gastransfer_a=0.715813093980993 +# select correct insolation code +ea_opt_orbit_old=.false. +# Call orbit_radfor +ea_38="y" +# Specify the type of orbital forcing default (0), time-varying (1), alternative config (2) +ea_39=1 +# Number of data points in orbits file +ea_40=5000 +# Interval between data points in goldstein time steps +ea_41=48000 +# filename for orbital parameters (must be in genie-embm/data/input) +ea_42="orbits_La2004_57.93_52.91Ma_new.dat" +# +# --- MISC ----------------------------------------------------- +# +# add ventillation tracers +bg_ctrl_force_ocn_age1=.true. +# +# --- END ------------------------------------------------------ +# \ No newline at end of file diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP3_c.4Ma b/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP3_c.4Ma new file mode 100644 index 000000000..50244b3fb --- /dev/null +++ b/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP3_c.4Ma @@ -0,0 +1,121 @@ +# +# +# --- CLIMATE --------------------------------------------------------- +# +# set climate feedback +ea_36=y +# set seasonal cycle +ea_dosc=.true. +go_dosc=.true. +gs_dosc=.true. +# +# --- BIOLOGICAL NEW PRODUCTION --------------------------------------- +# +# maximum rate of conversion of dissolved PO4 into organic matter by phytoplankton (mol kg-1 yr-1) +bg_par_bio_k0_PO4=8.9876e-006 +# [PO4] M-M half-sat value (mol kg-1) +bg_par_bio_c0_PO4=8.9369e-007 +# +# --- ORGANIC MATTER EXPORT RATIOS ------------------------------------ +# +# production fraction of dissolved organic matter +bg_par_bio_red_DOMfrac=0.66 +# +# --- INORGANIC MATTER EXPORT RATIOS ---------------------------------- +# +# fixed CaCO3:POC +bg_opt_bio_CaCO3toPOCrainratio='FIXED' +# underlying export CaCO3 as a proportion of particulate organic matter (i.e., CaCO3/POC) +bg_par_bio_red_POC_CaCO3=0.200 +# +# --- REMINERALIZATION ------------------------------------------------ +# +# DOC lifetime (yrs) +bg_par_bio_remin_DOMlifetime=0.5 +# initial fractional abundance of POC component #2 +bg_par_bio_remin_POC_frac2=0.0557 +# depth of remineralization or particulate organic matter +bg_par_bio_remin_POC_eL1=589.9451 +# remineralization length #2 for POC +bg_par_bio_remin_POC_eL2=1000000.0 +# initial fractional abundance of CaCO3 component #2 +bg_par_bio_remin_CaCO3_frac2=0.45 +# depth of remineralization or CaCO3 +bg_par_bio_remin_CaCO3_eL1=1.8905e+003 +# remineralization length #2 for CaCO3 +bg_par_bio_remin_CaCO3_eL2=1000000.0 +# +# --- SEDIMENTS ---------------------------------------------------------- +# +# sediment grid options ==> also see base-config +sg_par_sed_Dmax_neritic=500.0 +# sediment diagenesis options +sg_par_sed_diagen_CaCO3opt="ridgwell2001lookup" +sg_ctrl_sed_bioturb=.true. +sg_ctrl_sed_bioturb_Archer=.false. +sg_par_n_sed_mix=20 +# set invarient surface bioturbation mixing rate +sg_par_sed_mix_k_sur_max=0.15 +sg_par_sed_mix_k_sur_min=0.15 +# additional detrital flux (g cm-2 kyr-1) +sg_par_sed_fdet=0.180 +# +# --- WEATHERING ------------------------------------------------------ +# +# set an OPEN system +bg_ctrl_force_sed_closedsystem=.false. +# set NO CaCO3 and CaSiO3 weathering-temperature feedback +rg_opt_weather_T_Ca=.false. +rg_opt_weather_T_Si=.false. +# weathering reference mean global land surface temperature (C) +rg_par_ref_T0=23.6645 +#CO2 outgassing rate (mol C yr-1) +rg_par_outgas_CO2=6.9988e+12 +# global carbonate and silicate weathering rate (mol Ca2+ yr-1) +# derived from diag_weather_Ca.res of spin2 +rg_par_weather_CaSiO3=6.9988e+12 +rg_par_weather_CaCO3=6.9988e+12 +# d13C values +rg_par_outgas_CO2_d13C=-6.0 +rg_par_weather_CaCO3_d13C=13.88 +# +# --- DATA SAVING ----------------------------------------------------- +# +# date saving & reporting options +bg_par_data_save_level=8 +bg_ctrl_debug_lvl0=.true. +ma_debug_loop=1 +#(saves annual averages, NOT discrete values in time) +bg_par_infile_sig_name='save_timeseries_EVERY001000_orbits.dat' +bg_par_infile_slice_name='save_timeslice_EVERY002500_orbits.dat' +# representative NH latitude and season to sample orbital variation of insolation +bg_par_t_sig_count_N=12 +bg_par_sig_j_N=17 +# SH latitude/season +bg_par_t_sig_count_S=12 +bg_par_sig_j_S=2 +# +# --- FORCINGS -------------------------------------------------------- +# +#re-scale gas transfer coeff to give ~0.058 mol m-2 yr-1 uatm-1 global mean air-sea coefficient (original: 0.310) +bg_par_gastransfer_a=0.715813093980993 +# select correct insolation code +ea_opt_orbit_old=.false. +# Call orbit_radfor +ea_38="y" +# Specify the type of orbital forcing default (0), time-varying (1), alternative config (2) +ea_39=1 +# Number of data points in orbits file +ea_40=5000 +# Interval between data points in goldstein time steps +ea_41=48000 +# filename for orbital parameters (must be in genie-embm/data/input) +ea_42="orbits_La2004_57.93_52.91Ma_new.dat" +# +# --- MISC ----------------------------------------------------- +# +# add ventillation tracers +bg_ctrl_force_ocn_age1=.true. +# +# --- END ------------------------------------------------------ +# \ No newline at end of file diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP4_c.4Ma b/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP4_c.4Ma new file mode 100644 index 000000000..c822a509d --- /dev/null +++ b/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP4_c.4Ma @@ -0,0 +1,120 @@ +# +# +# --- CLIMATE --------------------------------------------------------- +# +# set climate feedback +ea_36=y +# set seasonal cycle +ea_dosc=.true. +go_dosc=.true. +gs_dosc=.true. +# +# --- BIOLOGICAL NEW PRODUCTION --------------------------------------- +# +# maximum rate of conversion of dissolved PO4 into organic matter by phytoplankton (mol kg-1 yr-1) +bg_par_bio_k0_PO4=8.9876e-006 +# [PO4] M-M half-sat value (mol kg-1) +bg_par_bio_c0_PO4=8.9369e-007 +# +# --- ORGANIC MATTER EXPORT RATIOS ------------------------------------ +# +# production fraction of dissolved organic matter +bg_par_bio_red_DOMfrac=0.66 +# +# --- INORGANIC MATTER EXPORT RATIOS ---------------------------------- +# +# fixed CaCO3:POC +bg_opt_bio_CaCO3toPOCrainratio='FIXED' +# underlying export CaCO3 as a proportion of particulate organic matter (i.e., CaCO3/POC) +bg_par_bio_red_POC_CaCO3=0.200 +# +# --- REMINERALIZATION ------------------------------------------------ +# +# DOC lifetime (yrs) +bg_par_bio_remin_DOMlifetime=0.5 +# initial fractional abundance of POC component #2 +bg_par_bio_remin_POC_frac2=0.0557 +# depth of remineralization or particulate organic matter +bg_par_bio_remin_POC_eL1=589.9451 +# remineralization length #2 for POC +bg_par_bio_remin_POC_eL2=1000000.0 +# initial fractional abundance of CaCO3 component #2 +bg_par_bio_remin_CaCO3_frac2=0.45 +# depth of remineralization or CaCO3 +bg_par_bio_remin_CaCO3_eL1=1.8905e+003 +# remineralization length #2 for CaCO3 +bg_par_bio_remin_CaCO3_eL2=1000000.0 +# +# --- SEDIMENTS ---------------------------------------------------------- +# +# sediment grid options ==> also see base-config +sg_par_sed_Dmax_neritic=500.0 +# sediment diagenesis options +sg_par_sed_diagen_CaCO3opt="ridgwell2001lookup" +sg_ctrl_sed_bioturb=.true. +sg_ctrl_sed_bioturb_Archer=.false. +sg_par_n_sed_mix=20 +# set invarient surface bioturbation mixing rate +sg_par_sed_mix_k_sur_max=0.15 +sg_par_sed_mix_k_sur_min=0.15 +# additional detrital flux (g cm-2 kyr-1) +sg_par_sed_fdet=0.180 +# +# --- WEATHERING ------------------------------------------------------ +# +# set an OPEN system +bg_ctrl_force_sed_closedsystem=.false. +# CaCO3 and CaSiO3 weathering-temperature feedback +rg_opt_weather_T_Ca=.true. +rg_opt_weather_T_Si=.true. +# weathering reference mean global land surface temperature (C) +rg_par_ref_T0=23.6645 +#CO2 outgassing rate (mol C yr-1) +rg_par_outgas_CO2=7.0e+12 +# global carbonate and silicate weathering rate (mol Ca2+ yr-1) +rg_par_weather_CaSiO3=6.9418e+12 +rg_par_weather_CaCO3=7.0e+12 +# d13C values +rg_par_outgas_CO2_d13C=-6.0 +rg_par_weather_CaCO3_d13C=13.88 +# +# --- DATA SAVING ----------------------------------------------------- +# +# date saving & reporting options +bg_par_data_save_level=8 +bg_ctrl_debug_lvl0=.true. +ma_debug_loop=1 +#(saves annual averages, NOT discrete values in time) +bg_par_infile_sig_name='save_timeseries_EVERY001000_orbits.dat' +bg_par_infile_slice_name='save_timeslice_EVERY002500_orbits.dat' +# representative NH latitude and season to sample orbital variation of insolation +bg_par_t_sig_count_N=12 +bg_par_sig_j_N=17 +# SH latitude/season +bg_par_t_sig_count_S=12 +bg_par_sig_j_S=2 +# +# --- FORCINGS -------------------------------------------------------- +# +#re-scale gas transfer coeff to give ~0.058 mol m-2 yr-1 uatm-1 global mean air-sea coefficient (original: 0.310) +bg_par_gastransfer_a=0.715813093980993 +# select correct insolation code +ea_opt_orbit_old=.false. +# Call orbit_radfor +ea_38="y" +# Specify the type of orbital forcing default (0), time-varying (1), alternative config (2) +ea_39=1 +# Number of data points in orbits file +ea_40=5000 +# Interval between data points in goldstein time steps +ea_41=48000 +# filename for orbital parameters (must be in genie-embm/data/input) +ea_42="orbits_La2004_57.93_52.91Ma_new.dat" +# +# --- MISC ----------------------------------------------------- +# +# add ventillation tracers +bg_ctrl_force_ocn_age1=.true. +# +# --- END ------------------------------------------------------ +# \ No newline at end of file diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_c.SPIN1 b/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_c.SPIN1 new file mode 100644 index 000000000..1650ab2e6 --- /dev/null +++ b/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_c.SPIN1 @@ -0,0 +1,122 @@ +# +# +# --- CLIMATE --------------------------------------------------------- +# +# set climate feedback +ea_36=y +# set seasonal cycle +ea_dosc=.true. +go_dosc=.true. +gs_dosc=.true. +# +# --- BIOLOGICAL NEW PRODUCTION --------------------------------------- +# +# maximum rate of conversion of dissolved PO4 into organic matter by phytoplankton (mol kg-1 yr-1) +bg_par_bio_k0_PO4=8.9876e-006 +# [PO4] M-M half-sat value (mol kg-1) +bg_par_bio_c0_PO4=8.9369e-007 +# +# --- ORGANIC MATTER EXPORT RATIOS ------------------------------------ +# +# production fraction of dissolved organic matter +bg_par_bio_red_DOMfrac=0.66 +# +# --- INORGANIC MATTER EXPORT RATIOS ---------------------------------- +# +# fixed CaCO3:POC +bg_opt_bio_CaCO3toPOCrainratio='FIXED' +# underlying export CaCO3 as a proportion of particulate organic matter (i.e., CaCO3/POC) +bg_par_bio_red_POC_CaCO3=0.200 +# +# --- REMINERALIZATION ------------------------------------------------ +# +# DOC lifetime (yrs) +bg_par_bio_remin_DOMlifetime=0.5 +# initial fractional abundance of POC component #2 +bg_par_bio_remin_POC_frac2=0.0557 +# depth of remineralization or particulate organic matter +bg_par_bio_remin_POC_eL1=589.9451 +# remineralization length #2 for POC +bg_par_bio_remin_POC_eL2=1000000.0 +# initial fractional abundance of CaCO3 component #2 +bg_par_bio_remin_CaCO3_frac2=0.45 +# depth of remineralization or CaCO3 +bg_par_bio_remin_CaCO3_eL1=1.8905e+003 +# remineralization length #2 for CaCO3 +bg_par_bio_remin_CaCO3_eL2=1000000.0 +# +# --- SEDIMENTS ---------------------------------------------------------- +# +# sediment grid options ==> also see base-config +sg_par_sed_Dmax_neritic=500.0 +# sediment diagenesis options +sg_par_sed_diagen_CaCO3opt="ridgwell2001lookup" +sg_ctrl_sed_bioturb=.false. +sg_ctrl_sed_bioturb_Archer=.false. +sg_par_n_sed_mix=20 +# set invarient surface bioturbation mixing rate +sg_par_sed_mix_k_sur_max=0.15 +sg_par_sed_mix_k_sur_min=0.15 +# additional detrital flux (g cm-2 kyr-1) +sg_par_sed_fdet=0.180 +# +# --- WEATHERING ------------------------------------------------------ +# +# set a CLOSED system during 1st spin-up +bg_ctrl_force_sed_closedsystem=.true. +# CaCO3 and CaSiO3 weathering-temperature feedback +#rg_opt_weather_T_Ca=.true. +#rg_opt_weather_T_Si=.true. +# weathering reference mean global land surface temperature (C) +#rg_par_ref_T0=23.785 +#CO2 outgassing rate (mol C yr-1) +rg_par_outgas_CO2=7.0e+12 +# global carbonate and silicate weathering rate (mol Ca2+ yr-1) +rg_par_weather_CaSiO3=7.0e+12 +rg_par_weather_CaCO3=7.0e+12 +# d13C values +rg_par_outgas_CO2_d13C=-6.0 +rg_par_weather_CaCO3_d13C=4.161 +# +# --- GEOCHEM ACCELERATION ------------------------------------- +# +#gl_ctrl_update_pCO2=.true. +#ma_gem_notyr_min=10 +#ma_gem_notyr_max=10 +#ma_gem_yr_min=90 +#ma_gem_yr_max=90 +#ma_gem_dyr=0 +#ma_gem_adapt_auto=.false. +# +# --- DATA SAVING ----------------------------------------------------- +# +# date saving & reporting options +bg_par_data_save_level=8 +bg_ctrl_debug_lvl0=.true. +ma_debug_loop=1 +# +# --- FORCINGS -------------------------------------------------------- +# +# specify forcings +bg_par_forcing_name="pyyyyz.RpCO2_Rp13CO2" +bg_par_atm_force_scale_val_3=834.0E-06 +bg_par_atm_force_scale_val_4=-4.9 +#re-scale gas transfer coeff to give ~0.058 mol m-2 yr-1 uatm-1 global mean air-sea coefficient (original: 0.310) +bg_par_gastransfer_a=0.715813093980993 +# select correct insolation code +ea_opt_orbit_old=.false. +# choose average orbit configuration +# mean ecc, mean obl (in rad), equinox at perihelion/aphelion so hemispheres receive the same amount of sun +ea_par_orbit_osce=0.026735 +ea_par_orbit_oscobl=0.40420 +ea_par_orbit_osclonperi=3.1416 +# +# --- MISC ----------------------------------------------------- +# +# Set initial ocean alkalinity +bg_ocn_init_12=1.975E-03 +# add ventillation tracers +bg_ctrl_force_ocn_age1=.true. +# +# --- END ------------------------------------------------------ +# \ No newline at end of file diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_c.SPIN2gl b/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_c.SPIN2gl new file mode 100644 index 000000000..5153c0000 --- /dev/null +++ b/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_c.SPIN2gl @@ -0,0 +1,116 @@ +# +# +# --- CLIMATE --------------------------------------------------------- +# +# set climate feedback +ea_36=y +# set seasonal cycle +ea_dosc=.true. +go_dosc=.true. +gs_dosc=.true. +# +# --- BIOLOGICAL NEW PRODUCTION --------------------------------------- +# +# maximum rate of conversion of dissolved PO4 into organic matter by phytoplankton (mol kg-1 yr-1) +bg_par_bio_k0_PO4=8.9876e-006 +# [PO4] M-M half-sat value (mol kg-1) +bg_par_bio_c0_PO4=8.9369e-007 +# +# --- ORGANIC MATTER EXPORT RATIOS ------------------------------------ +# +# production fraction of dissolved organic matter +bg_par_bio_red_DOMfrac=0.66 +# +# --- INORGANIC MATTER EXPORT RATIOS ---------------------------------- +# +# fixed CaCO3:POC +bg_opt_bio_CaCO3toPOCrainratio='FIXED' +# underlying export CaCO3 as a proportion of particulate organic matter (i.e., CaCO3/POC) +bg_par_bio_red_POC_CaCO3=0.200 +# +# --- REMINERALIZATION ------------------------------------------------ +# +# DOC lifetime (yrs) +bg_par_bio_remin_DOMlifetime=0.5 +# initial fractional abundance of POC component #2 +bg_par_bio_remin_POC_frac2=0.0557 +# depth of remineralization or particulate organic matter +bg_par_bio_remin_POC_eL1=589.9451 +# remineralization length #2 for POC +bg_par_bio_remin_POC_eL2=1000000.0 +# initial fractional abundance of CaCO3 component #2 +bg_par_bio_remin_CaCO3_frac2=0.45 +# depth of remineralization or CaCO3 +bg_par_bio_remin_CaCO3_eL1=1.8905e+003 +# remineralization length #2 for CaCO3 +bg_par_bio_remin_CaCO3_eL2=1000000.0 +# +# --- SEDIMENTS ---------------------------------------------------------- +# +# sediment grid options ==> also see base-config +sg_par_sed_Dmax_neritic=500.0 +# sediment diagenesis options +sg_par_sed_diagen_CaCO3opt="ridgwell2001lookup" +sg_ctrl_sed_bioturb=.true. +sg_ctrl_sed_bioturb_Archer=.false. +sg_par_n_sed_mix=20 +# set invarient surface bioturbation mixing rate +sg_par_sed_mix_k_sur_max=0.15 +sg_par_sed_mix_k_sur_min=0.15 +# additional detrital flux (g cm-2 kyr-1) +sg_par_sed_fdet=0.180 +# +# --- WEATHERING ------------------------------------------------------ +# +# set a CLOSED system during 1st spin-up +bg_ctrl_force_sed_closedsystem=.false. +# CaCO3 and CaSiO3 weathering-temperature feedback +rg_opt_weather_T_Ca=.true. +rg_opt_weather_T_Si=.true. +# weathering reference mean global land surface temperature (C) +rg_par_ref_T0=23.6645 +#CO2 outgassing rate (mol C yr-1) +rg_par_outgas_CO2=7.0e+12 +# global carbonate and silicate weathering rate (mol Ca2+ yr-1) +rg_par_weather_CaSiO3=6.9418e+12 +rg_par_weather_CaCO3=7.0e+12 +# d13C values +rg_par_outgas_CO2_d13C=-6.0 +rg_par_weather_CaCO3_d13C=13.88 +# +# --- GEOCHEM ACCELERATION ------------------------------------- +# +gl_ctrl_update_pCO2=.true. +ma_gem_notyr_min=10 +ma_gem_notyr_max=10 +ma_gem_yr_min=90 +ma_gem_yr_max=90 +ma_gem_dyr=0 +ma_gem_adapt_auto=.false. +# +# --- DATA SAVING ----------------------------------------------------- +# +# date saving & reporting options +bg_par_data_save_level=8 +bg_ctrl_debug_lvl0=.true. +ma_debug_loop=1 +# +# --- FORCINGS -------------------------------------------------------- +# +#re-scale gas transfer coeff to give ~0.058 mol m-2 yr-1 uatm-1 global mean air-sea coefficient (original: 0.310) +bg_par_gastransfer_a=0.715813093980993 +# select correct insolation code +ea_opt_orbit_old=.false. +# choose average orbit configuration +# mean ecc, mean obl (in rad), equinox at perihelion/aphelion so hemispheres receive the same amount of sun +ea_par_orbit_osce=0.026735 +ea_par_orbit_oscobl=0.40420 +ea_par_orbit_osclonperi=3.1416 +# +# --- MISC ----------------------------------------------------- +# +# add ventillation tracers +bg_ctrl_force_ocn_age1=.true. +# +# --- END ------------------------------------------------------ +# \ No newline at end of file diff --git a/genie-userconfigs/MS/vervoortetal.2021/original/README.txt b/genie-userconfigs/MS/vervoortetal.2021/original/README.txt new file mode 100644 index 000000000..166c6aebf --- /dev/null +++ b/genie-userconfigs/MS/vervoortetal.2021/original/README.txt @@ -0,0 +1,87 @@ +################################################################ +### README.txt ################################################# +################################################################ + +For: +'Earth System Model Analysis of how Astronomical Forcing is Imprinted onto the Marine Geological Record: +The Role of the Inorganic (Carbonate) Carbon Cycle and Feedbacks' +P. Vervoort, S. Kirtland Turner, F. Rochholz, A. Ridgwell + +################################################################ +06/15/2020 -- README.txt file creation (PV) +07/01/2021 -- update (AR) +07/23/2021 -- updated with new experiment names (PV) +09/11/2023 -- add note (L.28); moved original runs to subfolder +################################################################ + +Provided is the code used to create the model experiments presented in the paper. +Also given are the configuration files necessary to run these experiments. + +The intention is to provide an opportunity to question the assumptions and +interpretation through re-analysis and the creation of new and different experiments. +(Plus, to provide a means to replicate results.) + +All experiments are run from: +$HOME/cgenie.muffin/genie-main +(unless a different installation directory has been used) + +### NOTE ######################################################### +% 09/11/2023 - The manuscript has had some updates after publication +% in order to correct for an error in the insolation code. Commands +% below are used to run the original simulations with inorrect code +################################################################# + +### model experiments -- spinups ################################ + +The commands to run the spinups are listed as follows: + +fkl_pp30 => hemispherically symmetric continental configuration with one continent from pole-to-pole +fkl_np30 => hemispherically asymmetric continental configuration with one continent in the NH + +(1a) INITIAL SPINUP + +The initial, 1st-stage closed system spin-up needs 20 kyr to reach equilibrium: + +./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021/original fkl_pp30.SPIN1 20000 +./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021/original fkl_np30.SPIN1 20000 + +(1b) Second Stage SPINUP + +The follow-on, 2nd-stage (accelerated) open system spin-up requires a long spinup time of 1.75 Myr to reach equilibrium + +./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021/original fkl_pp30.SPIN2gl 1750000 fkl_pp30.SPIN1 +./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021/original fkl_np30.SPIN2gl 1750000 fkl_np30.SPIN1 + +### model experiments -- main ensemble ########################## + +Below the commands to run the experiments with astronomical forcing for 4 Myr +Experiment 0-5 correspond to the numbering as described in the manuscript + +(2a) For EXPERIMENT 0, no carbon cycle feedbacks: + +./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021/original fkl_pp30_EXP0.4Ma 4000000 fkl_pp30.SPIN2gl +./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021/original fkl_np30_EXP0.4Ma 4000000 fkl_np30.SPIN2gl + +(2b) For EXPERIMENT 1, climate + ocean circulation + CO2-ocean chemistry feedbacks only: + +./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021/original fkl_pp30_EXP1.4Ma 4000000 fkl_pp30.SPIN2gl +./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021/original fkl_np30_EXP1.4Ma 4000000 fkl_np30.SPIN2gl + +(2c) For EXPERIMENT 2, EXPERIMENT 1 + primary productivity feedbacks: + +./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021/original fkl_pp30_EXP2.4Ma 4000000 fkl_pp30.SPIN2gl +./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021/original fkl_np30_EXP2.4Ma 4000000 fkl_np30.SPIN2gl + +(2d) For EXPERIMENT 3, EXPERIMENT 2 + CaCO3 sedimentation feedbacks: + +./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021/original fkl_pp30_EXP3.4Ma 4000000 fkl_pp30.SPIN2gl +./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021/original fkl_np30_EXP3.4Ma 4000000 fkl_np30.SPIN2gl + +(2e) For EXPERIMENT 4, EXPERIMENT 3 + weathering feedbacks: + +./runmuffin.sh muffin.CBSG.fkl_pp30.BASES_PV MS/vervoortetal.2021/original fkl_pp30_EXP4.4Ma 4000000 fkl_pp30.SPIN2gl +./runmuffin.sh muffin.CBSG.fkl_np30.BASES_PV MS/vervoortetal.2021/original fkl_np30_EXP4.4Ma 4000000 fkl_np30.SPIN2gl + +################################################################ +################################################################ +################################################################ diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_np30.SPIN1 b/genie-userconfigs/MS/vervoortetal.2021/original/fkl_np30.SPIN1 similarity index 100% rename from genie-userconfigs/MS/vervoortetal.2021/fkl_np30.SPIN1 rename to genie-userconfigs/MS/vervoortetal.2021/original/fkl_np30.SPIN1 diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_np30.SPIN2gl b/genie-userconfigs/MS/vervoortetal.2021/original/fkl_np30.SPIN2gl similarity index 100% rename from genie-userconfigs/MS/vervoortetal.2021/fkl_np30.SPIN2gl rename to genie-userconfigs/MS/vervoortetal.2021/original/fkl_np30.SPIN2gl diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP0.4Ma b/genie-userconfigs/MS/vervoortetal.2021/original/fkl_np30_EXP0.4Ma similarity index 100% rename from genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP0.4Ma rename to genie-userconfigs/MS/vervoortetal.2021/original/fkl_np30_EXP0.4Ma diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP1.4Ma b/genie-userconfigs/MS/vervoortetal.2021/original/fkl_np30_EXP1.4Ma similarity index 100% rename from genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP1.4Ma rename to genie-userconfigs/MS/vervoortetal.2021/original/fkl_np30_EXP1.4Ma diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP2.4Ma b/genie-userconfigs/MS/vervoortetal.2021/original/fkl_np30_EXP2.4Ma similarity index 100% rename from genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP2.4Ma rename to genie-userconfigs/MS/vervoortetal.2021/original/fkl_np30_EXP2.4Ma diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP3.4Ma b/genie-userconfigs/MS/vervoortetal.2021/original/fkl_np30_EXP3.4Ma similarity index 100% rename from genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP3.4Ma rename to genie-userconfigs/MS/vervoortetal.2021/original/fkl_np30_EXP3.4Ma diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP4.4Ma b/genie-userconfigs/MS/vervoortetal.2021/original/fkl_np30_EXP4.4Ma similarity index 100% rename from genie-userconfigs/MS/vervoortetal.2021/fkl_np30_EXP4.4Ma rename to genie-userconfigs/MS/vervoortetal.2021/original/fkl_np30_EXP4.4Ma diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30.SPIN1 b/genie-userconfigs/MS/vervoortetal.2021/original/fkl_pp30.SPIN1 similarity index 100% rename from genie-userconfigs/MS/vervoortetal.2021/fkl_pp30.SPIN1 rename to genie-userconfigs/MS/vervoortetal.2021/original/fkl_pp30.SPIN1 diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30.SPIN2gl b/genie-userconfigs/MS/vervoortetal.2021/original/fkl_pp30.SPIN2gl similarity index 100% rename from genie-userconfigs/MS/vervoortetal.2021/fkl_pp30.SPIN2gl rename to genie-userconfigs/MS/vervoortetal.2021/original/fkl_pp30.SPIN2gl diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP0.4Ma b/genie-userconfigs/MS/vervoortetal.2021/original/fkl_pp30_EXP0.4Ma similarity index 100% rename from genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP0.4Ma rename to genie-userconfigs/MS/vervoortetal.2021/original/fkl_pp30_EXP0.4Ma diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP1.4Ma b/genie-userconfigs/MS/vervoortetal.2021/original/fkl_pp30_EXP1.4Ma similarity index 100% rename from genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP1.4Ma rename to genie-userconfigs/MS/vervoortetal.2021/original/fkl_pp30_EXP1.4Ma diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP2.4Ma b/genie-userconfigs/MS/vervoortetal.2021/original/fkl_pp30_EXP2.4Ma similarity index 100% rename from genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP2.4Ma rename to genie-userconfigs/MS/vervoortetal.2021/original/fkl_pp30_EXP2.4Ma diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP3.4Ma b/genie-userconfigs/MS/vervoortetal.2021/original/fkl_pp30_EXP3.4Ma similarity index 100% rename from genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP3.4Ma rename to genie-userconfigs/MS/vervoortetal.2021/original/fkl_pp30_EXP3.4Ma diff --git a/genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP4.4Ma b/genie-userconfigs/MS/vervoortetal.2021/original/fkl_pp30_EXP4.4Ma similarity index 100% rename from genie-userconfigs/MS/vervoortetal.2021/fkl_pp30_EXP4.4Ma rename to genie-userconfigs/MS/vervoortetal.2021/original/fkl_pp30_EXP4.4Ma