🌊 Predicting Atmospheres¶
As a fun little application of exoatlas, we provide an example of how to estimate the probability a planet has an atmosphere according to the 3D cosmic shoreline model presented in Berta-Thompson, Wachiraphan, and Murray (2026, hereafter BTWM26). This page shows how to calculate atmosphere probabilities for planets and provides a few neat little visualizations.
from exoatlas import *
Calculate Atmosphere Probabilities for exoatlas Planets¶
If you have an exoatlas population and simply want to calculate the probability its planets have atmospheres according to the shoreline model, then you can just call the probability_of_atmosphere() method attached to any exoatlas population. Behind the scenes, it will download posterior samples from Zenodo and use them to calculate atmosphere probabilities, marginalizing over the parameter uncertainties in the current version of the shoreline. Here's the simplest version of what that looks like. Whenever we apply it, this shoreline accounts for the planet bolometric flux, planet escape velocity, and stellar luminosity in estimating the probability of atmospheric retention.
s = SolarSystem()
s.probability_of_atmosphere()
When we apply this shoreline model to the Solar System, everything but Mercury should have an atmosphere. When we apply it to exoplanets, it estimates different probabilities based on each system's stellar and planetary environment.
e = TransitingExoplanets()
e['TRAPPIST-1'].probability_of_atmosphere()
e['LTT 1445Ab'].probability_of_atmosphere()
e['LHS 1140b'].probability_of_atmosphere()
Visualizing the BTWM26 Cosmic Shoreline¶
exoatlas has a few default built-in visualizing.ipynb to help show the shoreline across relevant parameter spaces. Because the shoreline is intrinsically 3D, these default visualizations show multiple slices of it, either in multiple panels or in an animation.
from exoatlas.visualizations import *
# pick the name of the planet to highlight
planet_name = 'LTT1445Ab'
# create a subset population to highlight that one planet
highlight = e[planet_name]
# define a single panel of the visualization
m = ShorelineStandardMap()
# construct a grid of multiple slices
g = SliceGridGallery(m, N=4)
# add the planets to the panels
g.build([s, e, highlight])
# add embellishments to the plot, including probability
g.refine()
# colorbar for probability
g.add_colorbar()
# save the figure
plt.savefig(f'shoreline-highlighting-{planet_name}.pdf')
from exoatlas.visualizations import *
# pick the name of the planet to highlight
planet_name = 'LTT1445Ab'
# create a subset population to highlight that one planet
highlight = e[planet_name]
# define a single panel of the visualization
m = ShorelineStandardMap(order='vfL', )
# construct an animated grid of multiple slices
a = SliceAnimatedGallery(m, N=4, figsize=(4,4), dpi=300)
# make animation that steps through slices
a.animate([s, e, highlight], filename=f'animated-shoreline-highlighting-{planet_name}.gif')
# hide static figure
plt.close()

Direct Access to Shoreline Probabilities¶
If you want more nuanced control over what to do with the cosmic shoreline probabilities, you can create your own Shoreline object, which contains the posterior samples and can be used for various calculations. We'll show how to do this, along with some of the background for the math used to calculate this probability.
from exoatlas.calculations.shoreline import Shoreline
# automatically download default posterior
shore = Shoreline()
The probability model in BTWM26 defines a critical shoreline flux with $$ \log_{10} \left(\frac{f_{\sf shoreline}}{f_\oplus}\right) = \log_{10} \left(\frac{f_{\sf 0}}{f_\oplus}\right) + p \cdot \log_{10} \left(\frac{v_{\sf esc}}{v_{\sf esc, \oplus}}\right) + q \cdot \log_{10} \left(\frac{L_\star}{L_\odot}\right). $$ and a distance for a particular planet above that shoreline flux of $$ \Delta = \log_{10} \left(\frac{f_{\sf }}{f_\oplus}\right) - \log_{10}\left(\frac{f_{\sf shoreline}}{f_\oplus}\right) = \log_{10}\left(\frac{f}{f_{\sf shoreline}}\right) $$ and finally the probability of a planet having an atmosphere as $$ p_{\sf i} = P(A_{\sf i} = 1 | \mathbf{x}_{\sf i}, \boldsymbol{\theta} ) = \frac{1}{1+e^{\Delta_{\sf i}/w}} $$ where $f_0, p, q, w$ are the model parameters. We can retrieve point estimates of these parameters from the posterior.
point_parameters = shore.best_parameters()
point_parameters
{'log_f_0': 2.6166048266669573,
'p': 5.903550424650916,
'q': 1.1739214634550965,
'ln_w': -1.396496413908506}
Let's use those parameters to estimate the probability of planet receiving Earth-like flux with Earth-like escape velocity, but orbiting a much less luminous star with $L_\star = 10^{-2} L_\odot$.
point_probability = shore.probability_of_atmosphere(log_f=0, log_v=0, log_L=-2, **point_parameters)
point_probability
np.float64(0.7476412243852795)
We can also use the samples of parameters to calculate the probability for many possible combinations of in the parameter posterior distribution. This would allow us to propagate the uncertainty in the parameters into the probability of a planet having an atmosphere.
sampled_parameters = shore.sampled_parameters()
sampled_parameters
{'log_f_0': array([2.69220169, 2.69376059, 2.63354804, 2.16834077, 2.62902557,
2.49106064, 2.43099067, 2.39284302, 1.96899821, 3.01690646,
2.56140413, 3.68359967, 2.10538923, 2.90375948, 2.65151609,
2.7365094 , 3.05950166, 2.24605442, 2.48019133, 2.86537942,
2.85191888, 3.59080307, 2.12089133, 2.87141059, 2.10614294,
2.40326968, 2.66971147, 2.113104 , 2.463369 , 2.63937949,
3.45821551, 2.59203338, 3.0204496 , 2.017026 , 2.53351718,
2.22446642, 3.00448944, 2.45812211, 2.03162032, 2.78145507,
2.89282591, 2.72220522, 2.37471858, 2.36214854, 2.30320669,
2.91263539, 3.52591999, 2.54949971, 2.14033026, 2.34982854,
2.95420702, 2.3789302 , 2.72385521, 2.26509075, 2.85560365,
2.48227579, 2.44102393, 2.77416628, 2.19131979, 2.27626731,
2.70900017, 2.54797199, 2.55911089, 3.46961363, 2.99458745,
2.64183516, 2.78348722, 2.53149349, 2.33540005, 2.27846893,
3.02630509, 2.24496915, 2.99029441, 2.41932176, 2.46275718,
2.50354136, 3.10298975, 2.14631307, 3.09202995, 3.04669221,
2.79193707, 3.14242335, 2.19016736, 2.41500755, 2.32730172,
2.6222505 , 2.81555497, 2.83919757, 2.6411542 , 2.30901703,
2.78079226, 2.60095929, 4.26540953, 3.58934298, 2.4232144 ,
2.51745905, 2.25151518, 3.23876383, 2.43184558, 2.60226032,
2.6738364 , 3.06179075, 2.87386687, 2.8892525 , 2.55795718,
3.77612694, 2.69589887, 3.78433521, 3.16915551, 2.31105624,
2.19054454, 2.5390463 , 2.70976663, 3.2968666 , 2.46744129,
2.18762142, 2.80498979, 3.06376739, 2.33249602, 2.44855266,
2.85574791, 2.12065357, 2.4651688 , 2.38271629, 2.25646249,
2.61449132, 2.65139496, 3.42737553, 3.28853667, 2.1327668 ,
3.44007305, 2.48050615, 2.41843038, 2.70349099, 2.58222304,
3.22511725, 2.18012723, 2.62057268, 2.8017758 , 3.04723304,
3.24257435, 2.24388115, 2.46882766, 2.51290928, 2.31838545,
3.19807848, 2.81911682, 2.45882558, 2.74354253, 2.30640142,
2.58676436, 2.1644908 , 2.28420535, 2.16529588, 2.6963811 ,
2.39829893, 2.64750527, 3.39498056, 2.49181909, 3.38522364,
2.86428857, 3.21064147, 2.37242235, 2.48605765, 2.1785064 ,
2.42327906, 2.33360509, 2.40276322, 2.13941967, 2.65770029,
3.49598789, 3.17291821, 2.71700327, 2.65790447, 2.25232039,
2.31086461, 2.95471801, 2.73588297, 2.36066904, 2.64261317,
3.1983315 , 2.46094861, 4.03342648, 2.76391746, 2.38857589,
2.85777262, 2.42713353, 3.40818117, 2.15242892, 2.94250568,
2.59810135, 3.32398843, 2.352201 , 2.50039953, 2.65969741,
2.45362729, 3.2731092 , 2.34300592, 2.28733246, 3.41882014,
2.81180901, 2.39356432, 3.17399578, 2.66423159, 3.47417316,
2.71211996, 2.62878124, 2.6611261 , 2.0493669 , 2.91391321,
2.40933184, 2.59524625, 2.27570426, 2.2990332 , 2.53140283,
2.95615778, 2.39742606, 2.41932518, 2.05352096, 2.29052819,
2.49616095, 3.63294512, 3.2231591 , 2.14373097, 2.97147109,
1.85977076, 2.72825386, 2.29325151, 2.30638287, 3.00002644,
2.15313595, 2.79985174, 2.1388283 , 2.84513057, 2.10771202,
2.14544893, 2.96603348, 2.3497477 , 3.15038519, 2.02147213,
3.11010081, 2.61144786, 2.85453189, 2.78995527, 2.80588116,
3.56329268, 2.36144803, 2.82455874, 3.27027452, 2.77365545,
2.4132695 , 3.03394319, 2.73476843, 2.66522636, 3.87194231,
2.69888728, 2.45098634, 2.30112583, 2.89076578, 2.14151476,
2.87835901, 2.74997813, 2.80982397, 2.67708873, 3.46198816,
2.43648861, 2.82627454, 3.0225548 , 2.81820394, 2.67314346,
2.52472787, 2.38990903, 2.36525673, 2.63831717, 2.66656502,
2.95486755, 2.82831667, 2.59019229, 3.11373667, 2.08722618,
2.9024773 , 2.62537545, 2.15578046, 3.15873108, 2.41757294,
2.61143621, 2.22052049, 2.2184028 , 3.1870059 , 2.53123419,
2.85617756, 2.37182894, 2.47187296, 2.65136301, 3.01094274,
3.51360011, 2.34924692, 2.43337301, 2.33041619, 3.06784997,
2.83221513, 2.39503604, 3.27496174, 2.37838622, 2.18934408,
4.40513304, 2.06331493, 2.67457387, 2.8759215 , 2.51691333,
2.35545602, 2.59794048, 2.41270024, 3.08928199, 2.31269667,
2.42693715, 2.69548053, 2.81552441, 2.64998972, 2.58784589,
2.79760109, 2.48749515, 2.39089167, 2.42231533, 4.14189713,
2.80755758, 2.57144821, 4.11958475, 2.4864796 , 4.04325822,
2.33797084, 2.21897315, 2.84995465, 2.856126 , 2.21371622,
3.27900866, 2.41574878, 2.0948982 , 2.54192915, 2.35308093,
2.45302151, 2.9199439 , 2.84009491, 3.02885199, 2.99855271,
2.42411062, 2.56629186, 2.5273437 , 2.29096291, 2.18608507,
2.29747522, 2.3625877 , 3.06580614, 2.59012558, 2.01182573,
2.56617516, 2.60859523, 3.21055378, 2.51981898, 3.10358087,
2.06392137, 3.23095531, 2.63170638, 2.6040778 , 3.20110665,
2.87770181, 2.28051152, 2.46582175, 2.80777852, 2.30894323,
2.92431233, 2.65243852, 2.62815012, 2.40347449, 3.22119031,
2.04145632, 2.2250397 , 3.07133402, 2.98858735, 2.94635372,
2.78340932, 2.64783668, 3.06812057, 2.67800305, 2.34751064,
2.48189019, 2.66194515, 2.66903301, 2.81913064, 2.22163882,
2.39595667, 3.14385221, 2.24457017, 2.58101765, 2.83828144,
2.75559901, 2.24230298, 2.42739605, 2.34959277, 2.06085835,
3.91134296, 3.09575671, 2.96842209, 2.44387105, 2.7571998 ,
2.69927584, 2.59893589, 3.06187867, 2.30263879, 2.94767236,
2.42119658, 2.53951045, 1.95881402, 2.30541031, 2.50505759,
2.20477881, 2.99211185, 2.67743066, 2.39652929, 2.81377056,
2.03078873, 2.83514002, 2.20525434, 2.02384436, 2.43002807,
3.10119553, 2.41544252, 2.53573323, 2.33569881, 2.89166689,
2.64418086, 2.14332149, 2.67219123, 2.82744599, 3.31029423,
2.54830352, 3.59594376, 2.52011219, 3.21892744, 2.64372676,
3.21453974, 2.70793409, 3.23546345, 2.49978727, 2.72429596,
2.5788574 , 2.9783691 , 2.59139469, 2.8095128 , 2.11598632,
2.57958117, 2.70996777, 2.21261993, 2.67590047, 2.93113862,
2.02395252, 3.03661245, 3.80211979, 3.39111921, 2.41943014,
2.96787048, 2.34083213, 2.88640987, 3.09556245, 2.37839337,
2.50863912, 2.7469834 , 2.50518129, 2.59366714, 2.69972461,
2.33477939, 2.76895821, 3.47184247, 2.03127037, 2.28306281,
2.5040548 , 3.07530267, 2.27841147, 2.81379872, 4.07294279,
2.76300682, 2.34600168, 3.27373202, 2.26528343, 3.85134941,
2.66366484, 2.80871083, 2.09793611, 2.34279326, 2.26328285,
2.049546 , 2.9135238 , 2.58940232, 2.867812 , 2.35088381,
2.2547618 , 2.57186322, 2.82466792, 3.17689071, 2.60951396,
2.40077111, 2.68273485, 2.55669621, 2.66282532, 2.34014123,
2.90486856, 2.18343896, 2.72588193, 2.42769685, 2.45702599,
2.14368562, 2.72039312, 2.48819368, 2.46545808, 2.38162759,
2.35729179, 2.55052007, 3.20011555, 2.99782864, 2.91482537,
2.71533676, 2.92373217, 2.98196992, 3.3918273 , 3.48752815,
2.41755489, 2.9411353 , 2.60674145, 2.55956174, 2.9873674 ,
2.61506974, 2.47151742, 2.98796766, 2.84827562, 2.34079217,
2.95087494, 2.20910528, 2.26929197, 2.30081524, 3.34563211,
2.4064727 , 2.63138442, 2.92671401, 2.57129822, 2.52845018,
2.41779264, 3.28391301, 2.56308227, 2.40395051, 2.23848282,
3.00346905, 2.72037767, 2.64461304, 2.35400859, 2.3535758 ,
3.07682438, 2.4836927 , 2.38049029, 2.43011234, 2.75446997,
2.700128 , 2.82297217, 3.1560203 , 2.07498315, 2.43408909,
2.6781721 , 2.31807508, 2.67755182, 2.3209316 , 2.22796919,
2.14523017, 2.89845511, 3.1971986 , 2.37340816, 2.29662876,
3.36137405, 2.37756812, 3.07533376, 3.19600161, 2.61419463,
3.10839499, 2.29883475, 2.42152867, 2.75743428, 2.8790683 ,
2.67274862, 2.5194342 , 2.47975601, 3.89657234, 2.70218438,
2.70028598, 2.05276351, 2.75806121, 2.63280626, 3.59800775,
2.33299462, 2.69975715, 2.84763339, 3.03373334, 2.74622158,
2.97386501, 3.47824241, 2.25543307, 2.8388967 , 2.25170618,
2.2451601 , 2.2127512 , 3.06276975, 2.75067564, 2.10936967,
2.87030951, 2.49030637, 2.93188498, 3.30446446, 2.88780708,
2.88144161, 3.06391481, 2.70734263, 3.57934415, 2.55424241,
2.29598827, 2.7773351 , 3.31396075, 2.4510317 , 2.71925149,
2.18897505, 2.80124091, 2.83653459, 2.42174631, 3.65190368,
2.2689834 , 2.2655883 , 2.37114702, 2.87905864, 2.90759223,
4.85447089, 2.88673802, 2.93810529, 3.30947633, 2.14902406,
2.18996084, 3.00426808, 2.65695071, 2.7460622 , 3.28656518,
3.16763189, 2.58394302, 2.57724237, 3.19803153, 2.7010327 ,
2.73241151, 2.17988955, 2.55102234, 2.9595763 , 2.8295142 ,
2.42852203, 2.33285694, 2.4912753 , 2.54030396, 2.11434676,
2.58718233, 2.68574765, 2.3849345 , 3.7473085 , 2.62523187,
3.25850799, 2.76141685, 2.51598167, 3.33677318, 2.39435948,
2.2332782 , 2.79839574, 2.76926916, 2.77015475, 2.6559063 ,
2.78256233, 2.437956 , 2.9625309 , 2.77166469, 2.73936693,
2.5069126 , 2.96116314, 3.26952226, 2.44295692, 2.19094679,
2.3700254 , 2.66714569, 3.91925346, 2.55623879, 3.00925258,
2.48887531, 2.26685961, 2.38213814, 2.18582031, 2.77587278,
3.2083341 , 2.28818985, 2.25445333, 2.64035737, 2.36748089,
2.75522827, 2.85915031, 3.11645291, 2.53734229, 2.72499212,
2.74668273, 2.12944901, 2.54404833, 3.56463832, 2.51244502,
2.83815955, 3.03818232, 2.45376605, 2.64131899, 2.48839577,
3.02274916, 2.50800068, 3.08499124, 3.14783104, 3.12551341,
3.80074711, 2.43325668, 2.48375257, 4.63101759, 2.47714941,
2.74753479, 2.31338009, 3.06488581, 2.46880827, 2.02747413,
2.56005857, 2.77223775, 2.31245015, 2.61220142, 2.76022075,
2.45172073, 3.08659152, 3.79090572, 3.11293436, 2.8189116 ,
2.79417252, 2.87926689, 2.17998134, 2.8853508 , 3.10710867,
2.7319075 , 2.29058761, 2.63729291, 2.1149487 , 2.30282067,
2.38047332, 3.09237073, 2.36332719, 2.12621774, 2.55068516,
2.8343278 , 2.90260498, 2.77301556, 2.62977524, 2.07515074,
3.00378275, 2.39842489, 2.32630735, 2.37949992, 2.08892568,
2.35653038, 1.95887218, 2.75159994, 3.03385306, 2.22313964,
2.61857163, 2.89311891, 2.69541424, 2.8016858 , 2.35133861,
2.69438747, 2.49337114, 2.38606038, 2.38342014, 2.95876647,
2.44930103, 2.83491921, 2.33012187, 3.12683016, 3.60985229,
3.13567967, 3.04091274, 2.79081617, 2.24681148, 3.01308492,
3.13390634, 2.62421754, 2.84950197, 3.14997146, 2.8115476 ,
2.96886197, 2.83763083, 2.629946 , 2.54290102, 2.34122578,
2.37607212, 2.48398434, 2.53855716, 2.77539487, 2.03322798,
3.04139703, 2.51428649, 2.41627279, 2.71627046, 3.28692333,
2.3934723 , 2.24006949, 2.38903291, 3.08415164, 3.00592846,
3.3236818 , 2.30164389, 2.49705149, 2.32038787, 2.31905126,
2.85724025, 3.32402448, 2.43517675, 2.39080779, 3.36388056,
2.24023956, 2.23601882, 2.50811981, 2.26579952, 2.70407342,
2.78718985, 2.53058042, 2.42254394, 2.70912145, 2.47356857,
3.50739773, 4.13712714, 2.51878484, 3.2440031 , 3.25792593,
2.30137718, 2.43792313, 2.45941395, 2.39249835, 3.21559663,
2.15611185, 3.08006216, 3.06780437, 3.06301769, 2.60050401,
3.20895973, 3.1351887 , 2.91763408, 3.05620778, 2.03750108,
2.52834965, 2.33049102, 2.43343695, 2.0168816 , 3.12431451,
2.50222525, 3.99825598, 2.57822561, 2.51681819, 2.25007328,
2.83533802, 3.35756292, 2.45281512, 3.06815013, 2.57435351,
2.38146134, 2.708258 , 2.34382286, 3.2299799 , 2.38385809,
2.88164035, 2.78414276, 2.80458091, 2.54888 , 2.48812691,
2.67411691, 3.65683961, 3.89705094, 2.13622277, 3.10896253,
2.25086296, 3.71037469, 2.22377938, 2.30728764, 3.23058746,
2.34343878, 2.56619307, 2.21981811, 2.13998841, 2.76568513,
3.28342049, 2.48863247, 3.25055855, 2.63947923, 2.31840074,
2.30105462, 3.00444254, 2.31166571, 4.42768494, 2.7174959 ,
2.85826508, 2.30477289, 2.55878851, 2.30240468, 2.46380378,
2.84239276, 2.82745939, 2.41691966, 2.58231016, 3.13980817,
3.01236173, 2.55600658, 2.24512145, 2.59705335, 2.49516516,
3.02463562, 2.69289154, 2.34799626, 3.22931739, 2.87012699,
2.10262704, 2.73059268, 2.54160932, 2.35512616, 2.11636218,
2.57475808, 2.94832114, 2.45435295, 2.32372156, 3.62215395,
2.83902192, 3.16640954, 3.1748228 , 2.35869702, 2.32589843,
2.48882099, 2.36584085, 2.44506655, 2.43917074, 2.32993426,
2.68356839, 2.72129958, 2.92531269, 3.09599538, 2.52681104,
2.54137127, 3.08718725, 3.39137392, 2.44084056, 2.89543379,
2.91309734, 2.52258667, 3.30009846, 2.41334207, 2.39133951,
2.65149752, 2.84295428, 2.41927644, 2.12721803, 2.67279503,
3.90129761, 2.35955002, 3.07873895, 2.58833714, 2.12468042,
2.99351285, 2.29234099, 2.676997 , 3.1869331 , 2.91563948,
2.14759849, 2.38579725, 2.65789503, 2.30216668, 2.44144842,
2.84467909, 2.54199039, 2.5512212 , 2.28996965, 2.70075529,
2.61527494, 2.77577634, 2.77526298, 2.67856029, 2.54272668,
2.60607935, 2.11484214, 2.21168344, 3.20155217, 2.38725439,
2.6013742 , 2.28523107, 2.59084859, 3.19178262, 2.41879151]),
'p': array([5.70624404, 5.37106133, 5.94966064, 5.25038759, 5.73729336,
6.05627965, 5.74201777, 5.79288165, 5.12676565, 6.34634527,
5.57955835, 7.11577593, 5.50965093, 6.33756562, 5.84095549,
6.30639558, 6.08196031, 5.51365506, 5.53038799, 6.18471192,
6.56044265, 7.15799937, 5.32080657, 6.1821925 , 5.62912169,
5.83213011, 6.19243612, 5.44898176, 5.45378049, 5.81266153,
6.47149077, 5.64502774, 6.43162441, 5.35200372, 6.1053593 ,
5.55495358, 6.46311565, 6.06631049, 5.17223745, 6.21691099,
6.04859806, 6.22470735, 5.40169905, 5.37158358, 6.06269389,
6.28169852, 6.98879582, 6.16318743, 5.11542054, 5.73046315,
6.63257139, 5.75333764, 5.94156732, 5.11357033, 6.21320565,
5.82135572, 5.92912635, 6.50917152, 5.52886145, 5.65102862,
6.15766464, 5.60326943, 5.76641139, 7.34824598, 6.36629104,
6.04610273, 6.11413032, 5.58053192, 5.66587295, 5.34534555,
5.8033506 , 5.66600571, 6.4700561 , 5.5881194 , 5.58284105,
5.81501303, 6.6383782 , 4.73256853, 6.43304696, 6.06180348,
5.94893475, 6.01523443, 5.44807638, 5.73824231, 5.69370543,
6.13133138, 5.78076645, 6.33279262, 5.81164839, 5.67003246,
5.99922437, 5.91983423, 7.80220984, 6.98723179, 5.87095119,
5.84647048, 5.51899635, 6.42562082, 5.79000293, 6.26892584,
5.88989589, 6.55541258, 6.12048895, 5.84368591, 5.56358395,
7.12555536, 5.71512942, 7.78517185, 6.14288056, 5.42074593,
5.44135083, 5.73697285, 6.24398217, 6.59372118, 6.00846929,
5.27532465, 6.28194237, 6.7108551 , 5.9060128 , 5.85485159,
6.3119122 , 5.18952321, 5.6732246 , 5.48492635, 5.57022575,
6.02152523, 5.8353188 , 7.21680384, 6.52356208, 5.68823496,
6.44208169, 6.21137988, 5.87964974, 5.83086485, 5.75326553,
6.66838109, 5.13812982, 6.06015199, 6.39316973, 6.78224957,
6.5655279 , 5.33459071, 5.78070374, 5.64149717, 5.58857259,
7.46914904, 6.07384544, 5.46421816, 5.89028316, 5.49907368,
6.2155884 , 5.26462174, 5.3360168 , 5.53030998, 6.11329689,
5.44914025, 6.30512115, 6.18327836, 5.49226093, 6.5703632 ,
6.19089375, 6.00345792, 6.06934916, 5.68112511, 5.46110461,
5.48717734, 6.01620008, 5.4580158 , 5.47443716, 6.0056022 ,
6.48289885, 6.33940515, 6.07011469, 6.16279271, 5.6912318 ,
5.83962286, 6.64924345, 5.83551048, 5.60013593, 5.75175864,
6.43966859, 5.87598479, 7.74707927, 5.98292733, 5.75034339,
6.04486418, 6.24453437, 7.05333422, 5.29769247, 6.33784929,
5.93063413, 6.61710555, 5.80401143, 5.74452922, 5.94214609,
5.68208073, 7.19489264, 5.63267707, 5.39709139, 6.90799031,
5.86581422, 5.61997837, 6.62935647, 6.12576532, 7.25071766,
6.21646095, 5.71997084, 5.87826422, 5.12513811, 6.27206754,
5.71601598, 6.26874272, 5.63038748, 5.84715988, 5.87347818,
6.55099044, 5.60062021, 5.98866452, 4.997388 , 5.3145727 ,
5.7330925 , 6.78025875, 6.55392827, 5.96144844, 6.44687996,
5.29168784, 5.94133693, 5.28139219, 5.56123201, 5.95537051,
5.3182102 , 6.22345235, 5.20339333, 6.02321496, 5.3612156 ,
4.98564612, 5.95818574, 5.79189351, 6.59840102, 5.29215598,
6.7684961 , 5.81608309, 6.48207694, 6.05999151, 6.68421916,
7.41573043, 5.66859499, 5.96737149, 7.05445305, 6.08668225,
5.48479745, 6.49021738, 5.95764809, 6.02968433, 6.49667571,
6.03088332, 5.81942917, 4.99257055, 6.36178774, 5.31132167,
5.9024699 , 6.52877139, 5.99828705, 5.81072894, 7.22611548,
5.70489831, 5.95763155, 6.5107232 , 5.76841879, 5.62371096,
5.8842633 , 5.79597588, 5.77099754, 5.93555807, 5.70286243,
6.42342678, 5.71061527, 6.14556694, 6.4456679 , 5.31718525,
6.55704688, 5.93021145, 5.49177883, 6.29058735, 5.78998228,
6.00129274, 5.46719585, 5.59359663, 6.87466506, 5.78101273,
6.21538662, 5.70753408, 5.86143081, 5.90108864, 5.87802612,
7.48671572, 5.1559822 , 5.46112021, 5.90715187, 6.24107142,
5.86446572, 5.22346752, 6.42029884, 5.20561721, 5.40223058,
7.74483792, 5.38123809, 5.81216954, 6.32368162, 5.92070825,
5.47876213, 5.92871656, 5.65019724, 6.01244905, 5.63426616,
6.36913487, 6.25170549, 6.27608229, 5.58464311, 6.22317505,
5.87538121, 5.72139353, 5.76166329, 5.43313183, 7.2164197 ,
6.2046018 , 5.55334277, 7.53960532, 6.06724595, 7.28835395,
5.67621439, 5.28010745, 5.98303773, 6.02017185, 5.20332071,
6.64963427, 5.9971082 , 5.15849019, 5.28377252, 5.63238165,
5.91797499, 6.01875438, 5.78905089, 5.88639372, 6.38748802,
5.90625398, 5.85618922, 5.23437116, 5.17136621, 5.10858276,
5.73019875, 5.3869013 , 5.85779013, 5.7123118 , 5.41461769,
5.88601926, 5.3901849 , 6.20605238, 5.31545967, 7.18027106,
5.22159662, 6.80068376, 5.87011606, 5.65578889, 6.70234355,
5.78965915, 5.64843533, 5.79944426, 6.15090707, 5.63588454,
6.30336548, 5.70894875, 5.90822328, 5.67576734, 7.09541081,
5.2453633 , 5.47860127, 6.51993564, 6.24573007, 5.85733546,
5.9637007 , 6.55886257, 6.080745 , 5.75979353, 5.86009917,
5.98263275, 5.88525279, 6.27820229, 6.09739252, 5.64214397,
5.42043786, 6.34270984, 5.34440229, 6.31845861, 5.52173562,
6.24869895, 5.47738342, 5.84469407, 5.42350764, 5.20859837,
7.40773054, 6.08441306, 6.36596172, 5.90007712, 6.27078313,
6.3498056 , 5.68413458, 5.70475493, 5.78384471, 6.60704413,
5.83215267, 5.81044041, 5.22597652, 5.8188174 , 5.91651272,
5.57499264, 6.01129479, 5.83858414, 5.61069069, 5.99574566,
5.37030979, 6.07419591, 5.37908947, 5.17876845, 5.32470694,
6.4386985 , 5.6742873 , 6.05254741, 5.56886628, 6.21770883,
5.87937451, 5.39466521, 6.27247565, 6.76765243, 6.72479902,
6.20216476, 7.15692334, 6.0899845 , 6.39729493, 5.92078782,
6.61724689, 5.79752941, 6.83516001, 5.98007901, 5.78021516,
6.0824957 , 6.87078655, 5.69319414, 6.27522998, 5.11936159,
5.59992764, 5.6431302 , 5.1990592 , 6.03328177, 6.32656634,
5.16808396, 6.41855432, 7.95762747, 6.59343636, 5.6436994 ,
5.72493267, 5.62532376, 6.44993751, 6.04078532, 5.33168678,
5.77075493, 6.11340891, 5.69448182, 6.37162713, 5.78589627,
5.91352876, 6.26741958, 7.35599061, 5.47101057, 5.46113138,
5.82313572, 6.57248942, 5.90201024, 6.16447014, 7.66682539,
5.81266461, 5.67413033, 6.27292195, 5.64216309, 6.99977061,
5.72562018, 6.34193113, 5.28916606, 5.35626564, 5.39881676,
5.39330108, 6.16135152, 5.85512147, 6.67553405, 5.23283286,
5.60078745, 5.67083757, 6.03793105, 7.25207617, 5.97420912,
5.90605482, 5.7305207 , 6.14423881, 5.97256529, 5.31910459,
6.61885395, 5.36913821, 6.19893349, 5.5121757 , 5.66094374,
5.13028308, 5.84858738, 5.76781911, 5.55961347, 5.85335265,
5.64552061, 5.54774424, 6.36366804, 6.79683884, 6.21683451,
6.15033313, 5.98368629, 6.83739815, 6.67145056, 7.13261489,
5.18987747, 6.62973848, 5.37461551, 5.92036511, 5.83954582,
6.14856511, 5.61738733, 6.3509685 , 6.45067177, 5.76739679,
6.28806091, 5.1979803 , 5.40320186, 5.46757874, 6.8382215 ,
5.62745982, 5.4643109 , 6.11234706, 5.54444456, 5.48364356,
5.91471813, 6.70092261, 6.03714512, 5.57440441, 4.96862865,
6.21771843, 5.95738668, 6.1915673 , 5.719411 , 5.79469956,
6.09707197, 5.80307576, 5.70775579, 6.03057055, 6.14211497,
6.1459022 , 6.56216517, 6.62695788, 5.57788858, 5.61095655,
6.01163654, 5.17938687, 5.47724996, 5.70500867, 5.22350877,
5.2400008 , 5.86959566, 7.65844025, 5.71676479, 5.27432127,
6.90815616, 5.5671229 , 7.00032907, 6.75768394, 5.65632013,
6.79744611, 5.79989029, 5.28570619, 6.49779527, 6.24912339,
5.67170807, 5.54235334, 5.78300569, 7.40121506, 5.81975687,
5.92151342, 5.48705729, 5.74493998, 5.75724707, 7.42011446,
5.6161644 , 5.86288781, 6.46505881, 6.23091917, 6.29724834,
6.18415196, 7.28707576, 5.45595176, 5.89864599, 5.3324193 ,
5.51449215, 5.48746505, 6.6832373 , 6.27877068, 5.3995094 ,
6.06597446, 5.62486027, 6.46658458, 6.85429979, 5.66428451,
6.37033296, 6.61925047, 5.88114603, 6.93618759, 5.86024357,
5.85678185, 5.60003947, 6.36203574, 5.99409025, 5.86185813,
5.32013317, 6.04795279, 6.66852885, 5.41786375, 7.36918226,
5.23423406, 5.58588253, 5.35619808, 6.31157414, 6.17139063,
8.91401979, 6.13318374, 6.39462942, 7.02101364, 5.57327431,
5.4670133 , 6.3804 , 6.32796974, 6.20638881, 6.52641529,
6.45409442, 5.68913739, 5.95001463, 6.44578678, 6.21972877,
6.09773558, 5.51990772, 5.42206483, 5.51020425, 5.76404538,
5.68229219, 5.60714046, 5.56191383, 5.51898264, 5.20029783,
5.76907847, 6.1029023 , 6.12850202, 7.110454 , 6.47370596,
6.92850392, 5.95222539, 5.70128949, 6.39317116, 5.53714826,
5.54048013, 5.83868655, 6.26178238, 6.17458248, 6.159596 ,
6.2225158 , 5.44735682, 6.57006437, 6.14793256, 5.93305339,
5.66567727, 6.45485601, 6.50742427, 5.68126156, 5.38856333,
5.58196147, 5.7070563 , 7.46779489, 6.03888854, 6.76626932,
5.69922857, 5.31422858, 5.44294234, 5.37591743, 6.42501693,
6.67274293, 5.15792373, 5.32904024, 6.11966862, 5.39277646,
5.80170246, 6.07024379, 6.61526266, 5.97339237, 6.03653053,
5.89392144, 5.10114189, 5.53077142, 7.35200657, 5.49816099,
6.44840879, 6.6446231 , 5.36745656, 5.89401682, 5.94147356,
6.73557035, 5.89527343, 6.35442818, 6.62059296, 6.40123677,
7.3293085 , 5.40458394, 5.64371305, 8.63679637, 5.83984874,
5.93791886, 5.1236156 , 6.69423557, 5.825242 , 4.97895222,
5.68532008, 5.8895796 , 5.40423644, 5.97251742, 5.79754107,
6.05741793, 6.0897106 , 6.4082216 , 6.82103 , 6.32903267,
5.89899942, 5.91287841, 5.4595 , 6.41416544, 6.49814086,
5.90188135, 5.92729593, 5.58935111, 5.38691449, 5.49800766,
5.67331756, 6.58536491, 5.06882124, 5.18390333, 5.80053732,
5.99070803, 5.99324689, 6.65936008, 5.98628677, 5.47982169,
6.58946472, 5.40689995, 5.51645979, 5.6811021 , 5.52085454,
5.67722748, 5.04453567, 5.47590133, 6.30910818, 5.55374324,
5.6887584 , 5.84887177, 6.49213225, 6.2472879 , 5.85870445,
6.10560749, 5.93203231, 5.26628912, 5.86428379, 5.85746916,
5.75454239, 5.49225117, 5.79846374, 6.50783066, 7.20876902,
6.38311015, 6.59537466, 6.20413549, 5.57228835, 6.0090172 ,
6.33165184, 5.44969641, 6.33675116, 6.78175297, 6.88729464,
5.84628824, 6.08164219, 6.24139347, 5.61425671, 5.22769806,
5.73957315, 5.90621835, 5.59658619, 6.55603818, 5.0314973 ,
6.34110487, 5.7277146 , 5.73408459, 6.18371618, 6.95702119,
5.82882302, 5.0870591 , 5.77512972, 6.83660163, 6.05304077,
6.7653302 , 5.35616079, 5.79122327, 5.48542831, 5.15708313,
6.76130504, 6.61264327, 6.31898285, 5.41125036, 6.61358027,
5.40406561, 5.48385104, 5.64098655, 5.55567231, 5.72973012,
6.1910845 , 6.03411505, 5.51734716, 5.76130328, 6.21174368,
6.9261949 , 7.24170464, 5.53811693, 6.54032999, 6.98604352,
5.41371689, 6.10761234, 5.48584709, 5.73037559, 7.23227015,
5.47797917, 6.64720285, 6.06665692, 5.2440311 , 6.00634265,
7.58106662, 6.44349654, 5.59631313, 6.44026031, 5.28611496,
5.81271724, 5.49768557, 5.99820802, 4.94089332, 6.48221848,
5.60783422, 6.92830923, 5.82726604, 5.64984189, 5.44033877,
5.76851304, 6.7543262 , 5.31996745, 6.46534945, 6.13204018,
6.24769292, 6.44941724, 5.54019012, 6.47545099, 5.87240807,
6.31835563, 6.01809028, 6.04096948, 5.87221448, 5.7578206 ,
6.32833785, 6.60468398, 8.07286649, 5.4044541 , 6.44781702,
5.41811364, 7.55886224, 5.62587889, 5.14180231, 6.52859172,
5.76931005, 5.96083257, 5.61891961, 5.58433354, 6.11799399,
6.18700511, 6.01736258, 6.2665853 , 5.7625539 , 5.54360045,
5.41883792, 6.17552061, 5.12563712, 8.11665572, 6.19088909,
6.41508778, 5.68091292, 6.06626978, 5.83404379, 5.84757716,
6.21020009, 6.19988433, 5.40655841, 6.04535317, 6.17271134,
6.85422543, 5.77053656, 5.69971462, 5.74141284, 5.71191685,
6.6672702 , 6.56887635, 5.43919644, 6.92661515, 6.33553748,
5.23126187, 6.37067124, 5.73948459, 5.39955449, 5.43779989,
5.96909257, 6.15906425, 5.83772415, 6.07169453, 6.68161558,
6.34910473, 6.33521699, 6.8564099 , 5.48497989, 5.66934778,
5.85588506, 5.41527529, 5.69974425, 5.55056643, 5.7797931 ,
5.7472191 , 5.81222862, 6.06062131, 6.32816021, 5.97508717,
5.96923562, 6.36226234, 6.47920375, 5.23281638, 6.12807916,
6.71717073, 5.71169722, 6.28262319, 5.62119373, 6.06152522,
6.04046227, 6.16172317, 5.77858971, 4.948859 , 5.79442108,
7.46804015, 5.78165605, 6.59078287, 6.04998719, 5.48990611,
6.27878594, 5.42390402, 5.98819154, 6.56167886, 6.22173767,
5.11380573, 5.38536374, 5.60954265, 5.47585052, 5.31322493,
6.56657217, 6.19568486, 6.12361093, 5.43266029, 6.05667023,
5.62441163, 6.54752291, 6.05700633, 6.00616961, 5.96160264,
5.69631483, 5.43034782, 5.24372553, 7.05622564, 6.13105398,
5.61398139, 5.2734809 , 5.90783745, 6.46324104, 5.62238886]),
'q': array([1.0566162 , 1.25376234, 1.09245044, 0.88305528, 1.27120104,
1.109005 , 1.12277354, 1.108077 , 0.79263106, 1.435792 ,
1.01435861, 1.70770627, 0.90959231, 1.40739289, 1.18638484,
1.18301147, 1.14841343, 1.03663384, 1.12843775, 1.40447184,
1.36236489, 1.84584944, 0.97797645, 1.23428723, 0.92635691,
1.18732311, 1.12296164, 0.84902277, 0.90752313, 1.22540157,
1.82337589, 1.09551931, 1.51654226, 0.90559341, 1.100898 ,
0.84439328, 1.38551784, 1.15922589, 0.8161577 , 1.165577 ,
1.34136374, 1.20693349, 0.93217132, 1.00637932, 0.86763715,
1.33805911, 1.6525693 , 1.16578971, 0.88538617, 0.96737283,
1.52149294, 1.113857 , 1.27045741, 0.89470849, 1.37075629,
1.17877053, 1.20474263, 1.29131107, 0.93568999, 0.98372404,
1.2625659 , 1.02352661, 1.30329586, 1.89837352, 1.37969009,
1.23844144, 1.07130341, 1.22796397, 1.0929567 , 0.93594205,
1.30919243, 0.88972937, 1.44561733, 0.9467765 , 1.04133532,
1.0918116 , 1.43182196, 0.72656003, 1.39857148, 1.36333728,
1.20991635, 1.53222264, 0.95161763, 0.96735629, 1.00452753,
1.23273072, 1.26541394, 1.34427378, 1.25329154, 1.0330067 ,
1.18373767, 1.07438104, 2.11335711, 1.73128841, 1.15331915,
1.19051245, 1.01633607, 1.69106659, 1.18491651, 1.23649366,
1.06797524, 1.40976114, 1.30237822, 1.23492482, 1.11863062,
1.77982134, 1.14561431, 1.85983116, 1.31141346, 0.97032552,
0.91108234, 1.16468213, 1.27260922, 1.79579097, 1.1513133 ,
0.87437194, 1.30588449, 1.53814068, 0.98444006, 1.02516698,
1.18826054, 0.81245289, 1.0062283 , 1.17780768, 0.98546494,
1.21129306, 1.09243022, 1.76779151, 1.28064061, 0.93815442,
1.73138061, 1.0455454 , 1.18003707, 1.34269876, 1.21384979,
1.56696706, 0.9845951 , 1.16913277, 1.40610149, 1.38717855,
1.58212975, 1.11101417, 0.98330275, 0.97904477, 1.07143695,
1.58724635, 1.26387348, 0.99524072, 1.34902136, 1.03215048,
1.30444435, 0.91557988, 0.96906745, 0.83962587, 1.20122099,
1.17393385, 1.1708197 , 1.72842139, 1.17678339, 1.61125918,
1.41170652, 1.49159495, 0.933364 , 1.11391253, 0.87205657,
1.01856679, 1.06902394, 1.01326139, 0.81835905, 1.12177607,
1.57518777, 1.47979297, 1.23302898, 1.09954593, 0.93060404,
1.07867628, 1.29377599, 1.29899126, 1.04364707, 1.11973205,
1.81370081, 0.92023491, 2.02021949, 1.17231431, 1.15144829,
1.1861733 , 1.10710542, 1.66517416, 0.81700968, 1.41294221,
1.12760636, 1.83881165, 0.93253206, 1.34043429, 1.22834186,
1.07142766, 1.4716842 , 1.11569487, 1.09369068, 1.64275184,
1.30457547, 1.07529495, 1.4007884 , 1.18436525, 1.69744896,
1.22595897, 1.22380077, 1.42575826, 0.80636895, 1.25405933,
1.07675209, 1.21696709, 0.8165914 , 1.03614283, 1.06551676,
1.27514696, 1.11904691, 0.95882621, 0.82118409, 0.97124796,
1.12934826, 1.59014115, 1.53552308, 1.09691634, 1.29403951,
0.75370927, 1.18313751, 0.99140201, 1.15327648, 1.36169639,
0.86428084, 1.29226544, 0.80790594, 1.3800482 , 0.77848472,
0.99110636, 1.32106461, 1.03244756, 1.61836267, 0.83661854,
1.38875973, 1.08743651, 1.30643891, 1.32274169, 1.25762475,
1.92851226, 0.98981173, 1.15967498, 1.60149765, 1.20463869,
1.16466399, 1.5293742 , 1.45625541, 1.32769177, 1.89420225,
1.30141111, 1.07811001, 0.90808105, 1.24645058, 0.84263404,
1.28207818, 1.44481605, 1.02789636, 1.31844558, 1.57738001,
1.04422466, 1.14707448, 1.43545907, 1.3221654 , 1.13951573,
0.99102773, 1.0093448 , 1.26244855, 1.19974731, 1.24816986,
1.58476433, 1.36792148, 1.02641722, 1.55244223, 0.95093474,
1.38117101, 1.21717462, 0.88095787, 1.46316835, 1.02299673,
1.26455181, 1.03588016, 0.87857469, 1.55004592, 1.03436747,
1.26477084, 0.94400732, 1.098814 , 1.17472405, 1.32502385,
1.96648767, 0.93583589, 1.10718917, 0.97778523, 1.34683118,
1.36870523, 0.99861421, 1.52305749, 0.96154604, 0.99553846,
2.08079626, 0.75505459, 1.26373938, 1.24098638, 1.16150702,
1.08178469, 1.23972417, 1.06824216, 1.43295985, 1.01916952,
1.02886031, 1.09011046, 1.25538104, 1.37566403, 1.39710994,
1.45314881, 1.05501548, 1.08652281, 1.14361851, 2.14045644,
1.17172932, 1.16206473, 2.03011627, 1.07560492, 2.01463744,
1.01911031, 0.84999519, 1.32378806, 1.3677255 , 0.96129406,
1.5525302 , 1.02451783, 0.89214586, 1.19307645, 1.04066784,
0.99710328, 1.24187393, 1.20837267, 1.53323986, 1.29001076,
1.08205929, 1.25689768, 1.06524248, 0.97866025, 0.86356432,
1.01046338, 1.00922262, 1.33717097, 1.15514849, 0.85935987,
1.18736701, 1.03133211, 1.50981443, 1.17777347, 1.60921368,
0.78111418, 1.55412848, 1.28363124, 1.37635711, 1.52893882,
1.4660584 , 1.03113713, 1.16258506, 1.32081225, 0.95058744,
1.46929534, 1.27936809, 1.37061414, 1.08453969, 1.43680149,
0.74844595, 0.94941596, 1.47726196, 1.29015432, 1.30453413,
1.37726454, 1.07876174, 1.39019178, 1.30281415, 0.93465208,
1.12345553, 1.27476288, 1.15171814, 1.3093559 , 0.96255163,
0.972842 , 1.42053105, 0.92014291, 1.11768386, 1.07096635,
1.2033301 , 1.01946594, 1.1362796 , 0.98782635, 0.75965873,
2.13094559, 1.34883616, 1.25154757, 0.98150886, 1.28285139,
1.23661025, 1.12132109, 1.31231681, 0.80267257, 1.45963847,
1.07463656, 1.27336545, 0.80647257, 0.99278475, 0.8695656 ,
0.99661129, 1.55262721, 1.2736963 , 1.08187495, 1.19585856,
0.70949484, 1.19967909, 0.93392027, 0.76888047, 1.07270013,
1.49983813, 1.07336403, 1.25913864, 1.0861183 , 1.27517861,
1.06721703, 0.91480921, 1.2094785 , 1.3658471 , 1.40254056,
1.16057455, 1.68989983, 1.23112114, 1.50954737, 1.02770555,
1.64457364, 1.05082153, 1.60889818, 1.16677991, 1.16192148,
1.06854582, 1.53477334, 1.25988194, 1.32701139, 0.73433182,
1.17325783, 1.30514409, 0.87710048, 1.29360221, 1.65712117,
0.80751299, 1.41554386, 1.96883102, 1.55148027, 0.99588281,
1.14815605, 1.05448503, 1.43651476, 1.43845446, 1.05464528,
1.10659115, 1.15029765, 1.18201982, 1.21198343, 1.13043192,
1.02726983, 1.30928903, 1.8518633 , 0.90210698, 1.05964375,
1.08546483, 1.3376086 , 0.90197722, 1.41225532, 2.07001471,
1.21046985, 1.0234712 , 1.56914099, 1.17527154, 1.37536294,
0.88665864, 1.38460976, 0.93229992, 0.94112497, 0.96667763,
0.8157068 , 1.36870116, 1.20844147, 1.48471167, 1.03326306,
0.96725691, 1.1179918 , 1.40765039, 1.51828662, 1.11224587,
1.10117226, 1.22508648, 1.33654532, 1.08775922, 1.01461476,
1.29708354, 0.85913723, 1.32461625, 1.0605225 , 1.20064789,
0.8319489 , 1.299736 , 1.09545361, 1.08219493, 1.12004916,
0.98974219, 1.11722502, 1.35350242, 1.46958211, 1.38681907,
1.15167545, 1.18151525, 1.33134589, 1.8105603 , 1.74216111,
1.00521571, 1.29152864, 0.96481191, 1.1314792 , 1.24436438,
1.26730096, 1.05448925, 1.50158799, 1.52760355, 0.91292584,
1.42497761, 1.00296582, 0.93778388, 1.05080741, 1.73611525,
1.02188326, 1.24191684, 1.50722121, 1.16089353, 1.27809544,
1.0437922 , 1.59581373, 1.14530513, 1.13025698, 0.81537931,
1.47474613, 1.15271512, 1.09432728, 0.93114188, 0.99949117,
1.65331665, 1.1005242 , 1.06493492, 1.12924055, 1.26227388,
1.18832849, 1.29564576, 1.54784874, 0.88913922, 1.03006837,
1.29078847, 1.08948573, 1.17945361, 1.1601502 , 0.84999414,
0.83094391, 1.20140566, 2.04994268, 0.90671463, 1.09752539,
1.50911939, 0.97008555, 1.51401449, 1.45225389, 1.09313164,
1.54211056, 1.05032298, 0.91541695, 1.2915045 , 1.28220084,
1.32131972, 1.00435524, 1.1101688 , 1.98260463, 1.12630325,
1.20970464, 0.88447174, 1.24440375, 1.14691293, 1.85846003,
0.9575451 , 1.10795825, 1.41891549, 1.2192124 , 1.39900219,
1.59044237, 1.5458873 , 0.8533792 , 1.37225069, 0.94148117,
0.83078719, 0.88826846, 1.38469513, 1.29018465, 0.80689963,
1.18015603, 1.12724408, 1.37849454, 1.64559975, 1.21897111,
1.46882905, 1.19267431, 1.15085509, 1.56124839, 1.10156639,
1.04513404, 1.12712273, 1.50643369, 1.02208015, 1.1861 ,
0.80464537, 1.20066083, 1.32730321, 1.05045038, 1.80659549,
0.9688652 , 0.99192942, 0.9927478 , 1.40177754, 1.40962549,
2.56025494, 1.46281956, 1.45284405, 1.63531192, 0.91380182,
0.926519 , 1.35105936, 1.21112722, 1.36513393, 1.57215191,
1.47635187, 1.13899888, 1.07379039, 1.5286684 , 1.30863102,
1.25490494, 1.00965972, 1.01524744, 1.40098574, 1.13147243,
1.11696108, 1.04731288, 1.10333959, 1.16374122, 0.87803334,
1.11506834, 1.27904809, 0.96757464, 2.05051036, 1.31352064,
1.56937618, 1.2432324 , 1.17245168, 1.61140751, 1.03365499,
0.9326944 , 1.28466096, 1.31094971, 1.30078299, 1.19853678,
1.3752735 , 0.93468404, 1.21245227, 1.16428167, 1.19441904,
1.07734569, 1.48804858, 1.70565358, 0.94838282, 0.84366036,
1.09249893, 1.28274918, 2.05658227, 1.27025954, 1.36760745,
1.06415416, 0.90461944, 1.02844079, 1.03916558, 1.37759697,
1.49722936, 0.87485409, 0.95483545, 1.03494278, 1.07588794,
0.960811 , 1.41686852, 1.56927108, 1.12367915, 1.25237234,
1.11816076, 0.81756583, 1.05002074, 1.89405167, 1.04634835,
1.27582505, 1.29455757, 1.16595915, 1.21138567, 1.24580298,
1.37602563, 1.01943989, 1.6901289 , 1.47005923, 1.63475099,
2.07840961, 1.05483665, 1.00163224, 2.28230945, 1.17799948,
1.26747361, 0.92999014, 1.54278948, 1.14275501, 0.66394064,
1.14443786, 1.47668859, 1.18062277, 1.15663332, 1.40072719,
1.11249823, 1.31873076, 1.78968529, 1.31797866, 1.43451522,
1.27014858, 1.2561851 , 0.96902689, 1.26210343, 1.40726255,
1.2712937 , 1.08559503, 1.25299262, 0.86289203, 0.95499867,
0.96963946, 1.45163228, 0.9138022 , 0.81264291, 1.10588396,
1.27500111, 1.37598797, 1.26058897, 1.19713083, 0.88194839,
1.23313914, 1.00130966, 1.03344887, 0.97557154, 1.01708415,
0.88340398, 0.76276991, 1.1507478 , 1.35268258, 0.82370566,
1.22526005, 1.40863565, 1.16657883, 1.30766453, 0.94438435,
1.10101386, 1.05789023, 1.00750056, 1.03700437, 1.43513646,
1.0454855 , 1.25594187, 1.00425057, 1.5186673 , 1.85681239,
1.46778898, 1.44681056, 1.35204177, 0.87822987, 1.44231579,
1.62254636, 1.06792369, 1.26765106, 1.6032504 , 1.33853911,
1.22597573, 1.45104293, 1.21461579, 1.04821056, 0.93829141,
1.06422333, 1.01435778, 1.11799223, 1.14949972, 0.87505101,
1.39651654, 1.10183721, 1.05621558, 1.28970571, 1.6261345 ,
1.0572603 , 0.93737683, 1.01363184, 1.49395369, 1.32404177,
1.70352306, 1.08887755, 1.15529111, 0.95650986, 0.97302652,
1.29784322, 1.63876305, 1.00897261, 1.11274438, 1.5840717 ,
0.83119024, 0.95556377, 1.2193915 , 0.84961194, 1.38618259,
1.32312453, 1.28523895, 1.12756259, 1.09782134, 1.11800612,
1.41804741, 1.95313746, 1.13026626, 1.60896206, 1.60601515,
0.94282886, 1.10173204, 0.92178713, 1.09712999, 1.68768454,
0.83936666, 1.51313279, 1.39227256, 1.46156006, 1.11601501,
1.71586627, 1.38134456, 1.22986776, 1.46866753, 0.99974613,
1.14738161, 0.93528792, 1.06678521, 0.795915 , 1.43427055,
1.16559231, 1.89567818, 1.17357944, 1.09433647, 1.01017582,
1.16909098, 1.77127611, 1.10303616, 1.33890277, 1.21025708,
1.08035779, 1.27896705, 1.02470856, 1.42697611, 0.98752793,
1.31184956, 1.28009608, 1.35317202, 1.20751128, 1.06724108,
1.13389021, 1.69526337, 1.91503942, 0.90387799, 1.42764509,
0.81904228, 2.01231496, 0.95135746, 0.91677554, 1.55140254,
1.10357622, 1.11781771, 0.87222945, 0.91814592, 1.26774713,
1.55910115, 1.2307213 , 1.37946133, 1.21086455, 0.99704626,
1.12091137, 1.29753281, 0.80902749, 2.51074647, 1.30464843,
1.46161861, 0.96001931, 1.03927135, 1.09835334, 1.1422728 ,
1.31212688, 1.26958616, 0.94437769, 1.15686408, 1.55605054,
1.78979834, 0.942659 , 0.88316255, 1.25601322, 1.18837225,
1.52709792, 1.0980946 , 1.00332165, 1.64496724, 1.33971484,
0.88666051, 1.4082144 , 1.21472994, 0.99941629, 0.87689294,
1.13974687, 1.4333903 , 1.16571853, 0.97881945, 1.87028773,
1.4143105 , 1.49789714, 1.6932906 , 0.9897278 , 1.12870336,
1.14086222, 1.00980581, 1.00275585, 1.02953751, 1.03219498,
1.12712152, 1.27990815, 1.41397692, 1.42322701, 1.20189251,
1.15575773, 1.56918131, 1.46972683, 0.96646546, 1.30854666,
1.36564799, 1.04328073, 1.6659114 , 1.00726359, 1.1457056 ,
1.2701413 , 1.43287274, 1.07415366, 0.816738 , 1.37202376,
1.73564221, 1.01453123, 1.48244637, 1.15823299, 0.81695491,
1.4791712 , 1.01869272, 1.25213033, 1.47520532, 1.24606458,
0.86813754, 1.0090387 , 1.23604002, 1.05828608, 0.98427156,
1.4721786 , 1.17465525, 1.22946426, 0.94995553, 1.19801864,
1.16586187, 1.37102998, 1.22922074, 1.38128324, 1.23496723,
1.18416313, 0.82673038, 0.84899638, 1.46845393, 1.12251401,
1.17889724, 0.97488444, 1.22115206, 1.48049052, 0.96405569]),
'ln_w': array([-1.31195734, -1.32217092, -1.30172757, -1.81404549, -1.44193511,
-1.50104948, -1.43014925, -1.46381014, -1.71260888, -0.9604038 ,
-1.15536597, -1.05056772, -1.69906923, -0.96522914, -1.51547173,
-0.95435842, -0.99871842, -2.08675277, -1.7588894 , -1.28036724,
-1.45530649, -0.85172482, -1.62416312, -1.57439057, -1.47838211,
-1.58907333, -1.28155055, -1.59245277, -1.56773534, -1.09784413,
-1.08012657, -1.50928108, -1.33004604, -1.87338225, -1.53412443,
-1.4573201 , -0.92633321, -1.82696625, -1.80553305, -1.50189478,
-1.02432776, -1.45485748, -1.35067758, -1.81536358, -1.12154393,
-1.15527911, -0.57935966, -1.65257744, -2.02564458, -1.59760809,
-1.50113294, -1.73820786, -1.47167002, -1.88373352, -1.81108874,
-1.57867541, -1.42673332, -1.14361119, -1.64159389, -2.1829728 ,
-1.65446098, -1.24323805, -1.24063899, -1.06435427, -1.53611899,
-1.40330718, -1.16519839, -1.9165168 , -1.75298711, -1.54504156,
-1.04000049, -1.79722743, -1.25830282, -1.6489482 , -1.52705584,
-1.4903268 , -1.26546295, -1.55861952, -1.18967084, -1.13707803,
-1.2694326 , -1.12883968, -1.51566527, -1.23804519, -1.49988152,
-1.56762516, -1.10874024, -1.25014894, -1.46642336, -1.75703328,
-1.32487671, -0.99530868, -0.92045828, -1.06814058, -1.34020597,
-1.3637442 , -1.82698479, -1.32638076, -1.33749751, -1.2132249 ,
-1.45584238, -1.25022262, -0.93875383, -0.9602725 , -1.76910659,
-0.65532103, -1.75646488, -1.3614423 , -1.33125549, -1.53789618,
-1.4535907 , -1.46933617, -1.82791161, -1.07745958, -1.14259106,
-1.77549962, -1.10756808, -1.38356926, -1.68622702, -1.59789647,
-1.11328876, -1.96948066, -1.59028466, -1.59479345, -1.72649501,
-1.57938478, -1.42075227, -1.11885017, -1.09718222, -2.2874669 ,
-1.01656548, -1.21812099, -1.84646508, -1.60656172, -1.27709308,
-1.30470852, -1.75742663, -1.29916683, -1.21655095, -1.28626397,
-1.03196303, -1.66129574, -1.54306545, -1.25582536, -2.06413876,
-0.48052537, -1.42408554, -1.52624435, -1.42654758, -1.71455927,
-1.36609277, -1.87257957, -1.90607187, -1.3768388 , -1.31368496,
-1.52314976, -1.32285265, -1.13787453, -1.36669234, -0.93478078,
-1.66758132, -1.15444079, -1.35825071, -1.6080337 , -1.52687544,
-1.60735702, -1.63488195, -1.54430768, -1.55211408, -1.06220443,
-0.62150277, -1.13088551, -1.52583835, -1.24577143, -1.81457973,
-1.79175338, -1.15223022, -1.65595172, -1.94736185, -1.28893126,
-1.14987076, -1.85632868, -0.7529941 , -0.95989489, -1.64435274,
-1.02425883, -1.64281913, -1.15654641, -1.91771238, -1.23567043,
-1.60634719, -1.05170402, -1.51963086, -1.39644465, -1.68215238,
-1.6670511 , -1.17933389, -1.50234149, -1.7485624 , -1.05477934,
-1.32349988, -2.3004407 , -1.20470786, -1.49237235, -0.87629498,
-1.37400471, -1.6220114 , -1.29010928, -1.50177789, -0.89339397,
-1.38459081, -1.23387615, -1.46706245, -1.84978202, -1.39648248,
-1.19784513, -1.55346451, -1.64060629, -1.8147267 , -1.54784961,
-1.50863548, -0.73405786, -0.81318217, -1.43002622, -1.11722936,
-1.90649533, -1.43315578, -1.65303979, -1.65396659, -1.64358739,
-1.95742088, -1.37867492, -1.77804089, -1.61004609, -1.54302899,
-1.78922641, -1.32817952, -1.48965718, -1.29875472, -1.74850475,
-1.23587088, -1.53742388, -1.1661761 , -1.01668118, -1.33929159,
-1.01537742, -1.50117173, -0.97256586, -1.24685463, -1.19997822,
-1.5843103 , -1.46418826, -1.17176176, -1.64964697, -0.79402757,
-1.1014245 , -1.8089726 , -1.36495677, -0.91939196, -2.48560314,
-1.44344544, -1.45277511, -0.8193564 , -1.39349374, -0.83583023,
-1.80618402, -1.42418538, -1.11736653, -1.02754109, -1.6671382 ,
-1.41461872, -1.69376301, -1.48245544, -1.36263401, -1.6022642 ,
-1.30543827, -1.59374722, -1.45424336, -1.55070123, -1.80099602,
-1.10730495, -1.75064021, -1.52813534, -1.1967909 , -1.58647161,
-1.50320338, -1.66804375, -1.327074 , -0.88197292, -1.42666807,
-1.12586814, -1.51491393, -1.50609337, -1.29923828, -0.96436356,
-0.98964984, -1.63265892, -1.81990544, -1.61043697, -1.19488522,
-1.33737094, -1.61960966, -0.82344953, -1.6074084 , -1.83792423,
-0.66029181, -1.53689256, -1.24346527, -1.60479822, -1.35482762,
-1.60221688, -1.36228012, -1.6494166 , -1.22575077, -1.62265419,
-1.13117132, -1.04681779, -1.17583279, -1.4879929 , -1.78521617,
-1.17129263, -1.39129495, -1.82840784, -1.43703171, -0.87053821,
-1.49647144, -1.27529984, -1.03370247, -1.45495596, -0.6009193 ,
-1.82286163, -1.67160208, -1.28833677, -1.20808545, -1.62297974,
-1.07949628, -1.50502647, -1.92122771, -1.31362827, -1.80281668,
-1.31390311, -0.7100423 , -1.13203045, -0.95775772, -1.32584946,
-1.7571177 , -1.34091469, -1.39232655, -1.43998434, -2.04053177,
-1.77984514, -1.44649 , -1.15464524, -1.72383898, -1.61368071,
-1.80621932, -1.47667106, -1.20766323, -1.43419046, -1.13214078,
-1.96616881, -1.56311306, -1.5311172 , -1.31332395, -0.88802868,
-1.36247711, -1.750733 , -1.65189241, -1.12909943, -1.37392436,
-1.15696826, -1.24102154, -1.27860057, -1.70144188, -0.71332236,
-1.71659617, -1.5252074 , -1.50000411, -0.95047535, -1.15077189,
-1.12579707, -1.61269203, -1.11578029, -1.480392 , -1.50801571,
-1.06982425, -1.62410549, -1.0986155 , -1.45715105, -1.92415521,
-1.58943112, -1.23034342, -1.79960739, -1.23226073, -1.12735196,
-1.51264456, -1.985936 , -1.90658085, -1.70412454, -2.01253227,
-0.66670815, -1.12370107, -0.82872954, -1.27407791, -1.17881764,
-1.46423485, -1.37649563, -1.06952651, -1.34252147, -1.31245728,
-1.59594703, -1.65944842, -2.3849166 , -1.65960314, -1.31755756,
-1.54497703, -1.30647737, -1.34462319, -1.59554807, -1.44766691,
-1.66105852, -1.22600019, -1.7583772 , -1.86451563, -1.41181384,
-0.88790808, -1.49819301, -1.58052081, -1.55178381, -1.15369742,
-1.26334134, -1.58578542, -1.14917911, -1.28405711, -0.99936068,
-1.5203551 , -0.71994774, -1.45040846, -0.8413924 , -1.46298429,
-1.47562974, -1.23002953, -1.25656507, -1.66789968, -1.1909167 ,
-1.6844495 , -1.22232213, -1.42446249, -1.42272372, -1.82656685,
-1.55611996, -1.60920671, -1.6206474 , -1.50253526, -1.23571746,
-2.11430924, -1.22715735, -0.84075322, -0.73222105, -1.39278178,
-1.028889 , -1.41692007, -1.48672186, -1.5789359 , -1.71464863,
-1.55750072, -1.04016 , -1.26721377, -1.78801126, -1.09445827,
-1.19985002, -1.34285847, -0.92143505, -1.80350221, -1.59419785,
-1.23812667, -1.22774967, -1.64113453, -1.41322079, -1.41535138,
-1.38505214, -1.84334755, -1.19428766, -1.59562118, -0.51236094,
-1.21861469, -1.4588142 , -1.67250733, -1.99100204, -1.90687617,
-1.57478678, -1.27213707, -1.72076114, -1.17601516, -1.79462766,
-1.56664131, -1.48972144, -1.43802673, -0.88957915, -1.52424983,
-1.39572993, -1.12705223, -1.43376642, -1.22425604, -1.74680235,
-0.79872121, -1.56629131, -1.33749443, -1.70486767, -1.77220191,
-1.56019491, -1.30794495, -1.46061299, -1.79419009, -1.67669698,
-1.37685013, -1.77367801, -1.2082272 , -0.99049623, -1.58672979,
-1.780993 , -1.42429685, -1.17019925, -0.92854506, -1.12828096,
-1.46418576, -1.22828292, -1.66569136, -1.69847557, -1.40311154,
-1.19995359, -1.51843352, -1.25185976, -1.30993886, -1.89455724,
-1.67771725, -1.99334112, -1.80909227, -2.00948359, -1.23143896,
-1.78742921, -1.60692035, -0.88226878, -1.14384238, -1.36060566,
-1.20720688, -1.16412635, -1.57136947, -1.46304205, -1.38914484,
-1.64482029, -1.59774164, -1.09084806, -1.58357054, -1.61978349,
-1.1910722 , -1.43952345, -1.68429694, -1.42387942, -1.38467387,
-1.48008302, -1.13560965, -0.50917518, -1.73656941, -1.45073899,
-1.29263169, -1.83545455, -1.2540913 , -1.57334732, -1.57810013,
-1.93868613, -0.86516093, -0.94551146, -1.63625499, -1.6864298 ,
-0.69270494, -1.46883827, -0.94333878, -0.97127442, -1.23095485,
-0.73197751, -1.57957872, -1.63931288, -1.39462479, -1.19807402,
-1.37808516, -1.74721005, -1.87699066, -1.24716694, -1.28748591,
-1.13193754, -1.93393115, -1.60225067, -1.31614662, -1.30294197,
-1.92729078, -0.92329081, -1.29728048, -1.50351679, -1.95362326,
-1.12937821, -0.70907006, -1.38347828, -1.36853766, -1.90650076,
-1.47894036, -1.91351733, -1.15608289, -1.1389485 , -1.77333672,
-1.00928356, -1.24348857, -1.32142458, -0.94576004, -1.20414897,
-1.19944789, -1.26335025, -1.51759897, -0.78233079, -1.39736001,
-1.85264754, -1.54175636, -1.20178599, -1.45624349, -1.11524646,
-1.63462442, -1.1028531 , -1.25504467, -1.35451109, -0.62275425,
-1.77418525, -1.41839731, -1.44027933, -1.35436014, -1.31848933,
-0.37015314, -1.10075574, -1.15045995, -0.87608689, -1.58183577,
-1.80551063, -1.2637044 , -1.58239042, -1.62169521, -1.09976889,
-1.2399976 , -1.25007642, -1.35007966, -1.12042606, -1.3262015 ,
-1.25330199, -1.52986225, -1.52084347, -1.14193977, -1.70940023,
-1.38296105, -1.94188916, -1.40918701, -1.50546019, -1.94693318,
-1.27744808, -1.10532681, -1.8195871 , -0.78264893, -1.64886722,
-1.11578198, -1.59770874, -1.37121807, -0.64180226, -1.75435993,
-2.06055696, -1.3313848 , -1.01485731, -1.30493255, -1.0741491 ,
-1.44628808, -1.37947402, -1.16770063, -1.96681489, -1.41314041,
-1.57875565, -1.25096626, -1.19773192, -1.56796471, -1.77169296,
-1.90292409, -1.22447181, -0.78496393, -1.52353528, -1.22099555,
-1.30010741, -1.50728284, -1.90360731, -2.01921627, -1.64700447,
-1.18003396, -1.71493986, -1.871273 , -1.13439614, -2.23038721,
-1.20691083, -1.63975725, -1.63814092, -1.35482337, -1.57202494,
-1.23716748, -1.62403667, -1.49771108, -0.77470917, -1.54520582,
-1.25186848, -0.97935679, -1.30439562, -1.44308115, -1.37037818,
-1.27014245, -1.32033379, -1.12571153, -1.45724712, -0.9892453 ,
-0.62686554, -1.67469279, -1.60521834, -0.75177335, -1.24684084,
-1.46135996, -1.839681 , -1.12339622, -1.46216155, -1.60742496,
-1.71912444, -1.54730421, -1.59400337, -1.39605285, -1.46284499,
-1.4021302 , -1.27671682, -0.77475587, -1.19363496, -1.66523928,
-1.33715462, -1.17697632, -1.4842194 , -1.1895419 , -0.86630617,
-1.33396371, -1.49339964, -1.42195459, -1.92503642, -1.84275563,
-1.79705437, -1.49824091, -1.40595057, -1.90292021, -1.16407342,
-1.59534552, -0.97668611, -1.08274204, -1.12870945, -2.12818743,
-0.7838998 , -1.61671753, -1.62187428, -1.4705092 , -1.76238886,
-1.17266699, -1.90628989, -1.3886804 , -1.10530307, -1.4376336 ,
-1.76642276, -1.43218018, -0.81083108, -1.73641349, -1.87559274,
-1.31532031, -1.35328031, -1.32742375, -1.39704007, -1.0879399 ,
-1.23860179, -1.47365972, -1.37535633, -1.66764844, -0.88298058,
-1.28104302, -1.36903838, -1.8874099 , -2.04886554, -1.31767967,
-1.16556588, -1.43267446, -1.18710503, -0.89550787, -1.43279183,
-1.05127706, -1.27721474, -1.45815268, -1.29084133, -1.65081447,
-1.69458534, -1.37748123, -1.43523314, -1.34754393, -1.6694959 ,
-1.40322229, -1.437765 , -1.49472856, -1.35202683, -0.80233073,
-1.63618584, -1.51098336, -1.79676282, -0.62244726, -1.29579622,
-1.0279622 , -1.73483548, -1.80155103, -1.61000951, -1.34841045,
-1.35484622, -1.0354609 , -1.66502088, -1.72194099, -0.97471981,
-1.51093392, -1.59144881, -1.36517839, -1.57288174, -1.18952046,
-1.12971346, -1.29829398, -1.83108101, -1.11156376, -1.10255981,
-0.57956998, -0.74436115, -1.67148036, -1.32180559, -0.85613301,
-1.57277723, -1.32671474, -1.51419 , -1.46856643, -0.96980315,
-1.40238109, -1.33180724, -1.46183984, -0.90050941, -1.02688401,
-1.36031937, -1.05843125, -1.0285643 , -1.35772823, -1.83715025,
-1.43958907, -1.54752326, -1.34370603, -1.82978553, -1.3564682 ,
-1.38278978, -1.14533037, -1.68087144, -1.93645092, -1.76027494,
-1.22093916, -1.13310061, -1.77505234, -0.8377632 , -1.65161323,
-1.7367896 , -1.16061191, -1.70394462, -1.39561903, -0.95136567,
-1.38464977, -1.38428987, -1.1783908 , -1.49368533, -1.6013057 ,
-1.39868309, -0.72825801, -0.98852532, -2.04111007, -1.22912073,
-2.06293955, -0.73263951, -1.52326101, -1.64276007, -1.08063161,
-2.0114799 , -1.43582876, -1.59233903, -1.90921371, -1.34697745,
-1.06830385, -1.54214425, -1.05406484, -1.60456929, -1.51569939,
-1.49205286, -1.10746579, -1.76219838, -0.5283975 , -1.41720525,
-1.36712739, -1.32513306, -1.71560196, -2.27900559, -1.67743511,
-1.57505034, -1.28621347, -1.27858686, -1.32722754, -1.33630976,
-1.075285 , -1.20637592, -1.78736771, -1.98363563, -1.28522852,
-1.08669409, -1.07424113, -1.85844852, -1.27435176, -1.61965879,
-1.8589493 , -1.35777527, -1.8534274 , -1.39961803, -1.76765447,
-1.4808521 , -1.14011928, -1.53076014, -1.41682004, -0.79107497,
-1.31440865, -1.29741588, -1.40609386, -2.19859513, -1.75128976,
-1.70761594, -1.48462965, -1.57518757, -1.48923475, -1.49656516,
-1.47950689, -1.21678395, -1.35855943, -1.27316499, -1.46310338,
-1.26847842, -1.26402818, -0.91404466, -1.30716252, -1.43216223,
-1.3226418 , -1.19504119, -0.75519914, -1.08567662, -1.65517152,
-1.5236483 , -1.55794737, -1.77241075, -1.66624854, -1.54541515,
-0.66457689, -1.57211617, -1.51723012, -1.3898372 , -1.74805756,
-1.49273401, -1.90647793, -1.44740043, -1.18925036, -1.01652583,
-1.80952408, -1.97304972, -1.16235374, -1.58635662, -1.53372243,
-1.35484283, -1.52597053, -1.37236382, -1.7996146 , -1.51706031,
-1.40622398, -1.12858443, -1.32808232, -1.23548733, -1.6052895 ,
-1.63102978, -1.40209923, -1.4572861 , -1.34179824, -1.54703365,
-1.14469089, -1.61646156, -1.58992626, -1.10062423, -1.31580348])}
samples_of_probability = shore.probability_of_atmosphere(log_f=0, log_v=0, log_L=-2, **sampled_parameters)
samples_of_probability
array([0.8956655 , 0.66789384, 0.83876477, 0.92185124, 0.59056938,
0.77294455, 0.68460768, 0.68216085, 0.89351933, 0.59379868,
0.84440551, 0.68283269, 0.8270999 , 0.55813355, 0.7805258 ,
0.72355302, 0.88800367, 0.80098104, 0.7852569 , 0.55058969,
0.63299954, 0.44115692, 0.69781734, 0.87487981, 0.75240876,
0.53500072, 0.82150518, 0.88496797, 0.95727106, 0.63767673,
0.36464743, 0.85983145, 0.48805844, 0.79250151, 0.82321434,
0.90891369, 0.64325617, 0.7043401 , 0.91901637, 0.88308114,
0.64225636, 0.78932838, 0.8776188 , 0.89533285, 0.85110821,
0.67937925, 0.59726247, 0.75724515, 0.94276315, 0.88604936,
0.40171358, 0.70265815, 0.68932824, 0.95807287, 0.66772353,
0.64674912, 0.53279305, 0.64590355, 0.83915779, 0.93934855,
0.72345792, 0.85025415, 0.45904688, 0.27921701, 0.74892662,
0.66175621, 0.88645396, 0.62565873, 0.70324737, 0.87058458,
0.76025817, 0.94312681, 0.58628657, 0.93904854, 0.85197129,
0.80533394, 0.700235 , 0.96423037, 0.72491983, 0.73060644,
0.78988913, 0.55998801, 0.7868839 , 0.83976391, 0.80629505,
0.67957999, 0.70326125, 0.628526 , 0.64180152, 0.80349123,
0.8256035 , 0.77266948, 0.52426649, 0.59118951, 0.6095214 ,
0.63031488, 0.79578171, 0.36815797, 0.55878605, 0.60704679,
0.90941439, 0.6996829 , 0.66553517, 0.74944444, 0.86773485,
0.60274046, 0.91244177, 0.56275281, 0.88778244, 0.84866356,
0.82865071, 0.7132766 , 0.73568001, 0.29616226, 0.6263698 ,
0.9302668 , 0.64218885, 0.48752267, 0.87687758, 0.87742254,
0.81136991, 0.97215878, 0.90208589, 0.53333418, 0.83270983,
0.7173021 , 0.8734222 , 0.41793431, 0.89831568, 0.92595135,
0.48432939, 0.78860661, 0.59141684, 0.52253659, 0.63509834,
0.58325672, 0.77257477, 0.73788525, 0.49120162, 0.7286143 ,
0.55472888, 0.52873822, 0.91292254, 0.87520928, 0.79943543,
0.50953295, 0.7703639 , 0.89611537, 0.54722747, 0.79325866,
0.47833171, 0.89736989, 0.91116007, 0.87279269, 0.74902353,
0.55757113, 0.75919218, 0.45189472, 0.6323414 , 0.60213148,
0.55394252, 0.67294451, 0.87727123, 0.78403735, 0.88078096,
0.87288525, 0.73164487, 0.85353297, 0.91478222, 0.76817294,
0.65552947, 0.65948239, 0.76025842, 0.83127015, 0.91689144,
0.7152594 , 0.76172682, 0.67312016, 0.87173694, 0.81198958,
0.20506863, 0.98149773, 0.49627758, 0.74931083, 0.60912082,
0.79444437, 0.75040086, 0.56154275, 0.97147321, 0.59898962,
0.84672632, 0.26653222, 0.90260212, 0.32536136, 0.74868823,
0.83835131, 0.74505028, 0.62278867, 0.63976691, 0.59454755,
0.68163468, 0.91867953, 0.77596574, 0.7882286 , 0.54746115,
0.73654644, 0.71450402, 0.33364982, 0.87656732, 0.72938841,
0.73527809, 0.63506984, 0.9419299 , 0.80872691, 0.83450209,
0.79324784, 0.67989611, 0.93007074, 0.92582311, 0.83702012,
0.74525658, 0.7197317 , 0.58492532, 0.44784898, 0.76346835,
0.91460004, 0.8201526 , 0.8349902 , 0.4997777 , 0.80709111,
0.95286366, 0.70156175, 0.9567002 , 0.60478174, 0.92935226,
0.72650053, 0.77249767, 0.77962542, 0.42155009, 0.88089786,
0.75851164, 0.8840345 , 0.68473881, 0.59852456, 0.75197041,
0.30771603, 0.84725415, 0.79185389, 0.55825673, 0.77025497,
0.60091829, 0.47321106, 0.36038478, 0.51280552, 0.54607138,
0.57175296, 0.85806426, 0.86976716, 0.73061618, 0.99584291,
0.7909615 , 0.35502683, 0.84695639, 0.54039976, 0.67011205,
0.8926956 , 0.90120635, 0.61384935, 0.61912455, 0.88969272,
0.90317858, 0.88281909, 0.33114398, 0.717674 , 0.69952619,
0.31175001, 0.61186781, 0.90892337, 0.51043254, 0.75444475,
0.60445824, 0.7502571 , 0.86003112, 0.68332713, 0.86005112,
0.59150078, 0.68755098, 0.8505503 , 0.55229676, 0.87283005,
0.73242934, 0.90032901, 0.77497038, 0.75156414, 0.72044502,
0.24448569, 0.92011962, 0.79437088, 0.86716276, 0.77486847,
0.58930972, 0.88177772, 0.6274732 , 0.90651913, 0.77657337,
0.61570036, 0.92906876, 0.62482248, 0.87660067, 0.67952106,
0.7216237 , 0.61365975, 0.80805354, 0.68155635, 0.80059837,
0.75846955, 0.81271578, 0.72863066, 0.38965889, 0.22615199,
0.41321938, 0.82015911, 0.79508717, 0.63840192, 0.41775484,
0.88821346, 0.7079287 , 0.54162 , 0.8078957 , 0.50637534,
0.86475023, 0.94055082, 0.67567721, 0.59962617, 0.81388989,
0.62526676, 0.83913092, 0.89295018, 0.64093679, 0.83870175,
0.84645949, 0.70832367, 0.78804957, 0.47550659, 0.82862733,
0.81859213, 0.54999981, 0.83160422, 0.80347889, 0.97157176,
0.83748578, 0.81183505, 0.77592513, 0.82760128, 0.81332491,
0.76230831, 0.9160827 , 0.65447522, 0.66581698, 0.41185862,
0.97297831, 0.64238254, 0.57394033, 0.3652367 , 0.58615538,
0.44706483, 0.77847295, 0.67562928, 0.62571858, 0.83355313,
0.48864967, 0.58033044, 0.3998398 , 0.78328573, 0.67025583,
0.9539464 , 0.81746744, 0.62796786, 0.74196218, 0.74384217,
0.5222424 , 0.92125751, 0.70644049, 0.57885212, 0.89663856,
0.66483879, 0.638856 , 0.74965886, 0.70277353, 0.88402174,
0.90085568, 0.73812971, 0.92018165, 0.76588583, 0.89566465,
0.82973281, 0.81483436, 0.73924689, 0.88649095, 0.98290857,
0.33563599, 0.7728711 , 0.74379511, 0.8480315 , 0.65077932,
0.72661506, 0.80396746, 0.78144923, 0.93521594, 0.52634989,
0.79271975, 0.49051273, 0.97714574, 0.84309972, 0.94584307,
0.72943281, 0.39703099, 0.62220603, 0.7591166 , 0.85754765,
0.96161875, 0.81532032, 0.87631814, 0.95837762, 0.76277234,
0.56136311, 0.76890179, 0.52118531, 0.68385013, 0.74685615,
0.8585243 , 0.82227703, 0.68978328, 0.58559502, 0.79777311,
0.73865123, 0.60921897, 0.5613904 , 0.61385145, 0.92695536,
0.41913685, 0.88838225, 0.51551261, 0.70706574, 0.78877026,
0.91535835, 0.42322371, 0.573873 , 0.65589085, 0.98238973,
0.75116251, 0.62205567, 0.91035136, 0.59833133, 0.21111776,
0.9673113 , 0.66844298, 0.42208937, 0.64549203, 0.8483595 ,
0.86749513, 0.72237868, 0.51478958, 0.74277161, 0.81679638,
0.80258293, 0.7795646 , 0.62273805, 0.73387885, 0.78770128,
0.71713393, 0.64013551, 0.3583115 , 0.79873879, 0.69136136,
0.75932772, 0.79668575, 0.92046508, 0.4889975 , 0.43137134,
0.79682539, 0.86868167, 0.60996103, 0.39640938, 0.86261616,
0.95309541, 0.54235984, 0.77602203, 0.96683388, 0.9021267 ,
0.88282505, 0.65214571, 0.72395652, 0.41839483, 0.84697199,
0.82261386, 0.8160655 , 0.50986321, 0.58456638, 0.85419703,
0.69023771, 0.67212516, 0.38031471, 0.83992093, 0.85612374,
0.66609931, 0.90270123, 0.57248447, 0.84380113, 0.58124957,
0.9075155 , 0.60998154, 0.78260096, 0.85945918, 0.68067576,
0.81713026, 0.86558089, 0.83898701, 0.53940761, 0.66598613,
0.92022765, 0.91130541, 0.73670584, 0.35886332, 0.50247683,
0.85326105, 0.77258497, 0.97291977, 0.83494925, 0.88374484,
0.56639314, 0.83956769, 0.48670787, 0.31715503, 0.96845082,
0.63187191, 0.816273 , 0.91710508, 0.81546637, 0.39323221,
0.89723138, 0.67609837, 0.44720137, 0.68636229, 0.47298916,
0.75105738, 0.57336704, 0.78775935, 0.65010794, 0.91966735,
0.56944914, 0.88600942, 0.79531988, 0.91650965, 0.85709943,
0.31946948, 0.76716775, 0.79421277, 0.67102378, 0.71467515,
0.80551216, 0.67287963, 0.52507201, 0.84351789, 0.83137171,
0.58706233, 0.7051407 , 0.75338324, 0.50076104, 0.92813972,
0.96639971, 0.76447036, 0.08918453, 0.94664696, 0.63379633,
0.66506919, 0.86990666, 0.53033877, 0.68350469, 0.81236482,
0.51256286, 0.72348056, 0.95448109, 0.66897162, 0.73937445,
0.52982756, 0.9493493 , 0.84487945, 0.44056025, 0.83604899,
0.70499202, 0.87686622, 0.79193475, 0.77972528, 0.39231058,
0.94641272, 0.77172877, 0.50896661, 0.93567904, 0.40968052,
0.34514174, 0.68683019, 0.89921448, 0.5916851 , 0.92283194,
0.92830539, 0.95055444, 0.71752187, 0.62993754, 0.94878479,
0.80206432, 0.69375732, 0.65828084, 0.50853772, 0.8175467 ,
0.45349919, 0.91684712, 0.86415002, 0.73084725, 0.80534874,
0.78781616, 0.92014275, 0.73134399, 0.85137203, 0.74242637,
0.95130923, 0.7693876 , 0.65434716, 0.77612636, 0.51803282,
0.87576187, 0.76200115, 0.83591908, 0.57261345, 0.58180787,
0.40487024, 0.47079486, 0.52558434, 0.523309 , 0.82683342,
0.88589987, 0.74443658, 0.75807728, 0.51997576, 0.60522349,
0.67758747, 0.7442041 , 0.83990477, 0.60620616, 0.57823684,
0.6855779 , 0.67731044, 0.9154426 , 0.62098958, 0.95813994,
0.68477618, 0.84036229, 0.76219396, 0.72292596, 0.92487656,
0.78260152, 0.59520724, 0.94130235, 0.31568789, 0.4976473 ,
0.59036844, 0.79555316, 0.66241473, 0.55391688, 0.86878556,
0.94725289, 0.70419156, 0.60026962, 0.65059624, 0.68086135,
0.53394255, 0.90541484, 0.84918841, 0.95958238, 0.80849591,
0.84656266, 0.48695914, 0.38469293, 0.93213843, 0.95081471,
0.77568535, 0.58560883, 0.39529302, 0.51802434, 0.71690111,
0.78970852, 0.88754487, 0.89866602, 0.69203564, 0.52681231,
0.66731234, 0.95221086, 0.90377578, 0.85492531, 0.88150967,
0.94196181, 0.53269775, 0.47161497, 0.75472993, 0.74284298,
0.85303707, 0.92469612, 0.87925044, 0.38109328, 0.87741477,
0.73142933, 0.76776796, 0.61041694, 0.71611461, 0.49684054,
0.72393248, 0.85279631, 0.28697275, 0.70929101, 0.40438799,
0.33928717, 0.84903018, 0.91624013, 0.53514582, 0.60384759,
0.71435682, 0.94552192, 0.48409605, 0.68804231, 0.9704286 ,
0.81952061, 0.29919472, 0.44022716, 0.76985009, 0.45560318,
0.71532176, 0.83342027, 0.61278747, 0.8282922 , 0.43414109,
0.72448245, 0.76681514, 0.74407709, 0.76612629, 0.66725503,
0.67231419, 0.62985211, 0.63281179, 0.93510442, 0.92274579,
0.93469918, 0.69973274, 0.89893338, 0.96639743, 0.74754023,
0.80245894, 0.59869166, 0.67778636, 0.67439452, 0.93178372,
0.76443187, 0.88011155, 0.7880614 , 0.86575942, 0.57908906,
0.87047392, 0.94860712, 0.85872233, 0.72949844, 0.91865645,
0.7277195 , 0.57874805, 0.69317321, 0.74229615, 0.95338619,
0.86229753, 0.81173351, 0.8020857 , 0.7774758 , 0.56529066,
0.77495768, 0.80378304, 0.78116836, 0.61640072, 0.43759415,
0.67270496, 0.64085731, 0.63936986, 0.97821878, 0.61768661,
0.41176912, 0.88556483, 0.73687999, 0.465451 , 0.63725691,
0.81442716, 0.44246184, 0.70321884, 0.83525406, 0.91844151,
0.79383013, 0.85876816, 0.78091289, 0.8621368 , 0.81805939,
0.73310157, 0.7871904 , 0.79487484, 0.62924861, 0.51931653,
0.80730125, 0.83960787, 0.89857613, 0.54471758, 0.78709971,
0.44200382, 0.66867559, 0.75580648, 0.88473001, 0.80791635,
0.73376818, 0.53269285, 0.90073299, 0.71606437, 0.62686398,
0.93202734, 0.83138783, 0.56747392, 0.93884214, 0.44414092,
0.60734826, 0.46352835, 0.7397748 , 0.82642753, 0.67161263,
0.76825023, 0.61915569, 0.79801147, 0.52443079, 0.52698379,
0.8811928 , 0.70756606, 0.94264586, 0.70285913, 0.39618469,
0.87440491, 0.55076823, 0.77240635, 0.58522686, 0.73670429,
0.29561999, 0.74525941, 0.78257978, 0.61351226, 0.55937921,
0.72819663, 0.89674006, 0.75941142, 0.93395891, 0.72968585,
0.66413341, 0.65709716, 0.77571756, 0.90681833, 0.79176705,
0.84363714, 0.36021257, 0.81090909, 0.71139341, 0.69047303,
0.77792817, 0.61770459, 0.83450961, 0.82027351, 0.74240158,
0.73692937, 0.7097167 , 0.57912573, 0.64477068, 0.85244435,
0.83829647, 0.63452038, 0.54487196, 0.92614421, 0.7041437 ,
0.99201358, 0.34212732, 0.81347865, 0.92048406, 0.59303251,
0.73471045, 0.80049257, 0.91185526, 0.88587464, 0.70791194,
0.61795032, 0.53173276, 0.80386785, 0.74714873, 0.81403532,
0.56546148, 0.77539901, 0.98271435, 0.26752342, 0.60977895,
0.43660435, 0.80963408, 0.93524375, 0.73737095, 0.72299286,
0.74150896, 0.73949151, 0.86954413, 0.73354989, 0.52633182,
0.15943096, 0.90387203, 0.94584299, 0.64977971, 0.60543163,
0.4781065 , 0.81064863, 0.89929015, 0.4460138 , 0.72377844,
0.89217509, 0.41734285, 0.67165921, 0.8091181 , 0.89318023,
0.78552951, 0.56340403, 0.6383198 , 0.81901964, 0.43506625,
0.50967827, 0.65122367, 0.29651024, 0.96825788, 0.59740188,
0.75810209, 0.82171703, 0.89319252, 0.84359595, 0.76602602,
0.86819275, 0.63302541, 0.5935795 , 0.70917834, 0.62980761,
0.69364978, 0.45483768, 0.75533397, 0.86727394, 0.76235217,
0.66426508, 0.8085311 , 0.48312878, 0.76513969, 0.62785426,
0.62489045, 0.47296718, 0.83127067, 0.9316948 , 0.41722674,
0.69758051, 0.83088362, 0.62693513, 0.74863477, 0.9436785 ,
0.53904085, 0.84757208, 0.67578825, 0.68500858, 0.76321792,
0.92499089, 0.9336931 , 0.64431317, 0.71234471, 0.8995383 ,
0.40459206, 0.708116 , 0.59002378, 0.91363176, 0.80045646,
0.7607937 , 0.5260331 , 0.76774483, 0.42825216, 0.58963444,
0.77113166, 0.86702717, 0.90078134, 0.73351054, 0.66107994,
0.6824813 , 0.84411013, 0.67444771, 0.66681156, 0.8616581 ])
plt.hist(samples_of_probability, alpha=0.3, label='with parameter uncertainty')
plt.axvline(point_probability, label='without parameter uncertainty')
plt.legend(frameon=False)
plt.xlabel('Probability of Atmosphere')
plt.yticks([])
([], [])
The .calculate_probability_of_atmosphere_from_posterior_samples function provides a simple wrapper to calculate summary statistics for the atmosphere probability, accounting for the shoreline parameter uncertainties. It provides three numbers: the median probability of an atmosphere, the lower $1\sigma$ confidence interval, and the upper $1\sigma$ confidence interval. By default, these are returned as three numbers; with the latex=True keyword flag, they can be returned as a tidy LaTeX-friendly string.
shore.calculate_probability_of_atmosphere_from_posterior_samples(log_f=0, log_v=0, log_L=-2)
(np.float64(0.7197926118635868), np.float64(0.17146451174796884), np.float64(0.16739234741182962))
shore.calculate_probability_of_atmosphere_from_posterior_samples(log_f=0, log_v=0, log_L=-2, latex=True)
['{latexify_confidence_interval(m*100, l*100, u*100)}\\%']
Standard exoatlas populations can also provide access to distributions of calculated atmosphere probabilities. Simply provide the distribution=True keyword to a population's .probability_of_atmosphere() method, as shown below. For Mars, the distribution of probabilities incorporates the uncertainties in the shoreline parameters. For the exoplanet, it includes both the uncertainties in the shoreline parameters and the uncertainties propagated from the substantial uncertainties on the intrinsic planet parameters.
plt.figure(figsize=(8,3))
histkw = dict(bins = np.linspace(0, 1), alpha=0.5)
p = e['LTT1445Ab'].probability_of_atmosphere(distribution=True)
plt.hist(p.distribution[0], label='LTT1445Ab', **histkw)
p = s['Mars'].probability_of_atmosphere(distribution=True)
plt.hist(p.distribution[0], label='Mars', **histkw)
plt.legend(frameon=False)
plt.xlabel('Probability of Atmosphere');
These distributions are used when calculating uncertainties on the derived atmosphere probability. Read more about uncertainties for subtles about how these uncertainties get propagated.
# calculate atmosphere probabilities *and* asymmetric uncertainties
x = e.radius()
y = e.probability_of_atmosphere()
lower, upper = e.get_uncertainty_lowerupper('probability_of_atmosphere')
plt.figure(figsize=(8,3))
plt.scatter(x, y, marker='.')
plt.errorbar(x, y, [lower, upper], elinewidth=1, linewidth=0)
plt.xscale('log'); plt.yscale('log');
plt.xlabel('Planet Radius (Earth radii)')
plt.ylabel('Probability of Atmosphere');
Further Reading¶
More details about the calculations and considerations going into these shoreline probabilities can be found in Berta-Thompson, Wachiraphan, and Murray (2026, hereafter BTWM26). Have fun!