Data format#
In PRIMAP2, data is handled in xarray datasets with defined coordinates and metadata. If you are not familiar with xarray data structures, we recommend reading xarray’s own primer first.
Let’s start with two examples, one minimal example showing only what is required for a PRIMAP2 data set, and one opulent example showing the flexibility of the format.
# import all the used libraries
import datetime
import numpy as np
import pandas as pd
import xarray as xr
import primap2
from primap2 import ureg
Minimal example#
This example contains only the required metadata, which are the time, the area, and the source. It also shows how multiple gases and global warming potentials stemming from the gases are included in a single dataset and the use of units.
The example is created with dummy data; note that in real usage, you would read data from a file or API instead.
time = pd.date_range("2000-01-01", "2020-01-01", freq="YS")
area_iso3 = np.array(["COL", "ARG", "MEX", "BOL"])
minimal = xr.Dataset(
{
ent: xr.DataArray(
data=np.random.default_rng().random((len(time), len(area_iso3), 1)),
coords={
"time": time,
"area (ISO3)": area_iso3,
"source": ["RAND2020"],
},
dims=["time", "area (ISO3)", "source"],
attrs={"units": f"{ent} Gg / year", "entity": ent},
)
for ent in ("CO2", "SF6", "CH4")
},
attrs={"area": "area (ISO3)"},
).pr.quantify()
with ureg.context("SARGWP100"):
minimal["SF6 (SARGWP100)"] = minimal["SF6"].pint.to("CO2 Gg / year")
minimal["SF6 (SARGWP100)"].attrs["gwp_context"] = "SARGWP100"
minimal
<xarray.Dataset> Size: 3kB
Dimensions: (time: 21, area (ISO3): 4, source: 1)
Coordinates:
* time (time) datetime64[ns] 168B 2000-01-01 ... 2020-01-01
* area (ISO3) (area (ISO3)) <U3 48B 'COL' 'ARG' 'MEX' 'BOL'
* source (source) <U8 32B 'RAND2020'
Data variables:
CO2 (time, area (ISO3), source) float64 672B [CO2·Gg/a] 0.33...
SF6 (time, area (ISO3), source) float64 672B [SF6·Gg/a] 0.47...
CH4 (time, area (ISO3), source) float64 672B [CH4·Gg/a] 0.62...
SF6 (SARGWP100) (time, area (ISO3), source) float64 672B [CO2·Gg/a] 1.13...
Attributes:
area: area (ISO3)- time: 21
- area (ISO3): 4
- source: 1
- time(time)datetime64[ns]2000-01-01 ... 2020-01-01
array(['2000-01-01T00:00:00.000000000', '2001-01-01T00:00:00.000000000', '2002-01-01T00:00:00.000000000', '2003-01-01T00:00:00.000000000', '2004-01-01T00:00:00.000000000', '2005-01-01T00:00:00.000000000', '2006-01-01T00:00:00.000000000', '2007-01-01T00:00:00.000000000', '2008-01-01T00:00:00.000000000', '2009-01-01T00:00:00.000000000', '2010-01-01T00:00:00.000000000', '2011-01-01T00:00:00.000000000', '2012-01-01T00:00:00.000000000', '2013-01-01T00:00:00.000000000', '2014-01-01T00:00:00.000000000', '2015-01-01T00:00:00.000000000', '2016-01-01T00:00:00.000000000', '2017-01-01T00:00:00.000000000', '2018-01-01T00:00:00.000000000', '2019-01-01T00:00:00.000000000', '2020-01-01T00:00:00.000000000'], dtype='datetime64[ns]') - area (ISO3)(area (ISO3))<U3'COL' 'ARG' 'MEX' 'BOL'
array(['COL', 'ARG', 'MEX', 'BOL'], dtype='<U3')
- source(source)<U8'RAND2020'
array(['RAND2020'], dtype='<U8')
- CO2(time, area (ISO3), source)float64[CO2·Gg/a] 0.3393 0.8269 ... 0.5059
- entity :
- CO2
Magnitude [[[0.33925669825122207] [0.8268630134579285] [0.7568870557060597] [0.48840214706206586]] [[0.7702988525712234] [0.20059562646230578] [0.2412194301856676] [0.7810534632733587]] [[0.9990081748346658] [0.04118534410477448] [0.04915210724406616] [0.4528107882589193]] [[0.6925914981809931] [0.6144914994769642] [0.49988305486031126] [0.007632081140404479]] [[0.36212431073523177] [0.6448406675403316] [0.6965590363874484] [0.1511651110248433]] [[0.697336759524405] [0.4516085968150283] [0.6969367674125068] [0.039135862332018934]] [[0.08448373214935245] [0.55858730049483] [0.07377624036824382] [0.7347523916213893]] [[0.5707126566147974] [0.08509954914344964] [0.7041111535180972] [0.7371355800376376]] [[0.09207115651199427] [0.6377825038179558] [0.2724742838239891] [0.3638439149570172]] [[0.10571158898045119] [0.016173949355744455] [0.0776911773329586] [0.12210921358118976]] [[0.44754466403745186] [0.4231204979458246] [0.9352103242516899] [0.7139458959110211]] [[0.21160850345558757] [0.1282648425623676] [0.7246765471980803] [0.5450910275134645]] [[0.1646139272335465] [0.46390373569773236] [0.06298856578111622] [0.1966823405630681]] [[0.24867157796575035] [0.11921241398805782] [0.7020418199241636] [0.5926988178348632]] [[0.05908263161074012] [0.8089139598326093] [0.8575144498672633] [0.8010974010119202]] [[0.840587964032254] [0.6197644637514128] [0.2966820238845609] [0.9931544554589071]] [[0.9530397934558743] [0.5975034800395582] [0.9776002651292293] [0.5964547148939834]] [[0.005698556239735364] [0.9744990012603185] [0.5378764756318193] [0.08282097842248637]] [[0.4278738881409835] [0.08415644087827012] [0.7249394948509579] [0.306712120054335]] [[0.5676269407667498] [0.18103896553041576] [0.21895329734411195] [0.8912676897739197]] [[0.17965964484917907] [0.07142581562572115] [0.2576472222923777] [0.5059466409657172]]]
Units CO2 gigagram/year - SF6(time, area (ISO3), source)float64[SF6·Gg/a] 0.4743 0.6613 ... 0.3948
- entity :
- SF6
Magnitude [[[0.47433382643247224] [0.6613100965332448] [0.434177182538113] [0.8274399437056168]] [[0.14356162137653528] [0.14260809696609367] [0.058810357910213384] [0.8137235781611147]] [[0.05822231584096638] [0.7573947295607895] [0.18395606928133168] [0.23468534475888259]] [[0.4355204974956348] [0.46947002935345716] [0.9488413601355967] [0.9550795843405916]] [[0.24236762768038445] [0.6558038899846473] [0.42869299222226254] [0.5511165806573521]] [[0.8551246482832402] [0.17046383776730512] [0.3014128794512242] [0.8350968894651289]] [[0.787497316684042] [0.48609250099981405] [0.3356450729176912] [0.1445038408677526]] [[0.552109977047944] [0.8263569518120131] [0.9117380130252757] [0.45236068536416196]] [[0.5011036995032508] [0.8838064008011947] [0.16247207014236542] [0.6521864522270348]] [[0.34872662226802953] [0.8294390285741166] [0.48258298168740776] [0.457405394936249]] [[0.06529363294426072] [0.7086530358349806] [0.40639296370117084] [0.5282917969950214]] [[0.3321895132386481] [0.9396795995134111] [0.34259551642828945] [0.1305396738277692]] [[0.32147583558922344] [0.2936614272861595] [0.6071678901802486] [0.877713058498186]] [[0.8759558332672991] [0.6657542152836206] [0.11820892878464206] [0.7258565684330941]] [[0.8426371204323011] [0.675370342131399] [0.7592626898883948] [0.5413120706296559]] [[0.3995528540328891] [0.8160429095998409] [0.20410701778781937] [0.4736368598193691]] [[0.873365578809235] [0.09795480803040924] [0.8504169715719413] [0.9638103297421706]] [[0.09379775917036526] [0.6569432624865081] [0.27660924799283115] [0.42800537898851554]] [[0.45644208201352] [0.002603549126848459] [0.27940973861315144] [0.6855406771378513]] [[0.5851363369220357] [0.17587270639449448] [0.3428705283038811] [0.3396076091486788]] [[0.23904560539285735] [0.096319351262107] [0.3699441406365145] [0.3948103814620654]]]
Units SF6 gigagram/year - CH4(time, area (ISO3), source)float64[CH4·Gg/a] 0.62 0.8485 ... 0.5632
- entity :
- CH4
Magnitude [[[0.6200039862486758] [0.848528847794476] [0.7735612783589866] [0.8860417545336285]] [[0.5298986831887311] [0.24401128844444542] [0.9394883053792802] [0.6364084086796942]] [[0.5600296646185748] [0.3115345480368118] [0.1592573512147697] [0.5053338587265535]] [[0.20975342922104878] [0.44545807429817197] [0.8337714384510405] [0.6048193661129471]] [[0.15512090687001479] [0.7587820830368719] [0.4437872079244525] [0.28593988508684953]] [[0.3117604021882785] [0.9401314831093011] [0.4736237754875158] [0.7887271992900994]] [[0.21175041928477112] [0.011013294293950815] [0.45954168247211125] [0.6644943369347012]] [[0.43571335825565205] [0.8773713410777128] [0.05455844681092081] [0.015154958299166132]] [[0.6089439708077475] [0.2349733783640443] [0.29756021635586627] [0.843170231608091]] [[0.5259936657285669] [0.5561445737960257] [0.9409395684234872] [0.5028329200459827]] [[0.740620150394511] [0.3256813804672284] [0.1990739639364303] [0.33012091690371004]] [[0.5707119374183544] [0.8793170803710717] [0.17555023609918607] [0.6604331429967362]] [[0.6903707810045306] [0.1300080248170976] [0.6128581941748817] [0.7800641257088573]] [[0.5996506295767577] [0.8680606842147912] [0.664340538570957] [0.5463176907560136]] [[0.895115834002305] [0.5825972524384351] [0.5684541623437808] [0.9177018553388018]] [[0.0414744024826047] [0.9385705618023094] [0.6799749272991484] [0.8589171713104671]] [[0.17056132648339795] [0.974830318946196] [0.540579552714939] [0.7604931350797794]] [[0.4810820020127037] [0.8529308518651366] [0.6232408564390601] [0.5715019720989585]] [[0.9589815363051809] [0.10477844640387579] [0.8431503090092203] [0.6043356651215422]] [[0.6145174431413246] [0.07293787427968557] [0.43665931525373625] [0.7347952397004218]] [[0.04543556239048374] [0.27850147524453783] [0.9103798414530256] [0.5632387309264605]]]
Units CH4 gigagram/year - SF6 (SARGWP100)(time, area (ISO3), source)float64[CO2·Gg/a] 1.134e+04 ... 9.436e+03
- entity :
- SF6
- gwp_context :
- SARGWP100
Magnitude [[[11336.578451736086] [15805.311307144551] [10376.834662660902] [19775.814654564245]] [[3431.1227508991933] [3408.333517489639] [1405.5675540541] [19447.993518050644]] [[1391.5133485990964] [18101.73403650287] [4396.550055823827] [5608.979739737294]] [[10408.939890145672] [11220.333701547626] [22677.308507240763] [22826.40206574014]] [[5792.5863015611885] [15673.71297063307] [10245.762514112075] [13171.686277710716]] [[20437.47909396944] [4074.085722638593] [7203.767818884259] [19958.815658216583]] [[18821.185868748606] [11617.610773895558] [8021.917242732819] [3453.641796739287]] [[13195.428451445861] [19749.931148307114] [21790.53851130409] [10811.420380203472]] [[11976.378418127695] [21122.97297914855] [3883.0824764025338] [15587.25620822613]] [[8334.566272205906] [19823.592782921387] [11533.733262329046] [10931.98893897635]] [[1560.5178273678312] [16936.807556456035] [9712.791832457984] [12626.173948181011]] [[7939.32936640369] [22458.342428370524] [8188.032842636118] [3119.8982044836844]] [[7683.272470582441] [7018.508112139212] [14511.312575307944] [20977.342098106645]] [[20935.34441508845] [15911.525745278532] [2825.1933979529454] [17347.97198555095]] [[20139.027178331995] [16141.351176940438] [18146.37828833264] [12937.358488048776]] [[9549.31321138605] [19503.4255394362] [4878.157725128883] [11319.920949682923]] [[20873.437333540718] [2341.119911926781] [20324.965620569397] [23035.06688083788]] [[2241.7664441717297] [15700.943973427544] [6610.961027028665] [10229.328557825522]] [[10908.965760123128] [62.224824131678176] [6677.89275285432] [16384.422183594645]] [[13984.758452436654] [4203.357682828419] [8194.605626462759] [8116.621858653424]] [[5713.189968889291] [2302.0324951643574] [8841.664961212697] [9435.968116943362]]]
Units CO2 gigagram/year
- timePandasIndex
PandasIndex(DatetimeIndex(['2000-01-01', '2001-01-01', '2002-01-01', '2003-01-01', '2004-01-01', '2005-01-01', '2006-01-01', '2007-01-01', '2008-01-01', '2009-01-01', '2010-01-01', '2011-01-01', '2012-01-01', '2013-01-01', '2014-01-01', '2015-01-01', '2016-01-01', '2017-01-01', '2018-01-01', '2019-01-01', '2020-01-01'], dtype='datetime64[ns]', name='time', freq='YS-JAN')) - area (ISO3)PandasIndex
PandasIndex(Index(['COL', 'ARG', 'MEX', 'BOL'], dtype='object', name='area (ISO3)'))
- sourcePandasIndex
PandasIndex(Index(['RAND2020'], dtype='object', name='source'))
- area :
- area (ISO3)
Explore the dataset by clicking on the icons at the end of the rows, which will
show you the metadata attrs and the actual data for each coordinate or variable.
Notice:
For the time coordinate, python datetime objects are used, and the meaning of each data point is therefore directly obvious.
For the area coordinate, three-letter country abbreviations are used, and their meaning is not necessarily obvious. Therefore, the key or name for the area coordinate also contains (in parentheses) the used set of categories, here ISO-3166 three-letter country abbreviations. To be able to identify the area coordinate without parsing strings, the data set
attrscontain the key-value pair'area': 'area (ISO3)', which translates from the simple name to the coordinate key including the identifier for the category set.The variables all carry an associated
openscm_unitsunit. It is the same unit for all data points in a variable, but differs between variables because it includes the gas.The
attrsof each variable specify theentityof the variable. For simple gases like the CO2 emissions, this is the same as the variable name, but for example for the global warming potential associated with the SF6 emissions, it is different.When a global warming potential is given, the used conversion factors have to be specified explicitly using openscm_units context names, for example
SARGWP100for the global warming potential equivalent factors for a 100-year time horizon specified in the second assessment report.
Opulent example#
The opulent example contains every standard metadata and also shows that the variables in the data set can have a different number of dimensions. Because it aims to show everything, creating it takes some effort, skip to the result unless you are interested in the details.
# create with dummy data
coords = {
"time": pd.date_range("2000-01-01", "2020-01-01", freq="YS"),
"area (ISO3)": np.array(["COL", "ARG", "MEX", "BOL"]),
"category (IPCC 2006)": np.array(["0", "1", "2", "3", "4", "5", "1.A", "1.B"]),
"animal (FAOSTAT)": np.array(["cow", "swine", "goat"]),
"product (FAOSTAT)": np.array(["milk", "meat"]),
"scenario (FAOSTAT)": np.array(["highpop", "lowpop"]),
"provenance": np.array(["projected"]),
"model": np.array(["FANCYFAO"]),
"source": np.array(["RAND2020", "RAND2021"]),
}
opulent = xr.Dataset(
{
ent: xr.DataArray(
data=np.random.default_rng().random(tuple(len(x) for x in coords.values())),
coords=coords,
dims=list(coords.keys()),
attrs={"units": f"{ent} Gg / year", "entity": ent},
)
for ent in ("CO2", "SF6", "CH4")
},
attrs={
"entity_terminology": "primap2",
"area": "area (ISO3)",
"cat": "category (IPCC 2006)",
"scen": "scenario (FAOSTAT)",
"references": "doi:10.1012",
"rights": "Use however you want.",
"contact": "lol_no_one_will_answer@example.com",
"title": "Completely invented GHG inventory data",
"comment": "GHG inventory data ...",
"institution": "PIK",
"publication_date": datetime.date(2099, 12, 31),
},
)
pop_coords = {
x: coords[x]
for x in (
"time",
"area (ISO3)",
"provenance",
"model",
"source",
)
}
opulent["population"] = xr.DataArray(
data=np.random.default_rng().random(tuple(len(x) for x in pop_coords.values())),
coords=pop_coords,
dims=list(pop_coords.keys()),
attrs={"entity": "population", "units": ""},
)
opulent = opulent.assign_coords(
{
"category_names": xr.DataArray(
data=np.array(
[
"total",
"industry",
"energy",
"transportation",
"residential",
"land use",
"heavy industry",
"light industry",
]
),
coords={"category (IPCC 2006)": coords["category (IPCC 2006)"]},
dims=["category (IPCC 2006)"],
)
}
)
opulent = opulent.pr.quantify()
with ureg.context("SARGWP100"):
opulent["SF6 (SARGWP100)"] = opulent["SF6"].pint.to("CO2 Gg / year")
opulent["SF6 (SARGWP100)"].attrs["gwp_context"] = "SARGWP100"
opulent
<xarray.Dataset> Size: 518kB
Dimensions: (time: 21, area (ISO3): 4, category (IPCC 2006): 8,
animal (FAOSTAT): 3, product (FAOSTAT): 2,
scenario (FAOSTAT): 2, provenance: 1, model: 1,
source: 2)
Coordinates:
* time (time) datetime64[ns] 168B 2000-01-01 ... 2020-01-01
* area (ISO3) (area (ISO3)) <U3 48B 'COL' 'ARG' 'MEX' 'BOL'
* category (IPCC 2006) (category (IPCC 2006)) <U3 96B '0' '1' ... '1.A' '1.B'
* animal (FAOSTAT) (animal (FAOSTAT)) <U5 60B 'cow' 'swine' 'goat'
* product (FAOSTAT) (product (FAOSTAT)) <U4 32B 'milk' 'meat'
* scenario (FAOSTAT) (scenario (FAOSTAT)) <U7 56B 'highpop' 'lowpop'
* provenance (provenance) <U9 36B 'projected'
* model (model) <U8 32B 'FANCYFAO'
* source (source) <U8 64B 'RAND2020' 'RAND2021'
category_names (category (IPCC 2006)) <U14 448B 'total' ... 'light...
Data variables:
CO2 (time, area (ISO3), category (IPCC 2006), animal (FAOSTAT), product (FAOSTAT), scenario (FAOSTAT), provenance, model, source) float64 129kB [CO2·Gg/a] ...
SF6 (time, area (ISO3), category (IPCC 2006), animal (FAOSTAT), product (FAOSTAT), scenario (FAOSTAT), provenance, model, source) float64 129kB [SF6·Gg/a] ...
CH4 (time, area (ISO3), category (IPCC 2006), animal (FAOSTAT), product (FAOSTAT), scenario (FAOSTAT), provenance, model, source) float64 129kB [CH4·Gg/a] ...
population (time, area (ISO3), provenance, model, source) float64 1kB [] ...
SF6 (SARGWP100) (time, area (ISO3), category (IPCC 2006), animal (FAOSTAT), product (FAOSTAT), scenario (FAOSTAT), provenance, model, source) float64 129kB [CO2·Gg/a] ...
Attributes:
entity_terminology: primap2
area: area (ISO3)
cat: category (IPCC 2006)
scen: scenario (FAOSTAT)
references: doi:10.1012
rights: Use however you want.
contact: lol_no_one_will_answer@example.com
title: Completely invented GHG inventory data
comment: GHG inventory data ...
institution: PIK
publication_date: 2099-12-31- time: 21
- area (ISO3): 4
- category (IPCC 2006): 8
- animal (FAOSTAT): 3
- product (FAOSTAT): 2
- scenario (FAOSTAT): 2
- provenance: 1
- model: 1
- source: 2
- time(time)datetime64[ns]2000-01-01 ... 2020-01-01
array(['2000-01-01T00:00:00.000000000', '2001-01-01T00:00:00.000000000', '2002-01-01T00:00:00.000000000', '2003-01-01T00:00:00.000000000', '2004-01-01T00:00:00.000000000', '2005-01-01T00:00:00.000000000', '2006-01-01T00:00:00.000000000', '2007-01-01T00:00:00.000000000', '2008-01-01T00:00:00.000000000', '2009-01-01T00:00:00.000000000', '2010-01-01T00:00:00.000000000', '2011-01-01T00:00:00.000000000', '2012-01-01T00:00:00.000000000', '2013-01-01T00:00:00.000000000', '2014-01-01T00:00:00.000000000', '2015-01-01T00:00:00.000000000', '2016-01-01T00:00:00.000000000', '2017-01-01T00:00:00.000000000', '2018-01-01T00:00:00.000000000', '2019-01-01T00:00:00.000000000', '2020-01-01T00:00:00.000000000'], dtype='datetime64[ns]') - area (ISO3)(area (ISO3))<U3'COL' 'ARG' 'MEX' 'BOL'
array(['COL', 'ARG', 'MEX', 'BOL'], dtype='<U3')
- category (IPCC 2006)(category (IPCC 2006))<U3'0' '1' '2' '3' '4' '5' '1.A' '1.B'
array(['0', '1', '2', '3', '4', '5', '1.A', '1.B'], dtype='<U3')
- animal (FAOSTAT)(animal (FAOSTAT))<U5'cow' 'swine' 'goat'
array(['cow', 'swine', 'goat'], dtype='<U5')
- product (FAOSTAT)(product (FAOSTAT))<U4'milk' 'meat'
array(['milk', 'meat'], dtype='<U4')
- scenario (FAOSTAT)(scenario (FAOSTAT))<U7'highpop' 'lowpop'
array(['highpop', 'lowpop'], dtype='<U7')
- provenance(provenance)<U9'projected'
array(['projected'], dtype='<U9')
- model(model)<U8'FANCYFAO'
array(['FANCYFAO'], dtype='<U8')
- source(source)<U8'RAND2020' 'RAND2021'
array(['RAND2020', 'RAND2021'], dtype='<U8')
- category_names(category (IPCC 2006))<U14'total' ... 'light industry'
array(['total', 'industry', 'energy', 'transportation', 'residential', 'land use', 'heavy industry', 'light industry'], dtype='<U14')
- CO2(time, area (ISO3), category (IPCC 2006), animal (FAOSTAT), product (FAOSTAT), scenario (FAOSTAT), provenance, model, source)float64[CO2·Gg/a] 0.1999 0.9963 ... 0.5608
- entity :
- CO2
Magnitude [[[[[[[[[0.19986727771667867 0.9963240063150465]]] [[[0.8891728167888998 0.3395004311053753]]]] [[[[0.38079040479351456 0.31966163808166415]]] [[[0.27683650007646243 0.5052333894450501]]]]] [[[[[0.6851690245101323 0.48063374678253734]]] [[[0.9721979482840242 0.1896531889909734]]]] [[[[0.760423924277212 0.7908532496229438]]] [[[0.25435007866868276 0.7466587933334186]]]]] [[[[[0.704282348094373 0.36685029732397345]]] [[[0.6473172688002721 0.7283657646914834]]]] [[[[0.9438005761938186 0.8166865297710632]]] [[[0.8521312894322015 0.8388018237401412]]]]]] [[[[[[0.5404785595324463 0.4433268253807776]]] [[[0.7817133464817346 0.9331055369637794]]]] [[[[0.20938788138612108 0.3009986070367807]]] [[[0.3101158978034423 0.6061339045018559]]]]] [[[[[0.36749605692997767 0.06446771576527088]]] [[[0.8365478899089853 0.4287290920068553]]]] [[[[0.7277369701324977 0.6154217043256479]]] [[[0.11778535343502372 0.7790221531833836]]]]] [[[[[0.4834945361619061 0.7813328507381408]]] [[[0.5026255892186419 0.10939922788387613]]]] [[[[0.050132159227802564 0.23394124592733723]]] [[[0.17180491794321673 0.4918488649033378]]]]]] [[[[[[0.10332808844420194 0.7768092536347643]]] [[[0.7400741815886247 0.8505567319320867]]]] [[[[0.6974545511624017 0.7061795968120311]]] [[[0.6330924638261104 0.015882410855326712]]]]] [[[[[0.88512233069786 0.6531417362821755]]] [[[0.2954981712678223 0.3531391665486445]]]] [[[[0.9560596693856424 0.07826823456287924]]] [[[0.4026613645604943 0.9676966547576433]]]]] [[[[[0.7514043629991214 0.49024866218777763]]] [[[0.3407086173386612 0.2694866193451311]]]] [[[[0.5829159939533608 0.39069819196087363]]] [[[0.9696336780085121 0.38227230704534754]]]]]] ... [[[[[[0.03945070440989995 0.8229073055188663]]] [[[0.9659199943429339 0.7296650151154773]]]] [[[[0.024216897140068805 0.0671471323847358]]] [[[0.7598830881639362 0.3060863608659712]]]]] [[[[[0.6239302797160491 0.3368281119346085]]] [[[0.7281986436469398 0.14517683784081892]]]] [[[[0.16783547947932287 0.09220428145243065]]] [[[0.9327855463865277 0.6643222156766073]]]]] [[[[[0.7496805170620575 0.8259499858408719]]] [[[0.4430209690493082 0.4439525608109086]]]] [[[[0.7543846895888224 0.4195708292945898]]] [[[0.37350269834290917 0.6375325108884975]]]]]] [[[[[[0.19933762944779831 0.3796305187001038]]] [[[0.6993982658475837 0.9888117927036528]]]] [[[[0.960399429390547 0.06675760276519382]]] [[[0.5025385312874466 0.6475606008753818]]]]] [[[[[0.20887118516208625 0.803692860354939]]] [[[0.696820823084466 0.18453090923763982]]]] [[[[0.48296710647067387 0.5451552186584164]]] [[[0.04717186751210933 0.4456550131794047]]]]] [[[[[0.8885623637801361 0.2561381611833099]]] [[[0.7504150376845751 0.9685752150016613]]]] [[[[0.2894713805600003 0.9533526481451868]]] [[[0.7051481136213553 0.8621999840821706]]]]]] [[[[[[0.7373401841367387 0.5761293319876571]]] [[[0.47108166677227825 0.38810939485634277]]]] [[[[0.5176735489686464 0.44100885960507286]]] [[[0.026836576185055083 0.8444320825403637]]]]] [[[[[0.5467983692113901 0.13128701193440517]]] [[[0.4335912414277937 0.7917910575863794]]]] [[[[0.119802531205498 0.8241210454343841]]] [[[0.19876784967750005 0.3180736556481705]]]]] [[[[[0.8518554645284403 0.6776557820633515]]] [[[0.07472999812554748 0.051811196042171326]]]] [[[[0.8746639747376777 0.1636019677704661]]] [[[0.9712040402950158 0.5892644651524055]]]]]]] [[[[[[[0.956515610407305 0.8308162629510808]]] [[[0.7149083639495593 0.47133038082081924]]]] [[[[0.1406566930557479 0.4614503877969822]]] [[[0.08677073049846729 0.7059961144070648]]]]] [[[[[0.5251311962038041 0.31525861556450097]]] [[[0.8291549883723518 0.4141315619432654]]]] [[[[0.7552321636466626 0.1929287352990554]]] [[[0.2901112910337478 0.20583420223369076]]]]] [[[[[0.9010574802492788 0.027177747769792093]]] [[[0.8444662450414131 0.7335943755612034]]]] [[[[0.6646354594878779 0.43287177661858656]]] [[[0.6913708782042348 0.678955437965285]]]]]] [[[[[[0.5977502192611915 0.6297711770117564]]] [[[0.21647494826997205 0.26855687278667906]]]] [[[[0.8188797084472912 0.8557710847968731]]] [[[0.9071676741383823 0.686527199695166]]]]] [[[[[0.6806602225099552 0.5952301460126185]]] [[[0.7854124044143537 0.5992702481272575]]]] [[[[0.22411746600638105 0.5908754975024848]]] [[[0.7567216937366178 0.975934593339662]]]]] [[[[[0.9049076960347743 0.8833542935577363]]] [[[0.8589545268205369 0.8080495518048901]]]] [[[[0.5797267021011433 0.6681333453592927]]] [[[0.9450286907543045 0.2671788128549145]]]]]] [[[[[[0.26742478744793985 0.8419257704557365]]] [[[0.3078545362985572 0.01308203104844341]]]] [[[[0.8626377122111815 0.3632494099706999]]] [[[0.38828925794617164 0.08566575389117437]]]]] [[[[[0.6533720494027386 0.3714994624702598]]] [[[0.8514004817894448 0.1755191171649101]]]] [[[[0.01163762950483127 0.2281849723626077]]] [[[0.305452315228953 0.8634929556202068]]]]] [[[[[0.5597687687340882 0.8457378744440501]]] [[[0.6750179381940362 0.19372084946996015]]]] [[[[0.23615779241945778 0.9100197235868995]]] [[[0.2913275808662439 0.9767406722675707]]]]]] ... [[[[[[0.7801909617879803 0.5298935955288563]]] [[[0.9181962134091322 0.6909228536756198]]]] [[[[0.3289295568157281 0.9060526176539816]]] [[[0.4526910626721373 0.5813715104753008]]]]] [[[[[0.2689622156484932 0.1848634328832437]]] [[[0.5398804901573592 0.38160167621998065]]]] [[[[0.715230014508208 0.26959210503327746]]] [[[0.1496948464556741 0.2860974420239496]]]]] [[[[[0.5094696279816947 0.22618588091288783]]] [[[0.7761627459430273 0.9081285624915277]]]] [[[[0.49105688402309244 0.17357367848368466]]] [[[0.18926437586630607 0.5009396830430841]]]]]] [[[[[[0.5180872514213896 0.5556453170521338]]] [[[0.7803390655881985 0.6043602997795914]]]] [[[[0.060883143946600216 0.09893465587694261]]] [[[0.8135399541304045 0.9198313831900226]]]]] [[[[[0.16834960004646804 0.8417079088250728]]] [[[0.061903331069625755 0.8781358125559234]]]] [[[[0.3116904669464404 0.5837487248855907]]] [[[0.7886669638605319 0.18283191099707397]]]]] [[[[[0.7746541575237983 0.25139742498562034]]] [[[0.7636640248646741 0.2129450641892593]]]] [[[[0.3266329804579141 0.6554572380482169]]] [[[0.6554322241249513 0.9252563832061238]]]]]] [[[[[[0.528517706517336 0.3215274735763183]]] [[[0.5676036648958439 0.014942710363659462]]]] [[[[0.033795795787008864 0.04873175093181903]]] [[[0.5227476827366321 0.02993014777660785]]]]] [[[[[0.6257832505476486 0.7794634237247344]]] [[[0.7555120442433395 0.5223963139494271]]]] [[[[0.32540227690238166 0.8328115454201442]]] [[[0.9314872591833426 0.049461779413631946]]]]] [[[[[0.35507004212163296 0.9110992694493052]]] [[[0.20791036273951857 0.38587463780286757]]]] [[[[0.4694116824534794 0.7445600516864814]]] [[[0.8656192777311599 0.2416670511057224]]]]]]] [[[[[[[0.12022742208849968 0.09656994427816012]]] [[[0.10452194498686207 0.1835418310625555]]]] [[[[0.5297333810676558 0.6811731538579413]]] [[[0.09423528682979121 0.7463667720531316]]]]] [[[[[0.4710424764792145 0.4107335217421818]]] [[[0.9716448916770891 0.6653129345748202]]]] [[[[0.7424890003075842 0.6866659290308166]]] [[[0.8002801032139185 0.10986600261514068]]]]] [[[[[0.5846876842450007 0.37505673376064763]]] [[[0.036317030996623534 0.43620102635903957]]]] [[[[0.3178607028175314 0.7979864245656424]]] [[[0.7804472330531783 0.7679221919550303]]]]]] [[[[[[0.9215274297459785 0.5610662110921911]]] [[[0.42092649347195576 0.5040168141042681]]]] [[[[0.04346102036151145 0.22384411328197162]]] [[[0.0764375373150108 0.301563523474788]]]]] [[[[[0.30451474376590426 0.05063097551167506]]] [[[0.026656910626356223 0.4172109714303819]]]] [[[[0.9286979252193452 0.3264362288953011]]] [[[0.6025676567723652 0.30020623568316895]]]]] [[[[[0.5322468350406138 0.7147834307075173]]] [[[0.24118063356056485 0.9411794506935918]]]] [[[[0.7496875651995595 0.7047635531225103]]] [[[0.46072078996318355 0.26730245708059797]]]]]] [[[[[[0.7926071067483086 0.0021544962463153627]]] [[[0.25178751418207357 0.9883141317790822]]]] [[[[0.4682368294131334 0.25991166803028387]]] [[[0.17286737857605539 0.6932277201773298]]]]] [[[[[0.21751752044398376 0.9545306092351902]]] [[[0.1436138270013414 0.6570356930308248]]]] [[[[0.17572508979425494 0.8368832589704039]]] [[[0.556054150976324 0.49166732409849845]]]]] [[[[[0.6841031788026298 0.5337566402323068]]] [[[0.13559191049086838 0.7966025176548692]]]] [[[[0.7735587304455614 0.7608948707311738]]] [[[0.4443233144419092 0.6640767535773173]]]]]] ... [[[[[[0.4552004154992084 0.6914966483434312]]] [[[0.907852767546687 0.396430225485501]]]] [[[[0.5008798252852734 0.5402743364807246]]] [[[0.49033073807937844 0.2583688190053264]]]]] [[[[[0.18252315485717252 0.7268524278943896]]] [[[0.055348629533073845 0.10599392457324264]]]] [[[[0.9066775673525747 0.6676194631731892]]] [[[0.93848085122588 0.8723494026593451]]]]] [[[[[0.5632945041897305 0.7351009592139685]]] [[[0.8094786033089278 0.6142413197731962]]]] [[[[0.9234169057811773 0.4900469497840956]]] [[[0.3104765478372663 0.9972511966468359]]]]]] [[[[[[0.3462155837403662 0.4578100242562969]]] [[[0.3907670342003735 0.4369101776150083]]]] [[[[0.4689664972059804 0.42652116509927773]]] [[[0.7934047305335951 0.8123133164538224]]]]] [[[[[0.07493874459050998 0.3824748111373185]]] [[[0.7984183330835903 0.69847822356637]]]] [[[[0.1658997647313919 0.39657274322218505]]] [[[0.1307215822724206 0.19326555543952117]]]]] [[[[[0.6744332627374348 0.7382377411219484]]] [[[0.28372034234766685 0.8842038539287737]]]] [[[[0.5664402229868815 0.780126247127002]]] [[[0.04272197841062386 0.18715124656858317]]]]]] [[[[[[0.3593623978049705 0.6888084341003422]]] [[[0.11822663492412244 0.4270976467259966]]]] [[[[0.7769653532729554 0.1677120299184992]]] [[[0.17548680692430796 0.0010363963725419367]]]]] [[[[[0.7581803602489438 0.7387055714554408]]] [[[0.8905417292323456 0.45959766163583826]]]] [[[[0.909331456907586 0.3990210224752624]]] [[[0.7716864820986721 0.2941908672174801]]]]] [[[[[0.7878530205187222 0.10584339576403023]]] [[[0.3095241797831675 0.5174244788653715]]]] [[[[0.2909867466772422 0.6476271620671592]]] [[[0.4656728337595665 0.2199498844558967]]]]]]] [[[[[[[0.442121358319991 0.12961016225914745]]] [[[0.7363956751547983 0.14497923979315008]]]] [[[[0.1154407133366615 0.4256327050283155]]] [[[0.03482362783983384 0.9249306533511178]]]]] [[[[[0.8240920648443082 0.055905317751516526]]] [[[0.8342749790142407 0.7280763969800043]]]] [[[[0.7462578146482266 0.7913332700849833]]] [[[0.3412830989249819 0.486663015811438]]]]] [[[[[0.5154377556251168 0.8968408906218118]]] [[[0.5264957862584271 0.635690636725216]]]] [[[[0.23833582289362043 0.7781290828980781]]] [[[0.06094256049481683 0.09367378138982807]]]]]] [[[[[[0.33187308301884466 0.013119149115837114]]] [[[0.7035761458922124 0.5954248031500299]]]] [[[[0.8132376322198004 0.9482994375072642]]] [[[0.45668259725706983 0.7995186894342494]]]]] [[[[[0.4607133516523393 0.3310813115088075]]] [[[0.885989040207419 0.5486637121294239]]]] [[[[0.32924439321063814 0.1395732021414765]]] [[[0.2548229451955929 0.012226701923171879]]]]] [[[[[0.9882649390351759 0.8537506476620572]]] [[[0.7363716496935008 0.753575592180843]]]] [[[[0.9109984378751625 0.7460867659012579]]] [[[0.3996998229017017 0.26497903766699804]]]]]] [[[[[[0.7217765260167306 0.26300393021022783]]] [[[0.8048108561237268 0.7686165557928408]]]] [[[[0.6412960301537697 0.8865322504478498]]] [[[0.878450175679658 0.15715259491001365]]]]] [[[[[0.24794383543635934 0.4051339298278528]]] [[[0.2681805495365964 0.347378149682787]]]] [[[[0.9658284740801234 0.795428139991167]]] [[[0.8395668494208034 0.5124892490689749]]]]] [[[[[0.5471829165353348 0.5580973212613848]]] [[[0.28459305977993965 0.16936158769651077]]]] [[[[0.7888102332758725 0.9759409629624175]]] [[[0.25600016231062106 0.07986152266473656]]]]]] ... [[[[[[0.9657243692589894 0.046301860594796795]]] [[[0.32975070069837453 0.5248989291386721]]]] [[[[0.680790269322217 0.9054880768849569]]] [[[0.3753487503826054 0.3635270137969384]]]]] [[[[[0.519427174852732 0.16066329534924506]]] [[[0.6946821708422833 0.5943464345323831]]]] [[[[0.7043694097105585 0.9677142016168396]]] [[[0.9584573970970985 0.39527730083239965]]]]] [[[[[0.6405552643540843 0.038213192863942425]]] [[[0.20401104923144597 0.1425385507729997]]]] [[[[0.1966987023205039 0.23855308142025133]]] [[[0.8726104305303424 0.2994562143708055]]]]]] [[[[[[0.33492708376727176 0.029743050104291457]]] [[[0.578018675787647 0.926354665581449]]]] [[[[0.8118669286888169 0.8441922864025638]]] [[[0.9214583104817331 0.8703429801239431]]]]] [[[[[0.7910212697126667 0.22315627614034728]]] [[[0.3207684733386711 0.6587552441520403]]]] [[[[0.8630847289096018 0.6279666413692637]]] [[[0.5406564714052321 0.23139727150509948]]]]] [[[[[0.888047879046423 0.028562877120757668]]] [[[0.19157249892947892 0.27403033998766546]]]] [[[[0.31053362374635196 0.4604426238355037]]] [[[0.521796757182845 0.4707609896779493]]]]]] [[[[[[0.45618094821208 0.6216532165698485]]] [[[0.23165435578989213 0.31033117286884715]]]] [[[[0.6795297719643479 0.9830805302723168]]] [[[0.7533464919158193 0.04230431703788207]]]]] [[[[[0.1105361187006606 0.10211358954021454]]] [[[0.8716364183966321 0.9679081418896643]]]] [[[[0.5382608434442538 0.3836094631202511]]] [[[0.8345656938893118 0.3765738334049439]]]]] [[[[[0.5259688522436461 0.8040419811302426]]] [[[0.4302468138207005 0.7417581951025581]]]] [[[[0.07141142108823106 0.9316231795374644]]] [[[0.9180613398733105 0.1214369604133767]]]]]]]] [[[[[[[[0.15184438467054062 0.1978500710269362]]] [[[0.3194342991533091 0.16626267712983867]]]] [[[[0.8912154513822336 0.6853340642462298]]] [[[0.15074556896368518 0.5254088294934297]]]]] [[[[[0.7447368742125752 0.817345552013301]]] [[[0.040680299546868914 0.8689159498980003]]]] [[[[0.10955364614115204 0.2012601007386653]]] [[[0.9296951646780787 0.03704064283383668]]]]] [[[[[0.5414373893091056 0.5287532098592955]]] [[[0.09366695825536575 0.9706685220831346]]]] [[[[0.01707794772513893 0.9229118777063028]]] [[[0.8227929873511659 0.34944945969681274]]]]]] [[[[[[0.2749046586461158 0.48809591756332593]]] [[[0.5170204907182427 0.30791524764417855]]]] [[[[0.538386873218536 0.5811044808739779]]] [[[0.2629392337685762 0.8968611798026392]]]]] [[[[[0.20227711815353855 0.03164946974392491]]] [[[0.8161979602643366 0.16216871037240443]]]] [[[[0.0268643806923905 0.02162011082569093]]] [[[0.4811322355956652 0.787204051069857]]]]] [[[[[0.7523843463300638 0.33515687897545676]]] [[[0.40858035566568573 0.8659418871780281]]]] [[[[0.7810334751960418 0.04595453661826854]]] [[[0.028883671375197206 0.3283952197629689]]]]]] [[[[[[0.2810683397953686 0.2710815815774481]]] [[[0.3415822125497553 0.273302707883477]]]] [[[[0.16886906971819937 0.6023488763082733]]] [[[0.2731932318383625 0.3466935397453321]]]]] [[[[[0.8858929969306413 0.778216307404627]]] [[[0.21762951984413736 0.5028311824243537]]]] [[[[0.9771058999061766 0.03742566597264718]]] [[[0.874672440583294 0.27797788569836934]]]]] [[[[[0.348398080218849 0.330260003048477]]] [[[0.6523825389429414 0.9758725542288005]]]] [[[[0.11135841711578298 0.6359719571771619]]] [[[0.8011787558693689 0.6804694966995172]]]]]] ... [[[[[[0.25312158092480896 0.3100066601183047]]] [[[0.8841267751277447 0.5874593660295048]]]] [[[[0.6787962676795597 0.6594740567322724]]] [[[0.31408284672524645 0.05222827738838787]]]]] [[[[[0.24329103795762097 0.6766338163137604]]] [[[0.3781040445425913 0.9756677048787785]]]] [[[[0.6074230844188326 0.9283700053362215]]] [[[0.0083533593511812 0.5507968625517549]]]]] [[[[[0.025247597602223615 0.2046133965690401]]] [[[0.6670432948525762 0.8845151134093197]]]] [[[[0.5398198524765673 0.11864576988555131]]] [[[0.5351046892976523 0.2737059744319653]]]]]] [[[[[[0.6382608699246701 0.31798479998350504]]] [[[0.7085762011227295 0.5285466042916829]]]] [[[[0.20932978050616535 0.37106176228008814]]] [[[0.22274983455307806 0.9879695459954154]]]]] [[[[[0.5845621924385073 0.4672727712043623]]] [[[0.21305467098198805 0.8223657857208327]]]] [[[[0.1135933845294137 0.5254780963237433]]] [[[0.4526133081590956 0.5374036217678806]]]]] [[[[[0.17186705000706992 0.7170235863622375]]] [[[0.9081799226984232 0.6377374684371817]]]] [[[[0.2347947194377915 0.9275785486540481]]] [[[0.5914262483720163 0.9098046550717654]]]]]] [[[[[[0.8230116009738245 0.9265350992069153]]] [[[0.23825353433221685 0.006628777138811048]]]] [[[[0.3540335791177104 0.906038283343539]]] [[[0.19459368510060004 0.2773819001451907]]]]] [[[[[0.7477256076949916 0.4203709604301893]]] [[[0.14861710236600778 0.737001597593409]]]] [[[[0.1645520611761938 0.9331577505402738]]] [[[0.9545623371140085 0.7092558782347047]]]]] [[[[[0.5686985446406836 0.7563025265971406]]] [[[0.6848795171029284 0.2446970940199661]]]] [[[[0.8770462214693862 0.4422847317491986]]] [[[0.5917723736454459 0.44952388654691744]]]]]]] [[[[[[[0.7931077281434039 0.5230438689289909]]] [[[0.873602089612686 0.7343542514087804]]]] [[[[0.8547973702069739 0.5830660731686201]]] [[[0.5992793913249168 0.5493003052558902]]]]] [[[[[0.3888824172887331 0.23410299415772529]]] [[[0.8622661390475804 0.7306551266313089]]]] [[[[0.8327732253475156 0.23847376757300964]]] [[[0.6383343931056441 0.20398800462147637]]]]] [[[[[0.43796908946267854 0.7589507858414496]]] [[[0.5815611375157833 0.5616839036189679]]]] [[[[0.08858448072574243 0.5930711792656977]]] [[[0.4206609242638897 0.43717704637235066]]]]]] [[[[[[0.8600158547592668 0.8398353693486905]]] [[[0.047359110368112134 0.052044267875212324]]]] [[[[0.188043109928676 0.29478571126247477]]] [[[0.4571229420892201 0.6477795645343961]]]]] [[[[[0.03896059738342639 0.4674049315452691]]] [[[0.2531202060520219 0.742180839516457]]]] [[[[0.4115778538326039 0.9389467917395159]]] [[[0.5961954081275522 0.3214288551577993]]]]] [[[[[0.8968654216799127 0.6728590599868917]]] [[[0.9880588836965468 0.3826788836319305]]]] [[[[0.6619567920604477 0.01701556559487416]]] [[[0.05197482749403293 0.7143920183607829]]]]]] [[[[[[0.7934047851587577 0.2532616273843279]]] [[[0.6137747547170573 0.7545744265075612]]]] [[[[0.005060139374324035 0.3951145099473029]]] [[[0.5899812889555949 0.6751961526029291]]]]] [[[[[0.9081470193148797 0.3092656640941053]]] [[[0.3131623467479917 0.4044297600123883]]]] [[[[0.5250501761921269 0.1602434322453823]]] [[[0.17329610293517062 0.6423790618597636]]]]] [[[[[0.9694641576097093 0.008015191944453437]]] [[[0.8637210065369431 0.9032014299480683]]]] [[[[0.03897146251173922 0.9847597676173838]]] [[[0.7754121857850168 0.7819779983563347]]]]]] ... [[[[[[0.8704008845009643 0.3656311244012991]]] [[[0.7578285219390933 0.4210160964115034]]]] [[[[0.6163597629119842 0.5808344092458968]]] [[[0.1147879439007694 0.6686804855929925]]]]] [[[[[0.49956313315944 0.16226638459012876]]] [[[0.4770826942658799 0.9217059046659434]]]] [[[[0.7040760990801774 0.25480472262466236]]] [[[0.890123176042612 0.7670469255423545]]]]] [[[[[0.15277802591118728 0.4414606530221593]]] [[[0.0025880283073862476 0.46428613056205426]]]] [[[[0.15049296530825573 0.23254892406682148]]] [[[0.6613444756872902 0.15622764917980547]]]]]] [[[[[[0.9854430286654984 0.7222135218919703]]] [[[0.38882656409554084 0.36737431091517214]]]] [[[[0.756282747605588 0.564327095888563]]] [[[0.1655747463153192 0.5294429363068006]]]]] [[[[[0.4626227256139668 0.0011599353069494667]]] [[[0.9170856247658341 0.9435722326169569]]]] [[[[0.4772960438434969 0.7793605678799435]]] [[[0.11155361359201454 0.10696633696762126]]]]] [[[[[0.029240978076787716 0.5112303257799498]]] [[[0.4283818286771591 0.6434968178129609]]]] [[[[0.2706242262202203 0.16895287502050704]]] [[[0.9881361554851327 0.23280290953332772]]]]]] [[[[[[0.09612031232443263 0.9839063695157871]]] [[[0.6993784037051624 0.1689557981064731]]]] [[[[0.5987554166372503 0.6422303926713937]]] [[[0.17421652347284244 0.4256152683076774]]]]] [[[[[0.7874029882206464 0.7088863457575366]]] [[[0.6174062060485794 0.6755459786326419]]]] [[[[0.17974879372448938 0.45086224200681857]]] [[[0.2993752661040876 0.4891918341240048]]]]] [[[[[0.727151521043558 0.1917443406294601]]] [[[0.4527568009096422 0.7690139315381348]]]] [[[[0.37056052779927684 0.6308278788947523]]] [[[0.42353864519277906 0.14747401617752554]]]]]]] [[[[[[[0.7275625279437369 0.803820842369013]]] [[[0.17033772237193423 0.9409834789003394]]]] [[[[0.1810071151193301 0.6341482876521968]]] [[[0.8187110502359185 0.9569631791455475]]]]] [[[[[0.9049731798482524 0.19123150172305659]]] [[[0.5521229384886548 0.7267385880362345]]]] [[[[0.09743309192396199 0.4447435225248073]]] [[[0.5074450234638459 0.11961046188160407]]]]] [[[[[0.655750216003607 0.6071521460653508]]] [[[0.06184095913832832 0.04456329701124495]]]] [[[[0.15846209625977237 0.23992000336542674]]] [[[0.711551473179916 0.18934812739589957]]]]]] [[[[[[0.4251980477800489 0.5415576342840969]]] [[[0.13646545995943216 0.633446736598373]]]] [[[[0.671801990083465 0.1957899308688409]]] [[[0.36147406786356806 0.27998172924495757]]]]] [[[[[0.4904568694455197 0.7264159299662136]]] [[[0.5815264009477427 0.023253296258137435]]]] [[[[0.211098232488532 0.09835846519411251]]] [[[0.5623784507247739 0.9617212371686436]]]]] [[[[[0.23860575811682583 0.172506926537219]]] [[[0.5941273235648121 0.7146674554870913]]]] [[[[0.592376590912346 0.8916673384854706]]] [[[0.7342532661375926 0.23564266395983613]]]]]] [[[[[[0.46353262747064117 0.9565227123592436]]] [[[0.8955575769028595 0.8088154335885762]]]] [[[[0.9915757021643725 0.4004161929290818]]] [[[0.444441400466434 0.695693558152599]]]]] [[[[[0.07267849266190873 0.8128408530025577]]] [[[0.9706491300604725 0.1848476615722724]]]] [[[[0.9197645094546439 0.4545870697760137]]] [[[0.7028744518798776 0.691149943978094]]]]] [[[[[0.22035623424930173 0.9114662187368593]]] [[[0.5847616747028201 0.7727117147140607]]]] [[[[0.995801076399652 0.018017181716709962]]] [[[0.5867658168106235 0.22076728276564817]]]]]] ... [[[[[[0.9727111217486025 0.19556502664555464]]] [[[0.18331733958661878 0.9967988737604042]]]] [[[[0.2288870372918047 0.6188406427551199]]] [[[0.2246907101276221 0.2800309214961023]]]]] [[[[[0.7195860737296658 0.5266103303926672]]] [[[0.586417508381484 0.5481309325406074]]]] [[[[0.4005122673322413 0.013516069565940758]]] [[[0.5326089932828345 0.36018933836473443]]]]] [[[[[0.8412586113551043 0.26852092739046407]]] [[[0.8940836504640051 0.48274704575460603]]]] [[[[0.41450133840097436 0.9486661972962842]]] [[[0.06666596771887956 0.8546218020662752]]]]]] [[[[[[0.9353033050952516 0.44540540402193196]]] [[[0.8956734172330043 0.5803842770553865]]]] [[[[0.5790981938181405 0.16853681640153406]]] [[[0.9654882246416001 0.20530592853749463]]]]] [[[[[0.4112164472170069 0.34985239547702474]]] [[[0.971036629875175 0.9399747575492726]]]] [[[[0.7136591392724964 0.7430998055853248]]] [[[0.5721897590383358 0.37722943516443164]]]]] [[[[[0.21734033397501396 0.05465847160651616]]] [[[0.06588766630359733 0.8383066010333993]]]] [[[[0.2905980506467023 0.21687492526949181]]] [[[0.5186633016917837 0.9566861740318326]]]]]] [[[[[[0.6743203922851434 0.28776502194346065]]] [[[0.07373309421744934 0.015279989307138364]]]] [[[[0.8469859499124287 0.3351787705145398]]] [[[0.49064474982942374 0.04999549690345517]]]]] [[[[[0.1367858580622202 0.6745840469278144]]] [[[0.3457824317250645 0.03030029083869934]]]] [[[[0.23056686656513137 0.5677666752727059]]] [[[0.012229512551760968 0.3409858380131585]]]]] [[[[[0.3235503326817235 0.7210607855567241]]] [[[0.8405687931709198 0.9819119609430849]]]] [[[[0.151457587706044 0.3209523426595521]]] [[[0.3721714909838828 0.7179838084193076]]]]]]] [[[[[[[0.6569974256874763 0.5371095815006266]]] [[[0.5815040007266271 0.015146293061100713]]]] [[[[0.2829775429126924 0.757408002909364]]] [[[0.09469496681047795 0.38017722218851924]]]]] [[[[[0.8593417436007004 0.6065902523241062]]] [[[0.5002844203493139 0.027366931784705617]]]] [[[[0.06666602512468744 0.5309873591596567]]] [[[0.2551734406321672 0.4269276496463379]]]]] [[[[[0.25842816789975054 0.28592765636295847]]] [[[0.9104084015966882 0.0027172076651345023]]]] [[[[0.49500664255198945 0.1485911803982093]]] [[[0.09895267582216505 0.9421970272587639]]]]]] [[[[[[0.6573329794586217 0.21193522623386252]]] [[[0.8448250040108748 0.7084010904785497]]]] [[[[0.550108141924486 0.9637765041728976]]] [[[0.36643106698856687 0.12036024526848499]]]]] [[[[[0.08912662314038022 0.11502089850086272]]] [[[0.4021314567699378 0.5592413420332812]]]] [[[[0.30289754221947596 0.8613933008752285]]] [[[0.006211044839991242 0.20748438772730848]]]]] [[[[[0.6898892503955474 0.8457435623410331]]] [[[0.9439464801320212 0.7266873394570164]]]] [[[[0.5054431778771274 0.9413236975421819]]] [[[0.8430571938388319 0.9597176702280411]]]]]] [[[[[[0.8176611534250486 0.06872850376298756]]] [[[0.7753303496469627 0.46226772064605504]]]] [[[[0.18916919591952697 0.28261198897435424]]] [[[0.5951296381608168 0.9865165262727505]]]]] [[[[[0.42621686800005665 0.7890308044771731]]] [[[0.0838525084671512 0.7621615584201831]]]] [[[[0.37363129612547274 0.008939665712290323]]] [[[0.8329543628713973 0.6794261567412146]]]]] [[[[[0.9962212520953533 0.17613186661018987]]] [[[0.7850836799397216 0.8849344283904494]]]] [[[[0.8000002419013972 0.2893225002629254]]] [[[0.3110001097975126 0.8634999539400852]]]]]] ... [[[[[[0.3651217733997616 0.5464529070261404]]] [[[0.9921669739522382 0.9880773210521426]]]] [[[[0.07555207551897958 0.7440356258876406]]] [[[0.08682618421104504 0.9947273786639433]]]]] [[[[[0.9529131615421248 0.43867421966631037]]] [[[0.8788840845647251 0.5583106243527394]]]] [[[[0.40262958909479596 0.8491500322843932]]] [[[0.5644737723415535 0.5280079906780158]]]]] [[[[[0.9068955925336734 0.782123161935444]]] [[[0.7408747090342538 0.5468600818178609]]]] [[[[0.17087826707393616 0.48624712644991475]]] [[[0.2810281786236617 0.31992553410045765]]]]]] [[[[[[0.9574572919191779 0.722101716027367]]] [[[0.6707072691377467 0.45019855505551787]]]] [[[[0.4808377764884558 0.3121643368910816]]] [[[0.4983490239543451 0.8816354384423714]]]]] [[[[[0.3861802506261105 0.7197784738154868]]] [[[0.13003767582326142 0.04036135976083666]]]] [[[[0.3497300562341853 0.6623717068330157]]] [[[0.07166416191958613 0.6288011871135457]]]]] [[[[[0.17496377752713121 0.3925481157972027]]] [[[0.6671025129763118 0.829982864734233]]]] [[[[0.7479809122880072 0.7196399507466124]]] [[[0.61660198285004 0.5350411538958244]]]]]] [[[[[[0.22630614398215243 0.31266621863989263]]] [[[0.7553188371841861 0.7170923102053804]]]] [[[[0.9155653407555014 0.4287179615077312]]] [[[0.9619634059881356 0.8642061857323194]]]]] [[[[[0.6098722155679184 0.7475185961925597]]] [[[0.09298664827903946 0.5199158497415972]]]] [[[[0.8694315451667914 0.9442270375859007]]] [[[0.1893213204852251 0.12653532773953446]]]]] [[[[[0.07249855449824882 0.9765325502125057]]] [[[0.2269643114559846 0.3094206763253491]]]] [[[[0.29856838752451376 0.9484482517576985]]] [[[0.1600978822783813 0.5293411656876539]]]]]]]] [[[[[[[[0.6189160206816684 0.07545575998336163]]] [[[0.8469250711414994 0.4602702187920611]]]] [[[[0.924777776852886 0.3435252085575601]]] [[[0.9621241400174284 0.17350588486388652]]]]] [[[[[0.5882200013835414 0.551297827831593]]] [[[0.8791094917896969 0.20090546980546176]]]] [[[[0.39854387686598125 0.6647480796710159]]] [[[0.39209349019861295 0.2677038741707697]]]]] [[[[[0.06800864789923655 0.4069458982564075]]] [[[0.8090038301047455 0.0785121813054771]]]] [[[[0.6287118083014426 0.89408998713004]]] [[[0.0852153137119287 0.2648046456916704]]]]]] [[[[[[0.22730639193147262 0.9213051462359076]]] [[[0.12361109363798217 0.306580264429983]]]] [[[[0.9782929543239921 0.10251242448248898]]] [[[0.523896002292976 0.09595133490507302]]]]] [[[[[0.34719847076008037 0.544453401826213]]] [[[0.11859457975302512 0.3995085676664403]]]] [[[[0.23606945694242398 0.9282729734978148]]] [[[0.9449724810563092 0.20221085674327188]]]]] [[[[[0.19051040791935792 0.462865729360292]]] [[[0.9375500092553707 0.35881286463449125]]]] [[[[0.8973062152137993 0.46991119802643166]]] [[[0.7892342972790174 0.5100560133667839]]]]]] [[[[[[0.08548761585858833 0.9774314813095323]]] [[[0.522522180192864 0.9881803841039347]]]] [[[[0.014675638980573114 0.12903939880182624]]] [[[0.5330473872647937 0.1539977378655707]]]]] [[[[[0.8722852879155801 0.2852127181833206]]] [[[0.7115178612527209 0.6829095477400605]]]] [[[[0.6083298575156791 0.9535473996917225]]] [[[0.45990216058383193 0.3454487680715699]]]]] [[[[[0.6949896733317391 0.002845971128820346]]] [[[0.5734144141391343 0.11875339717196343]]]] [[[[0.1728000056357537 0.7369793877572769]]] [[[0.4542809135162329 0.44865763330090647]]]]]] ... [[[[[[0.29856038335348867 0.9692249587622295]]] [[[0.32228544832565054 0.8917172328526655]]]] [[[[0.38080741541327545 0.011723263325070343]]] [[[0.6346965209649621 0.010003246776136177]]]]] [[[[[0.18935076066495438 0.23819580038953925]]] [[[0.9322699691595889 0.5598030640813755]]]] [[[[0.22832313893761202 0.2419910627208154]]] [[[0.37983017770985994 0.7692097940798666]]]]] [[[[[0.6552704365672227 0.7123758758644182]]] [[[0.09234011497198424 0.8219956156674536]]]] [[[[0.48613750096600084 0.4902304947261791]]] [[[0.8331799861536107 0.45306762447906646]]]]]] [[[[[[0.6794881460967533 0.38462975892453166]]] [[[0.08812246126859857 0.731079474626554]]]] [[[[0.7104069017268968 0.657946941254659]]] [[[0.3820655909200593 0.3997607284386999]]]]] [[[[[0.5698589686721995 0.4808581174723555]]] [[[0.10711662703225477 0.017924471967573075]]]] [[[[0.08573606631123953 0.05688309654915169]]] [[[0.8659812393073918 0.1997649625451221]]]]] [[[[[0.8467006790255927 0.8015480494265235]]] [[[0.9038069724810543 0.6115015198580388]]]] [[[[0.0061335647231843815 0.9717727611225744]]] [[[0.3361539407209472 0.3067628839704917]]]]]] [[[[[[0.4056398982425311 0.856511965395628]]] [[[0.08202396078268093 0.8409803508026495]]]] [[[[0.0843733606867122 0.41527750594213986]]] [[[0.15307849577240673 0.42729843487952623]]]]] [[[[[0.7456084320868374 0.767452731593518]]] [[[0.2665098987035447 0.5375172697293998]]]] [[[[0.17413986950314564 0.9214681606649028]]] [[[0.40503780286173463 0.12512399505565563]]]]] [[[[[0.5159768324753725 0.5205159100539242]]] [[[0.7817853898658922 0.27276299788498204]]]] [[[[0.7321783128650949 0.7821878306884125]]] [[[0.8149069683307133 0.17311892447924015]]]]]]] [[[[[[[0.249503824412993 0.7439692317866851]]] [[[0.9232315138401811 0.09632440850996349]]]] [[[[0.9227560281489217 0.5666572440619325]]] [[[0.17226630637556484 0.034858318989790193]]]]] [[[[[0.07206475357481867 0.8151949348316344]]] [[[0.477572750275168 0.1840088352630851]]]] [[[[0.34124281480633956 0.7153811167432793]]] [[[0.400892956815326 0.21510725424656552]]]]] [[[[[0.4024275032087469 0.25413419706663964]]] [[[0.25906316615539127 0.3061085279485203]]]] [[[[0.3485808889963994 0.9126291009175289]]] [[[0.5363762545574752 0.6705134162699624]]]]]] [[[[[[0.14083054700268605 0.9549659100369476]]] [[[0.4578975632476804 0.7553944970029487]]]] [[[[0.7766165618697657 0.5417169716235177]]] [[[0.20961495828424004 0.05554022819840032]]]]] [[[[[0.6799510683635636 0.5666486504169467]]] [[[0.22525927870043305 0.27656493483796096]]]] [[[[0.25533015210826027 0.20017822954301456]]] [[[0.24165575380149662 0.2944602649412579]]]]] [[[[[0.44084290108702207 0.7965778034444099]]] [[[0.9129931752382229 0.6366937176837452]]]] [[[[0.09394573890381208 0.8388796101882727]]] [[[0.21674339139404408 0.5415277385859915]]]]]] [[[[[[0.27631795756034605 0.11560217084992253]]] [[[0.4512133632744043 0.04634532038817851]]]] [[[[0.7166776213878996 0.47196856741341675]]] [[[0.19593568002317252 0.670348330391029]]]]] [[[[[0.7069191340451566 0.29328253615787936]]] [[[0.6705988847835916 0.7132873501390109]]]] [[[[0.2866695428457503 0.6542269855073298]]] [[[0.39136336856614673 0.7253876724912415]]]]] [[[[[0.8116743307709559 0.44180363457045335]]] [[[0.5548328643792992 0.3841220491670153]]]] [[[[0.01120235888595078 0.397277911470577]]] [[[0.39738385032863055 0.29359758587911444]]]]]] ... [[[[[[0.4550970083361179 0.9763101125240662]]] [[[0.20004098107760138 0.4983477375055897]]]] [[[[0.00350870794989111 0.6553318684432341]]] [[[0.11316829760100211 0.025101660538640713]]]]] [[[[[0.41240220215282486 0.8430905843715675]]] [[[0.08330784212832254 0.9220396190288181]]]] [[[[0.6248417120563051 0.41730234944918787]]] [[[0.5691795054605212 0.7205133664751621]]]]] [[[[[0.45228875865360396 0.58727149682933]]] [[[0.6850508053978557 0.6895366344921507]]]] [[[[0.03489329730104396 0.39437575183562323]]] [[[0.9104263451939222 0.41345041868211185]]]]]] [[[[[[0.8344009226688044 0.3292515624791088]]] [[[0.24767394877543902 0.7424798877368036]]]] [[[[0.6042006271037856 0.635287680599046]]] [[[0.7776739175758063 0.24922243690664392]]]]] [[[[[0.23510610605936533 0.13131768546835954]]] [[[0.10666076631024979 0.5135235677742637]]]] [[[[0.14157187175405583 0.23554375032204322]]] [[[0.24706652563783982 0.2551147967716104]]]]] [[[[[0.19438412656888548 0.43354443045357327]]] [[[0.57628025754547 0.931706072773952]]]] [[[[0.7670079624648803 0.5651196057667679]]] [[[0.19057648309059472 0.726035003508763]]]]]] [[[[[[0.0691271781638817 0.6228040398005776]]] [[[0.21003098904130102 0.013679655085562348]]]] [[[[0.38368676972282123 0.644499522899699]]] [[[0.39879056129143686 0.4440985130917954]]]]] [[[[[0.9228666043151847 0.35755398217103174]]] [[[0.699059545879158 0.2671802513886592]]]] [[[[0.039593414523378945 0.9008261997065194]]] [[[0.18206779015108188 0.7555764661748818]]]]] [[[[[0.6180645548657809 0.46397184225889965]]] [[[0.6420646639839497 0.9705541437708953]]]] [[[[0.5985280046477818 0.03969081120030893]]] [[[0.5075400669502985 0.17960182716948592]]]]]]] [[[[[[[0.42284127355099466 0.3308587676546554]]] [[[0.29053603973785536 0.9127200203830756]]]] [[[[0.008791037353156561 0.7115366946833047]]] [[[0.32449878016047595 0.7436211978854063]]]]] [[[[[0.40397457391690994 0.23021247544041346]]] [[[0.17303752084717583 0.5317639592081457]]]] [[[[0.6834084646240559 0.7672086456434888]]] [[[0.6685179365300484 0.33060361652072034]]]]] [[[[[0.9480279997408544 0.4944243692258703]]] [[[0.05460598594341581 0.6180492348948415]]]] [[[[0.9795138391344603 0.5146555655064461]]] [[[0.5330607074807179 0.20259153357374893]]]]]] [[[[[[0.9356359129762685 0.5633952916167536]]] [[[0.22385960566789387 0.3805134143835396]]]] [[[[0.06826660005084695 0.5284092250412454]]] [[[0.20025842281982675 0.6390818440505903]]]]] [[[[[0.055048662015218186 0.1645235031062503]]] [[[0.8423482820921996 0.7306299667479531]]]] [[[[0.2175596843886355 0.9229596335597778]]] [[[0.40410126033773963 0.48688863972249297]]]]] [[[[[0.6572105070795736 0.8090303440939406]]] [[[0.5525218011142841 0.9367533155510372]]]] [[[[0.6537714555372861 0.9114556580895627]]] [[[0.7827190642212796 0.3184937401723493]]]]]] [[[[[[0.49505188113936194 0.9806355570241153]]] [[[0.566913371040284 0.6310306323895606]]]] [[[[0.6356488001506299 0.4073329037917385]]] [[[0.33825288439022405 0.97939056464156]]]]] [[[[[0.3706477270709404 0.3905579362903161]]] [[[0.7476498534809554 0.014283275562563702]]]] [[[[0.0839098868773408 0.26522249624728345]]] [[[0.07432851254903317 0.547016264341948]]]]] [[[[[0.07621890113021745 0.973457522708404]]] [[[0.34604284028144316 0.44349871425759213]]]] [[[[0.2243762936544652 0.2942989871324221]]] [[[0.5128499857459865 0.2589325646909424]]]]]] ... [[[[[[0.24072972207572252 0.6974093225859233]]] [[[0.9056176995213919 0.3364575599488384]]]] [[[[0.737607345583208 0.739504026821139]]] [[[0.1919308299664001 0.34404302499517136]]]]] [[[[[0.8654715083031428 0.1782247026362047]]] [[[0.5337269511858795 0.08722077991132793]]]] [[[[0.9817117345704346 0.8198320335741367]]] [[[0.21193006374701162 0.8898025257262232]]]]] [[[[[0.4026151732569785 0.23159385277491296]]] [[[0.012794449346725578 0.32552456577384536]]]] [[[[0.9433921417675735 0.08686665346293199]]] [[[0.27359297812665273 0.8737460621433432]]]]]] [[[[[[0.9346397753024768 0.03927339733960322]]] [[[0.501324471181158 0.5250600921447092]]]] [[[[0.42278687057297004 0.97980716289988]]] [[[0.5550431695425819 0.375192322577635]]]]] [[[[[0.5247015348981797 0.9787327548056097]]] [[[0.19512479493905466 0.42639919809330606]]]] [[[[0.42123336913311815 0.5042705908590291]]] [[[0.9737736185268411 0.0894287272852381]]]]] [[[[[0.8664690298200709 0.5637953463998219]]] [[[0.036732582649662615 0.5828949921712753]]]] [[[[0.5344023724044138 0.5851108388545304]]] [[[0.5521036336830745 0.08343049059422059]]]]]] [[[[[[0.2930358040615746 0.616659982378677]]] [[[0.4481238939913882 0.6146440393022078]]]] [[[[0.17856243352872259 0.3082898932877206]]] [[[0.7324475146804794 0.49509249039061254]]]]] [[[[[0.9952794505412699 0.8923061764513182]]] [[[0.20032826958541905 0.9044935624532405]]]] [[[[0.825063171844204 0.907290235904719]]] [[[0.8494074082534633 0.48910088440427923]]]]] [[[[[0.5305242515191778 0.6611491108222404]]] [[[0.16293338539181623 0.2616668142201335]]]] [[[[0.14052763755657205 0.4084759177452332]]] [[[0.4353741365777962 0.07255769149873792]]]]]]] [[[[[[[0.41615914723431424 0.9532415469864056]]] [[[0.6448158343753814 0.5437353055351574]]]] [[[[0.5287135404317925 0.9770557403185443]]] [[[0.7698406941726991 0.03403773217151074]]]]] [[[[[0.08013122040122211 0.1597918759676663]]] [[[0.05377536163093144 0.6142210297265254]]]] [[[[0.9978116658145055 0.26386036155064496]]] [[[0.0366694006257301 0.6199235595701061]]]]] [[[[[0.11929149950381424 0.5105677073073919]]] [[[0.906636432732398 0.9746672435881968]]]] [[[[0.7725470310769949 0.7542164386506305]]] [[[0.8449955796536962 0.9777343351635323]]]]]] [[[[[[0.23043101166856417 0.2764256390541503]]] [[[0.6624060032266643 0.9881485372662262]]]] [[[[0.24368332571226858 0.056416138694771356]]] [[[0.1680938240158898 0.8925073810855637]]]]] [[[[[0.1305179962028442 0.4955741869846062]]] [[[0.0670690841154018 0.1965244303958008]]]] [[[[0.2722384921274478 0.4077608448663861]]] [[[0.6442844992994251 0.793493090009328]]]]] [[[[[0.22074320171020445 0.3006378971948427]]] [[[0.6426359799592465 0.464556256279245]]]] [[[[0.870098530596 0.12354392858680263]]] [[[0.06289630963975212 0.6631846969683567]]]]]] [[[[[[0.7037915302892467 0.37773321763816947]]] [[[0.47273309026316035 0.7022147935990266]]]] [[[[0.7311158514882026 0.6903525757530443]]] [[[0.3350452672591261 0.3505453109552793]]]]] [[[[[0.09888498622658026 0.8013836627408794]]] [[[0.5598003369585929 0.6833714433843588]]]] [[[[0.6097951742663903 0.4897899787034301]]] [[[0.5090232288243125 0.40764901210618687]]]]] [[[[[0.5387507815994895 0.46334683315835623]]] [[[0.17802778453744994 0.3433207497291343]]]] [[[[0.04278122862275546 0.19775844272433085]]] [[[0.8491117410150686 0.8523233147166748]]]]]] ... [[[[[[0.27370876131438104 0.756844921332332]]] [[[0.5275902176409047 0.5224937493027565]]]] [[[[0.8072692776978396 0.9563793429633534]]] [[[0.47021038013809224 0.9240134995464352]]]]] [[[[[0.2604210717778933 0.527351838945881]]] [[[0.7918323938127192 0.863428757195331]]]] [[[[0.5705100343816918 0.3340467395241794]]] [[[0.5244452407821715 0.998510078525677]]]]] [[[[[0.2113070637247988 0.5867466016845567]]] [[[0.9456634346234201 0.41466971445021983]]]] [[[[0.7707762161951374 0.15669358030496028]]] [[[0.08602831786604048 0.0034824409850822136]]]]]] [[[[[[0.09128153477530487 0.49634485561912345]]] [[[0.3631842888687348 0.6019829388333932]]]] [[[[0.9559397341515637 0.7669856613255234]]] [[[0.054718418259939505 0.7947857410604054]]]]] [[[[[0.8104019669556092 0.03281375365184247]]] [[[0.7262947851545867 0.10695443522021786]]]] [[[[0.9627900759995692 0.6974253723716999]]] [[[0.8545827666199479 0.548985175410406]]]]] [[[[[0.268564191394587 0.8968411989459285]]] [[[0.6761445078191504 0.6591033244832107]]]] [[[[0.5235513304897316 0.37888372356309374]]] [[[0.9420440558099209 0.34370134829884325]]]]]] [[[[[[0.7159573469905017 0.08868462947415079]]] [[[0.09933389600343079 0.19778350677229628]]]] [[[[0.9322271404588226 0.6557187302283015]]] [[[0.7266382531306249 0.35176605899350166]]]]] [[[[[0.2931719450138254 0.9367964452076545]]] [[[0.00850999204284042 0.6286770113811394]]]] [[[[0.7416503678799492 0.35485419517566075]]] [[[0.045056928357106396 0.7128639813071185]]]]] [[[[[0.33933266013884045 0.39620392274358684]]] [[[0.36841362128337907 0.2891435860844148]]]] [[[[0.6979023392700264 0.48108821407288516]]] [[[0.49436375976442504 0.3854060271476335]]]]]]]] ... [[[[[[[[0.6160563478143329 0.6421893713646787]]] [[[0.3047983458597179 0.5784935528492574]]]] [[[[0.5108842150146877 0.9907963324671727]]] [[[0.492038513901667 0.27854342112747665]]]]] [[[[[0.1648882995566524 0.05761403845196911]]] [[[0.6631563000461006 0.8544396067796746]]]] [[[[0.3160552742479684 0.3511167266123526]]] [[[0.32710896153230695 0.16930852408195352]]]]] [[[[[0.5682178083906244 0.8570880951640241]]] [[[0.04578467686409049 0.7423116953434633]]]] [[[[0.5584471079299581 0.32925536818709067]]] [[[0.6342025947021327 0.9370221199381676]]]]]] [[[[[[0.965305747817373 0.8239887445281554]]] [[[0.22491832242048027 0.437241015018361]]]] [[[[0.9604741396401052 0.8072684218492351]]] [[[0.9953142497505438 0.23855883671348577]]]]] [[[[[0.04053995824461809 0.3546339713195745]]] [[[0.2033051416383086 0.891426435433354]]]] [[[[0.4999200153148432 0.5786519395399953]]] [[[0.5900065506377631 0.15524495653975912]]]]] [[[[[0.10873152475952841 0.19356111998317715]]] [[[0.5566930663530987 0.4719881199336936]]]] [[[[0.25215372760771393 0.12167314628626913]]] [[[0.4449530263923941 0.7257466560839564]]]]]] [[[[[[0.7668143192337218 0.38837672009454893]]] [[[0.589205584078958 0.46017866649652794]]]] [[[[0.26672564413085675 0.7425819651137516]]] [[[0.6061596578584327 0.7052811791043875]]]]] [[[[[0.8898365950570644 0.9162041384908552]]] [[[0.4394831563839672 0.7152392031770062]]]] [[[[0.3158738054736524 0.2801931983694459]]] [[[0.42005221065838017 0.24695369739578055]]]]] [[[[[0.34254869704180935 0.3619167305686902]]] [[[0.48063535013519787 0.9508996865808195]]]] [[[[0.3271605335645903 0.6895428993547772]]] [[[0.20439560282128344 0.21121115963993176]]]]]] ... [[[[[[0.26073442002940084 0.5394343848933457]]] [[[0.4767260095624911 0.5283037982514238]]]] [[[[0.45705181789264593 0.3007611706807938]]] [[[0.12575966906611435 0.6618832971559063]]]]] [[[[[0.9417532182699474 0.22071133830626688]]] [[[0.4555416238030636 0.21051164115593723]]]] [[[[0.20122764158057505 0.48777003663987517]]] [[[0.2061951296385417 0.8914047109893086]]]]] [[[[[0.16442757555423237 0.7456371336780642]]] [[[0.8003647440661935 0.6613511881462609]]]] [[[[0.931562503844763 0.8875584486314305]]] [[[0.28652952406798404 0.08025246622247495]]]]]] [[[[[[0.41630006605518455 0.35349101903623525]]] [[[0.3673728100844942 0.8178203095936154]]]] [[[[0.4543444842957606 0.9024580125548226]]] [[[0.6117185186219932 0.3880257325268963]]]]] [[[[[0.9217605454171143 0.3556255862711647]]] [[[0.06687275142090154 0.12127603563780842]]]] [[[[0.929983958737884 0.14775478527648556]]] [[[0.41802818192428737 0.7990714736238137]]]]] [[[[[0.7316582806479289 0.3574589234561333]]] [[[0.4736035280012375 0.5734178283568583]]]] [[[[0.6803259789882281 0.003926723094121343]]] [[[0.5670831866439658 0.5915151785131232]]]]]] [[[[[[0.0002445597220926965 0.27809826042344865]]] [[[0.2206131161624365 0.3543355739363254]]]] [[[[0.14161983742052142 0.8173208793303828]]] [[[0.5511030633871685 0.3558454417554463]]]]] [[[[[0.5720452213684083 0.9107716176592955]]] [[[0.3800806611727213 0.5418780069073285]]]] [[[[0.5094932095004403 0.6675982786319493]]] [[[0.990740161739869 0.8153100720061318]]]]] [[[[[0.3981552713319799 0.0009652220251652466]]] [[[0.029687463010021675 0.10160340826987968]]]] [[[[0.9364045408071959 0.37247170450024614]]] [[[0.7353989474874303 0.12863612672000768]]]]]]] [[[[[[[0.6353505539891469 0.9517462275810977]]] [[[0.5441244718240686 0.9891672035941317]]]] [[[[0.46898727583095134 0.6529493185116026]]] [[[0.1194285995850648 0.32393574930588676]]]]] [[[[[0.07652287843001881 0.1307961318536125]]] [[[0.7232120794815464 0.2639357436437624]]]] [[[[0.257687083986868 0.3722849933451836]]] [[[0.26889313967503536 0.44804118513573266]]]]] [[[[[0.4875609590754625 0.3283189997917848]]] [[[0.8884579928012516 0.7161167717831275]]]] [[[[0.05495195117361895 0.8324977129688227]]] [[[0.1710800180058154 0.9533701031563783]]]]]] [[[[[[0.3695363103829583 0.5388785499218738]]] [[[0.9315315288693486 0.30308348347195824]]]] [[[[0.9934168873037145 0.8497747281035178]]] [[[0.041182156905261835 0.9665671731060842]]]]] [[[[[0.6145287408489812 0.29122636930865686]]] [[[0.5055883711895244 0.9770650484980707]]]] [[[[0.7938435297436458 0.0034432101483080624]]] [[[0.13738010634274422 0.9891150147165677]]]]] [[[[[0.23541556806459396 0.16382500734781857]]] [[[0.9091452958852141 0.23777826048682693]]]] [[[[0.08490403740500252 0.1641672199907167]]] [[[0.14810855237273857 0.033506139118067546]]]]]] [[[[[[0.8749227582421464 0.6052125601986097]]] [[[0.7989633885849171 0.40897055558133144]]]] [[[[0.3766230291215693 0.49679844119646466]]] [[[0.7983477882357003 0.8428205795305431]]]]] [[[[[0.62473321584619 0.3810232156537122]]] [[[0.7460497194958549 0.7717306768844461]]]] [[[[0.49493198961330176 0.3232245530363723]]] [[[0.22479849436747124 0.31395325302872223]]]]] [[[[[0.7215076345211048 0.1297479305580015]]] [[[0.523528812281705 0.6303756177932902]]]] [[[[0.5721140602673686 0.09998169228712239]]] [[[0.45481264348975936 0.14734478238900572]]]]]] ... [[[[[[0.3805455437902512 0.1068228218725863]]] [[[0.2796841861208117 0.6444129006182183]]]] [[[[0.718870769755466 0.48154871286567047]]] [[[0.07918681254427762 0.0908403667416432]]]]] [[[[[0.9011350240741383 0.13257857623076963]]] [[[0.3119975970904436 0.5847792202759904]]]] [[[[0.16220263133568513 0.2557699006187589]]] [[[0.9246076073386474 0.5468895246210872]]]]] [[[[[0.7884702528749468 0.3234925975654118]]] [[[0.08716086709468651 0.004443526857542568]]]] [[[[0.6637186881958647 0.011457274890624758]]] [[[0.9729991144207875 0.6424790836066419]]]]]] [[[[[[0.45009242341336 0.8462991999978541]]] [[[0.7936899763731639 0.22715226532300126]]]] [[[[0.3084791741081664 0.9649524565060624]]] [[[0.239485341966729 0.46886438962307997]]]]] [[[[[0.13143631724258253 0.22925593378386988]]] [[[0.4646674918608641 0.5787712204132026]]]] [[[[0.13410111061881402 0.7745454222246115]]] [[[0.9633608925210757 0.5059890545143332]]]]] [[[[[0.7765001108433502 0.5138998436706405]]] [[[0.349327361810707 0.8249846777374841]]]] [[[[0.38596751821821007 0.7192381981146204]]] [[[0.8087248119755605 0.6989367722125948]]]]]] [[[[[[0.7212775460164202 0.7951318519264814]]] [[[0.8524557868544288 0.7533246701503374]]]] [[[[0.49186648318751514 0.4293568770223628]]] [[[0.8018987949905981 0.625542924971745]]]]] [[[[[0.9825174129720827 0.06228411692767277]]] [[[0.9373646121855188 0.32649447323988234]]]] [[[[0.9746606671992709 0.18881837423412828]]] [[[0.9413591829614488 0.31341867443142457]]]]] [[[[[0.09779266922197627 0.9590649337523767]]] [[[0.9081191583120898 0.20979992120919633]]]] [[[[0.8258689803628738 0.957039332727881]]] [[[0.1259473062980654 0.1705444866101542]]]]]]] [[[[[[[0.4633017617008325 0.2339940351579053]]] [[[0.8101428750050114 0.1589345225856027]]]] [[[[0.3212196444308145 0.7410594908745927]]] [[[0.4724977221365141 0.11673045135027671]]]]] [[[[[0.9068528531929735 0.9439454754604094]]] [[[0.1624659710151184 0.29064495691746206]]]] [[[[0.8980086098293258 0.09421689475768835]]] [[[0.5425454101577272 0.5958296793201823]]]]] [[[[[0.7590481209553128 0.23471726612448507]]] [[[0.5706235561327725 0.0610446366837023]]]] [[[[0.4283759918843152 0.32231518106299983]]] [[[0.03895207774134013 0.3732513874045764]]]]]] [[[[[[0.09641122813988179 0.5469652788279646]]] [[[0.02150190937063967 0.8787009720408896]]]] [[[[0.9671313024151106 0.7075156018617724]]] [[[0.6840064170500519 0.7564848205459097]]]]] [[[[[0.4659655479512479 0.507207763968433]]] [[[0.40758615652073493 0.21158306211184807]]]] [[[[0.08687418762176302 0.027718561590012958]]] [[[0.07089985723313474 0.2759853626654133]]]]] [[[[[0.9494632407882739 0.9921986974608613]]] [[[0.8458068787993113 0.23470818869738763]]]] [[[[0.4268691204021511 0.6419441055104756]]] [[[0.11559628227009733 0.04293504088661759]]]]]] [[[[[[0.16339503861557514 0.42883241062103417]]] [[[0.1744002829628586 0.47693833483362436]]]] [[[[0.3819290768177662 0.4028266541839207]]] [[[0.2582230426155534 0.11763974035474223]]]]] [[[[[0.5523112951357225 0.029889547031536345]]] [[[0.046401830528136956 0.36541490427525336]]]] [[[[0.6689815079794301 0.0859292078071856]]] [[[0.2463773394431883 0.5822938055095228]]]]] [[[[[0.9882247642518902 0.02473817540546197]]] [[[0.11474528737560341 0.09935259141196551]]]] [[[[0.24069527175059469 0.4538981041003409]]] [[[0.4070200486805198 0.46315135996972034]]]]]] ... [[[[[[0.027850324237433055 0.33651440854041226]]] [[[0.6111775522257329 0.38326868500013755]]]] [[[[0.8996269266912409 0.9248063525800517]]] [[[0.08933180466708202 0.4813495731856181]]]]] [[[[[0.6571298903130655 0.4232774341956874]]] [[[0.662287719106164 0.9693902442848281]]]] [[[[0.8735935868837145 0.8881985353250069]]] [[[0.7359779699953215 0.45507544633916286]]]]] [[[[[0.5754115206118243 0.821203267144067]]] [[[0.7266835381995902 0.23807183865865988]]]] [[[[0.14417074788486195 0.2151501281413305]]] [[[0.9206084244709446 0.18667587033512667]]]]]] [[[[[[0.9191048277577728 0.6766949109175642]]] [[[0.5078161804711504 0.3292365832358891]]]] [[[[0.25768597632822476 0.6366824865617543]]] [[[0.8835413465563595 0.15263366156055358]]]]] [[[[[0.7252839968895085 0.7757941455267703]]] [[[0.621818828459085 0.7691636531013305]]]] [[[[0.7416417559008567 0.3722203372692092]]] [[[0.014742436552114824 0.2524960509133013]]]]] [[[[[0.1254652077549261 0.8398679444651977]]] [[[0.6052165333789881 0.9660407494599966]]]] [[[[0.06824372247909549 0.6189771754514735]]] [[[0.19089001504124314 0.4704369829507069]]]]]] [[[[[[0.232017067821087 0.569638025945597]]] [[[0.38231304256151566 0.7715686287304401]]]] [[[[0.02561246458785371 0.8127478624383278]]] [[[0.39514714744387114 0.6481729120894653]]]]] [[[[[0.22522374613443563 0.6333999899675442]]] [[[0.8545545165327535 0.8469510961740314]]]] [[[[0.9110903794397486 0.028020914088991322]]] [[[0.9028490416718462 0.14433382587036647]]]]] [[[[[0.31456594944597827 0.30883708653664543]]] [[[0.10686275256530664 0.2997090734472052]]]] [[[[0.8803897745016207 0.5173333498669762]]] [[[0.6010285302903038 0.49977139048087527]]]]]]] [[[[[[[0.5344752587615506 0.14301477199087076]]] [[[0.4003811747615049 0.08286891396716445]]]] [[[[0.30257861391865537 0.8776933345387723]]] [[[0.22151788470649414 0.48102966247588974]]]]] [[[[[0.30714018303710877 0.33720296410508077]]] [[[0.35295648605618757 0.36280072570060284]]]] [[[[0.052379449079002605 0.27479908811076603]]] [[[0.7666416113933558 0.03431273438341653]]]]] [[[[[0.19133834730999777 0.5500298552649853]]] [[[0.7256622172282685 0.4047428679147609]]]] [[[[0.7378428629266943 0.5315590151416411]]] [[[0.9783016813360815 0.5511085928041188]]]]]] [[[[[[0.29560236701769393 0.5885034643595444]]] [[[0.844474375870579 0.12664564076432294]]]] [[[[0.9024577809521066 0.787504982624694]]] [[[0.7649201528659972 0.0692131624901825]]]]] [[[[[0.773694765067075 0.8516000292702015]]] [[[0.26916631312115147 0.37108046658893323]]]] [[[[0.7178064730858975 0.07313916245927998]]] [[[0.1665223967165821 0.9332295549498987]]]]] [[[[[0.13969385362311582 0.1057310780623475]]] [[[0.22164475614097323 0.8731523334482839]]]] [[[[0.8556758643946798 0.9435715743982102]]] [[[0.8738733729714077 0.3942936865441412]]]]]] [[[[[[0.2070194372704044 0.5413723501722094]]] [[[0.8844741233341552 0.43649697107140206]]]] [[[[0.6921395746008623 0.7339177749431355]]] [[[0.921680969906173 0.014659806546949872]]]]] [[[[[0.30319299649760145 0.6349151370818585]]] [[[0.3114578716925712 0.19177859435628997]]]] [[[[0.270305624744977 0.15437432424554076]]] [[[0.2639387301858157 0.46528881654604937]]]]] [[[[[0.17843986955353974 0.42247782714527615]]] [[[0.31135012628005265 0.11194347078079192]]]] [[[[0.6857066234679683 0.9108935817019332]]] [[[0.5872607867474133 0.5284235100184732]]]]]] ... [[[[[[0.49139056018470584 0.6595369703737017]]] [[[0.8015027198198416 0.889542381584503]]]] [[[[0.4412298254795831 0.19125063993366243]]] [[[0.11597576565317858 0.2821767468729385]]]]] [[[[[0.28551973932064256 0.3361198439473221]]] [[[0.6075533876936375 0.23012999347735896]]]] [[[[0.5511938201199184 0.9186013342298867]]] [[[0.574086276861614 0.17549595950388353]]]]] [[[[[0.17316638484606273 0.33942353182039775]]] [[[0.42990597736801917 0.0857687418393297]]]] [[[[0.5164651836230597 0.16709831522530616]]] [[[0.08485379823140082 0.614088642824038]]]]]] [[[[[[0.6044006448619612 0.3189024632735299]]] [[[0.4544556651868854 0.07842861263796175]]]] [[[[0.001035369115394258 0.19788761601891014]]] [[[0.6651088502315126 0.6607434786257951]]]]] [[[[[0.9053676953170429 0.5286842841258159]]] [[[0.9781340038171451 0.31663809929746145]]]] [[[[0.1197750596018029 0.19798828227595588]]] [[[0.15314006133842906 0.24049929304485473]]]]] [[[[[0.6870025868928986 0.11687805754401825]]] [[[0.4101586661359401 0.8529442563747089]]]] [[[[0.39894219705976974 0.38738205156597205]]] [[[0.9582162668448656 0.4426889908201379]]]]]] [[[[[[0.8791365912922379 0.24829725610642794]]] [[[0.4686000130366632 0.3454585951444268]]]] [[[[0.16098387730183428 0.33423647109831434]]] [[[0.7436594389034262 0.2535537898789395]]]]] [[[[[0.7490267261000922 0.8062905652876959]]] [[[0.43536664021414107 0.7872202463953268]]]] [[[[0.8400254037792528 0.04084690187018869]]] [[[0.5635811165168104 0.5721456224120287]]]]] [[[[[0.7036942551460564 0.8483846263673557]]] [[[0.5063891867393144 0.7316230044754948]]]] [[[[0.6371946522282538 0.719590876359577]]] [[[0.0851766291164987 0.5300493038892107]]]]]]]] [[[[[[[[0.6517169866352827 0.7696282775957282]]] [[[0.1333929033293798 0.8446591512543192]]]] [[[[0.9638077114118339 0.8442110061080201]]] [[[0.5368961940928931 0.7992700118772694]]]]] [[[[[0.5646730655855801 0.40093028215502746]]] [[[0.2712621297809015 0.15562790655076564]]]] [[[[0.30970371114349293 0.6614764917538061]]] [[[0.21929611657763914 0.6920456373783358]]]]] [[[[[0.9455628083698483 0.6739729996257638]]] [[[0.8651831134056459 0.47304656544810053]]]] [[[[0.47553487996572275 0.39323074593980156]]] [[[0.9014908429048859 0.5872345606496041]]]]]] [[[[[[0.26388490109300144 0.1874923220867275]]] [[[0.07606704860609292 0.5918763243812741]]]] [[[[0.22155216242978926 0.6486618466231505]]] [[[0.4332496606739836 0.6793499590370498]]]]] [[[[[0.11613131452356251 0.7747658536937405]]] [[[0.6970122526966275 0.16698354570399643]]]] [[[[0.4406193415197017 0.5200269557915724]]] [[[0.47646307267855426 0.25366986108120093]]]]] [[[[[0.1625637258565894 0.49365698967692573]]] [[[0.8068301135412363 0.9080032526791664]]]] [[[[0.747468024905888 0.15505048357091933]]] [[[0.1407810804216829 0.6636482735429201]]]]]] [[[[[[0.056792015069435764 0.42276067408794415]]] [[[0.5131815415828987 0.27403211593653964]]]] [[[[0.9684320535195083 0.0935204614154912]]] [[[0.8988206653517017 0.8951071576818834]]]]] [[[[[0.05054050526861775 0.7749552216360609]]] [[[0.28207758984728504 0.07813750589116719]]]] [[[[0.06810627349130516 0.6173348870475389]]] [[[0.3485052434846372 0.7788333252405326]]]]] [[[[[0.987876618514317 0.4435972325937826]]] [[[0.1606193691963711 0.8688350910007442]]]] [[[[0.1252291608312205 0.44591338879526643]]] [[[0.2207302874342183 0.7455389775387438]]]]]] ... [[[[[[0.2749289185812338 0.6043123020196919]]] [[[0.62122664710929 0.051686997013132285]]]] [[[[0.9230817564840871 0.28260449838696633]]] [[[0.5671641163593135 0.9184425305516937]]]]] [[[[[0.8357570907860196 0.825578234239287]]] [[[0.2737577842307226 0.40431489880993965]]]] [[[[0.5474811554795295 0.6685772619728373]]] [[[0.9102073643898497 0.8991114175410909]]]]] [[[[[0.1091473136323915 0.24264105718045803]]] [[[0.13602439700487912 0.39553162839783207]]]] [[[[0.5130745637466588 0.7023201964372874]]] [[[0.2137160669217304 0.02779211876820198]]]]]] [[[[[[0.808830475131424 0.37845193441411606]]] [[[0.949209606411935 0.24510960650267988]]]] [[[[0.9015785308152997 0.7851094224112098]]] [[[0.8536650924552276 0.8450634414298237]]]]] [[[[[0.4374175607312927 0.6928890830925543]]] [[[0.8113379089810082 0.395861988995976]]]] [[[[0.1483970317303459 0.5378871962924635]]] [[[0.535287719919786 0.5603604760398123]]]]] [[[[[0.7687763498677994 0.6699652883312315]]] [[[0.5182704807779972 0.37696288190054184]]]] [[[[0.8249026795540398 0.09148654822968239]]] [[[0.4968414382595012 0.38624195229774827]]]]]] [[[[[[0.5597275896361623 0.0317024365505405]]] [[[0.25030505816521487 0.4565939960687433]]]] [[[[0.32198086962935957 0.9198042187556492]]] [[[0.736216727878397 0.3940128672208326]]]]] [[[[[0.9714335218885146 0.6021038306172407]]] [[[0.3962157262643864 0.7293458583943963]]]] [[[[0.9849545274204544 0.03199961091831738]]] [[[0.5082711866108082 0.6107711550429349]]]]] [[[[[0.6087830177277341 0.13195649328156656]]] [[[0.5338846102392276 0.43937328518357965]]]] [[[[0.6710798797336395 0.8893985972902394]]] [[[0.9410337016822201 0.02735892117439076]]]]]]] [[[[[[[0.43885443270661295 0.13764450272874007]]] [[[0.48761230140139744 0.9702062757491491]]]] [[[[0.47196667417019156 0.7149225885762648]]] [[[0.1332249838109365 0.6879419506599045]]]]] [[[[[0.4101891511730038 0.9833428555974756]]] [[[0.3745841590212232 0.5423436111456283]]]] [[[[0.9769128950377772 0.7099378437711273]]] [[[0.9160131011954449 0.007066166265899287]]]]] [[[[[0.8072518208283306 0.2527037016988396]]] [[[0.9014395147364487 0.18821088648814788]]]] [[[[0.7686886169709934 0.9374694504121874]]] [[[0.37059681864460625 0.6590839849800761]]]]]] [[[[[[0.2039717617506387 0.623786306273336]]] [[[0.7352871967365324 0.6964143299915799]]]] [[[[0.642734981431317 0.17093174604731165]]] [[[0.5382708321268561 0.019883095672833084]]]]] [[[[[0.2845465434842802 0.2902791392378131]]] [[[0.3789830637405758 0.9234264019789875]]]] [[[[0.03000608348115741 0.831932170197652]]] [[[0.2471592465206648 0.24807009914259326]]]]] [[[[[0.6980331364907931 0.1779030302555321]]] [[[0.024693839502785586 0.3775005117215797]]]] [[[[0.9469603615472435 0.9401287400942321]]] [[[0.3607233455896883 0.9932880497358988]]]]]] [[[[[[0.5998635741895635 0.04308093623726705]]] [[[0.7279261583412238 0.8500950529824218]]]] [[[[0.016101060557154545 0.8163526477374328]]] [[[0.2100030687675003 0.7225627759669309]]]]] [[[[[0.7793163906572825 0.8675139139067372]]] [[[0.33567871455635057 0.6604473097472289]]]] [[[[0.088836442538618 0.009437404285243645]]] [[[0.7387284457312313 0.7262128836782097]]]]] [[[[[0.7729194868562516 0.11238878596167112]]] [[[0.8347516385793622 0.7398908314188861]]]] [[[[0.945953430239784 0.277507586394101]]] [[[0.24438611919036102 0.20124923514613446]]]]]] ... [[[[[[0.16477632822776822 0.8009776341304523]]] [[[0.5475556193267443 0.4789685290198894]]]] [[[[0.3954638528485873 0.20007789805386422]]] [[[0.6698686706721695 0.4793126116711419]]]]] [[[[[0.9967964576829468 0.5594053571419358]]] [[[0.15720410598646972 0.5563113313451378]]]] [[[[0.36037830061294407 0.22839886473090087]]] [[[0.7051891339576325 0.7849069925534407]]]]] [[[[[0.7274694117244421 0.8622010399337954]]] [[[0.433780201429787 0.8227232928514312]]]] [[[[0.3567353166157876 0.3289459613986734]]] [[[0.9398607778546239 0.9908460178746569]]]]]] [[[[[[0.8946356554574635 0.0982011932788136]]] [[[0.03613177582537086 0.330147063348439]]]] [[[[0.3103955394993746 0.11629061828350784]]] [[[0.8844166579060444 0.23893187936720395]]]]] [[[[[0.14364290456704132 0.21765565039558943]]] [[[0.07928706581319023 0.9740495598403506]]]] [[[[0.48070197348011656 0.9277319461841957]]] [[[0.03621041642648437 0.42614805315590853]]]]] [[[[[0.9040467121086708 0.7099370949926858]]] [[[0.5185255424682494 0.2063979024196313]]]] [[[[0.24791857775144133 0.7746554894963895]]] [[[0.07000905152337378 0.1823647361793822]]]]]] [[[[[[0.8215527586519379 0.8262585931010605]]] [[[0.5505081532155068 0.06651055932035566]]]] [[[[0.18302678715707243 0.1567364565399575]]] [[[0.6524331690765415 0.7834309028646476]]]]] [[[[[0.0012231851846479236 0.883040904033175]]] [[[0.8961245884121068 0.5965194147928151]]]] [[[[0.04804021523782731 0.23649368989801134]]] [[[0.6616489985297929 0.2977029731262266]]]]] [[[[[0.31067669089089234 0.4699358686943823]]] [[[0.18724545392119663 0.3364458763902025]]]] [[[[0.9232215808704743 0.5597956248284829]]] [[[0.48976801484379684 0.9135223950339822]]]]]]] [[[[[[[0.8439930200757244 0.9710468214143029]]] [[[0.7749916434771006 0.23977274736143928]]]] [[[[0.8609917548397666 0.03272680804006334]]] [[[0.861267226411072 0.8266384826185946]]]]] [[[[[0.21770530082879502 0.9947375265189047]]] [[[0.48340785257144103 0.6536171202762906]]]] [[[[0.056320807289611086 0.3546781975405282]]] [[[0.9961617189203548 0.5390508046040788]]]]] [[[[[0.8847131924476762 0.8746375730020635]]] [[[0.007893155487652126 0.5027630016503826]]]] [[[[0.2743043928547354 0.9653404865258238]]] [[[0.2807155910539092 0.4120537281209088]]]]]] [[[[[[0.2588661850231311 0.15339591353816961]]] [[[0.3076693194680292 0.90841920249268]]]] [[[[0.7198146850628327 0.11499256243517142]]] [[[0.2160367036234062 0.8048079421572015]]]]] [[[[[0.5722460489469716 0.6760157151688843]]] [[[0.270444410946024 0.37245634980943587]]]] [[[[0.6201349112369711 0.3610883047300987]]] [[[0.581532076816644 0.7880429635139636]]]]] [[[[[0.6263356669169574 0.34740234524829516]]] [[[0.5630913480404968 0.5708857608125943]]]] [[[[0.9199402934302373 0.8323548662603012]]] [[[0.47870197812135906 0.47607477997892345]]]]]] [[[[[[0.7581850772357317 0.9528734066707537]]] [[[0.7641544844699649 0.036365070035693114]]]] [[[[0.7191284842995407 0.37344368975037656]]] [[[0.12335360514558003 0.40172763916579235]]]]] [[[[[0.8146873176698849 0.6497845749225994]]] [[[0.0034997789794005696 0.37938613813510724]]]] [[[[0.4814367380772854 0.8900471928405345]]] [[[0.9690891935957971 0.17085328996304705]]]]] [[[[[0.9314377254283722 0.8946528650020616]]] [[[0.3155186812588521 0.9388655781953728]]]] [[[[0.9343763229329479 0.6487679016141341]]] [[[0.7770143748741477 0.28136277130207743]]]]]] ... [[[[[[0.4333230358532514 0.7037075416464827]]] [[[0.5439910350163912 0.20828199628078647]]]] [[[[0.1215853728603351 0.3799395439622788]]] [[[0.4345308819188125 0.8740863579893936]]]]] [[[[[0.03398159614833862 0.23843264167393363]]] [[[0.6623188694241611 0.20919614683268983]]]] [[[[0.6040763198686054 0.8452602381174803]]] [[[0.5282188922432299 0.504382737191825]]]]] [[[[[0.7965372083113643 0.12443169884902938]]] [[[0.07008677369271432 0.0025426993043932145]]]] [[[[0.6681704148843325 0.7349414656241784]]] [[[0.5658535812156968 0.42346343438718836]]]]]] [[[[[[0.5083699359223848 0.26719583373473876]]] [[[0.48023092650956967 0.915020998211614]]]] [[[[0.7728642147096719 0.9485718953125513]]] [[[0.08404881695193389 0.7368273057466135]]]]] [[[[[0.31026878912601463 0.40503642950463614]]] [[[0.3396943804644993 0.1555956274888406]]]] [[[[0.3060803024253864 0.7959877159774182]]] [[[0.3690982653857663 0.20944842332658764]]]]] [[[[[0.06018183314236003 0.9688215665785255]]] [[[0.16916349204289116 0.32574971988498946]]]] [[[[0.9943738743496666 0.6298904968296442]]] [[[0.8447152066883538 0.8063506841013202]]]]]] [[[[[[0.5093087132191326 0.2942335729059019]]] [[[0.986995174216153 0.16240379185107412]]]] [[[[0.5339645565679859 0.5191546738754154]]] [[[0.8390463445682212 0.30403046920043975]]]]] [[[[[0.07231413241770279 0.7449437733101829]]] [[[0.11600160982509033 0.787208361676097]]]] [[[[0.9760019217858419 0.5251224394302674]]] [[[0.08204851767101162 0.9188755097415958]]]]] [[[[[0.9047349816724192 0.7894866850522908]]] [[[0.10211412373046747 0.7988279111814014]]]] [[[[0.3927457769907714 0.9150403764582928]]] [[[0.8040570725711657 0.12622381528334903]]]]]]] [[[[[[[0.1038720825245526 0.013707556685272126]]] [[[0.8988657935773697 0.6634822875046709]]]] [[[[0.5359827559912199 0.3610370992865768]]] [[[0.961590156022088 0.3148565985658649]]]]] [[[[[0.6760046957663348 0.4231941481031012]]] [[[0.12917243892354513 0.7059889489131048]]]] [[[[0.3413631805359214 0.1489195471162419]]] [[[0.9263140718226354 0.33623901949124513]]]]] [[[[[0.7343646042523271 0.7580616268092321]]] [[[0.5183114287880595 0.062258302484191175]]]] [[[[0.11506849572613687 0.7650551402478477]]] [[[0.1554730789336186 0.26809223351940914]]]]]] [[[[[[0.3392443785819024 0.7384362840789332]]] [[[0.9446180616662928 0.0009613985400693803]]]] [[[[0.6545966446696403 0.14095462401398418]]] [[[0.354625334741558 0.9377955176706091]]]]] [[[[[0.6612376140950624 0.47336309315910297]]] [[[0.025046078616586476 0.3274815812105335]]]] [[[[0.5389115436279103 0.7517328517052361]]] [[[0.4348077799618514 0.8309715323387462]]]]] [[[[[0.8297772043027191 0.9579128221798319]]] [[[0.821232932848511 0.9601531890920731]]]] [[[[0.845842650455113 0.9787512482689822]]] [[[0.6961173637027194 0.7647889161114138]]]]]] [[[[[[0.8775654097618487 0.681302564868697]]] [[[0.9208091897017195 0.07232254622615009]]]] [[[[0.6393711912391733 0.4666353686982754]]] [[[0.9903841365624707 0.4678903704502516]]]]] [[[[[0.057898740298584106 0.2808019538461085]]] [[[0.36902327191831163 0.7956646307940838]]]] [[[[0.885126159428826 0.39526749487538115]]] [[[0.06045324525993756 0.11764925521775593]]]]] [[[[[0.19740468840296432 0.035493139636817994]]] [[[0.2785227293369883 0.05688943948834846]]]] [[[[0.7957587075795086 0.11072807962485565]]] [[[0.7880140378952177 0.7423997275984731]]]]]] ... [[[[[[0.41304479443314424 0.3687504593770574]]] [[[0.6243551421617721 0.6044855968153819]]]] [[[[0.2210387250693161 0.8071926547192263]]] [[[0.8776105108691985 0.009450028790756848]]]]] [[[[[0.6653578575899071 0.0638090719994201]]] [[[0.8397204286617203 0.997423653057112]]]] [[[[0.9134949187771434 0.5599154002036987]]] [[[0.29987202439062743 0.2667035883374632]]]]] [[[[[0.8959665122179177 0.5301492237592805]]] [[[0.8064590827397046 0.05911714117253675]]]] [[[[0.8008294037577286 0.21473351189682777]]] [[[0.48848689291445224 0.4448770595165712]]]]]] [[[[[[0.5753691083693907 0.6385211248039024]]] [[[0.08881487083956119 0.8080004869796765]]]] [[[[0.8676399496378095 0.6039347901920086]]] [[[0.34692382311946224 0.2067320754453107]]]]] [[[[[0.06117331379709845 0.12005303953120594]]] [[[0.5960256181996404 0.046727184799262855]]]] [[[[0.2922420235481715 0.37880993976023236]]] [[[0.06711216181786772 0.7696309630897995]]]]] [[[[[0.720067080654713 0.5845397727792512]]] [[[0.7625464889909387 0.2172358193340882]]]] [[[[0.2936122545974519 0.4955505659868379]]] [[[0.8197734964318119 0.23684332728137925]]]]]] [[[[[[0.1493341224560133 0.892019400202224]]] [[[0.03560409252421648 0.2202691449639389]]]] [[[[0.5483131573407689 0.8115643470278082]]] [[[0.05092581723945511 0.27575818347537207]]]]] [[[[[0.7935379298862012 0.18401174940712384]]] [[[0.1467916662382196 0.6230537117131218]]]] [[[[0.9466945519852108 0.2640377472425782]]] [[[0.41781722919101727 0.25165164333341483]]]]] [[[[[0.009151446111815953 0.4902718105232652]]] [[[0.4701599654600376 0.7987004774183145]]]] [[[[0.3320871721568063 0.7505638097264882]]] [[[0.38878224591934596 0.4386025023113328]]]]]]]] [[[[[[[[0.6984603097333731 0.4923118245454091]]] [[[0.6766857557094194 0.056961809009121844]]]] [[[[0.7480456257696537 0.37053759734196967]]] [[[0.7416866806902775 0.346696942995778]]]]] [[[[[0.4644614925649352 0.41860356692142797]]] [[[0.9632944647566217 0.6851032285803468]]]] [[[[0.6490468356652483 0.7855221965452253]]] [[[0.26084602294256953 0.15882200982376338]]]]] [[[[[0.2685779887789841 0.6993737836862816]]] [[[0.4944906785543466 0.6870111140410294]]]] [[[[0.5363172268163998 0.8622839482001118]]] [[[0.8286680126391035 0.6951075835048036]]]]]] [[[[[[0.3490094239470739 0.12712665366672116]]] [[[0.14407033081176046 0.221958781590887]]]] [[[[0.6893489599169268 0.5240400019291505]]] [[[0.04469278705011592 0.7118532137713196]]]]] [[[[[0.3698579525011997 0.07420690273301866]]] [[[0.9208069827112807 0.33954462804797403]]]] [[[[0.4095163945079492 0.8870583423788688]]] [[[0.07836684336494337 0.9801963487139767]]]]] [[[[[0.6811924434082254 0.12441291533751986]]] [[[0.1831156039856494 0.4482204326799406]]]] [[[[0.9144268426080512 0.42145286340566346]]] [[[0.8068272698113303 0.513906018942383]]]]]] [[[[[[0.14436975825375042 0.3482990339284474]]] [[[0.35791600038682425 0.6161979241391655]]]] [[[[0.02375883104791965 0.35998583373677484]]] [[[0.270860411135739 0.5547305182848355]]]]] [[[[[0.5978135026941551 0.13905683008317804]]] [[[0.3806326136962478 0.865120077651694]]]] [[[[0.9452798083772538 0.2669473258319097]]] [[[0.6141893400979119 0.8478928428479213]]]]] [[[[[0.8540315800898223 0.15837651730654345]]] [[[0.3352525945608954 0.7827064318127754]]]] [[[[0.30290089471469883 0.3464780050854932]]] [[[0.11432903293206842 0.794105823392842]]]]]] ... [[[[[[0.555392055047851 0.38009886879046295]]] [[[0.4677455342601965 0.7213005602599648]]]] [[[[0.9669759377580709 0.22524032955831697]]] [[[0.09582333713441071 0.7866860697768709]]]]] [[[[[0.0012395225066916815 0.040316582563887815]]] [[[0.5546911533944247 0.08258609792779192]]]] [[[[0.39054885808229545 0.2694972064862695]]] [[[0.3572353958091441 0.3222348823532716]]]]] [[[[[0.5030296336246446 0.6867190365195613]]] [[[0.49992506105385126 0.2145701172519846]]]] [[[[0.03631541013915007 0.24298258394351036]]] [[[0.7144016264522198 0.5773713468834482]]]]]] [[[[[[0.4842083702160147 0.07849502850277545]]] [[[0.17284801337700395 0.6038144976644761]]]] [[[[0.6144557979518223 0.6130340582545167]]] [[[0.6778139770895036 0.7081420384946502]]]]] [[[[[0.08139406779916603 0.7600440482390276]]] [[[0.38897732155773 0.451172654266521]]]] [[[[0.8195293694779455 0.49330341234309905]]] [[[0.7480439087110052 0.7611838051602312]]]]] [[[[[0.24379092195804986 0.3811498581159358]]] [[[0.13553049686472685 0.7092966552209337]]]] [[[[0.5303974331334977 0.4878334498898086]]] [[[0.4661188634175977 0.4543793967902745]]]]]] [[[[[[0.3135895951706055 0.30932411411024985]]] [[[0.3821375628135003 0.710566292508567]]]] [[[[0.061017519071487336 0.7331942060539944]]] [[[0.8183636426489018 0.583490556824801]]]]] [[[[[0.5094583947011396 0.3629740110075578]]] [[[0.4260564260839378 0.855392916458048]]]] [[[[0.6232580497436823 0.16923485073866418]]] [[[0.8760159277483097 0.41663295434550573]]]]] [[[[[0.06254009297678575 0.7493251772239649]]] [[[0.8867021722662742 0.9000928175760423]]]] [[[[0.24227270064721873 0.1807814825002133]]] [[[0.10523805841330058 0.9982721635497636]]]]]]] [[[[[[[0.33542667267312853 0.37633009610250234]]] [[[0.730673560119661 0.9757622484247342]]]] [[[[0.14429857200287055 0.055560790304356455]]] [[[0.8461707309332932 0.35024108522882447]]]]] [[[[[0.7365975335569693 0.17341580738808293]]] [[[0.773637173081834 0.784511240432393]]]] [[[[0.7257149452705878 0.455218439028946]]] [[[0.10653632983360783 0.5190389928616459]]]]] [[[[[0.41113256364401807 0.550895081040201]]] [[[0.7175412465712055 0.9462035155746379]]]] [[[[0.005830455193705841 0.5342700074995801]]] [[[0.9692360744296756 0.7042517717393553]]]]]] [[[[[[0.2059076323768273 0.9861550169757682]]] [[[0.9042347464299962 0.008612152460592215]]]] [[[[0.6496996026029604 0.3437278536569812]]] [[[0.9178934790898583 0.7829409081872918]]]]] [[[[[0.4312461023839015 0.891375550217476]]] [[[0.29137168137291203 0.43806283016034886]]]] [[[[0.14409480105696593 0.08056009901987382]]] [[[0.3654822435384748 0.12907561647882315]]]]] [[[[[0.03061671932755905 0.09719567155477726]]] [[[0.38102859384489685 0.36487924933536764]]]] [[[[0.9625411587167199 0.2770005715225625]]] [[[0.5740276425559431 0.08200733633124657]]]]]] [[[[[[0.6766966745994741 0.06113276036730908]]] [[[0.16780180474926332 0.2924675716808617]]]] [[[[0.45305438760686945 0.622146606749702]]] [[[0.45678527453410944 0.8462427050591297]]]]] [[[[[0.6973523247626522 0.1528661933858364]]] [[[0.3588978114082061 0.33464499781680224]]]] [[[[0.3087075534496463 0.8187061931975453]]] [[[0.7720866612206883 0.3747699842142759]]]]] [[[[[0.7201212893760169 0.9625548555083843]]] [[[0.10173709974628464 0.35972276578216966]]]] [[[[0.68471296822373 0.4130380070167261]]] [[[0.14202916140232713 0.35198114317023854]]]]]] ... [[[[[[0.7092452145709526 0.8177734338099132]]] [[[0.39285111956315977 0.865669855853132]]]] [[[[0.07664776025428244 0.15234017623760143]]] [[[0.5841784310189893 0.06523423441866127]]]]] [[[[[0.8010583847983228 0.09065282879745873]]] [[[0.07302052673203552 0.3875458981688664]]]] [[[[0.3793258225065318 0.8536101793193807]]] [[[0.7817844200385282 0.2808697418573789]]]]] [[[[[0.046859541116909376 0.9291352533160048]]] [[[0.023012144410300972 0.4023622427096285]]]] [[[[0.5483041938890926 0.21710825416161106]]] [[[0.8509264694965557 0.5604133755063624]]]]]] [[[[[[0.16800590002548255 0.47328613696087496]]] [[[0.9703412672775437 0.5349997024917986]]]] [[[[0.7331996602715155 0.12446604727000943]]] [[[0.2766057563340161 0.7211253328242283]]]]] [[[[[0.5405348155793125 0.2883902791117814]]] [[[0.8695210431326457 0.03659935526374447]]]] [[[[0.7973432883986885 0.5675788855468887]]] [[[0.9014612584987153 0.07712121200292887]]]]] [[[[[0.14368019748820904 0.6169410705242285]]] [[[0.14962584885233843 0.9115931255887091]]]] [[[[0.5170827624114794 0.18169853657667578]]] [[[0.03832580911476957 0.020190564028961466]]]]]] [[[[[[0.7460448204532056 0.10138780959916482]]] [[[0.7796201387205529 0.9396030497279433]]]] [[[[0.4311659482622241 0.678529890519657]]] [[[0.31416062499439334 0.5422659189309654]]]]] [[[[[0.3986746634330587 0.8920972433633824]]] [[[0.1998319870013442 0.8335845310306819]]]] [[[[0.7761544972392324 0.47187815790611154]]] [[[0.8480932496595788 0.05769072541552034]]]]] [[[[[0.523612714065483 0.46283527443207095]]] [[[0.6358533151467723 0.4905079731486731]]]] [[[[0.6534400110364084 0.8473970283614493]]] [[[0.940644829668394 0.6288547709531692]]]]]]] [[[[[[[0.49720681398579614 0.2856708836675924]]] [[[0.0569629595621699 0.7359575286875399]]]] [[[[0.31478768238300026 0.7833490231346653]]] [[[0.9909081387820482 0.4732615800753328]]]]] [[[[[0.4506606135048462 0.6188465103674557]]] [[[0.39383015037548086 0.7920298212010055]]]] [[[[0.7541850880479334 0.8310473690655459]]] [[[0.013724346712811197 0.37394961130196525]]]]] [[[[[0.9711701829732124 0.2570841778617572]]] [[[0.6395291507613875 0.13528241789092588]]]] [[[[0.197761044762797 0.3474704682059033]]] [[[0.4277885179985066 0.9271885995358395]]]]]] [[[[[[0.30188735359024277 0.360133014611246]]] [[[0.7125952202578067 0.4247169792254032]]]] [[[[0.2337366065278832 0.35786899225135615]]] [[[0.32491296618864196 0.9871542348322112]]]]] [[[[[0.2445251591426939 0.913883764587412]]] [[[0.8337113357757046 0.5193393343322489]]]] [[[[0.954146283771981 0.9900745251243237]]] [[[0.07907708765331367 0.2885328864615565]]]]] [[[[[0.006882966797441714 0.324263294031233]]] [[[0.40410288141752015 0.31465351674477127]]]] [[[[0.42451144119606843 0.9706114963978778]]] [[[0.3087873723397513 0.7519647395281216]]]]]] [[[[[[0.7551125389763201 0.03504957445910717]]] [[[0.05946711101004987 0.6322245459733067]]]] [[[[0.5659843993389114 0.37066879685010556]]] [[[0.5236044347876461 0.29517919625778266]]]]] [[[[[0.6787069897544317 0.012852940790218259]]] [[[0.6709440890386799 0.6426748286234996]]]] [[[[0.6750840201894407 0.34856379742368104]]] [[[0.34028560222271764 0.2497640630048591]]]]] [[[[[0.13796798045145775 0.05851091201340053]]] [[[0.19331556812641248 0.3945448548862168]]]] [[[[0.9254834491301385 0.5636149258254511]]] [[[0.5824425990274328 0.4195609334896434]]]]]] ... [[[[[[0.933927047115929 0.2893066546598395]]] [[[0.5205342729468375 0.22963803628456114]]]] [[[[0.375291935712618 0.2726124010102652]]] [[[0.45067493620706733 0.6768709155020117]]]]] [[[[[0.294878708048819 0.7954799195650699]]] [[[0.40001601767660944 0.35726627985069326]]]] [[[[0.8427135962820979 0.8193864685216722]]] [[[0.12518534056427955 0.9120560444002516]]]]] [[[[[0.7528352242284689 0.7384058266989143]]] [[[0.5503708732051557 0.5079054894695447]]]] [[[[0.5605866594034077 0.6045188885183873]]] [[[0.9047883971317306 0.4488295696157709]]]]]] [[[[[[0.9400720681511509 0.9902602133983689]]] [[[0.6397068733804755 0.3131363350242291]]]] [[[[0.7790104775602861 0.9480214870146078]]] [[[0.5635676882161463 0.21048925637009785]]]]] [[[[[0.6852031156810121 0.45253756538483425]]] [[[0.7210699956553144 0.2659732536043077]]]] [[[[0.2063962278722351 0.1462541361079196]]] [[[0.7474370323081038 0.8060785744676775]]]]] [[[[[0.2361518583069755 0.48380688915158376]]] [[[0.32639100907150564 0.7672646303821141]]]] [[[[0.7098535933670709 0.11857225701694163]]] [[[0.02939647737630957 0.6581839117170931]]]]]] [[[[[[0.9643831782479793 0.19480169857105223]]] [[[0.9535859598435199 0.17575545815992677]]]] [[[[0.5169221207601116 0.023265221317425477]]] [[[0.8356894333608882 0.5318838836816587]]]]] [[[[[0.1276843182330063 0.8959604795642468]]] [[[0.24449602343550958 0.1128768988646992]]]] [[[[0.6594346908751313 0.48725913070594484]]] [[[0.37823493431486555 0.7975175774509028]]]]] [[[[[0.9930314800540732 0.695058002490815]]] [[[0.21566172758884217 0.19661786413925675]]]] [[[[0.38846288942208174 0.2706082822657917]]] [[[0.7971899672031697 0.6059964874705355]]]]]]] [[[[[[[0.0021622713751059397 0.12232904621956653]]] [[[0.9027211663770002 0.44261714951612874]]]] [[[[0.817209915988003 0.765508814137489]]] [[[0.8355563312289738 0.18677896114658077]]]]] [[[[[0.7283407729891535 0.5973826837105352]]] [[[0.6392587361573964 0.022367111423050035]]]] [[[[0.21807667625926197 0.7251454277392876]]] [[[0.8973330635840122 0.16012140832862565]]]]] [[[[[0.961396336416195 0.10625232410416285]]] [[[0.5212426926168012 0.7041084004556246]]]] [[[[0.3609741127197357 0.16078629358864538]]] [[[0.655719781387569 0.40398417220766636]]]]]] [[[[[[0.4291200594430916 0.26184881757006107]]] [[[0.8711477623371539 0.30117412529533205]]]] [[[[0.16777938638784862 0.606145070139457]]] [[[0.3033264552170465 0.5081272242306354]]]]] [[[[[0.31070875663678754 0.5444708262998511]]] [[[0.19157855961264436 0.18012782189542542]]]] [[[[0.23222463895888346 0.04887289113969573]]] [[[0.5531664450393883 0.2542935538520804]]]]] [[[[[0.45536423912524937 0.16410558309877354]]] [[[0.6688898015989184 0.8308446986439281]]]] [[[[0.3671163657077552 0.7847565483903691]]] [[[0.6171933373332135 0.68019568813379]]]]]] [[[[[[0.36826321142313667 0.8044963488237908]]] [[[0.8507378921671823 0.18232719977981815]]]] [[[[0.03044006996139914 0.7413802646144135]]] [[[0.774857310114664 0.7479191385404085]]]]] [[[[[0.03660087578380444 0.818100760781278]]] [[[0.358795389080787 0.9474242271892835]]]] [[[[0.38295677474267853 0.897191565482656]]] [[[0.5397275099585086 0.46371536429806104]]]]] [[[[[0.9295713124220982 0.9702599215379839]]] [[[0.3031618744911355 0.4278981717587288]]]] [[[[0.11647383444662329 0.8678905269882802]]] [[[0.9472310196855053 0.6012306821336241]]]]]] ... [[[[[[0.4231342776419885 0.859866133985725]]] [[[0.4893982734314256 0.29559984139851025]]]] [[[[0.0705034810047801 0.9547325288626056]]] [[[0.7374419407801717 0.8059694720779325]]]]] [[[[[0.6710979322959949 0.17553246400136735]]] [[[0.6643867727222103 0.5714084920599254]]]] [[[[0.012313554548338712 0.3116688448268633]]] [[[0.7402927244098735 0.5244353902586105]]]]] [[[[[0.5673990920914201 0.7613622802349409]]] [[[0.7931972568754708 0.23690168086052255]]]] [[[[0.531619098966337 0.8496069280304642]]] [[[0.3559901874501734 0.9769706847397446]]]]]] [[[[[[0.8523359129671451 0.056218698228199804]]] [[[0.5467358095314607 0.9798883452189496]]]] [[[[0.11626763469913615 0.8678822272350158]]] [[[0.04803141023414259 0.5521295488991987]]]]] [[[[[0.6942592428586037 0.08496959043039387]]] [[[0.16328320556714238 0.49750942818848476]]]] [[[[0.5164425017922714 0.9171354974790125]]] [[[0.7515361196784359 0.8137049985817971]]]]] [[[[[0.3611425382592419 0.7493759926258421]]] [[[0.3585049829361453 0.034426283327743556]]]] [[[[0.5674789348459303 0.3278699040939186]]] [[[0.6831778621100819 0.4819837837111155]]]]]] [[[[[[0.28016475343705693 0.08849627101964985]]] [[[0.06474510167152447 0.9772476154875932]]]] [[[[0.92158983460912 0.7274035046320693]]] [[[0.5522815869287951 0.4351607058546474]]]]] [[[[[0.16474695504772963 0.805807969232596]]] [[[0.8627404645696345 0.3084181096061379]]]] [[[[0.7069488082107015 0.07986982090525163]]] [[[0.8504297049601401 0.11754653748066912]]]]] [[[[[0.9024284076094498 0.7316381093420157]]] [[[0.6250802242050106 0.016836090986262486]]]] [[[[0.2105650762794138 0.5642771745827874]]] [[[0.7526511825445649 0.5608126097747869]]]]]]]]]
Units CO2 gigagram/year - SF6(time, area (ISO3), category (IPCC 2006), animal (FAOSTAT), product (FAOSTAT), scenario (FAOSTAT), provenance, model, source)float64[SF6·Gg/a] 0.3025 ... 0.04606
- entity :
- SF6
Magnitude [[[[[[[[[0.30254206483705404 0.04278550460037445]]] [[[0.1002189035336788 0.9210175627221506]]]] [[[[0.7603209526696096 0.46405982557117653]]] [[[0.8707942379705609 0.39418557615255034]]]]] [[[[[0.7517422821681341 0.2941957753400962]]] [[[0.885163691096375 0.5409450219103553]]]] [[[[0.06750199702086435 0.048118729550641115]]] [[[0.9610176840346197 0.768206178708387]]]]] [[[[[0.9342724765424013 0.7348066862251648]]] [[[0.05338445008331849 0.13358922267759576]]]] [[[[0.6164445814644958 0.24818997309013646]]] [[[0.8959238550894078 0.9790330158981674]]]]]] [[[[[[0.9503809282573307 0.4647841143622512]]] [[[0.024533119546712112 0.9600383847637936]]]] [[[[0.27838383447159165 0.625827298590706]]] [[[0.33223630961058936 0.4090509266157796]]]]] [[[[[0.3041963704490376 0.3623616357792514]]] [[[0.547094293660101 0.6598473304295454]]]] [[[[0.9869466028870895 0.4339940763062401]]] [[[0.15525667594893133 0.11263874265412299]]]]] [[[[[0.854800027764963 0.8584485580733577]]] [[[0.7615347317337966 0.7839776286978827]]]] [[[[0.9698462175527265 0.39734512609013006]]] [[[0.9703265995531817 0.9967017946180662]]]]]] [[[[[[0.8692501142366588 0.05448008536780169]]] [[[0.3847130193921722 0.1432319325013166]]]] [[[[0.6321615887838689 0.12325320543632601]]] [[[0.25491745263953436 0.5514970454458118]]]]] [[[[[0.6201598731630051 0.2783072949056027]]] [[[0.5435301373101975 0.04639038788770311]]]] [[[[0.5995919797842906 0.1358926221281832]]] [[[0.8124830306623408 0.04329629402569857]]]]] [[[[[0.7407100077726446 0.49037208657230724]]] [[[0.39305929672009743 0.508297451766916]]]] [[[[0.8945162131807384 0.5978769570742177]]] [[[0.07732108516976677 0.08232240500457877]]]]]] ... [[[[[[0.4055150487410315 0.5697259964954101]]] [[[0.887490013897321 0.47336546598930274]]]] [[[[0.4648759721609276 0.5932796193088975]]] [[[0.7802046341958311 0.3134540051723883]]]]] [[[[[0.29585187764866194 0.15738299605262807]]] [[[0.31753497381502305 0.81593899645232]]]] [[[[0.3670281404126028 0.1774665405072139]]] [[[0.6254577345855576 0.9479096727858878]]]]] [[[[[0.19486838445658783 0.9918535824072159]]] [[[0.15284200101410683 0.6559726847947068]]]] [[[[0.7162148170378811 0.2923888384753248]]] [[[0.5131990759451045 0.21054521056106013]]]]]] [[[[[[0.7204271414946236 0.39187647952912885]]] [[[0.8532468830068285 0.9840779856954496]]]] [[[[0.4492171611695782 0.18156553877072268]]] [[[0.810245318944072 0.07198423166765644]]]]] [[[[[0.5610255486303949 0.3761211606530058]]] [[[0.7939024690008921 0.21131319290403328]]]] [[[[0.2927003810930846 0.9284604892774201]]] [[[0.544784461192085 0.15351982033295075]]]]] [[[[[0.08010125057820683 0.478765304614282]]] [[[0.19294497245217956 0.07283997505396855]]]] [[[[0.018097991156493465 0.15844889170478604]]] [[[0.8433352182909689 0.43126796634962883]]]]]] [[[[[[0.40428162826138325 0.18914253235045497]]] [[[0.15714398385275896 0.9837874396254933]]]] [[[[0.2682869295296767 0.8485209539977452]]] [[[0.5326720174016272 0.8520748580223597]]]]] [[[[[0.9461967928512414 0.08766084152511888]]] [[[0.8606018618701189 0.6442768917385785]]]] [[[[0.03895532461366091 0.9121650988570033]]] [[[0.6864828214545982 0.09482238725094183]]]]] [[[[[0.05162971600145938 0.5474799022808388]]] [[[0.6136796761061666 0.25748568034439057]]]] [[[[0.4295325675038224 0.6086635388272027]]] [[[0.29176268055688204 0.8782995745765918]]]]]]] [[[[[[[0.8376825009904058 0.631309703072357]]] [[[0.9144341423962203 0.3662826655095661]]]] [[[[0.6824702256503202 0.6606141741031694]]] [[[0.8654588701915584 0.1022003615316297]]]]] [[[[[0.2129199161135139 0.9325260440677648]]] [[[0.12968799152975719 0.7729638432322146]]]] [[[[0.5021232734638778 0.5076481353652642]]] [[[0.17150246936826385 0.8294995028895549]]]]] [[[[[0.34103795120794256 0.9170677328105129]]] [[[0.6436538432298108 0.7480027915585764]]]] [[[[0.43862710110657765 0.38344181569709523]]] [[[0.4566761055986239 0.29484369074675576]]]]]] [[[[[[0.849073873418296 0.37847604061037465]]] [[[0.3324049028795327 0.7986586062138844]]]] [[[[0.2943314687744143 0.03595437847251659]]] [[[0.8099266075262609 0.7388063185639692]]]]] [[[[[0.7112029383877349 0.2741752514240484]]] [[[0.2511986673575394 0.21299684919132544]]]] [[[[0.7062020984206538 0.7791643852070721]]] [[[0.35745379220312634 0.012144838891505971]]]]] [[[[[0.24125676418159347 0.6040782863037208]]] [[[0.8540781852738223 0.9768911945934248]]]] [[[[0.6328744397970583 0.9464005098300586]]] [[[0.022269607635625355 0.8643665020351013]]]]]] [[[[[[0.5666089117423783 0.26031629125114575]]] [[[0.5013883043283324 0.49498211611112797]]]] [[[[0.08598977351209802 0.24425487722346229]]] [[[0.8280312116115212 0.16075399303014104]]]]] [[[[[0.05830988903932621 0.8664851845363264]]] [[[0.953007320029762 0.9166893455202495]]]] [[[[0.11496508599922595 0.12108291114766567]]] [[[0.12529377376106676 0.902992048910947]]]]] [[[[[0.2653567734526756 0.503801132395882]]] [[[0.4966365409416946 0.7952162415184736]]]] [[[[0.9060898666410391 0.8507726286243639]]] [[[0.13175828594040762 0.21235376512850435]]]]]] ... [[[[[[0.00048001974540679004 0.6371456027510038]]] [[[0.10082322229321472 0.39880696990629383]]]] [[[[0.25371247777388206 0.7137182510900476]]] [[[0.705665901888121 0.8470666169107308]]]]] [[[[[0.7313379453896502 0.26249762818123135]]] [[[0.9249171072983542 0.6537698319998115]]]] [[[[0.5194577074888268 0.5957941833439097]]] [[[0.8025475490920803 0.12184666754183893]]]]] [[[[[0.6980163703422279 0.5444121300352199]]] [[[0.034283088258523 0.6850546283410027]]]] [[[[0.5693471939919984 0.35676221689354304]]] [[[0.4934540514575584 0.37682273141147093]]]]]] [[[[[[0.6304640121888536 0.571733745270173]]] [[[0.5611618312224596 0.011913729209970247]]]] [[[[0.371308468879087 0.9428743078705258]]] [[[0.31515432845981295 0.23258364793478514]]]]] [[[[[0.989378887137363 0.20473282501079837]]] [[[0.4305318749581668 0.692745948805534]]]] [[[[0.17635228837302996 0.6084252514485979]]] [[[0.9037400048155755 0.32907882524654264]]]]] [[[[[0.43993148416559047 0.2548573597958055]]] [[[0.3267418059601851 0.7604443227969561]]]] [[[[0.048147485583730276 0.07596079576755832]]] [[[0.36731785815830675 0.5105254225132517]]]]]] [[[[[[0.8223549832787926 0.6990873712696107]]] [[[0.6851659053826851 0.1644523063977027]]]] [[[[0.6810454882446958 0.9126696365638169]]] [[[0.4292851856391595 0.39549111616839683]]]]] [[[[[0.6696331479132946 0.8430391995601866]]] [[[0.8679241944628711 0.187270025743275]]]] [[[[0.6254517508536298 0.39152343307440296]]] [[[0.03353734760526084 0.92030720876294]]]]] [[[[[0.8415443660335102 0.9158814660093222]]] [[[0.7537700015506669 0.5235125047232673]]]] [[[[0.10963935142014303 0.5984147481165578]]] [[[0.1143663995694374 0.06102943295604779]]]]]]] [[[[[[[0.37848316635694246 0.8613265066334047]]] [[[0.8575864865182258 0.15075436704973377]]]] [[[[0.7757945915536547 0.9563134492995404]]] [[[0.6571160899273735 0.6477455336934123]]]]] [[[[[0.8469428205871242 0.23511899849051598]]] [[[0.15850727827093203 0.3283018329779164]]]] [[[[0.9890773290713164 0.13667087271310585]]] [[[0.24927398877793128 0.5469847150168735]]]]] [[[[[0.40233287840734855 0.4355023744758879]]] [[[0.08951105798991932 0.6558284682395125]]]] [[[[0.4873435882335374 0.3007375156020554]]] [[[0.7205191378288316 0.8599674296276612]]]]]] [[[[[[0.3480372019245559 0.3523922167948049]]] [[[0.6989110723821464 0.184297906067305]]]] [[[[0.9999060468260488 0.7392123275461122]]] [[[0.550881906741522 0.6952896122766192]]]]] [[[[[0.16330850941986452 0.4256589763997317]]] [[[0.4305772067348169 0.9297056196860637]]]] [[[[0.5217735270139028 0.252307234880743]]] [[[0.7862376206804985 0.6743681496601398]]]]] [[[[[0.8941996011952641 0.46481901251706303]]] [[[0.30190300652473123 0.600123129138367]]]] [[[[0.22638292387990833 0.23049650004390376]]] [[[0.6588025938025598 0.4150430093091334]]]]]] [[[[[[0.07357781541222064 0.7294509202558387]]] [[[0.7541732216124928 0.7665764912460149]]]] [[[[0.343126702339123 0.6796768622295549]]] [[[0.3946733434966896 0.7362523090694011]]]]] [[[[[0.08474252556214923 0.9319007494655028]]] [[[0.6718223300909747 0.32245319209812995]]]] [[[[0.02879048290375641 0.3353043578721622]]] [[[0.3694163287210871 0.25277555593040857]]]]] [[[[[0.833716944578422 0.9944645533087292]]] [[[0.5846614903155172 0.8529509729761199]]]] [[[[0.3889381257953589 0.10531825098401193]]] [[[0.8737968850707097 0.9673435787419665]]]]]] ... [[[[[[0.9052343192029253 0.10048798785068236]]] [[[0.747870300524661 0.11219298746623174]]]] [[[[0.6243516497093601 0.9117653287026618]]] [[[0.8912647045909163 0.9323536435693989]]]]] [[[[[0.5956351998576601 0.3768605449599681]]] [[[0.7045145909486605 0.8121609356489984]]]] [[[[0.07219212123824714 0.8707136424667984]]] [[[0.09524611657729176 0.5944471554366616]]]]] [[[[[0.02148020383006022 0.9345548814780069]]] [[[0.11160575804804485 0.22079684794053245]]]] [[[[0.39618684443947305 0.8916648282440188]]] [[[0.5434178665301443 0.5754918856228194]]]]]] [[[[[[0.2364712581786903 0.43562103843353905]]] [[[0.969749107259181 0.9174814967841844]]]] [[[[0.07439840755949811 0.7476784870085122]]] [[[0.4260862685143898 0.5587439521414431]]]]] [[[[[0.664001016625342 0.5195005178668443]]] [[[0.6646109268621953 0.5681965207221088]]]] [[[[0.22975769184954709 0.7676573661749638]]] [[[0.041849249091284846 0.36031010586834566]]]]] [[[[[0.8784238919476626 0.2645734697984323]]] [[[0.24032322282210372 0.4627275088062476]]]] [[[[0.5577430623230957 0.5142566446851948]]] [[[0.956020057024516 0.561433273714407]]]]]] [[[[[[0.2994627944388528 0.10039264555624383]]] [[[0.5185717802208407 0.45193851559483844]]]] [[[[0.521229897759725 0.302797410647035]]] [[[0.5800753692845747 0.7400281007252026]]]]] [[[[[0.02473400996293973 0.98900534299371]]] [[[0.12612290275960447 0.7775016488499715]]]] [[[[0.9492544974364516 0.5755549983165325]]] [[[0.4420337636329007 0.2922038172667727]]]]] [[[[[0.4757496534836083 0.8366460900363241]]] [[[0.7630189151562453 0.6855038266308461]]]] [[[[0.10694822587376285 0.3887465806988968]]] [[[0.0159098527231194 0.27379053800018516]]]]]]] [[[[[[[0.6175972202128269 0.04239454959140354]]] [[[0.7621334799226516 0.8433632258453467]]]] [[[[0.28034530557371184 0.5746039874738789]]] [[[0.19322195816216636 0.721371559779024]]]]] [[[[[0.7427953214366815 0.49988031364074004]]] [[[0.8623202426454959 0.6156106983661683]]]] [[[[0.5201799906974031 0.8950368126704111]]] [[[0.17028026089715265 0.1966627537377157]]]]] [[[[[0.01851671542188149 0.9020213392179924]]] [[[0.6830507287539065 0.365424145627115]]]] [[[[0.5803947765365867 0.07789276171116677]]] [[[0.9632108283456758 0.14246529438608158]]]]]] [[[[[[0.6670426902502707 0.611930755351995]]] [[[0.7979864406079932 0.018332060051441723]]]] [[[[0.5880655564481905 0.8306422360768394]]] [[[0.2592082640467619 0.3354183780164417]]]]] [[[[[0.7670043426818536 0.4149824117250961]]] [[[0.8768661763824218 0.47996493960588427]]]] [[[[0.4299970476371666 0.6411198279957527]]] [[[0.5867601356101302 0.6982529148814451]]]]] [[[[[0.8456959476449584 0.23665587746867944]]] [[[0.7433529507757465 0.40367851442081415]]]] [[[[0.866337463033894 0.3885371631126656]]] [[[0.8716239883579003 0.1973527915769442]]]]]] [[[[[[0.20688696998143274 0.2401152823187367]]] [[[0.5865378592593459 0.5898440930821773]]]] [[[[0.495274438760115 0.36901367183875355]]] [[[0.888661687236939 0.38053101161642244]]]]] [[[[[0.9504067256483987 0.44065315580480335]]] [[[0.5093208096656905 0.9067817923057858]]]] [[[[0.4186616833287117 0.2745464166842799]]] [[[0.838962761980388 0.7213164305372703]]]]] [[[[[0.7106824592481141 0.7914273722569917]]] [[[0.458371429272621 0.9264429393085762]]]] [[[[0.685627504725854 0.5930462628087111]]] [[[0.2151541457399292 0.48017864518428943]]]]]] ... [[[[[[0.6576737201266717 0.9590626887913306]]] [[[0.49875214626117914 0.2359390929123738]]]] [[[[0.7657140462760995 0.8189429009795529]]] [[[0.5115556374991668 0.30755283754371554]]]]] [[[[[0.5822954672947571 0.9723870167885241]]] [[[0.4209705593185523 0.7932351151246855]]]] [[[[0.9869587202762796 0.9793333502720935]]] [[[0.2615864333703173 0.5358508336355228]]]]] [[[[[0.1335816620971889 0.33987989808315267]]] [[[0.09908255032306246 0.9204367106195772]]]] [[[[0.9627156161907332 0.9723201887913628]]] [[[0.1601587155768811 0.8107824701982537]]]]]] [[[[[[0.35267292089861024 0.18797759325344598]]] [[[0.7809070427172035 0.7955346232308979]]]] [[[[0.24328696720557408 0.6446078980183509]]] [[[0.47791308958947853 0.25368251983151424]]]]] [[[[[0.9482360520890392 0.2340411915436178]]] [[[0.6394328472771087 0.7671903116624793]]]] [[[[0.01984051003712961 0.4787362929036221]]] [[[0.5092056867758711 0.717158026237553]]]]] [[[[[0.9609828526389571 0.782176412768104]]] [[[0.6141661044536306 0.4489235324852018]]]] [[[[0.03711787502745989 0.8378025193030606]]] [[[0.4111745069124183 0.9929764587052435]]]]]] [[[[[[0.5138642473763152 0.6821849138207011]]] [[[0.03948901959568585 0.9589421410320298]]]] [[[[0.5731829138974912 0.12343037632657783]]] [[[0.39157223890564696 0.20313509416895492]]]]] [[[[[0.5038453177554558 0.8535483583055823]]] [[[0.32297364977126264 0.6026378935306547]]]] [[[[0.4747537705640946 0.7200212095687635]]] [[[0.5186874222683671 0.236134830012668]]]]] [[[[[0.5677978864560741 0.7167938501361891]]] [[[0.5196150708028889 0.6629216261946751]]]] [[[[0.3399666340884865 0.08991326179923165]]] [[[0.05824441265075242 0.6789648689006632]]]]]]]] [[[[[[[[0.5643820380659788 0.9870166861975901]]] [[[0.18748007592310834 0.3101990820528351]]]] [[[[0.8997356150796476 0.2488505020437889]]] [[[0.62256292971387 0.18013081112507012]]]]] [[[[[0.22503266035918024 0.010944847051349904]]] [[[0.7979074367649245 0.7248000544566787]]]] [[[[0.5273714801090372 0.7238188988152736]]] [[[0.5001904658437972 0.43729902321489944]]]]] [[[[[0.7363402637879924 0.41788831513062574]]] [[[0.7327652386849772 0.8615547162421485]]]] [[[[0.9651943235058293 0.43474873716115514]]] [[[0.6306113031553242 0.24488651493753566]]]]]] [[[[[[0.5978172868526683 0.024087619934840432]]] [[[0.3101874764304907 0.48069043628630137]]]] [[[[0.31948774365407273 0.28876683304087447]]] [[[0.014983828400194188 0.0846789186876643]]]]] [[[[[0.9810366896686207 0.7938433070928125]]] [[[0.7807106439744133 0.17591152283083322]]]] [[[[0.6448969466918829 0.19313528170824623]]] [[[0.43396194341269567 0.12207609854924817]]]]] [[[[[0.22933639912007897 0.9298394755559631]]] [[[0.5419181841416147 0.5635237900498713]]]] [[[[0.0006532479196840191 0.19661598588874785]]] [[[0.40726672890850146 0.07747877062442743]]]]]] [[[[[[0.6317098013359833 0.6315562924491883]]] [[[0.4913380305386872 0.47700380303689505]]]] [[[[0.049233043084287775 0.15127871800097947]]] [[[0.8996845585522566 0.08777674240798827]]]]] [[[[[0.819478418623881 0.9330342121710417]]] [[[0.24699207074958351 0.5485409644884466]]]] [[[[0.23718792426394664 0.8460830976351912]]] [[[0.6478152729035994 0.6803093267590898]]]]] [[[[[0.9868785428302285 0.41260614139006635]]] [[[0.4846595497779562 0.42254897035709815]]]] [[[[0.08270993124193327 0.41039302342649797]]] [[[0.08880742883700987 0.7771966238301767]]]]]] ... [[[[[[0.5770532822577594 0.8132291588520768]]] [[[0.03897453652483773 0.23101537982782172]]]] [[[[0.441369916503759 0.565455768869868]]] [[[0.2644980018293993 0.5440075534906064]]]]] [[[[[0.7760977629430822 0.15109261349066383]]] [[[0.5744478883952567 0.6899237518834956]]]] [[[[0.8050694072669009 0.44347741183369827]]] [[[0.766031124847775 0.771738212026177]]]]] [[[[[0.48313249842339145 0.6185722488531863]]] [[[0.9989368564982134 0.39091686743682896]]]] [[[[0.33621982655911686 0.38112061679503406]]] [[[0.665651521012284 0.6657630316735603]]]]]] [[[[[[0.3894298323718641 0.3595923196629708]]] [[[0.07396716666969605 0.1680208898929546]]]] [[[[0.5568622240305842 0.819647012714234]]] [[[0.3457437750766573 0.8338004749244194]]]]] [[[[[0.24283233508277124 0.2515896249366901]]] [[[0.03885517842836672 0.4931043284981127]]]] [[[[0.978494214162154 0.34710827931043353]]] [[[0.9601104448663461 0.5890561772935546]]]]] [[[[[0.21076951249453035 0.43131215476772367]]] [[[0.5171401764639896 0.6817664462808176]]]] [[[[0.5699245343508715 0.08485500638008092]]] [[[0.7097437495860205 0.6708926806661599]]]]]] [[[[[[0.1910665116907232 0.42151100462634195]]] [[[0.8260357118312973 0.1516483956022947]]]] [[[[0.18415451919458237 0.41177291325671517]]] [[[0.3704429338769626 0.06275342052515709]]]]] [[[[[0.3147711922955698 0.2567271908141844]]] [[[0.48336526139310965 0.586965265260757]]]] [[[[0.47274580247925124 0.15610850740016557]]] [[[0.3051018336156157 0.3369877246017433]]]]] [[[[[0.013441182153197118 0.3375449596968131]]] [[[0.7993681718000311 0.7637188472666017]]]] [[[[0.20112160664314205 0.6868947177792322]]] [[[0.3033845858426426 0.07150614130400001]]]]]]] [[[[[[[0.8059015725188714 0.9671360293301963]]] [[[0.5949933156273401 0.11639656338823723]]]] [[[[0.0655771365500093 0.2653237947227124]]] [[[0.5681199545368413 0.08722779564354799]]]]] [[[[[0.5545603673941556 0.3578323472381013]]] [[[0.04755835038812939 0.038275340721039885]]]] [[[[0.25125161935959295 0.8421955545582139]]] [[[0.697234669773714 0.6338179781995824]]]]] [[[[[0.20175538607326526 0.758196225564943]]] [[[0.33313050614306106 0.2781876176734859]]]] [[[[0.5382754046410764 0.154000588769047]]] [[[0.14888472055097524 0.6327658556240315]]]]]] [[[[[[0.6551618225700768 0.3273533893634416]]] [[[0.8585909401674741 0.26335540849035743]]]] [[[[0.911218435407115 0.7725687750270495]]] [[[0.45603116843991565 0.7159233597841037]]]]] [[[[[0.7168591425344022 0.42261078927658613]]] [[[0.21185931637139177 0.8854765320218048]]]] [[[[0.15378304062219428 0.7105813142282751]]] [[[0.6618811789282316 0.3526302877301237]]]]] [[[[[0.11394056340178982 0.9867088544716083]]] [[[0.725862987700245 0.7170187786385743]]]] [[[[0.770133193860654 0.713901569484216]]] [[[0.28677936650964175 0.13494259577591738]]]]]] [[[[[[0.11544186616899355 0.16024218210789387]]] [[[0.7396525136286319 0.09221985275527023]]]] [[[[0.08794673577629786 0.5540490178799254]]] [[[0.20399281359072519 0.8313594775455657]]]]] [[[[[0.9113594074215591 0.9726517427148943]]] [[[0.25033128455675313 0.20066299471188753]]]] [[[[0.2634574994152675 0.4558642154110042]]] [[[0.7794888731877715 0.9735360178466254]]]]] [[[[[0.5291975995409308 0.8960014712536919]]] [[[0.09185708641596635 0.008974966244118532]]]] [[[[0.9781326635197002 0.41885023449863756]]] [[[0.5766776703612423 0.5734133907882829]]]]]] ... [[[[[[0.9379942325456098 0.10713690829964473]]] [[[0.6504397353584044 0.13098473330354543]]]] [[[[0.3532807658280781 0.23614232863996842]]] [[[0.5889899980192803 0.0050927738174401105]]]]] [[[[[0.5923872899365772 0.187717091337124]]] [[[0.02124732431651266 0.6889669296460693]]]] [[[[0.6148156329449979 0.3141264570015573]]] [[[0.04675680020194284 0.6166901431514694]]]]] [[[[[0.46542346886220554 0.4218669104071706]]] [[[0.17646675297041736 0.8026025890529851]]]] [[[[0.14809552517721314 0.13353847242117745]]] [[[0.7954814171677457 0.8788973977060501]]]]]] [[[[[[0.08949979128646723 0.18583227406141356]]] [[[0.5367790106002509 0.613734913306615]]]] [[[[0.3674773433775682 0.934699110214779]]] [[[0.49149323556896163 0.7366183915015696]]]]] [[[[[0.797345450274104 0.7925897187824483]]] [[[0.535858357399888 0.7911482340945785]]]] [[[[0.5179737256311128 0.5923792157593686]]] [[[0.9767445320239493 0.6437377735676705]]]]] [[[[[0.4845788224449141 0.054335577512718336]]] [[[0.6684276365476075 0.7110611319399318]]]] [[[[0.4384814703776846 0.42774920201827193]]] [[[0.37640383711086123 0.10901788046635574]]]]]] [[[[[[0.2976735714831862 0.2517686356613962]]] [[[0.9309729219968538 0.6298112118211923]]]] [[[[0.0629868414581678 0.9225708812346549]]] [[[0.714049082568657 0.9160650677900932]]]]] [[[[[0.7142523743091866 0.7219424045537759]]] [[[0.663355960660777 0.9784946989883051]]]] [[[[0.6845546550726643 0.8630573384046598]]] [[[0.1358002464557827 0.2837395307654025]]]]] [[[[[0.47124308249445834 0.199956751287805]]] [[[0.43457852966789046 0.7782663719912892]]]] [[[[0.9089118067405647 0.9901286491120661]]] [[[0.8715049217124424 0.9419486713743853]]]]]]] [[[[[[[0.5667912499698693 0.619880820810731]]] [[[0.4990484857197397 0.07894957299222394]]]] [[[[0.5142456352973473 0.56705539437888]]] [[[0.7705040429664668 0.7236947201963364]]]]] [[[[[0.4751097002996174 0.18643330115729762]]] [[[0.6783870773907837 0.13452015733008427]]]] [[[[0.4515057957496694 0.962950419384254]]] [[[0.4794338529503678 0.89615411693678]]]]] [[[[[0.9159452952132869 0.8444484638167719]]] [[[0.9774007182679344 0.3291450073661977]]]] [[[[0.3177017756762117 0.8295758767126965]]] [[[0.521625450615865 0.8040100780180973]]]]]] [[[[[[0.3562710935476008 0.9615626246744634]]] [[[0.8537998841584179 0.2133580468870233]]]] [[[[0.1302743170835311 0.021248251605314072]]] [[[0.8774781935922104 0.54549147389759]]]]] [[[[[0.43470613941542713 0.429154287847896]]] [[[0.350238764334032 0.556889308699948]]]] [[[[0.4769925014046891 0.9729483441753355]]] [[[0.6649107427937874 0.8710256483994329]]]]] [[[[[0.13426154631508247 0.7632194311512893]]] [[[0.6298268045640789 0.21787834131558237]]]] [[[[0.2072053412054472 0.9123621728036929]]] [[[0.3535902409588181 0.5013977564931577]]]]]] [[[[[[0.5993903450633391 0.004096040337180806]]] [[[0.8001299140962619 0.8731843414863799]]]] [[[[0.8237919956147337 0.4007141143517744]]] [[[0.18808293768629714 0.45933592266561574]]]]] [[[[[0.21144369200986401 0.7430689313794105]]] [[[0.13837881362290427 0.9234489685451005]]]] [[[[0.025905816891934386 0.8135171607838454]]] [[[0.47248515936731006 0.5085307645882245]]]]] [[[[[0.529388195168416 0.7836631360828508]]] [[[0.9471023721534415 0.5594510777768611]]]] [[[[0.9368822959985136 0.12851506547513658]]] [[[0.8833284597172129 0.9531270468589508]]]]]] ... [[[[[[0.9162461507351691 0.8111638701157078]]] [[[0.4041407968942782 0.12213618503983514]]]] [[[[0.13659563561960553 0.2771473325083367]]] [[[0.9027391222169416 0.25544678036065915]]]]] [[[[[0.5417125162319457 0.681309161974605]]] [[[0.07130152699287995 0.2291228894744043]]]] [[[[0.8956919611101438 0.23798166233478146]]] [[[0.8979682448059343 0.5881347706347498]]]]] [[[[[0.6287411521754489 0.8310187871892326]]] [[[0.03802454235662078 0.8820214093956703]]]] [[[[0.28815587496900175 0.11417120454785368]]] [[[0.23111591216075378 0.8090175402323152]]]]]] [[[[[[0.10110433725841306 0.07895689736787137]]] [[[0.7140522548267956 0.006460483759459068]]]] [[[[0.18342679693088637 0.019881449088009373]]] [[[0.3943419909377105 0.16464273340327074]]]]] [[[[[0.26376657800464276 0.013802447064062084]]] [[[0.5828218008456431 0.4060480506654931]]]] [[[[0.9460007101600633 0.67409698617383]]] [[[0.21230491714069277 0.13560775614571208]]]]] [[[[[0.5526780051117258 0.8166954051436224]]] [[[0.2322693206296541 0.5428028953870913]]]] [[[[0.12150370416199319 0.8881693441101198]]] [[[0.9747236064319086 0.8009257981648783]]]]]] [[[[[[0.34532702503824797 0.265132639995997]]] [[[0.3150980085692202 0.2980000177865444]]]] [[[[0.5332392618341617 0.6582554257681682]]] [[[0.845205460199994 0.8804090353246959]]]]] [[[[[0.954219024521425 0.7164172251549304]]] [[[0.7739112765961857 0.8064084264636714]]]] [[[[0.36257601151096364 0.6742608254103029]]] [[[0.5766072721629947 0.5852740419610329]]]]] [[[[[0.3886683393633604 0.9560012294705654]]] [[[0.636389407757798 0.7300076399208248]]]] [[[[0.48692080948290806 0.3953325668237385]]] [[[0.18512098747405226 0.011136369173855964]]]]]]] [[[[[[[0.8150133824209169 0.05138207268195727]]] [[[0.8664757520444207 0.14908070065582524]]]] [[[[0.881896383283283 0.9765735550630176]]] [[[0.0846706811475556 0.06292078728389427]]]]] [[[[[0.18201396329169495 0.18326798877398653]]] [[[0.4237349259195078 0.4183498810923605]]]] [[[[0.5542627433411748 0.979061438525301]]] [[[0.8163396244940146 0.31665420352273566]]]]] [[[[[0.864153490127124 0.3837854738778307]]] [[[0.19668576881177324 0.36648944994450106]]]] [[[[0.19123993754732216 0.7502922616290248]]] [[[0.24967468244741065 0.7141260582174074]]]]]] [[[[[[0.5591147175227705 0.4491441075534206]]] [[[0.675181806083572 0.45972999132404857]]]] [[[[0.7141159893618098 0.8855312829517241]]] [[[0.8797862140211483 0.8000158291264322]]]]] [[[[[0.5743177181230155 0.37260847868147684]]] [[[0.8947333439114522 0.11941094808333108]]]] [[[[0.19871677016852263 0.6683517770020074]]] [[[0.22883589881873012 0.8180354296308219]]]]] [[[[[0.6479234809658898 0.25358263242921875]]] [[[0.16943453340623538 0.1177249286887021]]]] [[[[0.32228720809028033 0.053436685017166474]]] [[[0.12105077358022132 0.8003019303230636]]]]]] [[[[[[0.32825657065371183 0.7566186381984364]]] [[[0.3222082876618728 0.3848184281878677]]]] [[[[0.9980634750616476 0.42387022266623753]]] [[[0.9902277242159356 0.5651178397159147]]]]] [[[[[0.9088488324782027 0.6465288254372196]]] [[[0.6787047859424131 0.1180288015555242]]]] [[[[0.08303154317009565 0.1436825089886432]]] [[[0.41467249609771784 0.11663688251793813]]]]] [[[[[0.7431976842251147 0.9193911879953907]]] [[[0.8750788916536865 0.5201434495296691]]]] [[[[0.2149680136849399 0.22021289224271356]]] [[[0.7259776479740894 0.9312460450606438]]]]]] ... [[[[[[0.7855037301789206 0.46206715373879215]]] [[[0.6674472850541527 0.44709819782590976]]]] [[[[0.439755890015854 0.922012014117038]]] [[[0.7027381251595473 0.043032304032307844]]]]] [[[[[0.8127104550224136 0.11919542827773155]]] [[[0.6624025052369261 0.32766914858597984]]]] [[[[0.4144405787210105 0.30501701243951473]]] [[[0.026015081615632818 0.39949463266157215]]]]] [[[[[0.3982834938582399 0.14031904140441298]]] [[[0.7482512433114553 0.05341075145440599]]]] [[[[0.9814878267826502 0.03176298831605906]]] [[[0.6013293600631476 0.11448658510993115]]]]]] [[[[[[0.9036508111342887 0.22157022071117372]]] [[[0.0052738747232669025 0.28020558395488226]]]] [[[[0.6781791422346707 0.26254401891215007]]] [[[0.7988527101966693 0.7146643107376949]]]]] [[[[[0.9780499744097375 0.5077961757338832]]] [[[0.6193007136076419 0.8720551503214694]]]] [[[[0.8077790314786353 0.9943757695332582]]] [[[0.757486414854342 0.5710647296813949]]]]] [[[[[0.49966751128227327 0.3083497909982511]]] [[[0.15752369067204297 0.25422463381373417]]]] [[[[0.9433301820372786 0.5239352246105144]]] [[[0.2001074243994866 0.6643839277462409]]]]]] [[[[[[0.4970458753415389 0.39150447355792906]]] [[[0.0832639788101518 0.9303534842973259]]]] [[[[0.6897793650719488 0.995352714264562]]] [[[0.09427774815028123 0.042297813701635545]]]]] [[[[[0.7133850394582947 0.730937206281358]]] [[[0.3851868038820896 0.8034594482491986]]]] [[[[0.6124024421985754 0.9181133788562044]]] [[[0.3702131438445637 0.6796117418963552]]]]] [[[[[0.32832467686008415 0.809439406151014]]] [[[0.6657685020290279 0.08417580803201241]]]] [[[[0.9760882616103351 0.7970395828024204]]] [[[0.38568235522326844 0.47811644531575226]]]]]]]] [[[[[[[[0.25493318000328524 0.4414969125832183]]] [[[0.4655087389970971 0.23604755720359238]]]] [[[[0.2655651385440332 0.07879578701660284]]] [[[0.27283309030286795 0.7525036360749467]]]]] [[[[[0.07436115448157332 0.5658911447548781]]] [[[0.28452329219100014 0.9427436327024316]]]] [[[[0.7639272868086842 0.22322946851420156]]] [[[0.3207827091744052 0.6037191329611077]]]]] [[[[[0.46681261606754887 0.6515569047698349]]] [[[0.08975701264065461 0.43658677276887836]]]] [[[[0.4865830574614233 0.551683925928355]]] [[[0.992065472552073 0.7633834074122764]]]]]] [[[[[[0.8933970182682769 0.9696250225118018]]] [[[0.8590768189650047 0.9928009406805645]]]] [[[[0.04114349507845738 0.6928497647315983]]] [[[0.5758331056120886 0.02303075440178881]]]]] [[[[[0.10078256801854357 0.4191587774881059]]] [[[0.4145136942802341 0.6894302148759517]]]] [[[[0.0927268358409743 0.5568915355996555]]] [[[0.07601915169240281 0.16141350995170056]]]]] [[[[[0.7720152104048836 0.16954398015667804]]] [[[0.3448478038801125 0.6939487009119419]]]] [[[[0.6458973065658175 0.44035958671843123]]] [[[0.26761274108898114 0.617225621938286]]]]]] [[[[[[0.011666008462485555 0.8052554691275494]]] [[[0.19380045446856986 0.15997685696475505]]]] [[[[0.22715014071134132 0.29096995147455074]]] [[[0.9354254789893638 0.2454773574351422]]]]] [[[[[0.7260371671713327 0.5354949191822572]]] [[[0.8740646567522785 0.028527834751876813]]]] [[[[0.4529909395389419 0.0058518938124969555]]] [[[0.07426218867243306 0.7950828951980676]]]]] [[[[[0.025144904345457464 0.9787510616231497]]] [[[0.36266840966772895 0.3224443605071935]]]] [[[[0.09719940956901774 0.5868598015025819]]] [[[0.15404289955248585 0.9572497526014635]]]]]] ... [[[[[[0.49368311469734494 0.3210298081346403]]] [[[0.9271278193946808 0.6710015709584123]]]] [[[[0.34830910794606196 0.6439960494347504]]] [[[0.3098897112005632 0.4524333770740171]]]]] [[[[[0.4547176953660479 0.38029482332387854]]] [[[0.13490288397437267 0.23208075193150668]]]] [[[[0.4900632163727644 0.5973855235499446]]] [[[0.16913113689628756 0.21029276503749306]]]]] [[[[[0.80836317268037 0.9067629356772574]]] [[[0.2946214751786097 0.012415286868196374]]]] [[[[0.9164997369498609 0.07306796956813877]]] [[[0.8172992278511007 0.14966722765681328]]]]]] [[[[[[0.8436302427956429 0.25418836528523836]]] [[[0.7903618392640483 0.9147949106275194]]]] [[[[0.30626498404476155 0.048595355070491286]]] [[[0.9203253474820309 0.04448445509225485]]]]] [[[[[0.09776703237789408 0.07759598901080178]]] [[[0.38833618153562866 0.60116963215811]]]] [[[[0.8395086097275988 0.10153604889993173]]] [[[0.9206972486420154 0.47396970349022804]]]]] [[[[[0.8022648096770609 0.2890145051485927]]] [[[0.21758004703619394 0.03336440725618928]]]] [[[[0.5099876478210575 0.7360787717542792]]] [[[0.8236865971378794 0.5824366275039636]]]]]] [[[[[[0.3119413427652429 0.93446921809488]]] [[[0.16663461447673333 0.3359262159954072]]]] [[[[0.8385272155077617 0.29962248908738287]]] [[[0.7257811438600448 0.18136571420895475]]]]] [[[[[0.19715568032719033 0.4444815660430188]]] [[[0.0228036051927083 0.5736457271810386]]]] [[[[0.12406986480037874 0.8439594149427908]]] [[[0.08074536678909094 0.7797928168860783]]]]] [[[[[0.1902571182590348 0.3012779529307761]]] [[[0.35135104423413577 0.7760183784417019]]]] [[[[0.8497737497149815 0.4491112135448072]]] [[[0.5045928881753566 0.9897112478061604]]]]]]] [[[[[[[0.29158220953818037 0.5773587566187429]]] [[[0.9646435438950818 0.7061770118191023]]]] [[[[0.8988918117864938 0.23190843635877234]]] [[[0.109720038841715 0.4280254333970773]]]]] [[[[[0.7117141339287819 0.4893080366371344]]] [[[0.8592620845323621 0.5347343069916098]]]] [[[[0.8524563752663263 0.17745685219490537]]] [[[0.05610268752918557 0.16856188627582458]]]]] [[[[[0.7684879614308727 0.6468107181468554]]] [[[0.34712112608934975 0.31855636980471136]]]] [[[[0.33954989769332733 0.009048094413504737]]] [[[0.5494333205794626 0.2679506799876141]]]]]] [[[[[[0.41339595557439324 0.8551477043751448]]] [[[0.2734174238446786 0.2962293168091785]]]] [[[[0.21672786096761254 0.9166636720240923]]] [[[0.7953204515750039 0.29731436359359]]]]] [[[[[0.29044367592020415 0.1530659052452522]]] [[[0.6733803994640168 0.4265708485193823]]]] [[[[0.846267279272614 0.44641059059224375]]] [[[0.891052097291827 0.08489601395129032]]]]] [[[[[0.8602470576320287 0.16486105399197448]]] [[[0.298288551575176 0.36003128727429545]]]] [[[[0.2564513772941963 0.932905499909775]]] [[[0.08295833908346917 0.6579989464294834]]]]]] [[[[[[0.8555925508362788 0.0008447794868772229]]] [[[0.7167035782324046 0.31166851190602685]]]] [[[[0.9751900075272447 0.8366577288006537]]] [[[0.23372029535284844 0.14260757726850726]]]]] [[[[[0.11997127024096221 0.933456804462277]]] [[[0.17900571409409083 0.8061817308825008]]]] [[[[0.3422652312712562 0.5329370969783219]]] [[[0.5505509132070521 0.2257844050365687]]]]] [[[[[0.7038954170104526 0.4756019938137199]]] [[[0.8732243882341266 0.9109552006183229]]]] [[[[0.21536415013700871 0.4025244585613824]]] [[[0.7717205679351781 0.7742418624861432]]]]]] ... [[[[[[0.9119495823684323 0.6417128454755437]]] [[[0.5287472797635295 0.34572479460074323]]]] [[[[0.8822274558181489 0.7080463352879959]]] [[[0.03428357838674789 0.20620724955917613]]]]] [[[[[0.24147668307906978 0.731354831608421]]] [[[0.03200815052444261 0.3487868607723197]]]] [[[[0.5269708914138423 0.9359501487952446]]] [[[0.8185512081145263 0.620055471714062]]]]] [[[[[0.5940245262913858 0.39826472602669716]]] [[[0.09328375685986634 0.3087395449797098]]]] [[[[0.9548100888010231 0.1970247721518803]]] [[[0.6285792636059464 0.5849317194868551]]]]]] [[[[[[0.8312636776416567 0.9283861352092547]]] [[[0.2130071610264369 0.6008635601160008]]]] [[[[0.7766064306868342 0.39230576053712163]]] [[[0.25724995143945484 0.651341542645774]]]]] [[[[[0.4502344221111477 0.1245160250379761]]] [[[0.6961841408691338 0.3036531958066808]]]] [[[[0.10808021109629695 0.48610473485142547]]] [[[0.993540657050382 0.9482511898423417]]]]] [[[[[0.6753249236196358 0.44608038579927634]]] [[[0.18941210541741638 0.8485677420810085]]]] [[[[0.7219652902707141 0.7413785028545486]]] [[[0.12704998457220795 0.3966131269073999]]]]]] [[[[[[0.2541846600282015 0.9885570837357123]]] [[[0.2663866196839527 0.6952336821240387]]]] [[[[0.33552234680647297 0.3918274860108575]]] [[[0.3856936449282359 0.2805747336191914]]]]] [[[[[0.8503919520388964 0.5193471580135848]]] [[[0.006616315972711173 0.9695857479142252]]]] [[[[0.9503895374205293 0.910717167381503]]] [[[0.9150532628078174 0.6937689950654599]]]]] [[[[[0.23911113869061373 0.9136325816711055]]] [[[0.3088170452828831 0.5142911325043616]]]] [[[[0.8498278384737017 0.9859154885456233]]] [[[0.8819417336386417 0.043734766588275686]]]]]]] [[[[[[[0.7113658176319233 0.5968258496536266]]] [[[0.8002213519949926 0.9481272497677145]]]] [[[[0.4016538645291813 0.7631916599379205]]] [[[0.2597199094000624 0.5146501340119568]]]]] [[[[[0.5858953709281705 0.47904573318665866]]] [[[0.33047060028202146 0.8156619318366695]]]] [[[[0.6415843012564705 0.14809007339210156]]] [[[0.34733704091154627 0.1444198627775658]]]]] [[[[[0.7406186823279624 0.9567321640421728]]] [[[0.023659069459889825 0.06805411264387784]]]] [[[[0.632747648332879 0.6548883625720502]]] [[[0.318813076663919 0.2583901943955247]]]]]] [[[[[[0.1454411028421323 0.44965923613274317]]] [[[0.547290744817752 0.8663801649566698]]]] [[[[0.8318165116348855 0.24190997437319262]]] [[[0.26365732666404773 0.0921282520808584]]]]] [[[[[0.5008315942334278 0.955089749256928]]] [[[0.9115871946889446 0.5911531141967176]]]] [[[[0.06701604874386657 0.33353711153066645]]] [[[0.6266828777896392 0.977651917370973]]]]] [[[[[0.07512947219563804 0.04996814927619542]]] [[[0.3431785397367073 0.9657949784653604]]]] [[[[0.2417956612806612 0.26796855192054847]]] [[[0.24756929799156435 0.3016473531825191]]]]]] [[[[[[0.19698821327472527 0.8696366634368914]]] [[[0.9152582803182967 0.9671067619339919]]]] [[[[0.10286405528430231 0.892272607579216]]] [[[0.17321109371898213 0.5575832749557874]]]]] [[[[[0.47784801774939345 0.6763030845487265]]] [[[0.5962782772992017 0.1789114859580453]]]] [[[[0.4042406815327426 0.6139723406143439]]] [[[0.5761120924197195 0.4790540393327746]]]]] [[[[[0.42633770909402946 0.14382298202873656]]] [[[0.9678573007954706 0.24603735978443486]]]] [[[[0.21951845690214944 0.9811792735440721]]] [[[0.17175606617082073 0.9951383209634872]]]]]] ... [[[[[[0.41710432026861743 0.29863574383461167]]] [[[0.18464063098002115 0.9786241168006357]]]] [[[[0.3991590235279098 0.21082925230969896]]] [[[0.6305540594616431 0.0462559860443289]]]]] [[[[[0.2682576662560403 0.4533763518085864]]] [[[0.36820600418609617 0.7366886031578321]]]] [[[[0.07191257333382928 0.3428472583043032]]] [[[0.6585778592990043 0.46850441564581247]]]]] [[[[[0.4420751796583857 0.14068114261929354]]] [[[0.03708087887333411 0.9545270769276671]]]] [[[[0.8643725417436541 0.5872671534457078]]] [[[0.9963382061257235 0.6400193873296678]]]]]] [[[[[[0.8123106694365665 0.5934972379350013]]] [[[0.4175165251740358 0.07529427653533383]]]] [[[[0.6892526405008669 0.1120580344304467]]] [[[0.6380037823538885 0.8161673844700761]]]]] [[[[[0.19640481352698547 0.7106074785674622]]] [[[0.4904261214394374 0.8326306994535266]]]] [[[[0.7307864171473509 0.9085198842172527]]] [[[0.6337908321352926 0.9154870057849492]]]]] [[[[[0.6526658401328661 0.019722835132567784]]] [[[0.6837264472157762 0.031270063177521124]]]] [[[[0.33259871207867675 0.35903532655903647]]] [[[0.8563022767487559 0.1342838938375338]]]]]] [[[[[[0.22225711295916584 0.7883469607168303]]] [[[0.3917516347714227 0.4555764137602185]]]] [[[[0.6840482816128585 0.5641178051625857]]] [[[0.9709068888160077 0.2826629021562187]]]]] [[[[[0.7198129021548308 0.015136467840351164]]] [[[0.085716089508027 0.5396076518353496]]]] [[[[0.38837186112839384 0.4970549587968306]]] [[[0.14936229127459633 0.5465167488095551]]]]] [[[[[0.4418939745942181 0.7183189158439238]]] [[[0.05637741711249045 0.38419760695555294]]]] [[[[0.6381523915136534 0.42912430306650284]]] [[[0.7673711155759799 0.38697273845179625]]]]]]] [[[[[[[0.3595229620709375 0.6084924679786189]]] [[[0.3465301996924506 0.8597673069488206]]]] [[[[0.14815983873436156 0.5333694599082862]]] [[[0.8895958753164394 0.016050228069561356]]]]] [[[[[0.6199335443531759 0.5445964864326273]]] [[[0.375919820032245 0.976092111518391]]]] [[[[0.41079242026022933 0.9259448016972675]]] [[[0.7132901832126447 0.8725931204495793]]]]] [[[[[0.6544041023435653 0.38290341675345996]]] [[[0.8147349055603039 0.0014800933552004958]]]] [[[[0.10099274779399647 0.4924574586231092]]] [[[0.4723915497404618 0.9909552899344708]]]]]] [[[[[[0.6237847563316284 0.04019194060339282]]] [[[0.032606782116906485 0.5692713630331712]]]] [[[[0.08509134504555238 0.8102314770333914]]] [[[0.9357381087461137 0.026404893177123467]]]]] [[[[[0.900395113055608 0.9090420567417761]]] [[[0.9301710598253828 0.18932383207121917]]]] [[[[0.07265782088976491 0.9854445144993979]]] [[[0.6511955174315941 0.35013090113722056]]]]] [[[[[0.46361159905189575 0.030991592596965267]]] [[[0.9073427100752793 0.6546065643057648]]]] [[[[0.9627629255422557 0.14073385446186004]]] [[[0.2760134470411142 0.7955356465173672]]]]]] [[[[[[0.03867167135060645 0.6594748308464911]]] [[[0.53975533343662 0.1468454649337919]]]] [[[[0.7716205106108369 0.13064633021919658]]] [[[0.47787869135200123 0.32412243205035507]]]]] [[[[[0.7120584422075767 0.7350302948926621]]] [[[0.8280863102736209 0.31326775294630016]]]] [[[[0.5804611604511164 0.08550213773306059]]] [[[0.44440897919288136 0.7199797064057065]]]]] [[[[[0.28513161722805613 0.625817802739082]]] [[[0.8670323687142597 0.33636200370068003]]]] [[[[0.1613391720182794 0.915546154420689]]] [[[0.9646363690946798 0.38017879902899343]]]]]] ... [[[[[[0.533573430587391 0.8240748846814338]]] [[[0.5994665301054983 0.3522351030223885]]]] [[[[0.5711159769987024 0.6087062690479126]]] [[[0.743839373415236 0.992712056344707]]]]] [[[[[0.785414922513406 0.4977970461293655]]] [[[0.1994043468941985 0.01058045564722554]]]] [[[[0.8287176923442691 0.2335415616301837]]] [[[0.5726124668905419 0.29674250733819707]]]]] [[[[[0.557437715853653 0.02227528675411583]]] [[[0.3891915236159952 0.800132439374953]]]] [[[[0.4986464244899017 0.4269779864350238]]] [[[0.29737886872401953 0.5819131301023387]]]]]] [[[[[[0.44302326418587346 0.4049562741011462]]] [[[0.48785365029923766 0.8867439614708976]]]] [[[[0.12593388109806825 0.570333441835808]]] [[[0.6937151452560298 0.15302149388961583]]]]] [[[[[0.6375491663818961 0.9219583831069575]]] [[[0.23072231457453918 0.9034806321630895]]]] [[[[0.1670742549498797 0.26020410291087714]]] [[[0.9849376986360319 0.3398893135969503]]]]] [[[[[0.8609010372269471 0.6181536289991232]]] [[[0.40305358134344516 0.3117105186456812]]]] [[[[0.38325466544577524 0.5302668425458485]]] [[[0.10604220145215248 0.9214227376989031]]]]]] [[[[[[0.8329148392714649 0.2766928749641355]]] [[[0.6399025384875885 0.24336213677150487]]]] [[[[0.20586020597917587 0.8178668226516449]]] [[[0.07451832666028124 0.09345016810352735]]]]] [[[[[0.05960406213722114 0.013477071014979414]]] [[[0.31034291003162195 0.43971236519097157]]]] [[[[0.9686746520865783 0.6402680462896189]]] [[[0.14482217039349465 0.023539187760485136]]]]] [[[[[0.5185973305016112 0.24072630070726175]]] [[[0.2898815386157576 0.07515977316340727]]]] [[[[0.3592429318871919 0.6356482620591812]]] [[[0.21771248825993528 0.9927608972098051]]]]]]]] ... [[[[[[[[0.6061717108824504 0.6885227916794036]]] [[[0.8425928347327548 0.8806471315257018]]]] [[[[0.3768186923367478 0.8569527062115092]]] [[[0.36543946335571353 0.040453390773865006]]]]] [[[[[0.6510851877486421 0.9532633356417968]]] [[[0.7654415375687728 0.10073545567723574]]]] [[[[0.26674370968119343 0.09461752666577994]]] [[[0.4291432875992651 0.21598957211148861]]]]] [[[[[0.6752972420956977 0.27681734713388284]]] [[[0.656212795919299 0.6106580218282635]]]] [[[[0.2757375003715703 0.44925704185792514]]] [[[0.16798632638285782 0.1431475363112067]]]]]] [[[[[[0.441971778256698 0.29420853186104556]]] [[[0.06859782475262521 0.6236261333326376]]]] [[[[0.904554438800524 0.6959043907803842]]] [[[0.6156838655595811 0.7261755982568724]]]]] [[[[[0.5904152052538912 0.8708659335775091]]] [[[0.5262221198657397 0.8459614661701669]]]] [[[[0.8879836348794153 0.6607792668013319]]] [[[0.8595362506761063 0.4799180689217717]]]]] [[[[[0.09841541237038443 0.7021047500077792]]] [[[0.07111261421323833 0.9961516519857408]]]] [[[[0.5842645550035356 0.553440480380159]]] [[[0.3365849433933996 0.34472946923190706]]]]]] [[[[[[0.1300747017720899 0.9063223759992078]]] [[[0.2807907705084661 0.34736040694831427]]]] [[[[0.84003779128926 0.5339970074914031]]] [[[0.5381999670552706 0.9761896571183749]]]]] [[[[[0.683341506952681 0.44961188832187304]]] [[[0.6452292989556344 0.42865911478168184]]]] [[[[0.05379790324228395 0.6293898140982024]]] [[[0.8431346310705286 0.9757649022445544]]]]] [[[[[0.8906555337247097 0.5432542906937953]]] [[[0.3982193439833108 0.5930248972544829]]]] [[[[0.5796159601248063 0.7713246971165628]]] [[[0.5929620187028753 0.4893081875902573]]]]]] ... [[[[[[0.30283356323898625 0.8494930501564767]]] [[[0.2510876881909323 0.10765299517000104]]]] [[[[0.9859477121899842 0.2849510813953845]]] [[[0.5190730892953146 0.20036852141116712]]]]] [[[[[0.45632870163995864 0.6444790238936473]]] [[[0.6574026172933771 0.5253357397028863]]]] [[[[0.5046658215952249 0.8376738124643134]]] [[[0.559862269457263 0.6125078803982873]]]]] [[[[[0.018071470185001992 0.7158945156004958]]] [[[0.06032505583951009 0.9343255497996211]]]] [[[[0.8383999671950764 0.9846150690290646]]] [[[0.8312637553862526 0.87163008456876]]]]]] [[[[[[0.95530263832955 0.9461043448280189]]] [[[0.43329502290235855 0.6736751123274345]]]] [[[[0.6430521102611818 0.5929659105858083]]] [[[0.3151524854715245 0.7911122748597822]]]]] [[[[[0.48450490306311933 0.3868412171218286]]] [[[0.4681627655959313 0.37481311551541885]]]] [[[[0.5466081542198015 0.25449404797286423]]] [[[0.23381446187228705 0.3474454632888948]]]]] [[[[[0.9772140504339121 0.6798517212419904]]] [[[0.6840385708778958 0.8880607004865978]]]] [[[[0.9227721051547966 0.2820002967957731]]] [[[0.7081339082558447 0.39615678623066786]]]]]] [[[[[[0.8826092477742321 0.03165299879324257]]] [[[0.09439189559951355 0.6775632718705167]]]] [[[[0.2714188504385847 0.9305159745623484]]] [[[0.29217853640645286 0.8624619400481384]]]]] [[[[[0.9871549285005261 0.962226189682748]]] [[[0.6886086974654436 0.260989532537485]]]] [[[[0.24289124369210235 0.22187983636399555]]] [[[0.6742845640976706 0.9478392104817179]]]]] [[[[[0.4739769409130393 0.7392511016124075]]] [[[0.5025357653498108 0.6192131458110293]]]] [[[[0.7101145010848385 0.960836570182351]]] [[[0.9323416377334968 0.5448026100562186]]]]]]] [[[[[[[0.8398471979413396 0.25620302066017875]]] [[[0.9238753651016742 0.6537964047621391]]]] [[[[0.6712834564668855 0.882928961967411]]] [[[0.7024683947621315 0.14643972979225073]]]]] [[[[[0.20507884064493542 0.9736372002954727]]] [[[0.702072657918826 0.6441439749040614]]]] [[[[0.1964101005253175 0.6161115378378267]]] [[[0.036219531593350895 0.07334277807487499]]]]] [[[[[0.21475796136946035 0.015388076848292465]]] [[[0.9600309104687417 0.6433312829276415]]]] [[[[0.830255205211864 0.3237370344549847]]] [[[0.26957442014116384 0.7933609494812592]]]]]] [[[[[[0.9488940339195634 0.31515870504785226]]] [[[0.9369135980853489 0.9888162536863053]]]] [[[[0.8250515450323931 0.8330806780648661]]] [[[0.22104994526080213 0.6296826790246232]]]]] [[[[[0.48615089769903186 0.01993270502795741]]] [[[0.0732970646125708 0.5228683036920667]]]] [[[[0.8591312145968524 0.707055843192522]]] [[[0.49232147599062914 0.9369243511320482]]]]] [[[[[0.5001548115674668 0.5674158174131073]]] [[[0.5442898531423709 0.11525613648230704]]]] [[[[0.6061537543866939 0.48731078181641174]]] [[[0.8104591824800887 0.34381278967608353]]]]]] [[[[[[0.978071162856799 0.8472537760768868]]] [[[0.07320985553552462 0.44089249620205906]]]] [[[[0.167587677978435 0.8064656672424522]]] [[[0.5318823669412015 0.31559472868242355]]]]] [[[[[0.42770816375621856 0.35600617643669086]]] [[[0.7239647983206966 0.8235324305903216]]]] [[[[0.10048752688565432 0.40358811478813617]]] [[[0.651930287967292 0.5152087539052235]]]]] [[[[[0.09246189647938396 0.4075444424282103]]] [[[0.2006003312829876 0.7413982548078321]]]] [[[[0.2033375741651916 0.8814643286635774]]] [[[0.7569053748618316 0.11941602178473232]]]]]] ... [[[[[[0.8283611529257545 0.19157029083376342]]] [[[0.8540726947035848 0.7742389690094478]]]] [[[[0.24818064463743716 0.10811806822498371]]] [[[0.4349025793312986 0.5132442846610179]]]]] [[[[[0.324469810932976 0.8132202772949261]]] [[[0.4601578853882149 0.9771891904314894]]]] [[[[0.9116541425243504 0.6090149576486285]]] [[[0.30879786032854506 0.026784932972909736]]]]] [[[[[0.4961887244706692 0.43704849355939146]]] [[[0.23540558594620842 0.09384878243026396]]]] [[[[0.12483632258570598 0.5835460302212268]]] [[[0.8518422163470469 0.8079568044526942]]]]]] [[[[[[0.706570674936197 0.7471666455466143]]] [[[0.21855436006076367 0.9159954151473212]]]] [[[[0.8966934034720208 0.8039637310859382]]] [[[0.8260608032951967 0.12390584060240106]]]]] [[[[[0.4137995911438601 0.9912475269949018]]] [[[0.8110922439316218 0.3725953185045645]]]] [[[[0.8469503859371076 0.4310931149346452]]] [[[0.5881087531141357 0.7168493340034987]]]]] [[[[[0.08253911994303165 0.6350781742343108]]] [[[0.09173597153212742 0.8152333291954365]]]] [[[[0.1493797968162457 0.6130331621940868]]] [[[0.6092165313975186 0.577081430763831]]]]]] [[[[[[0.28924518535038346 0.7851345730132513]]] [[[0.05539824611076205 0.8302741383676557]]]] [[[[0.27558305843216835 0.692369625389564]]] [[[0.09696299742194447 0.9530176672293397]]]]] [[[[[0.5187555147843633 0.4786718568019125]]] [[[0.9959128336598859 0.2764322624375055]]]] [[[[0.052974737301598185 0.9222580413348784]]] [[[0.9491494196135882 0.9976893534484809]]]]] [[[[[0.35341357862637146 0.833030694644011]]] [[[0.3065057636810993 0.9389970813747972]]]] [[[[0.3748521955475109 0.6036473824321923]]] [[[0.2875323297987771 0.8824909187076304]]]]]]] [[[[[[[0.9880827471967959 0.49674709181320953]]] [[[0.5056568607735543 0.32664272402074]]]] [[[[0.16113508655506836 0.06378106220278768]]] [[[0.8550639888571852 0.33023044675644075]]]]] [[[[[0.9941776139581804 0.23649177258585696]]] [[[0.8900005367568213 0.8732210922362248]]]] [[[[0.014931935996205237 0.43040734936223823]]] [[[0.21790793154657628 0.06345570000909406]]]]] [[[[[0.03774314027231018 0.7096023079910835]]] [[[0.07354367892577995 0.8178612651603275]]]] [[[[0.958755818316644 0.7758039614438135]]] [[[0.1945437243331093 0.009410999454415814]]]]]] [[[[[[0.03153840905755134 0.6676709207860788]]] [[[0.33259836939181997 0.47398783674298306]]]] [[[[0.16538453147298926 0.7655152321002615]]] [[[0.05466319345219728 0.312406180856723]]]]] [[[[[0.41275486129633376 0.9007258509810572]]] [[[0.8869854939872809 0.9838599731109597]]]] [[[[0.6587204747228734 0.6674396049002256]]] [[[0.8159133241116614 0.396410976076796]]]]] [[[[[0.5263561046215723 0.6356693348890279]]] [[[0.5789126517160054 0.007038908619117268]]]] [[[[0.6201646189368928 0.3107982528809895]]] [[[0.03798607580703839 0.5754048027069456]]]]]] [[[[[[0.09087888661144228 0.8626231894348803]]] [[[0.7012718068281963 0.6096525420839578]]]] [[[[0.7826961349193535 0.8231407182065159]]] [[[0.9449262499632161 0.03478142858186406]]]]] [[[[[0.2924998817882001 0.09749275025411408]]] [[[0.17159821041797896 0.8227126209674795]]]] [[[[0.16213193959733996 0.019648130065945013]]] [[[0.9893057917798275 0.7806421684896628]]]]] [[[[[0.3250713855814703 0.20741340483526294]]] [[[0.7940029913027353 0.0993308337451757]]]] [[[[0.43203674551638704 0.7717938665595734]]] [[[0.0002848790617376862 0.08484550465447971]]]]]] ... [[[[[[0.5007082794463317 0.9638000736743091]]] [[[0.39957701786664424 0.4402496951272612]]]] [[[[0.10183454606470244 0.16305365023792484]]] [[[0.6041057822532728 0.428509995596422]]]]] [[[[[0.08079207282784218 0.15486374192527153]]] [[[0.6808976112666252 0.24322824887711592]]]] [[[[0.39197038555052643 0.5961885542956705]]] [[[0.5971156116834995 0.5394191982753143]]]]] [[[[[0.10219551753199818 0.7424386402121157]]] [[[0.7536775500664732 0.7307964313584429]]]] [[[[0.49832637499345467 0.9662719096001212]]] [[[0.2602660619057281 0.7663185283953274]]]]]] [[[[[[0.9200358403086315 0.3362510192635514]]] [[[0.32146327486947646 0.647460865185306]]]] [[[[0.950492766606346 0.2455939955303349]]] [[[0.03165289096877899 0.9222014658235836]]]]] [[[[[0.6875126501730333 0.3770413593803481]]] [[[0.7372313092652961 0.3463887557860048]]]] [[[[0.7182797352602488 0.44138583349420524]]] [[[0.8935419510060397 0.20218007855281228]]]]] [[[[[0.46859437627866607 0.6465596303970716]]] [[[0.7266762821236245 0.22832837132264217]]]] [[[[0.408822797325611 0.2001915055695157]]] [[[0.3385203000321322 0.10472258685565472]]]]]] [[[[[[0.32437638060469154 0.2883958160556427]]] [[[0.306793354984474 0.5196816901793966]]]] [[[[0.8755840874351455 0.6214632741830425]]] [[[0.17513383818259076 0.7882040146489027]]]]] [[[[[0.24416238373597 0.7350779950987528]]] [[[0.6408770863192214 0.9244365251633979]]]] [[[[0.6027658191008194 0.938450706649901]]] [[[0.4084845237929364 0.9578426576272635]]]]] [[[[[0.47461744522651783 0.46544520901273556]]] [[[0.835954014523531 0.37976683505660946]]]] [[[[0.9614895152294355 0.41354852190412805]]] [[[0.7001197922831055 0.2744656438411014]]]]]]] [[[[[[[0.312090307203848 0.8939851090249129]]] [[[0.661212228284333 0.4851272632868998]]]] [[[[0.06082065422306582 0.9599821656010834]]] [[[0.7085757976853279 0.5720301421524244]]]]] [[[[[0.06174441355632543 0.8610936437435434]]] [[[0.35654305235742423 0.2547300802090716]]]] [[[[0.11971152446821065 0.8150207781992611]]] [[[0.525604695678329 0.11931767687666539]]]]] [[[[[0.725379088336919 0.9876467244908098]]] [[[0.3326996078788005 0.8240571385278695]]]] [[[[0.9163178335498154 0.7740532919504519]]] [[[0.8790032964960288 0.0184864574478536]]]]]] [[[[[[0.6072285964080665 0.48307142025031113]]] [[[0.4890161282593287 0.9298259822142284]]]] [[[[0.2415684122273949 0.8230013480016138]]] [[[0.8130216110153211 0.34021036668374305]]]]] [[[[[0.14727064437283988 0.007940120390158678]]] [[[0.6559907136619472 0.8663547262111259]]]] [[[[0.1961408765227849 0.7295544668735277]]] [[[0.6185187564444221 0.2970962432907961]]]]] [[[[[0.9273466499518933 0.17982388673459226]]] [[[0.24773921973626778 0.8701235329065208]]]] [[[[0.9233362749784874 0.2978607964395651]]] [[[0.10968026873849779 0.693450187148708]]]]]] [[[[[[0.36978786793468055 0.21542562296630496]]] [[[0.4166437468391401 0.314389523116518]]]] [[[[0.1988255744175531 0.30226145921209346]]] [[[0.11181758652954521 0.352029248346442]]]]] [[[[[0.835027645473388 0.5532353802884887]]] [[[0.5022337317353651 0.6009438857719417]]]] [[[[0.6648262799199482 0.25236592491136955]]] [[[0.57965998864634 0.8791894346732022]]]]] [[[[[0.9695141733263094 0.34763665210466455]]] [[[0.6628784400444185 0.24808332011671763]]]] [[[[0.9663215806933744 0.5556855700602789]]] [[[0.8131810428127743 0.10215194496852698]]]]]] ... [[[[[[0.8161492986758381 0.3848493684812523]]] [[[0.6381514652444658 0.8184804954639595]]]] [[[[0.9622910291393821 0.8904126527278706]]] [[[0.5759708053460313 0.5880222874080435]]]]] [[[[[0.4633727645359691 0.8537387261597187]]] [[[0.3803848083183472 0.13214553286851793]]]] [[[[0.23569880043701652 0.5703576137729957]]] [[[0.3195020223649325 0.4006625156836603]]]]] [[[[[0.19313241231095568 0.47900157542599253]]] [[[0.2872251140095834 0.3124424041139735]]]] [[[[0.4660929879375879 0.2556846435267074]]] [[[0.5366512909382397 0.842174376156242]]]]]] [[[[[[0.7322018024773134 0.5890614107369718]]] [[[0.7703517679882317 0.6248283896071094]]]] [[[[0.02976144403973735 0.8793344880456729]]] [[[0.2081879789059785 0.2676651770004145]]]]] [[[[[0.9838887351963539 0.8784465644418084]]] [[[0.5745190525147672 0.3059062767715033]]]] [[[[0.2894001531248781 0.15885951243445162]]] [[[0.48873633641413716 0.6421131705858583]]]]] [[[[[0.605136038042676 0.1008657903612209]]] [[[0.8988341928110103 0.33195782741589885]]]] [[[[0.4997877181463768 0.2974470996354577]]] [[[0.6491033966746246 0.5973676437538252]]]]]] [[[[[[0.2785506123495911 0.11698985206067725]]] [[[0.08476401370309372 0.7021555090009306]]]] [[[[0.5509483592585828 0.9808407230837586]]] [[[0.6734586537008497 0.7110900116573322]]]]] [[[[[0.3603188511527238 0.7053944184854927]]] [[[0.6221793509462192 0.6507730630272198]]]] [[[[0.2966670188281342 0.3640615540143506]]] [[[0.08632325248551476 0.3484284547262536]]]]] [[[[[0.7815820529792513 0.2344802719682486]]] [[[0.39189839889961275 0.7775785465718147]]]] [[[[0.851190374389011 0.4585666994855656]]] [[[0.36362395627683664 0.775432242073255]]]]]]]] [[[[[[[[0.22211575569164443 0.6643218915883377]]] [[[0.5795886990948451 0.8871759272644313]]]] [[[[0.5343489843514759 0.07671263587419241]]] [[[0.37277247080999043 0.3072596214261961]]]]] [[[[[0.5770341760768544 0.6064890322046079]]] [[[0.36275771667209367 0.11564687616001901]]]] [[[[0.8445124335700765 0.26858868804641756]]] [[[0.8503349484173034 0.16888624711325728]]]]] [[[[[0.711039544156521 0.5920684149481173]]] [[[0.9174481424798316 0.7738776003460373]]]] [[[[0.8162273843196794 0.27919254065659227]]] [[[0.7523671236322209 0.9155273975178894]]]]]] [[[[[[0.12597945658496412 0.5188414521866533]]] [[[0.3795563310029063 0.08416211560840703]]]] [[[[0.3510865205133171 0.33754130786633174]]] [[[0.0845950205180942 0.8596346343971643]]]]] [[[[[0.653644868607886 0.915582636147158]]] [[[0.4864773588085656 0.3055598015741461]]]] [[[[0.9988365267628262 0.8582809067980511]]] [[[0.6665141852054046 0.4540488908009971]]]]] [[[[[0.19720680409072444 0.7357046426445215]]] [[[0.22834771170638313 0.7881000961616424]]]] [[[[0.782963013283652 0.5903834263754629]]] [[[0.9772700065416754 0.2624240830997101]]]]]] [[[[[[0.30531155956874423 0.4966561599106687]]] [[[0.1180928016873053 0.7805840361310115]]]] [[[[0.7752641531458586 0.03693051072965803]]] [[[0.9869007797749132 0.29978287517166935]]]]] [[[[[0.836156179431609 0.40344607450798065]]] [[[0.14026827753733517 0.5465952609042222]]]] [[[[0.1361755216932934 0.033953357438988974]]] [[[0.7035137105975225 0.8992132392539584]]]]] [[[[[0.0003949211878189196 0.22279804740191955]]] [[[0.3418198326179759 0.6911082056931931]]]] [[[[0.4710896530069437 0.8107342344471188]]] [[[0.42118010499705694 0.7384626362430876]]]]]] ... [[[[[[0.12383884955612257 0.04189960097392498]]] [[[0.6424154809432107 0.6449965146435173]]]] [[[[0.05943717293412498 0.47169080415338505]]] [[[0.3254005207914653 0.8431251634798078]]]]] [[[[[0.08474748105022367 0.7333536728282946]]] [[[0.2981606848324806 0.18977779747487056]]]] [[[[0.3723587760425485 0.662763410986833]]] [[[0.3987514336515978 0.4535074166528834]]]]] [[[[[0.686080974101768 0.3538251241385033]]] [[[0.6944438792497247 0.02662494669787463]]]] [[[[0.008652902710168053 0.684911880099974]]] [[[0.5231212169443831 0.07018978932893105]]]]]] [[[[[[0.02690231318286873 0.24048425207750201]]] [[[0.8144225341583861 0.2904671688771576]]]] [[[[0.3555019336730456 0.3234276552564437]]] [[[0.009042254980754394 0.404106384822953]]]]] [[[[[0.4487733059965876 0.9939768450511667]]] [[[0.9916224222895531 0.2710054949135887]]]] [[[[0.2650076432506565 0.06020954922664368]]] [[[0.6177802427656546 0.39126701166531963]]]]] [[[[[0.5106632683705469 0.3599100413429538]]] [[[0.1157631863504337 0.4818030090390133]]]] [[[[0.5064890668546242 0.6107106111966385]]] [[[0.9702585691213994 0.37891181273470576]]]]]] [[[[[[0.014035520107775312 0.8945141538680423]]] [[[0.5215220760362048 0.6013655959489237]]]] [[[[0.36061814837507067 0.9547994902424942]]] [[[0.8023669167561078 0.1024247955312253]]]]] [[[[[0.6363021322175517 0.8720941104724298]]] [[[0.9461931640456324 0.3770549738138721]]]] [[[[0.2151354649746653 0.31522431201405177]]] [[[0.05302854091915499 0.7096600084933699]]]]] [[[[[0.019986152124903844 0.4370653000824214]]] [[[0.4939552324718298 0.6748873862371818]]]] [[[[0.922718314244957 0.9340403307981431]]] [[[0.7012895213246206 0.43466987133040724]]]]]]] [[[[[[[0.604628536099826 0.6213184075642447]]] [[[0.7048845573586525 0.8284832786714745]]]] [[[[0.502706027260208 0.7446619866867733]]] [[[0.616640714132797 0.4822239084009122]]]]] [[[[[0.5833859016334119 0.1832393562078477]]] [[[0.2499693513942114 0.8029127119595065]]]] [[[[0.2644606009915421 0.8110290043699688]]] [[[0.4831387414066439 0.5992661978155616]]]]] [[[[[0.09902509383903724 0.5392664607642842]]] [[[0.8201900513199519 0.5098985820032045]]]] [[[[0.9334136821093136 0.5712247975518925]]] [[[0.9136296399860182 0.956146514546518]]]]]] [[[[[[0.0627510312416768 0.38008897602946246]]] [[[0.6980953368742316 0.2535248264999056]]]] [[[[0.10328597657697702 0.2516241850220582]]] [[[0.12764349890797344 0.45853938549444884]]]]] [[[[[0.9255505614685448 0.6233034642030388]]] [[[0.5524852839548634 0.10871165421772666]]]] [[[[0.3339968624155988 0.1925461041508244]]] [[[0.9683361497726797 0.2978101630250777]]]]] [[[[[0.2813256131428934 0.6106805938936751]]] [[[0.1797401835072453 0.2313918859105123]]]] [[[[0.631352134578663 0.8558030965150004]]] [[[0.4395441518141432 0.9356422970326552]]]]]] [[[[[[0.14547322216700553 0.6339445940786801]]] [[[0.49095722036178546 0.9770603316709354]]]] [[[[0.9651670333129794 0.7442858478215607]]] [[[0.07038696570055092 0.30282538618815424]]]]] [[[[[0.503687836189757 0.7423192966030998]]] [[[0.23934219015442781 0.7538013777346932]]]] [[[[0.2508073262784647 0.34701890550876857]]] [[[0.21580947205994905 0.6499886516047011]]]]] [[[[[0.09051183021464704 0.7873399020896539]]] [[[0.14206359982376027 0.7700469840344739]]]] [[[[0.3872651246325657 0.7918049801945346]]] [[[0.5385811567669224 0.7341257155589369]]]]]] ... [[[[[[0.4626814402972146 0.8300109628638792]]] [[[0.5400813468185035 0.4155179620909425]]]] [[[[0.9559175833133782 0.42701304456923206]]] [[[0.5898286513771357 0.2252217602400053]]]]] [[[[[0.7170061755680839 0.5667305943706324]]] [[[0.737318291433207 0.8556711101039656]]]] [[[[0.829945610797554 0.217163217280275]]] [[[0.5180875604441134 0.6078557750888126]]]]] [[[[[0.552743104237116 0.1968900320047401]]] [[[0.4110828107054134 0.2459091548752248]]]] [[[[0.9577979077428774 0.672837289617843]]] [[[0.5755866817193456 0.8751421835520062]]]]]] [[[[[[0.9424471228951263 0.9334849512153811]]] [[[0.959253223333327 0.6961671969451853]]]] [[[[0.8489863202350119 0.42982681208562346]]] [[[0.34697732352141053 0.6387841213767672]]]]] [[[[[0.9702014129452107 0.44986151045342015]]] [[[0.6019949180316406 0.6164504050893548]]]] [[[[0.20164722175592464 0.7065205857826355]]] [[[0.4106956409894261 0.11890422057348604]]]]] [[[[[0.7781678947803579 0.32469999103312497]]] [[[0.7845197311773545 0.6663086967998807]]]] [[[[0.19693337142522305 0.9529796424569251]]] [[[0.9966107874812113 0.6306981836364757]]]]]] [[[[[[0.6717173217695301 0.7741344691943065]]] [[[0.997205180830229 0.3007781939326116]]]] [[[[0.8034785332508402 0.4620232517919117]]] [[[0.11055017109993459 0.8556145605446983]]]]] [[[[[0.712070603805759 0.5845262591784136]]] [[[0.3710274144235888 0.21377918279162678]]]] [[[[0.44679461215471017 0.47056175977715253]]] [[[0.5366650854527983 0.15552759682566608]]]]] [[[[[0.028145952688039877 0.7601916666715649]]] [[[0.09461673488145994 0.6434796336405191]]]] [[[[0.85077578813609 0.12732463662519533]]] [[[0.43490160182668713 0.9365470519194079]]]]]]] [[[[[[[0.09343112771708995 0.23261236266417873]]] [[[0.33252411519794045 0.8589199308215276]]]] [[[[0.4336607421702111 0.09313368452610404]]] [[[0.8903561183043359 0.921098413859634]]]]] [[[[[0.5502622812899126 0.02706917835601963]]] [[[0.9275552802124666 0.2570494968472474]]]] [[[[0.6852694543300042 0.5562405915165475]]] [[[0.8507906484831834 0.6584966088897499]]]]] [[[[[0.6223930848032968 0.3048781705764797]]] [[[0.6090185221348736 0.5255127944618916]]]] [[[[0.33497921462400326 0.7673622153345642]]] [[[0.2131076064328966 0.5904281970448804]]]]]] [[[[[[0.15490612310434693 0.6203191242799078]]] [[[0.8088871527064727 0.6271926267011672]]]] [[[[0.3449549964775047 0.7384441664241149]]] [[[0.5443399405215452 0.3113444040422968]]]]] [[[[[0.5003541290971407 0.3364821998225245]]] [[[0.15005464514750377 0.27303459062954083]]]] [[[[0.8945517132501815 0.2519398187424139]]] [[[0.5586995351118098 0.6724051825290062]]]]] [[[[[0.7604877504715702 0.7890197833784867]]] [[[0.03416360256112705 0.13927985088027317]]]] [[[[0.7324834902204574 0.23052408431961002]]] [[[0.5948077724998688 0.3615723439441577]]]]]] [[[[[[0.570662602264399 0.21795226821421376]]] [[[0.9002775125699122 0.5650758262980617]]]] [[[[0.1973224368703228 0.6328233020613397]]] [[[0.055520263178398976 0.7661176847223767]]]]] [[[[[0.5004778562633422 0.06289161365253548]]] [[[0.4599198499204792 0.3022601611634733]]]] [[[[0.12204803188623248 0.03459042946306157]]] [[[0.5280703969102312 0.4044953701952896]]]]] [[[[[0.4203896846738815 0.7390582565752436]]] [[[0.7167861734743889 0.37672140918800856]]]] [[[[0.7167204414157978 0.1671508886798384]]] [[[0.5114344103692642 0.5683422935816014]]]]]] ... [[[[[[0.30952089317212805 0.18773730276190026]]] [[[0.7850941934505562 0.9260257305081577]]]] [[[[0.6786038842858291 0.335958898666441]]] [[[0.33836452687115814 0.7890944848461513]]]]] [[[[[0.12210594800003627 0.40075842083053304]]] [[[0.8620595384411751 0.9191643198690913]]]] [[[[0.4169205360074043 0.5037463605559508]]] [[[0.4570532415404879 0.12381423331751162]]]]] [[[[[0.5723237753218575 0.16637367020978566]]] [[[0.7505367787491679 0.5607092823265403]]]] [[[[0.011315551474274321 0.3177625949667878]]] [[[0.6017728649007422 0.8346948712366864]]]]]] [[[[[[0.043720927010767796 0.4224744852248956]]] [[[0.697938486009464 0.13405651618370462]]]] [[[[0.9337268868501419 0.06281794059993795]]] [[[0.1917309714902048 0.12100322067115588]]]]] [[[[[0.6143744416952307 0.8234592229763773]]] [[[0.09183369084314574 0.894820178740991]]]] [[[[0.9400246503291556 0.7096604612484075]]] [[[0.7163054951412857 0.501002333378905]]]]] [[[[[0.4590686379961537 0.42044516828746437]]] [[[0.648532760648208 0.18178079932394942]]]] [[[[0.36289009759502655 0.11752652802861596]]] [[[0.663271000234253 0.5283980162665057]]]]]] [[[[[[0.43195153330056757 0.5413064251068084]]] [[[0.19536901919199967 0.24858386657432552]]]] [[[[0.5930276363924047 0.6373283392273231]]] [[[0.5574587303638687 0.4986574848929973]]]]] [[[[[0.19360697909289692 0.3924408793321791]]] [[[0.7945076385286521 0.7684780086092079]]]] [[[[0.5587584068038736 0.3018947220685013]]] [[[0.37689348091543395 0.8803089188682016]]]]] [[[[[0.08925370679701727 0.6195504308480461]]] [[[0.935540047579358 0.6058527142589858]]]] [[[[0.5535281328392742 0.397264190821632]]] [[[0.5487484525656176 0.9971773562811815]]]]]]] [[[[[[[0.3142724946483867 0.18742663376749558]]] [[[0.6613961226797898 0.6822013868806059]]]] [[[[0.035622588085221785 0.9044323988925443]]] [[[0.8516167103437147 0.16852838438699558]]]]] [[[[[0.10100454184677887 0.17948740443485156]]] [[[0.34853573569089424 0.49158471594236675]]]] [[[[0.31268215413134215 0.3775841062223315]]] [[[0.1260035691356759 0.564333396838452]]]]] [[[[[0.0936913663477219 0.32397284397834325]]] [[[0.8205159989398214 0.19221664388591897]]]] [[[[0.40801221407362953 0.8554379467181125]]] [[[0.21275847662784886 0.5993302723993574]]]]]] [[[[[[0.6975436630535585 0.22130342288449623]]] [[[0.44321423472560195 0.9377435289208204]]]] [[[[0.5438648334896348 0.9402595998077549]]] [[[0.5810926530839692 0.4000021650952398]]]]] [[[[[0.919810098267422 0.1008014604323384]]] [[[0.459401192445427 0.9403413997677532]]]] [[[[0.40841708296666 0.1485002235247035]]] [[[0.9129880279897915 0.15261191296322718]]]]] [[[[[0.967695220223074 0.23644583486767667]]] [[[0.5660330289357158 0.1653848429092627]]]] [[[[0.7076723049707154 0.23487585117322518]]] [[[0.1389795484833959 0.34713829106226646]]]]]] [[[[[[0.6668313893339166 0.4098578089291639]]] [[[0.22594236514884714 0.258602204746031]]]] [[[[0.008829825755222398 0.16791715128260543]]] [[[0.5974135344021527 0.9669369032674404]]]]] [[[[[0.5798304171626006 0.2144645788462981]]] [[[0.9942305573752578 0.41530806682293]]]] [[[[0.15001236818897423 0.4783105497955076]]] [[[0.15450787863472126 0.44460338204443584]]]]] [[[[[0.08498672236738947 0.1957837586279837]]] [[[0.7925471389919384 0.10867201256376557]]]] [[[[0.9423920453585735 0.7373525724960145]]] [[[0.7840864014070325 0.6599803615291742]]]]]] ... [[[[[[0.3728530107278243 0.8182900612741768]]] [[[0.8650383742626814 0.7451016921586587]]]] [[[[0.9952987602305974 0.518746440376206]]] [[[0.3063560138597379 0.6401499706385838]]]]] [[[[[0.22106178832903434 0.8973219959658983]]] [[[0.4160719727401627 0.39025593397445324]]]] [[[[0.2390117228361881 0.8403457871301516]]] [[[0.11597414272528428 0.8836066430360536]]]]] [[[[[0.04980522342974292 0.9322822255864893]]] [[[0.07855438793819614 0.2900072061355503]]]] [[[[0.42235050357701753 0.25121813630874257]]] [[[0.1105038875183123 0.25002918058941703]]]]]] [[[[[[0.32098815237139844 0.07023351856292959]]] [[[0.311674915717399 0.9679967964992542]]]] [[[[0.20831212487734352 0.6983440853735768]]] [[[0.16843920509358634 0.16612654447058595]]]]] [[[[[0.8422446299635017 0.5695789648707402]]] [[[0.8755420162984372 0.4834631825451713]]]] [[[[0.13207780811965752 0.8689858427330174]]] [[[0.7967599905256013 0.36205640969191544]]]]] [[[[[0.22271532063081823 0.6306058705645866]]] [[[0.8643528996500643 0.11627735828292485]]]] [[[[0.12195435958392287 0.07079901130195887]]] [[[0.7096538537115544 0.41238269965321195]]]]]] [[[[[[0.30684451452852113 0.23177162483270142]]] [[[0.9542315389006351 0.8657415028081347]]]] [[[[0.5292676096930442 0.5601946232210864]]] [[[0.6197951791674635 0.26239338915910937]]]]] [[[[[0.2799107275241537 0.42166812210797966]]] [[[0.05162383508219914 0.6674850864455315]]]] [[[[0.506388228234474 0.662499115084805]]] [[[0.20785820347388884 0.9319937019218947]]]]] [[[[[0.34328778091646195 0.9734321818372615]]] [[[0.49503194974936626 0.08387310410328697]]]] [[[[0.21422481939973903 0.9766168366747248]]] [[[0.7638231267611579 0.7338115551073806]]]]]]]] [[[[[[[[0.020724515784078634 0.17401275492360924]]] [[[0.1771935736991943 0.5291731060553039]]]] [[[[0.5913700411696159 0.774453219758825]]] [[[0.46932862347768967 0.9093572767130411]]]]] [[[[[0.5347422221608444 0.10716977710114683]]] [[[0.6731970545996768 0.9007222562833377]]]] [[[[0.8972299743159964 0.2892568125505397]]] [[[0.09321077754323259 0.7949387981618914]]]]] [[[[[0.3299990532148014 0.26343770901739183]]] [[[0.16357628855435313 0.5231871911392378]]]] [[[[0.4813819553299815 0.5246989787016608]]] [[[0.7449454884555103 0.5688252738578274]]]]]] [[[[[[0.04826182536916912 0.05786214620367758]]] [[[0.9586550207036049 0.2140572395624063]]]] [[[[0.3741563071238132 0.7499677464724008]]] [[[0.6514349997888033 0.6780531643597728]]]]] [[[[[0.020552604478584535 0.47237725120748153]]] [[[0.5007578353691426 0.01586884663840804]]]] [[[[0.8471798572077195 0.969368312132879]]] [[[0.9716815713681022 0.6047578694020517]]]]] [[[[[0.1899926109478587 0.6440984205286238]]] [[[0.5949653731029648 0.06683888670857974]]]] [[[[0.08048566798951273 0.3643853245963625]]] [[[0.121568184957347 0.8431602625725952]]]]]] [[[[[[0.8049713316238788 0.07197028683010531]]] [[[0.4932152394964546 0.7556210563900944]]]] [[[[0.03454040465032948 0.33256761018272885]]] [[[0.8582980184848613 0.7775348225860456]]]]] [[[[[0.16206286124959368 0.6851995380011855]]] [[[0.93592042224836 0.6669134057744869]]]] [[[[0.9196453606167706 0.8256451044134014]]] [[[0.7809924363719056 0.5088762397582955]]]]] [[[[[0.4618638766182023 0.17286564862393305]]] [[[0.08369005189718104 0.4519184140347682]]]] [[[[0.682443172647857 0.9224591260551112]]] [[[0.8154224608528536 0.4416683198502728]]]]]] ... [[[[[[0.07362785085370283 0.45056734539832055]]] [[[0.39123334811549104 0.6897419623640217]]]] [[[[0.6154334794705437 0.6065121933413036]]] [[[0.12191058624315143 0.379150718441126]]]]] [[[[[0.4061073137003852 0.5176678077571845]]] [[[0.6536571904696712 0.22561116766832612]]]] [[[[0.04706760945816213 0.49175646577929155]]] [[[0.27416108756834023 0.7165076026693689]]]]] [[[[[0.716614146077779 0.5893415676566884]]] [[[0.28046260201069817 0.99863851821438]]]] [[[[0.7811009258542145 0.9599449894734325]]] [[[0.6143370415613738 0.8791323298956152]]]]]] [[[[[[0.49535917255462003 0.3448528726650507]]] [[[0.44997693584339993 0.9612646410380702]]]] [[[[0.05961589088322816 0.030999561100592876]]] [[[0.06693549203383387 0.6719070078528214]]]]] [[[[[0.9018695518815827 0.31394709246667707]]] [[[0.43537380351663935 0.9666638037207768]]]] [[[[0.18509833658325325 0.84394931082737]]] [[[0.23331623368842125 0.5287401225208954]]]]] [[[[[0.10437843441482753 0.9875378643428638]]] [[[0.7148251137692808 0.18750576104957706]]]] [[[[0.02337508272740929 0.8786434971196536]]] [[[0.35631831048880236 0.11024796709584428]]]]]] [[[[[[0.44419053623014515 0.031381559458360186]]] [[[0.6600937125720155 0.05903361784357963]]]] [[[[0.08307146825863632 0.9177563088319938]]] [[[0.994152770529972 0.9654805740616381]]]]] [[[[[0.17777972167540124 0.6658160321516869]]] [[[0.4055890298304319 0.010307880222295562]]]] [[[[0.48709585436495295 0.7246913040776827]]] [[[0.23915778083535977 0.36462097093831314]]]]] [[[[[0.16695408665499367 0.31202235105714604]]] [[[0.06500092693593407 0.19468187321561514]]]] [[[[0.21184355299418112 0.9847192607621388]]] [[[0.03581815673673139 0.718373490079213]]]]]]] [[[[[[[0.11091913150851407 0.5611531480427523]]] [[[0.8691437545900372 0.7709563633540011]]]] [[[[0.6695300360870305 0.13566066912752583]]] [[[0.6621677254443556 0.31486887888399373]]]]] [[[[[0.07640744012315492 0.563844486700144]]] [[[0.6204104110470813 0.27561032024240817]]]] [[[[0.7599617570139225 0.9344064275644425]]] [[[0.08902031352721185 0.48550130195971797]]]]] [[[[[0.0807485745835188 0.3225920397343889]]] [[[0.7000762893314394 0.43927351529159586]]]] [[[[0.4891367501234636 0.5583598619807806]]] [[[0.6363488985374094 0.46589165243070696]]]]]] [[[[[[0.7369510985790368 0.29316969198378795]]] [[[0.1997335535546354 0.9457939853860666]]]] [[[[0.6306294789442964 0.8962346635244558]]] [[[0.9012477659900776 0.1273467623456369]]]]] [[[[[0.9673149159395101 0.07252842309557495]]] [[[0.40274468016189957 0.028262482440065573]]]] [[[[0.7115223215023866 0.7068704100368605]]] [[[0.6248295519609055 0.05318308244093328]]]]] [[[[[0.9571912900083458 0.537631918204446]]] [[[0.5536318632867095 0.44369081799543053]]]] [[[[0.20598505636058562 0.39833642422813464]]] [[[0.9835780784352111 0.9115524573863952]]]]]] [[[[[[0.26643472609291574 0.9832516215233684]]] [[[0.5748739761719509 0.27005792556724484]]]] [[[[0.09351933142146485 0.2782678078833296]]] [[[0.5531667276829721 0.016451548398034532]]]]] [[[[[0.054208503399386876 0.7566282166834911]]] [[[0.8957147025420618 0.5597848746447966]]]] [[[[0.2740923130725357 0.6677800614098592]]] [[[0.5669835089942608 0.22595588866156724]]]]] [[[[[0.7108304391914271 0.3004751611214249]]] [[[0.04647133083588273 0.5316301444952063]]]] [[[[0.2654379220954052 0.1179373114220672]]] [[[0.6228571882649184 0.5513665173048702]]]]]] ... [[[[[[0.9269797983625198 0.02577583053973076]]] [[[0.5413896029227275 0.8015203063489929]]]] [[[[0.9892412422982421 0.8842927668791354]]] [[[0.2620340440995358 0.392454793733958]]]]] [[[[[0.7546376624581318 0.9119120640652211]]] [[[0.5418428624776966 0.7208971980690186]]]] [[[[0.7470745679960389 0.20305991013901648]]] [[[0.35284573497538574 0.3980316362512888]]]]] [[[[[0.6662403691742371 0.8971394410409007]]] [[[0.4638615278522853 0.21471186452417101]]]] [[[[0.6396774204455163 0.31159888453535833]]] [[[0.9834867926144698 0.20102184089768693]]]]]] [[[[[[0.884904800096541 0.6927038727568551]]] [[[0.822371041806303 0.24628364404143155]]]] [[[[0.6347609081621363 0.7732652720959117]]] [[[0.0867650841635087 0.5175650337956949]]]]] [[[[[0.37080997435343854 0.4222028318806471]]] [[[0.2593261571623028 0.5670454320743575]]]] [[[[0.3139180704851853 0.6253415800224423]]] [[[0.1733687549492373 0.01604512525513413]]]]] [[[[[0.9671929764473794 0.6387548463617365]]] [[[0.08283812040756589 0.43678045431645696]]]] [[[[0.32073066034571485 0.7055630800884888]]] [[[0.9301832845544163 0.8983918419610368]]]]]] [[[[[[0.8500279669813783 0.004473070691527359]]] [[[0.45164941128400704 0.06940615610911327]]]] [[[[0.8097435818574057 0.0028821183021314756]]] [[[0.4637290003854232 0.006549464753098588]]]]] [[[[[0.7565797105369877 0.06552172071786067]]] [[[0.6947757527518138 0.8782415144931118]]]] [[[[0.5296918242463691 0.5826670381077735]]] [[[0.7317103451146472 0.49746869577503505]]]]] [[[[[0.37669263948899023 0.26383469407466387]]] [[[0.5567311142161009 0.15764097854139214]]]] [[[[0.7890742809676452 0.227945107845831]]] [[[0.4294715429692185 0.981688615353288]]]]]]] [[[[[[[0.08983031275620323 0.30243350919420786]]] [[[0.5735685015086376 0.7759974111637965]]]] [[[[0.7160795699506741 0.8206647676675181]]] [[[0.7483584247636574 0.8335378656120545]]]]] [[[[[0.998624530836546 0.3976211592363681]]] [[[0.045459661974852406 0.757047559282872]]]] [[[[0.09609273764877935 0.058883286589424655]]] [[[0.185447335932044 0.29178459953496905]]]]] [[[[[0.5981552703889725 0.41808261783942746]]] [[[0.021123464068631637 0.881822905699803]]]] [[[[0.9652871137929624 0.9391488228044539]]] [[[0.793588420515565 0.4072312421495674]]]]]] [[[[[[0.285892761593155 0.24854938707569585]]] [[[0.42860888919449525 0.8091362921976213]]]] [[[[0.014357501690086427 0.4496742544053117]]] [[[0.24442333835014496 0.2943549034559654]]]]] [[[[[0.6905736144236266 0.2629033242598474]]] [[[0.9640562576007593 0.8631835612541391]]]] [[[[0.6566811947218186 0.9541631154647341]]] [[[0.04521737397175085 0.4220568943036427]]]]] [[[[[0.20565193700705375 0.6743803074061022]]] [[[0.4737706322532921 0.6171681849481906]]]] [[[[0.0717973349640465 0.5164482778998103]]] [[[0.3884548929264827 0.23076095859831014]]]]]] [[[[[[0.6920548162882315 0.5135861595061376]]] [[[0.30661783782868524 0.9650030097067698]]]] [[[[0.8292915534119139 0.6652001847413267]]] [[[0.20656570974549238 0.20629460678886058]]]]] [[[[[0.39469135070242034 0.2885260812146969]]] [[[0.3592274211932054 0.7923118934261827]]]] [[[[0.4987300110174936 0.31933169274434825]]] [[[0.5761192332871762 0.46338682742360215]]]]] [[[[[0.32050282239421735 0.01776241690638103]]] [[[0.9805363648932222 0.5419161494547781]]]] [[[[0.6245449053610371 0.6309808618595056]]] [[[0.9105877794474049 0.23191042618943292]]]]]] ... [[[[[[0.12384418662427488 0.14224653033823942]]] [[[0.7790073225228946 0.20719630257434452]]]] [[[[0.7813219818737889 0.17794518973648255]]] [[[0.1873184500025633 0.6215602020051606]]]]] [[[[[0.5720171925333338 0.6960375577923401]]] [[[0.7546239749097652 0.723924795186204]]]] [[[[0.45071805828638456 0.6320528856083286]]] [[[0.5095401141486756 0.4088101675637097]]]]] [[[[[0.34076206663729547 0.8126125706048423]]] [[[0.6802209425609637 0.039056216353135165]]]] [[[[0.44287828707569177 0.4193211604006838]]] [[[0.8618039906909372 0.03878524621654533]]]]]] [[[[[[0.09728566756570578 0.1130429642620473]]] [[[0.5351382956128076 0.4860620129774875]]]] [[[[0.6598963934251734 0.4087725698361657]]] [[[0.19066424349740674 0.22572091192655508]]]]] [[[[[0.5102704496393824 0.18137186135210603]]] [[[0.632486188667529 0.648286633588544]]]] [[[[0.08413110442386296 0.9878070587348448]]] [[[0.9533803540065052 0.18718389384945544]]]]] [[[[[0.1242489472886662 0.17095173883616543]]] [[[0.6602637148931638 0.05816399690874474]]]] [[[[0.5792435863235887 0.2527179286029946]]] [[[0.8882173854829191 0.2537080949555217]]]]]] [[[[[[0.22041772712575924 0.26870547562084934]]] [[[0.1781215901940959 0.33881635855851566]]]] [[[[0.498193481000167 0.09326240379819106]]] [[[0.4857040039650984 0.37765275257635933]]]]] [[[[[0.2616483034949524 0.40685437846787276]]] [[[0.8956972741205742 0.4848784494059688]]]] [[[[0.2997132453036151 0.6266223372531274]]] [[[0.6698249939650146 0.34450284841634626]]]]] [[[[[0.6899063279132746 0.7979731197207771]]] [[[0.9256666311362439 0.013212909824587893]]]] [[[[0.18249516951647882 0.4712809321228112]]] [[[0.6233997512676468 0.13895116510472316]]]]]]] [[[[[[[0.6266326097036113 0.9499165641676455]]] [[[0.444934969700294 0.43620894404783717]]]] [[[[0.2867685064665618 0.10943044677476998]]] [[[0.3058428761736963 0.3366893224988907]]]]] [[[[[0.969765287214461 0.5830630435990811]]] [[[0.4418398938497292 0.006380989500834211]]]] [[[[0.933312578787039 0.538747975309437]]] [[[0.2749669018600571 0.4609272948836214]]]]] [[[[[0.9739964915985496 0.929589472163904]]] [[[0.6069412982768367 0.35086921235776103]]]] [[[[0.46719082526946787 0.5490160608867517]]] [[[0.43867055441976444 0.801415359301914]]]]]] [[[[[[0.5666119239889066 0.6475746745240355]]] [[[0.4506186610063355 0.8743274198920282]]]] [[[[0.9707968907313458 0.826191355717382]]] [[[0.8817084306461949 0.588545305602132]]]]] [[[[[0.5527619100732156 0.3944050532349854]]] [[[0.9250870818959703 0.7569964231005615]]]] [[[[0.9303201724063778 0.6982306094412609]]] [[[0.6325558253569494 0.22093172223531332]]]]] [[[[[0.5059881390222298 0.2811449608216626]]] [[[0.9127215350330404 0.8885977501797842]]]] [[[[0.3529251099332614 0.5993742410202296]]] [[[0.9114568001301185 0.39298540348973177]]]]]] [[[[[[0.7636867887218686 0.4180600312787389]]] [[[0.86402935473049 0.264338260672753]]]] [[[[0.4109983398613998 0.43509243587461854]]] [[[0.7893312673114281 0.6526307386601496]]]]] [[[[[0.8531435564571221 0.10269290850819446]]] [[[0.12081974492265102 0.8036309397883815]]]] [[[[0.33749661837663836 0.025985528352435394]]] [[[0.4406588386864686 0.8484778401023579]]]]] [[[[[0.005986656975748628 0.111771912205755]]] [[[0.8119894249124823 0.25740108906528425]]]] [[[[0.578596240121883 0.41777557228158324]]] [[[0.08034856619139574 0.24313647059621069]]]]]] ... [[[[[[0.9243897296064495 0.5065225564468001]]] [[[0.8005431244505579 0.28071994576116654]]]] [[[[0.40995545856670523 0.9010490901369085]]] [[[0.7047567137752827 0.6872818285358142]]]]] [[[[[0.8442184019288168 0.4415958041283219]]] [[[0.3235734665923383 0.5810326595572979]]]] [[[[0.7227452013336482 0.548710326839773]]] [[[0.495458850307519 0.4007057432336457]]]]] [[[[[0.6700627388918211 0.04092912983425612]]] [[[0.8548988842470762 0.6796605034525497]]]] [[[[0.47685645686327727 0.9128950742407715]]] [[[0.3555039950854023 0.6901479242109355]]]]]] [[[[[[0.8014059103677903 0.5264047892828465]]] [[[0.9934501271444641 0.09400094709857765]]]] [[[[0.5049814899832941 0.6115616451375254]]] [[[0.6895227330516129 0.4733580209386058]]]]] [[[[[0.11500324794983319 0.44822141016415196]]] [[[0.8986016376948703 0.9633236800430094]]]] [[[[0.3577687121556198 0.024499478658081553]]] [[[0.9291310234061623 0.5491076559781538]]]]] [[[[[0.7395770244767067 0.19670518053180241]]] [[[0.19572221615230756 0.49749637516342216]]]] [[[[0.7041563768969543 0.6193283386121509]]] [[[0.8940044872053735 0.4901997101032429]]]]]] [[[[[[0.3615793957067521 0.39226263991659327]]] [[[0.7477797748419246 0.683660844393063]]]] [[[[0.6043474661404303 0.6029299928058749]]] [[[0.17662926359797637 0.16329795355649335]]]]] [[[[[0.7638111455997163 0.07195408507252854]]] [[[0.5223997862295887 0.06022386849920092]]]] [[[[0.9398504921313027 0.9136060035396097]]] [[[0.8453023312919367 0.46735168588654674]]]]] [[[[[0.6775173409903743 0.8064145991303706]]] [[[0.7518036463048015 0.48392873059845887]]]] [[[[0.36480869786779724 0.129768016865499]]] [[[0.6233427927195456 0.046064134471053175]]]]]]]]]
Units SF6 gigagram/year - CH4(time, area (ISO3), category (IPCC 2006), animal (FAOSTAT), product (FAOSTAT), scenario (FAOSTAT), provenance, model, source)float64[CH4·Gg/a] 0.1581 ... 0.04565
- entity :
- CH4
Magnitude [[[[[[[[[0.15807683573857578 0.41619810288017]]] [[[0.819448651701056 0.8621114252110594]]]] [[[[0.2660972283806943 0.10152507024792079]]] [[[0.09445002693805993 0.05754123009044232]]]]] [[[[[0.4532989767495371 0.14105442068673357]]] [[[0.7363371571027819 0.22805402605249692]]]] [[[[0.4492367443100601 0.29955541002674246]]] [[[0.6745027437245014 0.8248489892519382]]]]] [[[[[0.5604794868512707 0.8616324763470028]]] [[[0.880605269985482 0.2860119719286982]]]] [[[[0.6656456614390094 0.8632344733504287]]] [[[0.8898272537176392 0.8964810547148873]]]]]] [[[[[[0.7480607458756836 0.7842924486022061]]] [[[0.8042545960981557 0.4887144440309027]]]] [[[[0.8672920526365431 0.1539463862094147]]] [[[0.5105424855684321 0.47749097961640596]]]]] [[[[[0.5288453954756983 0.16378754818504637]]] [[[0.5883170063535215 0.31931133700214254]]]] [[[[0.7552381974095624 0.2348329101178822]]] [[[0.3557638878806566 0.8053113197580487]]]]] [[[[[0.5295460536690316 0.2811528331419234]]] [[[0.4083633006048528 0.2759097723730414]]]] [[[[0.13945123245947866 0.805759927230078]]] [[[0.5629631271450619 0.8816947929179223]]]]]] [[[[[[0.15211693527357684 0.005180910359855684]]] [[[0.12302080018684036 0.6560916465210422]]]] [[[[0.8143191666689072 0.7042892002345796]]] [[[0.37317839655651597 0.22269134333263507]]]]] [[[[[0.5866687402163816 0.43955867827389683]]] [[[0.10674362635569501 0.3534509338328973]]]] [[[[0.8783349437704648 0.2199703123799387]]] [[[0.9655860365979675 0.7687128712166229]]]]] [[[[[0.7994777692793823 0.18345548487851848]]] [[[0.7302194870295766 0.42084641750040885]]]] [[[[0.30977522008658853 0.44218597634245915]]] [[[0.8312235758408116 0.6680966844337428]]]]]] ... [[[[[[0.03013897529993692 0.6071754797250889]]] [[[0.8176096373075867 0.3103753996161429]]]] [[[[0.8941535763813683 0.16168518331354986]]] [[[0.5077118182286907 0.716100468561809]]]]] [[[[[0.3808639375730508 0.9102525914863631]]] [[[0.16321767809244403 0.7519171101485034]]]] [[[[0.866559548562638 0.9947621029257138]]] [[[0.9362426765446186 0.5894441965025088]]]]] [[[[[0.23853267729930383 0.8625984976174015]]] [[[0.005507155473618575 0.42156086077955335]]]] [[[[0.10908086965458808 0.010626454562756793]]] [[[0.0358693395408991 0.2031484489104658]]]]]] [[[[[[0.40148469833602085 0.44231005976815696]]] [[[0.9731385565175472 0.9151965228229056]]]] [[[[0.48241606078336907 0.13374488054963773]]] [[[0.5451501480380263 0.15712891330939316]]]]] [[[[[0.0984062383587071 0.1246925631835486]]] [[[0.3675204619464669 0.21812422163049805]]]] [[[[0.06683587626715581 0.5845382222625237]]] [[[0.22093698385181149 0.1169379537341595]]]]] [[[[[0.6208510656491522 0.48196357364717624]]] [[[0.37665346266712696 0.17106123919728944]]]] [[[[0.03809210735784285 0.363594983178545]]] [[[0.5773501482684853 0.3565702541736818]]]]]] [[[[[[0.5844459807092399 0.21983686687633341]]] [[[0.8793308899965706 0.007528878557298668]]]] [[[[0.9932615774569591 0.6665046677543963]]] [[[0.7477941431142681 0.9803745691284788]]]]] [[[[[0.11357193621082329 0.3216254967681744]]] [[[0.3144404691309498 0.7671921006729276]]]] [[[[0.4649062988883158 0.32243133147636993]]] [[[0.4966834613713267 0.9966170641472163]]]]] [[[[[0.6346204760164624 0.654484435773746]]] [[[0.92435689615887 0.5408880807781664]]]] [[[[0.33910398644590367 0.3197645385384038]]] [[[0.35212170842545465 0.010477435890526854]]]]]]] [[[[[[[0.6197462615326463 0.4967913073640218]]] [[[0.6896918792162802 0.344409785060933]]]] [[[[0.4887973931045403 0.4368350257744039]]] [[[0.7301510764544539 0.42347082430698246]]]]] [[[[[0.7927941763947165 0.5808477592239543]]] [[[0.9634934088788183 0.7418125182673331]]]] [[[[0.11162889241823981 0.7314615368172193]]] [[[0.6204605342162378 0.30625910504764076]]]]] [[[[[0.5742999175354748 0.31922932084741995]]] [[[0.08006375454852377 0.14916118660726985]]]] [[[[0.3245911420374692 0.5159981300769716]]] [[[0.8478291575791818 0.7316300097154625]]]]]] [[[[[[0.681374619974559 0.07223771403279433]]] [[[0.15788787865313203 0.5143231384230819]]]] [[[[0.7892891959283294 0.5546921168725316]]] [[[0.902658330705201 0.5806894901802745]]]]] [[[[[0.5394097574458793 0.739496512815146]]] [[[0.09580884413376345 0.6985898035192531]]]] [[[[0.4774487780873885 0.3911928484318775]]] [[[0.28574929117896675 0.8514414570266412]]]]] [[[[[0.6537068280670177 0.6034061488283671]]] [[[0.994575943027861 0.3431890163233621]]]] [[[[0.28017372744305524 0.3672520200691137]]] [[[0.47604269075803796 0.9966410276495709]]]]]] [[[[[[0.16831893985450863 0.7188612597861564]]] [[[0.6142553451767112 0.734045130138998]]]] [[[[0.2730949685041886 0.09476575394632236]]] [[[0.16225801457885625 0.014361114143314313]]]]] [[[[[0.9082070244736433 0.5037816876115365]]] [[[0.8239081788446764 0.3236946946300351]]]] [[[[0.543616052596461 0.05738206519471489]]] [[[0.5521197047317673 0.875840920488519]]]]] [[[[[0.5548272986093745 0.12243843149903755]]] [[[0.3964775873478579 0.9255216212250811]]]] [[[[0.8953340137878096 0.6469693775625831]]] [[[0.7943821143579889 0.14002667129482305]]]]]] ... [[[[[[0.42762268723610974 0.7170254720992298]]] [[[0.23719328181101396 0.8265787892153265]]]] [[[[0.5302598382634768 0.12253712908197045]]] [[[0.29216147215292976 0.25267147655130895]]]]] [[[[[0.9754741224223316 0.006473657798209742]]] [[[0.34713473116909255 0.13311836872691452]]]] [[[[0.5609830288577589 0.8777293494930377]]] [[[0.6069650606976523 0.12634139710149517]]]]] [[[[[0.48499466294307947 0.4997150040598688]]] [[[0.9184453661794271 0.22388518714387362]]]] [[[[0.08690235436418092 0.8754610782046248]]] [[[0.12772531755360805 0.03173410007942823]]]]]] [[[[[[0.3170491243103274 0.0382628036224566]]] [[[0.2365959965126987 0.20463802460708258]]]] [[[[0.1860787588019125 0.8259434871481397]]] [[[0.13069634768346772 0.7270892232216397]]]]] [[[[[0.9802342044836732 0.6091773749442972]]] [[[0.6674185562924754 0.696295153507722]]]] [[[[0.46158159609016314 0.712897366235544]]] [[[0.8062845751331574 0.4665543163050556]]]]] [[[[[0.7763575745727164 0.593870350588145]]] [[[0.45947550546382165 0.9662973094027859]]]] [[[[0.8837142853976943 0.6465525874246226]]] [[[0.18098983441253802 0.7040761496350804]]]]]] [[[[[[0.09453390728629563 0.37497087792362815]]] [[[0.45228602543050245 0.11882389343208632]]]] [[[[0.30378233142163114 0.21954957648415985]]] [[[0.7069061387901191 0.9569692564157279]]]]] [[[[[0.85890894112618 0.004510301844004694]]] [[[0.5727874447432647 0.7855850721297913]]]] [[[[0.3069570661933019 0.3412940524912289]]] [[[0.9208178949391729 0.21001437547854251]]]]] [[[[[0.597012560878616 0.4727024585150601]]] [[[0.4085001261831134 0.9373824479823868]]]] [[[[0.9401048644231944 0.9488379041903848]]] [[[0.7883641242100556 0.9231148680870713]]]]]]] [[[[[[[0.2952318909694518 0.37594463961112323]]] [[[0.30030270906594914 0.18019276848232013]]]] [[[[0.7563766881701215 0.454324137396642]]] [[[0.43157167335256874 0.7549612654669109]]]]] [[[[[0.9926281593884995 0.35666723092491714]]] [[[0.6856138756699787 0.40589585773367376]]]] [[[[0.4264887157721392 0.65377400652417]]] [[[0.33573839328315325 0.9887975224520182]]]]] [[[[[0.8601974333042057 0.9456631366396144]]] [[[0.1979396687774676 0.14485563532795842]]]] [[[[0.4429426077630316 0.9128425891991675]]] [[[0.11781571947087877 0.5715258994059611]]]]]] [[[[[[0.7674325756940957 0.3100308836274914]]] [[[0.4513602384913067 0.27225573568739425]]]] [[[[0.17180743654703845 0.6702323402208522]]] [[[0.45629250891540496 0.647541053887117]]]]] [[[[[0.34060776081979405 0.1504215556470483]]] [[[0.0588652616815839 0.40297876374516406]]]] [[[[0.36171683437897506 0.9816007799748692]]] [[[0.6830421340481462 0.31086689323040173]]]]] [[[[[0.8462022694538764 0.4319950971336459]]] [[[0.6897992501197572 0.8077876960235483]]]] [[[[0.27983138654029993 0.8328291137053658]]] [[[0.460013406857517 0.3165966673997014]]]]]] [[[[[[0.44808005878800106 0.04989504949620127]]] [[[0.2588993591904388 0.9600425364914623]]]] [[[[0.9129905003275232 0.8540916286033419]]] [[[0.9528304038168772 0.8636731163289971]]]]] [[[[[0.8346107063011158 0.916232873443075]]] [[[0.03769624189524223 0.2736692505601612]]]] [[[[0.03760244827055348 0.7458482463766108]]] [[[0.7581755839159641 0.8399753158527674]]]]] [[[[[0.660571703298148 0.8626458702006143]]] [[[0.9253685731824639 0.7453750455490955]]]] [[[[0.663821740691751 0.9808479734920441]]] [[[0.2109001959912249 0.9344583052511178]]]]]] ... [[[[[[0.8165887345009871 0.5898151815261305]]] [[[0.019316337553035967 0.8039851215937777]]]] [[[[0.5547438941773777 0.011463994042884229]]] [[[0.2928667278435768 0.03670929638017861]]]]] [[[[[0.9057432391234088 0.16120178787673067]]] [[[0.8371833549526602 0.913772270443581]]]] [[[[0.7230206193250256 0.8891020637898942]]] [[[0.5784917522714844 0.6688911160482095]]]]] [[[[[0.8913084058252398 0.1735183066186854]]] [[[0.5624726054888556 0.04784099350596693]]]] [[[[0.8960610138781845 0.6649294001818142]]] [[[0.4620212273075378 0.5903126873455197]]]]]] [[[[[[0.20535319379987216 0.31507318164874165]]] [[[0.7649832317898052 0.600078657036384]]]] [[[[0.08193433652970084 0.6862547989041372]]] [[[0.28822876077806114 0.49316029669115014]]]]] [[[[[0.864110825351674 0.5472096173167696]]] [[[0.8771637153079773 0.4912017797419729]]]] [[[[0.5111186622128931 0.5068606817893576]]] [[[0.11732562975092442 0.7976670414208704]]]]] [[[[[0.7786164956157196 0.956375143234365]]] [[[0.6464064410981558 0.7616835557861951]]]] [[[[0.4916234823732639 0.6765147813635787]]] [[[0.31917048281430715 0.2979324049913369]]]]]] [[[[[[0.522339076137118 0.8014590075846333]]] [[[0.4354703126336379 0.9980294811515085]]]] [[[[0.5856468738267931 0.05507643951899144]]] [[[0.8052678265821737 0.5123465058962688]]]]] [[[[[0.827327500242627 0.8192973576330734]]] [[[0.1382478844539261 0.2645171151632849]]]] [[[[0.25875628704208786 0.11710050993658017]]] [[[0.7855155722062532 0.662742513492358]]]]] [[[[[0.4576176912651756 0.29092624467875783]]] [[[0.44870920113843904 0.6720304471243979]]]] [[[[0.5228800553998754 0.7595256623075456]]] [[[0.2841257308594113 0.7326045058984135]]]]]]] [[[[[[[0.47217507626019983 0.9902484118691063]]] [[[0.3095341177798191 0.27596980734167853]]]] [[[[0.06060111712596283 0.059170644526737703]]] [[[0.06770338387008445 0.6738900674085748]]]]] [[[[[0.4677550495331526 0.3872381418556551]]] [[[0.607233491957113 0.4926052256004414]]]] [[[[0.7058770905271853 0.21705824277882968]]] [[[0.2249486183738333 0.24878932406691845]]]]] [[[[[0.105454090273987 0.39648038185477996]]] [[[0.8317945531960392 0.37116944830484755]]]] [[[[0.14383825025716157 0.7521260258418686]]] [[[0.07250810733220381 0.5952586529173968]]]]]] [[[[[[0.5269175367655012 0.48500723362201625]]] [[[0.48376194375402903 0.19763588337799887]]]] [[[[0.33241669268367424 0.164025630380779]]] [[[0.9831197428092493 0.7083631010569184]]]]] [[[[[0.8231948103411584 0.9232040298106375]]] [[[0.8590695781785384 0.39102971303332845]]]] [[[[0.8790146839220914 0.27439235183240795]]] [[[0.8117664068494221 0.5751625920055451]]]]] [[[[[0.3741701618696569 0.33559535323439216]]] [[[0.6728905288290311 0.4801573931699513]]]] [[[[0.05118508449565662 0.21627484282842158]]] [[[0.46598538216196284 0.29192746063226926]]]]]] [[[[[[0.16986054563546904 0.6723949163182416]]] [[[0.896947362472478 0.17866634243230017]]]] [[[[0.4815879287828114 0.9164444768812642]]] [[[0.09692200768877757 0.2559169687883135]]]]] [[[[[0.1259927571770042 0.9645904095619201]]] [[[0.8663560583274242 0.760649021956402]]]] [[[[0.8905845563264795 0.759858262427056]]] [[[0.9574702448041889 0.8332528401743503]]]]] [[[[[0.8145221731944141 0.3581606722124132]]] [[[0.7936189110888373 0.8019249697109191]]]] [[[[0.4902153254586966 0.5450849047503511]]] [[[0.5547118058369012 0.3539987230388746]]]]]] ... [[[[[[0.04014014059437454 0.49433362870361763]]] [[[0.28686249073918035 0.3513303474090492]]]] [[[[0.23203399775483458 0.4144401259288709]]] [[[0.13801509194182393 0.6907776529420852]]]]] [[[[[0.6552844283265753 0.8550761602240164]]] [[[0.3504405658107732 0.6844464484121636]]]] [[[[0.9180259663421385 0.2918090712945426]]] [[[0.4707547371614087 0.4241621255588457]]]]] [[[[[0.5111263191436031 0.12769946784140784]]] [[[0.699940222159728 0.24844380456126847]]]] [[[[0.26081671767234893 0.3636045947313852]]] [[[0.5504055411932456 0.2441298897304246]]]]]] [[[[[[0.14996926427161916 0.650501652425844]]] [[[0.7178401987438687 0.4803367377022989]]]] [[[[0.6898029579196601 0.3965332356640634]]] [[[0.7740103535536274 0.2869184020314197]]]]] [[[[[0.6297353710287446 0.242921288378116]]] [[[0.8152005180778387 0.8098136286007658]]]] [[[[0.29809962651179356 0.22843581209436992]]] [[[0.7896444713464481 0.9584675737252585]]]]] [[[[[0.02159866617901074 0.6152504774726146]]] [[[0.2900193214708785 0.5053052331892334]]]] [[[[0.046639817089536684 0.779197630674703]]] [[[0.5311626661715921 0.9543620270570806]]]]]] [[[[[[0.6005413840367242 0.9287134676153112]]] [[[0.12787858474266922 0.30261338394140547]]]] [[[[0.18670450579694464 0.8831147541688352]]] [[[0.2684848840151943 0.2181612071546536]]]]] [[[[[0.44280160986014105 0.9364615635358328]]] [[[0.8173473904813416 0.5668863079539319]]]] [[[[0.46040749174692 0.7571878676659961]]] [[[0.38848691935465374 0.7834709418477263]]]]] [[[[[0.9249239640537131 0.0011971839540658724]]] [[[0.5200492874469821 0.11827534086402303]]]] [[[[0.8266220209856318 0.19874323451603726]]] [[[0.5284562813055129 0.7876285270779079]]]]]]]] [[[[[[[[0.030411280822335796 0.6937693085670626]]] [[[0.3971653842707883 0.5247888674771719]]]] [[[[0.919440033986736 0.2185920530440295]]] [[[0.8349374268333853 0.9826107126786456]]]]] [[[[[0.42296621920360933 0.8792705071720177]]] [[[0.7674476816392908 0.46457499271965774]]]] [[[[0.5958679744068481 0.39857023415907933]]] [[[0.7651170730141709 0.5030741862905711]]]]] [[[[[0.15266896367908556 0.6601655427111858]]] [[[0.2908355435054777 0.391061571587921]]]] [[[[0.564420500152766 0.4231669173567012]]] [[[0.9629555535743113 0.8679826334285501]]]]]] [[[[[[0.49453163268196243 0.7192706765717315]]] [[[0.9737496288834806 0.7889796105474344]]]] [[[[0.10190599782267051 0.2988805509993788]]] [[[0.5909829558049277 0.9719580047933634]]]]] [[[[[0.009640445213957682 0.2609870949562292]]] [[[0.03725884446405381 0.3948684251240713]]]] [[[[0.684055838701466 0.652304427546187]]] [[[0.8056764940396479 0.6140412679535773]]]]] [[[[[0.3888164250261401 0.26124956182036785]]] [[[0.2688581356047004 0.03263320462065211]]]] [[[[0.225232822241634 0.9800028999712762]]] [[[0.64149052805297 0.32588921250438996]]]]]] [[[[[[0.28870103674024405 0.9511453983685186]]] [[[0.019261648929460473 0.8390369654396286]]]] [[[[0.341316069603269 0.4285195197896623]]] [[[0.1994972453246363 0.44423106241557586]]]]] [[[[[0.915081075631866 0.31351303316154744]]] [[[0.44766292765612914 0.9197817013371299]]]] [[[[0.8734179135684336 0.8561259871301522]]] [[[0.16973660307147131 0.6867021837175536]]]]] [[[[[0.8462629300108682 0.4260182920453204]]] [[[0.22190867351753008 0.4769022197364795]]]] [[[[0.03812368231954122 0.14296107212687503]]] [[[0.5949801587758384 0.017312854137082945]]]]]] ... [[[[[[0.003491162199977693 0.7423151422283321]]] [[[0.9910907426242298 0.77879405260952]]]] [[[[0.7459811726680206 0.29797523632286016]]] [[[0.7007329464769543 0.9434157638741273]]]]] [[[[[0.061005613002725 0.05616650213900087]]] [[[0.9226382544681033 0.6796397273058881]]]] [[[[0.7855766175669638 0.8982466370326582]]] [[[0.47221166444218 0.34286345091666304]]]]] [[[[[0.25447004766285997 0.7988711015461042]]] [[[0.7672989613980198 0.39087713345866504]]]] [[[[0.32496928267759895 0.911516117266498]]] [[[0.8461243972041441 0.9493240390749337]]]]]] [[[[[[0.9234816169747904 0.8071646316025055]]] [[[0.17073488353443067 0.24267174097011912]]]] [[[[0.3948352579092791 0.04652428073328163]]] [[[0.17842070027282908 0.9224373551162718]]]]] [[[[[0.5618254823364954 0.8861166383283043]]] [[[0.7193063537261819 0.4679863368223287]]]] [[[[0.2537433611040759 0.5020442673485246]]] [[[0.8230399390439918 0.298865888988857]]]]] [[[[[0.9710417459185976 0.22822857519691675]]] [[[0.5598621674432354 0.5211867353109952]]]] [[[[0.7097527258072704 0.808824049516174]]] [[[0.4489096948417366 0.019444869179756852]]]]]] [[[[[[0.9510585996527199 0.11684397488801446]]] [[[0.23458135310580186 0.7419329090300121]]]] [[[[0.41709102152662114 0.3790950774433861]]] [[[0.3977580178439377 0.08885081982428278]]]]] [[[[[0.9959901608193825 0.005116329889419791]]] [[[0.6458433770328236 0.41732269085901863]]]] [[[[0.32796645698401206 0.2125809520739831]]] [[[0.7874502038859867 0.26507000230788247]]]]] [[[[[0.4096157842555348 0.3421241609130431]]] [[[0.21104340508781338 0.017047543919624153]]]] [[[[0.5075826749817145 0.2991024142540235]]] [[[0.5521012788111503 0.11601663705657883]]]]]]] [[[[[[[0.6545834594017079 0.7656646882344426]]] [[[0.41444985074622065 0.35036687293168856]]]] [[[[0.8320904834162797 0.041633073727139314]]] [[[0.04610805397318718 0.8141045152624263]]]]] [[[[[0.7921495820717367 0.4866566989572627]]] [[[0.24939596303768818 0.0844484507206672]]]] [[[[0.41342987011308807 0.1860085106337125]]] [[[0.8176348282118702 0.14914559885101286]]]]] [[[[[0.24156806164400346 0.8849287255051246]]] [[[0.4754082993430938 0.3007373527940763]]]] [[[[0.9717425180053892 0.7411329895002501]]] [[[0.9501441359490358 0.4064793973124139]]]]]] [[[[[[0.2368780512334766 0.1502483450796186]]] [[[0.7390007744909827 0.4966000380450105]]]] [[[[0.9964707633425044 0.5171913383359004]]] [[[0.8107081576530044 0.8678328984747599]]]]] [[[[[0.9392968379715843 0.3646183357598851]]] [[[0.5327866396123958 0.7462223299271173]]]] [[[[0.007450357280626374 0.055979441209711656]]] [[[0.3720621556356989 0.7555211391114255]]]]] [[[[[0.988819913857733 0.12365650924458482]]] [[[0.44375175061689487 0.8695730023607406]]]] [[[[0.8988364006798772 0.42663091166617784]]] [[[0.38406214917191484 0.17683622621267403]]]]]] [[[[[[0.122677650692262 0.41166240144140864]]] [[[0.3092735097228506 0.8792513522373296]]]] [[[[0.07097899447147593 0.36514388408358744]]] [[[0.7608933611822817 0.693652446910104]]]]] [[[[[0.1669817232850338 0.36671212372295925]]] [[[0.267311036340216 0.8451060906140584]]]] [[[[0.4637079951525206 0.39370331452146035]]] [[[0.10454675280315351 0.01270760944987026]]]]] [[[[[0.8887736860114055 0.44911385091866285]]] [[[0.2300785863694882 0.017920442199582887]]]] [[[[0.7195626189426876 0.20592866195889548]]] [[[0.6771626183131937 0.9462955807669617]]]]]] ... [[[[[[0.714508670485945 0.47727327659872565]]] [[[0.3046672991029007 0.6869009867861103]]]] [[[[0.8151684385845864 0.3784551880449828]]] [[[0.7347428389821657 0.09590587036025355]]]]] [[[[[0.8163485788918419 0.12271471504837117]]] [[[0.3892330726499844 0.16837341185064947]]]] [[[[0.5335518699148388 0.29174201008941003]]] [[[0.1701437644390863 0.9108657799116155]]]]] [[[[[0.8809103531096572 0.4492666967904271]]] [[[0.5558670770607256 0.7326183985593027]]]] [[[[0.664953379516684 0.23299216383731347]]] [[[0.7184600476605678 0.46049191379269283]]]]]] [[[[[[0.36427717710103547 0.4016326937169875]]] [[[0.009747227461641805 0.0784092973702899]]]] [[[[0.41690324539049817 0.38086632684967314]]] [[[0.09567308309075195 0.09252821986384241]]]]] [[[[[0.9973777563484212 0.1965351070320438]]] [[[0.1364440990381276 0.9240532957929203]]]] [[[[0.4356576548212674 0.8496468873959613]]] [[[0.950376762416793 0.7793668252061013]]]]] [[[[[0.39842507439728914 0.1318960991753687]]] [[[0.32190872903353274 0.5709432067054122]]]] [[[[0.3643171866555822 0.39800692706206764]]] [[[0.3698951652156778 0.5907818845577525]]]]]] [[[[[[0.7873886797682087 0.21106757911269225]]] [[[0.422220146003618 0.5399330536182718]]]] [[[[0.011616467221504001 0.7202552066232256]]] [[[0.1620509335293705 0.33025438040346033]]]]] [[[[[0.6504123283713107 0.7307181289025803]]] [[[0.6107873300154228 0.6506984603276057]]]] [[[[0.9036963133900375 0.4862923543304014]]] [[[0.5143770103416391 0.613112291354341]]]]] [[[[[0.3399719238409945 0.639166900216544]]] [[[0.17092180918501065 0.4853464902137923]]]] [[[[0.27159329302835955 0.15980306590430593]]] [[[0.33628783449079414 0.20882105571453047]]]]]]] [[[[[[[0.8731298301744381 0.39268728403595443]]] [[[0.17448391647249417 0.3672967437025352]]]] [[[[0.5061625555136431 0.06751480590066705]]] [[[0.5270572512618092 0.3581399579654775]]]]] [[[[[0.6902935936948551 0.10216646101382032]]] [[[0.8528270858490923 0.06721177083942098]]]] [[[[0.025059628882697416 0.8445483316747776]]] [[[0.11296228829556976 0.17832730333029223]]]]] [[[[[0.453840796430129 0.20570953886097554]]] [[[0.46291907290072254 0.7414543596507244]]]] [[[[0.3964653841278254 0.1888961735212914]]] [[[0.7415536451071334 0.2961932904176542]]]]]] [[[[[[0.8426407154075755 0.8733427191656483]]] [[[0.726901696694758 0.1285637264060716]]]] [[[[0.1593220409523567 0.02571834982099197]]] [[[0.03907111328651358 0.6238465765915429]]]]] [[[[[0.21050264310821432 0.8641674927369705]]] [[[0.6136717680684854 0.292218489867369]]]] [[[[0.39977094733157836 0.6451230050172123]]] [[[0.6252843989949687 0.112306371734058]]]]] [[[[[0.619106334376807 0.4256963353877766]]] [[[0.032829769208347126 0.7132190739970309]]]] [[[[0.8688052967450437 0.17105310392759532]]] [[[0.8823371866485761 0.9451773218807707]]]]]] [[[[[[0.2642368841925964 0.21249517892353287]]] [[[0.6704017139187355 0.5492971387433516]]]] [[[[0.6595752782707198 0.4635591478268204]]] [[[0.6086704281877168 0.009620337830144154]]]]] [[[[[0.9634649732852358 0.3230511997175636]]] [[[0.7627360144763579 0.7172535609788984]]]] [[[[0.8172832651766729 0.40682958628880783]]] [[[0.38903324922050364 0.2667661981407835]]]]] [[[[[0.43664769766944544 0.06938468964258082]]] [[[0.01792411546007544 0.4521344184944265]]]] [[[[0.247521592609806 0.6496365033641108]]] [[[0.5899412094307079 0.8019654835678658]]]]]] ... [[[[[[0.746198762565492 0.991064672182318]]] [[[0.4765270321258155 0.028440531387188384]]]] [[[[0.13080133662680837 0.4630503356409068]]] [[[0.4834865856343221 0.8728342978118185]]]]] [[[[[0.6273180760955629 0.9302502916110826]]] [[[0.662901182171113 0.8063182627913141]]]] [[[[0.3364094240448754 0.014951807869721945]]] [[[0.9248405036990368 0.1275555617381967]]]]] [[[[[0.5715215838482448 0.4762491505787939]]] [[[0.18885567403645986 0.03217374812615281]]]] [[[[0.6764827753847501 0.2512208287389456]]] [[[0.22053727138279977 0.7576274062061746]]]]]] [[[[[[0.5388959003294962 0.20468428367127833]]] [[[0.7348786614304256 0.6152741229285956]]]] [[[[0.7579741547521045 0.24172220307397152]]] [[[0.06842424557923454 0.2162959466347344]]]]] [[[[[0.3193871708999576 0.20880878956209725]]] [[[0.19954428635805055 0.20257279617210777]]]] [[[[0.7741357898278624 0.7260225376326237]]] [[[0.54690957206121 0.7671059061371761]]]]] [[[[[0.09426118835405917 0.2589874171219959]]] [[[0.5918714553772952 0.04796774830426531]]]] [[[[0.608059720999746 0.5106375980599394]]] [[[0.1360764934118761 0.9356484615289395]]]]]] [[[[[[0.024129793248454212 0.1973135815465774]]] [[[0.46050718790106104 0.1345777047437089]]]] [[[[0.6068602643751825 0.44670342501100446]]] [[[0.6351271437054712 0.34177483372438777]]]]] [[[[[0.8177814987230289 0.8890105204632297]]] [[[0.28151355017470014 0.624549769142199]]]] [[[[0.793147713852969 0.9157054597827476]]] [[[0.40799398132524833 0.1003039823370846]]]]] [[[[[0.41172380637451866 0.09578919453649615]]] [[[0.3310053191381813 0.19466037056872243]]]] [[[[0.6757378068425614 0.2831491979688485]]] [[[0.2663221933418769 0.5267071572908947]]]]]]] [[[[[[[0.44147604636979076 0.9418954009099766]]] [[[0.20995563578206888 0.8004222177515766]]]] [[[[0.05360143728502209 0.6842155330699121]]] [[[0.0995244733644084 0.9810637594143492]]]]] [[[[[0.8046185185710443 0.16383328827399357]]] [[[0.4808231414584462 0.7099854615347282]]]] [[[[0.6871230089736143 0.43071463217288397]]] [[[0.20110267986726615 0.003141059161716475]]]]] [[[[[0.9136215031742766 0.2876010687970638]]] [[[0.44646500454075355 0.23743565709525638]]]] [[[[0.9782285202886122 0.01237273154460472]]] [[[0.791793697371792 0.8592509705388254]]]]]] [[[[[[0.05435873165846539 0.0009278907897449784]]] [[[0.43348877680115494 0.41226154477301813]]]] [[[[0.25519072761013584 0.3746454779215276]]] [[[0.4520496070413763 0.4220544143459224]]]]] [[[[[0.4583702047027053 0.06161604092064732]]] [[[0.9044498784215613 0.03214496712931103]]]] [[[[0.2930974236940074 0.08203114881121543]]] [[[0.7125629687372583 0.4647053661535814]]]]] [[[[[0.2027034789265334 0.7176523297547253]]] [[[0.3228263421141834 0.29574070616606574]]]] [[[[0.5251547000817657 0.9053932837558115]]] [[[0.9256468374168649 0.997230822853341]]]]]] [[[[[[0.4656028788047044 0.03881375068771786]]] [[[0.4420712684610725 0.2076198668953152]]]] [[[[0.3442380878376994 0.778114566123864]]] [[[0.6229224709637086 0.6888498172008646]]]]] [[[[[0.6511706503280141 0.7203778976305734]]] [[[0.716357118711738 0.05300082037960352]]]] [[[[0.13165087249394236 0.25569537321844116]]] [[[0.8016338847013436 0.9933723374629038]]]]] [[[[[0.13704438361056337 0.56941336644223]]] [[[0.16581056641782987 0.37469317937371716]]]] [[[[0.3343840522023467 0.5976294782781096]]] [[[0.680968461914833 0.6709572557689316]]]]]] ... [[[[[[0.8734399886320727 0.10115236992706989]]] [[[0.5348041893784817 0.5357381829455657]]]] [[[[0.6040416144377014 0.35226836283409113]]] [[[0.4261121258221736 0.876213441995594]]]]] [[[[[0.13225575796012223 0.9245098387168599]]] [[[0.8970626421528313 0.7374610626900356]]]] [[[[0.34455421767088046 0.9865359226982766]]] [[[0.34330495811527695 0.408267701429735]]]]] [[[[[0.23513520368578056 0.7502058221284987]]] [[[0.6278819731711328 0.18314684098463652]]]] [[[[0.7990681087050978 0.9909151052537117]]] [[[0.7156568532556983 0.5662943645216064]]]]]] [[[[[[0.2165446805954877 0.1474440144307212]]] [[[0.22178415551456576 0.27614584443554724]]]] [[[[0.8533864529947515 0.5349310080883924]]] [[[0.7300453643069112 0.2952404395315098]]]]] [[[[[0.975820781158287 0.21014120134874537]]] [[[0.9813072243932568 0.03772536365974144]]]] [[[[0.628391168282234 0.21332294759684323]]] [[[0.11050388608845663 0.7493942647082705]]]]] [[[[[0.193551382083761 0.8948556715056053]]] [[[0.9681477959601907 0.4673511128536809]]]] [[[[0.6507802830779204 0.5240263881773859]]] [[[0.4995762144762168 0.28186491380423573]]]]]] [[[[[[0.9790566819469461 0.15608514222957648]]] [[[0.42175361895552566 0.3182750514293916]]]] [[[[0.5170435798198633 0.5037729221654625]]] [[[0.8142695025159303 0.20462928352326393]]]]] [[[[[0.5304598189892898 0.3507485003205215]]] [[[0.09961914684710504 0.5321343236014847]]]] [[[[0.8539640348038746 0.9077890367856938]]] [[[0.6973685484352078 0.6515474068276802]]]]] [[[[[0.2667863453514031 0.8915081346886223]]] [[[0.33621888747449136 0.2143834905359402]]]] [[[[0.8980632982784662 0.8496472074603624]]] [[[0.5512961720162698 0.22513553874708425]]]]]]]] [[[[[[[[0.573469124735388 0.7703250824524324]]] [[[0.99010234412017 0.029356520288089216]]]] [[[[0.9378839106765945 0.8527186610512796]]] [[[0.10889280083224895 0.9415745045051561]]]]] [[[[[0.9606297306939373 0.37692539135915293]]] [[[0.7291248225452748 0.6479898331903223]]]] [[[[0.3315658636772538 0.5600319497418424]]] [[[0.4102493358331345 0.7829338633391228]]]]] [[[[[0.602049677521363 0.4204905713570586]]] [[[0.28281181165679004 0.5966490004876914]]]] [[[[0.3012365076151169 0.08898238419328841]]] [[[0.6831464511789831 0.6548240359780187]]]]]] [[[[[[0.8719209178306001 0.6345258651556478]]] [[[0.8880276672686432 0.36546431554020253]]]] [[[[0.8851206539868556 0.14854861465985514]]] [[[0.8576428889825285 0.29629255787254494]]]]] [[[[[0.6080014684334432 0.47009889217878054]]] [[[0.9034930119288669 0.06773400330380974]]]] [[[[0.3574218212634406 0.031180983062293]]] [[[0.6397013692120639 0.25719470479751616]]]]] [[[[[0.6257835375334753 0.008353430112520432]]] [[[0.9964883623747227 0.7908969796735094]]]] [[[[0.9795923165601784 0.49806202119869214]]] [[[0.5508289773510937 0.004092246694045731]]]]]] [[[[[[0.3816225749579978 0.7675657743976133]]] [[[0.5809213333795706 0.7546550584575674]]]] [[[[0.4047874843042655 0.40967685943183085]]] [[[0.9026900127137962 0.5632990533405939]]]]] [[[[[0.17496824312444403 0.7511769647383186]]] [[[0.37052167819146875 0.4090538654027702]]]] [[[[0.6445072670903517 0.9130558849293914]]] [[[0.3030950632544378 0.36922065793767067]]]]] [[[[[0.010758233879025747 0.3407145290327529]]] [[[0.44668764512702075 0.8684539338378942]]]] [[[[0.9663140412635505 0.09602988648901178]]] [[[0.7971440455063494 0.09580839669050689]]]]]] ... [[[[[[0.8977511115150454 0.054727894812144795]]] [[[0.5601756437477955 0.3106321434553576]]]] [[[[0.5367512273890999 0.7872723680842053]]] [[[0.07537449835990206 0.9758959997588973]]]]] [[[[[0.13961731927297893 0.06131844760914862]]] [[[0.13136349565546956 0.834898306597577]]]] [[[[0.2545218146528827 0.35514674780825395]]] [[[0.14350036690842616 0.9422929224686604]]]]] [[[[[0.5788005389295352 0.2824963123267987]]] [[[0.578993343632324 0.5034842414230072]]]] [[[[0.41577174676129747 0.1351714049005106]]] [[[0.754635689743441 0.22574236825910787]]]]]] [[[[[[0.8315238416653993 0.04340504723474825]]] [[[0.2640991606670633 0.32984979054382835]]]] [[[[0.9997038178271048 0.3773682347865964]]] [[[0.7189734840710382 0.8930897477925513]]]]] [[[[[0.7340779040716577 0.7145192969305456]]] [[[0.4620806873114892 0.4501074971034488]]]] [[[[0.39919350281935717 0.7815365723538861]]] [[[0.20301430169987222 0.09395407937549904]]]]] [[[[[0.34068155704179537 0.24969437783438164]]] [[[0.6766675377933001 0.6924899021651346]]]] [[[[0.34083833046546474 0.16992005532648657]]] [[[0.25210656387546326 0.46258574705895106]]]]]] [[[[[[0.158126361078209 0.4935326062533424]]] [[[0.9543791981500841 0.7940511114217178]]]] [[[[0.3215700416584878 0.7041415674596406]]] [[[0.8307024005203629 0.8241945388806092]]]]] [[[[[0.0165948392481019 0.2888653519250215]]] [[[0.0940526891500556 0.7631869779013928]]]] [[[[0.7375277050730392 0.8903966160986201]]] [[[0.6245750298983898 0.4876975357511194]]]]] [[[[[0.523751525326065 0.917859489722526]]] [[[0.724187802036427 0.5127084453171965]]]] [[[[0.15515798732750208 0.26983977724439767]]] [[[0.8546153483386831 0.01953026423166515]]]]]]] [[[[[[[0.04412226375582129 0.7160757897009445]]] [[[0.6285596945781163 0.838697672517078]]]] [[[[0.2826056912549251 0.07714685504187191]]] [[[0.2694035307866315 0.2499192884117889]]]]] [[[[[0.3312067999633074 0.030794074859249454]]] [[[0.7935740396662633 0.32624742958576225]]]] [[[[0.2598505918256514 0.8086685215154739]]] [[[0.774952783142334 0.5589710262916573]]]]] [[[[[0.4658012547120345 0.648646009506207]]] [[[0.5566853209774365 0.8473195426591797]]]] [[[[0.3710321376142315 0.26722824003152457]]] [[[0.11963025672181993 0.2038668962755007]]]]]] [[[[[[0.3733748399208072 0.9054653944229266]]] [[[0.02857123557032648 0.9149269455337302]]]] [[[[0.8976688323217119 0.014759205210947535]]] [[[0.5905951041661742 0.3491784689159584]]]]] [[[[[0.25625445396788826 0.6640579706402734]]] [[[0.6140603233673736 0.4672215101954439]]]] [[[[0.9844694490145899 0.7171608422681616]]] [[[0.1726272603443988 0.3240182981270383]]]]] [[[[[0.12624575174128672 0.8412375837740765]]] [[[0.5019654779610706 0.32255017323830415]]]] [[[[0.47598406977454955 0.8050186821820882]]] [[[0.5156115178922943 0.6182448334181899]]]]]] [[[[[[0.093200498175801 0.236218414987592]]] [[[0.3510082571084798 0.5650624381267739]]]] [[[[0.878687979533861 0.5019948303157643]]] [[[0.3256726946284286 0.25011620943039303]]]]] [[[[[0.85166822836068 0.8517094508034564]]] [[[0.6369089158043907 0.7111552994808047]]]] [[[[0.9844363274930525 0.3706047455262462]]] [[[0.25165227714722227 0.5970365359457286]]]]] [[[[[0.6563927981539561 0.4415207559162011]]] [[[0.42656618618145714 0.6127378625262441]]]] [[[[0.8371611450872982 0.2633678549615044]]] [[[0.39730865011206773 0.1936169506178994]]]]]] ... [[[[[[0.10843053306138406 0.8859513866247357]]] [[[0.4059241990764785 0.697806514662024]]]] [[[[0.21753952809134813 0.6586302389308553]]] [[[0.7964040976264909 0.35486019000890057]]]]] [[[[[0.005433239422904079 0.6786555419554058]]] [[[0.9690468014821303 0.8994500608824042]]]] [[[[0.9899976248025089 0.16806950443829827]]] [[[0.5979034382788067 0.4163767450597381]]]]] [[[[[0.8344847629818473 0.9807438027356371]]] [[[0.5746770900047804 0.28794267872065504]]]] [[[[0.08654686167381631 0.3025923624362401]]] [[[0.8709160332418948 0.15261021710464195]]]]]] [[[[[[0.9292469503104839 0.8526711737886585]]] [[[0.9667004473357539 0.18338195095448062]]]] [[[[0.692801584050935 0.22443066713475412]]] [[[0.1531779738759036 0.7290083081187404]]]]] [[[[[0.9280413516609238 0.049184620707661386]]] [[[0.46976511570395363 0.8602765714350337]]]] [[[[0.5025248650671035 0.6213525247720016]]] [[[0.7251975739990731 0.0373365225102219]]]]] [[[[[0.4729012137482319 0.15355433292296194]]] [[[0.2508460137920554 0.7685680319630499]]]] [[[[0.5030309864045962 0.809954782954139]]] [[[0.5035921762786618 0.6378190631543539]]]]]] [[[[[[0.5236349649552591 0.3238413313857398]]] [[[0.301448177744582 0.8219755859912259]]]] [[[[0.16696392282237138 0.4220732157101993]]] [[[0.45780281870448036 0.958096753549771]]]]] [[[[[0.3586643726206763 0.8064146898358212]]] [[[0.6657139252118812 0.917830922853681]]]] [[[[0.7295996152580827 0.2815327284022384]]] [[[0.33159774680769283 0.7077944030657117]]]]] [[[[[0.8270628537304452 0.6627982313651273]]] [[[0.4468287747107925 0.8205501863297531]]]] [[[[0.7427563438831533 0.3201887425633121]]] [[[0.061546264578247745 0.12153057626351071]]]]]]] [[[[[[[0.7400839922810188 0.6902661948943302]]] [[[0.29010380705028616 0.8295905563503361]]]] [[[[0.8182959005044148 0.9158838362901243]]] [[[0.6440033830712659 0.40300766869614846]]]]] [[[[[0.3517026782609529 0.21956592685910792]]] [[[0.8290840630168258 0.9113265578675503]]]] [[[[0.9709244425099863 0.572651014192708]]] [[[0.15454961261403 0.7193297367231816]]]]] [[[[[0.4155701251403937 0.007524992477088488]]] [[[0.8144961868519363 0.17560280416409701]]]] [[[[0.5267934637548691 0.678347567779245]]] [[[0.9568522679788458 0.9200515061339346]]]]]] [[[[[[0.25977976208137654 0.7522341051379018]]] [[[0.5446335593778517 0.947830875231589]]]] [[[[0.7482588351642413 0.687640945257326]]] [[[0.08250751722545857 0.429243698781386]]]]] [[[[[0.5514407839512772 0.7809091753677967]]] [[[0.3346275351967565 0.728407558794834]]]] [[[[0.5639515316014594 0.1438864264742341]]] [[[0.8092822792867141 0.6504715835472071]]]]] [[[[[0.9895672618330255 0.24183255892252697]]] [[[0.07274892965887803 0.4541312301905016]]]] [[[[0.3327966843062665 0.7703509685418941]]] [[[0.5511277649657035 0.3613459587241239]]]]]] [[[[[[0.5895386989043534 0.16560229855297182]]] [[[0.789865664981764 0.7575254472222953]]]] [[[[0.04269678214774164 0.6943521855341848]]] [[[0.5249923516138825 0.4740007143438464]]]]] [[[[[0.2602947797236903 0.3939386121509242]]] [[[0.3639937721866031 0.19886019853246395]]]] [[[[0.9573817981550045 0.6305811190427782]]] [[[0.7489385517621124 0.3831004681768875]]]]] [[[[[0.7522091482512744 0.6824459693168277]]] [[[0.27739273187615954 0.43602740552965946]]]] [[[[0.5116679513022092 0.9599775460744249]]] [[[0.9369408116552284 0.5523226995740609]]]]]] ... [[[[[[0.3314530479999138 0.3563856958709556]]] [[[0.18296267922911302 0.794176007425615]]]] [[[[0.13128301936007558 0.42889915276976165]]] [[[0.2058666680204726 0.3570562984076765]]]]] [[[[[0.4620043102939503 0.43959751988343054]]] [[[0.36456693956622677 0.19178779173580962]]]] [[[[0.7991957944259493 0.2528795658981341]]] [[[0.5891577707671545 0.11646355397839703]]]]] [[[[[0.5394027990708672 0.9773506532691059]]] [[[0.9456361094408111 0.08522462975631473]]]] [[[[0.3117394924089266 0.4422017377956168]]] [[[0.5788300975034044 0.32036372592891116]]]]]] [[[[[[0.27451206300096287 0.8010984688309228]]] [[[0.11466167991947984 0.6298110814546951]]]] [[[[0.8972863191806826 0.31592591235358625]]] [[[0.8656932429949801 0.7266459552880523]]]]] [[[[[0.6564856431213772 0.34972612824151295]]] [[[0.18164885418217147 0.20907906440892143]]]] [[[[0.9569369333154022 0.24861827811597415]]] [[[0.6178196551035149 0.8807699939656686]]]]] [[[[[0.5635490862091949 0.5587026494230092]]] [[[0.5322560046205612 0.46587102411212944]]]] [[[[0.16864031105639388 0.4766764028829248]]] [[[0.9622716996166973 0.21241197748985696]]]]]] [[[[[[0.3535857041280891 0.06070969664158343]]] [[[0.7194966445418822 0.16837099339124662]]]] [[[[0.2204953145050631 0.6468523123934252]]] [[[0.8638527878064778 0.7740776574916172]]]]] [[[[[0.611378672480064 0.7428910372620136]]] [[[0.7898226914074015 0.3409872437638287]]]] [[[[0.3271632319143488 0.6183025460288766]]] [[[0.3693341838672093 0.6981394389692993]]]]] [[[[[0.03791816238259926 0.4657538763038265]]] [[[0.6120840734859235 0.31785857303438614]]]] [[[[0.18168484067839907 0.31289176210301406]]] [[[0.2930777163785141 0.9538611982932861]]]]]]] [[[[[[[0.08953462293797676 0.5031177801477392]]] [[[0.2735469273867557 0.29068875951304873]]]] [[[[0.6355835941225482 0.46694783758623615]]] [[[0.9224645074902912 0.22337195828590595]]]]] [[[[[0.46359154433153205 0.5187928845931747]]] [[[0.45696483511225916 0.6850363371278566]]]] [[[[0.37792236756175834 0.6577353616737068]]] [[[0.5634325374397776 0.05052745042336304]]]]] [[[[[0.4950100178040602 0.8344262994968538]]] [[[0.8634111789642552 0.6004453836177385]]]] [[[[0.7997766935951518 0.3856515400930226]]] [[[0.019582342889813864 0.742252879064329]]]]]] [[[[[[0.20423125922689445 0.5397687942804489]]] [[[0.09012718933842645 0.7688773421234475]]]] [[[[0.16639204798406948 0.10495100989725747]]] [[[0.7013162626892947 0.1989738068988508]]]]] [[[[[0.33229834978519257 0.3565351770018058]]] [[[0.6638316831899022 0.8955708859943724]]]] [[[[0.5277514356752184 0.3356780242028723]]] [[[0.9812877041788274 0.23103015612614963]]]]] [[[[[0.898648231693408 0.5854735394493025]]] [[[0.2232086292414428 0.3059270525285114]]]] [[[[0.39552302781144644 0.4870295065160306]]] [[[0.6237221174190721 0.7758799113044309]]]]]] [[[[[[0.35936771995967587 0.7317210711291918]]] [[[0.3228060813648812 0.014568275972644429]]]] [[[[0.7063318758396725 0.8334366280867724]]] [[[0.5278947869777378 0.5206237537474988]]]]] [[[[[0.6276412991261551 0.3149975869684851]]] [[[0.6614626257413061 0.973637948779646]]]] [[[[0.7661260653103196 0.467270472612507]]] [[[0.4067430062734865 0.2862546101860173]]]]] [[[[[0.07491598003765398 0.14662760927903273]]] [[[0.6749151411121168 0.7445044738483431]]]] [[[[0.12951720336910633 0.06273669211587207]]] [[[0.8352321264698714 0.6752656369398384]]]]]] ... [[[[[[0.6805364150459352 0.8939896544165854]]] [[[0.38876491566699944 0.21436614641132512]]]] [[[[0.11163854329925726 0.9084315342687762]]] [[[0.267578289473854 0.8057263404315637]]]]] [[[[[0.18649719143906873 0.9242084700284063]]] [[[0.23804159734831032 0.12338049328654133]]]] [[[[0.8489953653319281 0.22880827785142266]]] [[[0.5289832506340925 0.575615914181928]]]]] [[[[[0.14347924696421765 0.7706916217943736]]] [[[0.5542741757061416 0.3068462288902244]]]] [[[[0.6082105617440356 0.7502440668704212]]] [[[0.6650782446840742 0.17460152433941967]]]]]] [[[[[[0.38306889728091875 0.7911354062385089]]] [[[0.7699471280224655 0.03509928319196798]]]] [[[[0.32662160309689947 0.8494950857447651]]] [[[0.9373440812008317 0.43402092193327246]]]]] [[[[[0.8848175098047127 0.242210156015919]]] [[[0.6099794963678943 0.658107945664189]]]] [[[[0.5012022846450802 0.1769146570971828]]] [[[0.8111719638874023 0.8827803476380738]]]]] [[[[[0.4365787579855689 0.4450179022575206]]] [[[0.33245355315848824 0.31535735524014996]]]] [[[[0.33699130931752797 0.3959074585179416]]] [[[0.7619069088221522 0.8110340572130459]]]]]] [[[[[[0.5657756847573295 0.6006319190493195]]] [[[0.8110770826816855 0.49617371454922565]]]] [[[[0.4936417212977702 0.27906172519205286]]] [[[0.1778849884710535 0.6903213025976314]]]]] [[[[[0.7697768177157347 0.4694703345035709]]] [[[0.855719020227793 0.4171828570912324]]]] [[[[0.3826491782556015 0.059405768227777545]]] [[[0.9928179036112199 0.3971178417938205]]]]] [[[[[0.4827909791261513 0.1561928451259903]]] [[[0.6854532192234777 0.3936674581490168]]]] [[[[0.5648390940190439 0.3094479407582964]]] [[[0.7968285351543211 0.9551742781360185]]]]]]]] ... [[[[[[[[0.35573633416551886 0.5757133907859071]]] [[[0.1079972105958209 0.14332763809646976]]]] [[[[0.7191444353298422 0.2021084649720668]]] [[[0.10885459447675405 0.9367041952312698]]]]] [[[[[0.7147037746931523 0.6880570140623612]]] [[[0.46437511627490335 0.06517993709884495]]]] [[[[0.651246132585663 0.7536480409886935]]] [[[0.7432615209501315 0.36678876353739776]]]]] [[[[[0.21222715764089384 0.9969169205863594]]] [[[0.8552746214700062 0.8297049599550168]]]] [[[[0.21730658356571197 0.03186705491424102]]] [[[0.939608466441465 0.21475656974971735]]]]]] [[[[[[0.615319966881537 0.9433825239035627]]] [[[0.09320795460899323 0.06451571880078666]]]] [[[[0.15993156166757938 0.13772024068033473]]] [[[0.5926366309092916 0.16187907061124152]]]]] [[[[[0.7359621444724199 0.4396541580718517]]] [[[0.6911769632261003 0.01100595859670217]]]] [[[[0.7532391024679301 0.9261746245995456]]] [[[0.5777399456292543 0.23585671212775983]]]]] [[[[[0.29164923131237686 0.8804574070604284]]] [[[0.29077112108964787 0.8830425880468061]]]] [[[[0.7324528953457909 0.7719721911287903]]] [[[0.703309833767407 0.5651872481804757]]]]]] [[[[[[0.41537921947987466 0.6903514964080816]]] [[[0.2785166413195862 0.7589665320604805]]]] [[[[0.38470601885757527 0.7028929125194315]]] [[[0.8158908943115744 0.8995361165731666]]]]] [[[[[0.3915917314887144 0.07385383717904703]]] [[[0.8424176647965581 0.6476758055233448]]]] [[[[0.8352748609801048 0.537654974998821]]] [[[0.1887578397079409 0.6084414808590027]]]]] [[[[[0.7541874705443331 0.42574138614718005]]] [[[0.31320147446306346 0.4973157211696154]]]] [[[[0.6262889009727566 0.8285059013123423]]] [[[0.8147255292283628 0.009976474996411189]]]]]] ... [[[[[[0.6033152977358158 0.03062660084468105]]] [[[0.20357530649211342 0.7466654243434527]]]] [[[[0.5248525665282311 0.8138275584261114]]] [[[0.07073031902744764 0.9082751268282906]]]]] [[[[[0.5389265620379962 0.1602918598718197]]] [[[0.5073090090537707 0.8808572296257431]]]] [[[[0.7662106692230467 0.5593786720179165]]] [[[0.3144390948411153 0.8832721402177649]]]]] [[[[[0.1181511724967238 0.9767616333757247]]] [[[0.06144255033356638 0.16295998667990563]]]] [[[[0.468856026450333 0.09807406611072189]]] [[[0.493494607991648 0.6073213492476066]]]]]] [[[[[[0.3125217784351084 0.30659165319178827]]] [[[0.23618257753351168 0.2601592363874654]]]] [[[[0.07865184100669653 0.39321228582097345]]] [[[0.6027588041389678 0.26367525353925636]]]]] [[[[[0.7114538723002651 0.4199001718571873]]] [[[0.6978118653303698 0.31846383074087414]]]] [[[[0.39295721422711005 0.6793860960024312]]] [[[0.6602431010529143 0.10116198340939997]]]]] [[[[[0.05965696523281494 0.633036250973658]]] [[[0.9043908038797391 0.7045101376592134]]]] [[[[0.7927768665655952 0.17539396451474942]]] [[[0.5319388228608747 0.36750626017348575]]]]]] [[[[[[0.5755556999929434 0.44146663701788513]]] [[[0.7016677602267052 0.9595782370180661]]]] [[[[0.45426027756328613 0.9540278820218316]]] [[[0.6794238552640216 0.0016385490448820317]]]]] [[[[[0.5397754316255337 0.036475167420206844]]] [[[0.21618883839057534 0.22238050726836478]]]] [[[[0.5314793668965784 0.21669619550589014]]] [[[0.4069598102920149 0.4176092532476259]]]]] [[[[[0.19318415806835443 0.07150513019310956]]] [[[0.5507573353262085 0.08369718823119354]]]] [[[[0.3991168391179547 0.4435731088524776]]] [[[0.16844704392680998 0.6587340784905109]]]]]]] [[[[[[[0.0056219876564028715 0.5971895643732474]]] [[[0.23911198214120966 0.14803446422194044]]]] [[[[0.8201313239675074 0.914327423846594]]] [[[0.1769592661025835 0.7502749098341538]]]]] [[[[[0.4633645062009506 0.3246187196984851]]] [[[0.6576958574794226 0.7233003923476454]]]] [[[[0.3788159438497589 0.7062932152674932]]] [[[0.08248130007947574 0.08654130434752016]]]]] [[[[[0.43910523666405 0.058367903013100575]]] [[[0.4777746914832489 0.03867643364652951]]]] [[[[0.7067660765305679 0.4433693499081849]]] [[[0.3850451183050093 0.8408490178609603]]]]]] [[[[[[0.24863651243863805 0.5068307237026674]]] [[[0.9485963917954429 0.2524124461511892]]]] [[[[0.27694226285696144 0.655007899128132]]] [[[0.2801474997639657 0.07812281964883072]]]]] [[[[[0.459514451314463 0.991700037212617]]] [[[0.9892545766145685 0.9822523640269832]]]] [[[[0.752557878068557 0.7095724638606026]]] [[[0.9765245738033228 0.6726088396331782]]]]] [[[[[0.6319170880486654 0.5052817583957169]]] [[[0.059087487277699635 0.10858708250514582]]]] [[[[0.1059443705014721 0.6409471635741619]]] [[[0.5899271977380356 0.33911559382331913]]]]]] [[[[[[0.15705184706549402 0.43493799783318876]]] [[[0.6184317904168012 0.7843982534942054]]]] [[[[0.19943161877208715 0.7197146264427575]]] [[[0.42176840580412445 0.1502166016028217]]]]] [[[[[0.9388599887399443 0.5312418517994684]]] [[[0.13614832877767413 0.2516605911863521]]]] [[[[0.49817162975936446 0.8503426038378179]]] [[[0.44966801537308976 0.823034181829986]]]]] [[[[[0.8973935864443366 0.7693239725869189]]] [[[0.16264712203549725 0.994980414275924]]]] [[[[0.41825877068068384 0.9814963632727943]]] [[[0.0973071145612554 0.591448607220974]]]]]] ... [[[[[[0.25191133033208457 0.6661212022201001]]] [[[0.6688029260026425 0.797500008154262]]]] [[[[0.7993354563474317 0.6331027639569534]]] [[[0.9117771296749579 0.3027925572256891]]]]] [[[[[0.6699726283330257 0.31669773811336455]]] [[[0.17788319416726273 0.48071056004072965]]]] [[[[0.3279773954045577 0.8117190451313184]]] [[[0.7288317779014845 0.09644014888392949]]]]] [[[[[0.3427366179003648 0.5401786702732598]]] [[[0.2024373860136638 0.8939529175235275]]]] [[[[0.8686481045741705 0.9241617054115683]]] [[[0.6349408952352321 0.41054439154957323]]]]]] [[[[[[0.2998737669899575 0.4579279198066075]]] [[[0.524268211900758 0.41494166311555547]]]] [[[[0.5955303578315086 0.4230163267663585]]] [[[0.6822861743114736 0.8926662575736971]]]]] [[[[[0.02807921927515411 0.7152138038583407]]] [[[0.032635710839226895 0.7026813712265987]]]] [[[[0.8000459532144493 0.9132595435456864]]] [[[0.9042298086452601 0.2863623967863689]]]]] [[[[[0.2762461885789915 0.5593138573564425]]] [[[0.6722635603041722 0.1375314561355444]]]] [[[[0.9024778312088715 0.22154819751852473]]] [[[0.3357721156890008 0.14425282986458365]]]]]] [[[[[[0.2379992855065023 0.8256490248621249]]] [[[0.3256764776281009 0.6752665810779613]]]] [[[[0.5189248863701437 0.3264891043488609]]] [[[0.21741955535947644 0.8010222792210906]]]]] [[[[[0.9225505490874527 0.9055083555740635]]] [[[0.11143204559110764 0.2607049219037554]]]] [[[[0.030739988007634556 0.23645879353861676]]] [[[0.29826047405330114 0.9562400078345195]]]]] [[[[[0.6580889992237591 0.6800581819438372]]] [[[0.12848161143529901 0.8876059061960465]]]] [[[[0.08467069738076094 0.16370289664705995]]] [[[0.7865161638206013 0.13368008592761982]]]]]]] [[[[[[[0.7182420796781644 0.2136609645868357]]] [[[0.8900973139011643 0.02883457263451017]]]] [[[[0.2371491818834992 0.6222666480984017]]] [[[0.015282058623940276 0.6138102022308495]]]]] [[[[[0.3578976409518989 0.9160534359329866]]] [[[0.6535665009211087 0.82572418133688]]]] [[[[0.6626538749378783 0.6864851317989155]]] [[[0.4144944329658601 0.15311964975703163]]]]] [[[[[0.7209189571209335 0.3048328960654507]]] [[[0.7804702392230932 0.4048286191640488]]]] [[[[0.5691463702157802 0.7240212361737853]]] [[[0.7965657085758153 0.38170872840555137]]]]]] [[[[[[0.7159106438873492 0.7166780045180473]]] [[[0.02179297422598525 0.972728367477773]]]] [[[[0.23550475414520466 0.8969893123782452]]] [[[0.5628922107174298 0.19605452759148656]]]]] [[[[[0.9707000366752292 0.2821048346957]]] [[[0.416775546588933 0.3499104849857114]]]] [[[[0.8917082600262387 0.6732061269654109]]] [[[0.815045374444266 0.2046678969059993]]]]] [[[[[0.4600198731845715 0.5516737421448747]]] [[[0.29610904329933607 0.399381017423605]]]] [[[[0.44654570705011 0.5500893602646915]]] [[[0.5474690984965717 0.02601905548229666]]]]]] [[[[[[0.003400415158709591 0.255174290790387]]] [[[0.03521479263061977 0.753846314911843]]]] [[[[0.4602888815527003 0.48121331908678977]]] [[[0.6995250475929844 0.2137039286935286]]]]] [[[[[0.22134139215185344 0.4818107464765624]]] [[[0.22301189545016176 0.7832794429224806]]]] [[[[0.8872461485065958 0.14548764561447025]]] [[[0.24829314285550663 0.5164846813575192]]]]] [[[[[0.5413418427764083 0.11568242989619792]]] [[[0.3973285396902032 0.9951950703143361]]]] [[[[0.1729751969711132 0.32067586072353915]]] [[[0.7143635393952714 0.5010115073337732]]]]]] ... [[[[[[0.12141424537531631 0.05968928210604263]]] [[[0.5610638665050541 0.2475720661999522]]]] [[[[0.7881197849338948 0.8660687333332706]]] [[[0.6535045275392933 0.46037265552422446]]]]] [[[[[0.363304366716904 0.9885678339477747]]] [[[0.1967355423965802 0.556835978411349]]]] [[[[0.3777323601514204 0.41554760317347617]]] [[[0.14487653946018786 0.49202513465237396]]]]] [[[[[0.39826933754084126 0.6829164065309629]]] [[[0.342808458020733 0.6958508718521398]]]] [[[[0.5797876505857863 0.12099662990451387]]] [[[0.04199951225274878 0.5560486585193498]]]]]] [[[[[[0.1576363711133042 0.5623368920070523]]] [[[0.49428437332979047 0.5498250383556029]]]] [[[[0.9185238627111507 0.16683362067494967]]] [[[0.5214769623328572 0.9985231613993765]]]]] [[[[[0.7698538579864018 0.6886828907081992]]] [[[0.9116792479377549 0.0735966856046143]]]] [[[[0.5265116298896996 0.42925854226050486]]] [[[0.7558975268764898 0.8335268035753914]]]]] [[[[[0.7727624157718422 0.037008350871667206]]] [[[0.9549029615514207 0.7172422871388621]]]] [[[[0.549876820217307 0.5912050828438145]]] [[[0.3718678837277729 0.9401717879692084]]]]]] [[[[[[0.9541990256535244 0.631041281042093]]] [[[0.9682564560323125 0.11229965652023888]]]] [[[[0.11024276702931357 0.9066621951322452]]] [[[0.5945340456836284 0.38276152921942397]]]]] [[[[[0.6902911354018849 0.49484627813335]]] [[[0.9655151471573954 0.987562629099147]]]] [[[[0.3602364928552334 0.2880179946737378]]] [[[0.08279103475209904 0.9205459125472043]]]]] [[[[[0.8089507491559023 0.8211125997458916]]] [[[0.6264918105284498 0.8051964886570715]]]] [[[[0.553471488243216 0.9168379541280697]]] [[[0.637175044865384 0.7087656129641383]]]]]]] [[[[[[[0.1831656490314919 0.7576637095195579]]] [[[0.031494880933112146 0.7622661114435629]]]] [[[[0.2447343401535037 0.3186182422574495]]] [[[0.39620981292782953 0.23451857147344857]]]]] [[[[[0.08399755773644824 0.827340747754737]]] [[[0.5400001166113754 0.9746724002492725]]]] [[[[0.6712605898404626 0.9018294864825052]]] [[[0.6391065652489935 0.19862164270965277]]]]] [[[[[0.7018488132459921 0.7014092690839239]]] [[[0.7999041439393614 0.8265186056604449]]]] [[[[0.9872863702055145 0.2868297228760621]]] [[[0.7400920310013497 0.9376632828865563]]]]]] [[[[[[0.7456201835359817 0.7846013309385087]]] [[[0.050567734533304654 0.5006009849438762]]]] [[[[0.020852990256946202 0.012642047787214339]]] [[[0.7532181242611442 0.15048562763321638]]]]] [[[[[0.04458844563293651 0.9037640573224807]]] [[[0.08598578926298783 0.7455996718788903]]]] [[[[0.6734243280807893 0.041678284314493275]]] [[[0.4706588633256662 0.8584473841259983]]]]] [[[[[0.5242551126673813 0.13790323323885734]]] [[[0.045273088734913536 0.35459109695404234]]]] [[[[0.6806397962821443 0.9171623734661838]]] [[[0.10987245288911363 0.5402574602288461]]]]]] [[[[[[0.5113228844705087 0.24507961495136898]]] [[[0.8776798694452638 0.7461260495655427]]]] [[[[0.35557317403055966 0.4092223546561087]]] [[[0.5058819749127682 0.46368147147693917]]]]] [[[[[0.8685149988600659 0.18918747610000053]]] [[[0.9024455139941434 0.602283588091655]]]] [[[[0.779245761869348 0.1172434749269019]]] [[[0.030703324924911346 0.5732626406323116]]]]] [[[[[0.3469037522541213 0.10081529938200018]]] [[[0.7005210833967861 0.02940535701088709]]]] [[[[0.974323707467902 0.6065938631126118]]] [[[0.9501674148211112 0.40249211652180317]]]]]] ... [[[[[[0.8302048579125073 0.2973041335562353]]] [[[0.773775429190413 0.15829769409701022]]]] [[[[0.5916740302274152 0.6412179637299273]]] [[[0.18877478497101274 0.19062102415656268]]]]] [[[[[0.031230857010603796 0.8196011262916432]]] [[[0.48399379435205125 0.585716395650707]]]] [[[[0.8907302082738358 0.36798011347496706]]] [[[0.9267091584375196 0.15708330255650893]]]]] [[[[[0.296952608173102 0.6007246068361131]]] [[[0.3948202489062287 0.10898268493762686]]]] [[[[0.4450666096960374 0.002138534408064996]]] [[[0.5640725705958409 0.36214636867510697]]]]]] [[[[[[0.32331600583590514 0.33210601795407746]]] [[[0.1844606012233888 0.20038344287330923]]]] [[[[0.480894338075297 0.2774785348403084]]] [[[0.43997481985078635 0.3102522049249986]]]]] [[[[[0.19782625831517453 0.5546646741261873]]] [[[0.1274931007311635 0.3463821441692261]]]] [[[[0.24548721334493329 0.684388989299962]]] [[[0.27650627421077456 0.3817912878277836]]]]] [[[[[0.4373572833480386 0.1451088071406874]]] [[[0.27284035420027297 0.9820071416471888]]]] [[[[0.7435314477330511 0.6044289245457377]]] [[[0.6974517116984643 0.6061003087740918]]]]]] [[[[[[0.7373848622492113 0.03341431891951674]]] [[[0.1307117337598157 0.796001073646192]]]] [[[[0.7546252465150891 0.10004271144049881]]] [[[0.4822153566938898 0.8902968137811139]]]]] [[[[[0.7545030498937422 0.6496380350236731]]] [[[0.3271740054646447 0.9541443005800261]]]] [[[[0.20953143103398453 0.19437123240455845]]] [[[0.9897437035490445 0.12878022018791968]]]]] [[[[[0.5955069926964967 0.9998481038274911]]] [[[0.5002078974826737 0.3527081504020275]]]] [[[[0.19426508083752392 0.7594866229890122]]] [[[0.07152229849607528 0.9208459304286128]]]]]]]] [[[[[[[[0.07559469002316199 0.8334480100119481]]] [[[0.4239640634239238 0.04388763269203333]]]] [[[[0.863527915153162 0.4246551569253044]]] [[[0.23453074537815854 0.07075699328844198]]]]] [[[[[0.7924940401516293 0.9247637958471284]]] [[[0.5431731792943707 0.9016063464782829]]]] [[[[0.07640276003925917 0.9957690469046823]]] [[[0.8478511586433287 0.24901486932441486]]]]] [[[[[0.3359673689160636 0.39429099758350394]]] [[[0.5072779091406489 0.8035460378345941]]]] [[[[0.5341440801432921 0.8155806475294171]]] [[[0.008094734363892186 0.5852790262252638]]]]]] [[[[[[0.9733675334820197 0.5019596084530639]]] [[[0.7563690277475974 0.19043266902386824]]]] [[[[0.45839160566596315 0.6122998856213784]]] [[[0.544122568017638 0.4192887605869253]]]]] [[[[[0.7549129331381222 0.6861958526182054]]] [[[0.8035671892577009 0.9066981497237012]]]] [[[[0.3776620689613839 0.9972060012603111]]] [[[0.507729787421012 0.015006634919982775]]]]] [[[[[0.5006314134806003 0.9601096044255828]]] [[[0.6175623005804968 0.11727321862692164]]]] [[[[0.23913834822145075 0.7772250328850652]]] [[[0.3711036889902096 0.2897453867967421]]]]]] [[[[[[0.8234385275591845 0.5131526969964062]]] [[[0.7668631131122479 0.1652571093974161]]]] [[[[0.6410055349308093 0.6736849898350207]]] [[[0.6721615006060787 0.6471748001940876]]]]] [[[[[0.6196236020671758 0.99696451131995]]] [[[0.2272197976557806 0.5748568196563639]]]] [[[[0.8516186411218816 0.319123492094741]]] [[[0.49617196590535084 0.7077069810562635]]]]] [[[[[0.9691310617620782 0.36519217989527464]]] [[[0.23223323260646778 0.5032517998834046]]]] [[[[0.4204282773396353 0.5725628152924006]]] [[[0.7102819321381582 0.3978126601259344]]]]]] ... [[[[[[0.5698726825403199 0.3568913586005015]]] [[[0.49454232876547133 0.9380151993422118]]]] [[[[0.43303632952705207 0.7782179221929905]]] [[[0.01042884963363555 0.9140960581135451]]]]] [[[[[0.10108504083530134 0.33975309831308975]]] [[[0.8871918608399956 0.4376455377399091]]]] [[[[0.8753708971508372 0.2611886937671972]]] [[[0.23331615449700627 0.2003694047260759]]]]] [[[[[0.48856150911359775 0.5633998399193423]]] [[[0.09019029717778893 0.0773701633938102]]]] [[[[0.6558826980334168 0.17175600468491692]]] [[[0.9836056420921278 0.6984904049183566]]]]]] [[[[[[0.6738932466967922 0.11052427428220923]]] [[[0.9933188149298129 0.7524443944932164]]]] [[[[0.769913555350518 0.7627303020576816]]] [[[0.6298669505713795 0.5264891124016788]]]]] [[[[[0.7554238786721733 0.023523309234245948]]] [[[0.46842707715864995 0.7358353721268878]]]] [[[[0.6092947054450754 0.18110849858110467]]] [[[0.2897441351961889 0.8892429588928059]]]]] [[[[[0.023398400439938905 0.43512622662892]]] [[[0.7282399888886035 0.8948280458226618]]]] [[[[0.481574096048753 0.40497520434424294]]] [[[0.8038070990368487 0.441880945324162]]]]]] [[[[[[0.37015516250091585 0.26041820654654046]]] [[[0.6223011434130852 0.3115412740468151]]]] [[[[0.32359145468414996 0.7101810038525644]]] [[[0.23243078692152996 0.5121865198543519]]]]] [[[[[0.8342962294331004 0.23619708589785604]]] [[[0.06044916321300908 0.5255424365498781]]]] [[[[0.6243587390031039 0.907383472827125]]] [[[0.7889121022048301 0.9948398025603863]]]]] [[[[[0.17794219220205432 0.016409730324812855]]] [[[0.8215678494623958 0.408259091623162]]]] [[[[0.15347172458664482 0.36803787077330885]]] [[[0.0006923097933581035 0.12803026539098672]]]]]]] [[[[[[[0.7149876368079064 0.47208278170795126]]] [[[0.9842236456408427 0.43043302424588004]]]] [[[[0.6139414010060251 0.5600333953782527]]] [[[0.7327681159816161 0.6161528751263501]]]]] [[[[[0.4990603689536445 0.9237619427301513]]] [[[0.147779309985428 0.02523822824771893]]]] [[[[0.7464479065786436 0.6569326121009135]]] [[[0.6894967920347285 0.22281379612817842]]]]] [[[[[0.9985803850100438 0.034781908970700326]]] [[[0.17270570402075192 0.3517778373073912]]]] [[[[0.4486373351333184 0.7870418873552096]]] [[[0.28287389556033204 0.19883791625317782]]]]]] [[[[[[0.6820461711007123 0.6171145431042674]]] [[[0.21655931746272994 0.43568252354279124]]]] [[[[0.4631862852302733 0.020946106058623903]]] [[[0.10146264030322383 0.4482736950854217]]]]] [[[[[0.7992200698965556 0.7059507601809478]]] [[[0.6618498793797909 0.8842592060248665]]]] [[[[0.3271689212684772 0.9802235871800438]]] [[[0.24959265487590598 0.35839626137574176]]]]] [[[[[0.6514426118939848 0.7519657387576238]]] [[[0.4142764906465173 0.5431892954091939]]]] [[[[0.11238772503304673 0.7535557441910218]]] [[[0.17763636800491744 0.9646925423687196]]]]]] [[[[[[0.03739363916466354 0.5203599048024181]]] [[[0.2993643913184587 0.43592854259670466]]]] [[[[0.4225337465908988 0.6462837020812588]]] [[[0.012838883257496825 0.08956822972879308]]]]] [[[[[0.373886454127477 0.03141799635060383]]] [[[0.3022145708377315 0.09678776353737473]]]] [[[[0.4669096879572775 0.7755520329366952]]] [[[0.5111063094526341 0.9068762444294209]]]]] [[[[[0.8061859533958258 0.9783857858535747]]] [[[0.9788036521647553 0.3106691945065151]]]] [[[[0.6500534661240331 0.9274566964103952]]] [[[0.9736232233005864 0.055737064218297716]]]]]] ... [[[[[[0.562023865327375 0.31099132405189067]]] [[[0.9109986268313849 0.29634241208837864]]]] [[[[0.1798143339698034 0.37453730819419473]]] [[[0.6676495878837806 0.77380981368945]]]]] [[[[[0.5112109084365571 0.8594699529558997]]] [[[0.58309443101112 0.26039455737785444]]]] [[[[0.5985972747146622 0.2780341702865369]]] [[[0.7729059753907715 0.3858331802914645]]]]] [[[[[0.9111484664794489 0.48357852127775247]]] [[[0.6694014556081659 0.5900537938716868]]]] [[[[0.26496428819372053 0.769366063232125]]] [[[0.4993883108522722 0.6866807289821187]]]]]] [[[[[[0.15127736372085987 0.0091702044961125]]] [[[0.7752731576741132 0.812512787784406]]]] [[[[0.9844727359487656 0.8711109239336996]]] [[[0.9079873889716378 0.09094187960120359]]]]] [[[[[0.2944543595208212 0.4808231151623401]]] [[[0.4636144332429819 0.6591761283328723]]]] [[[[0.10909837507634057 0.3531902415918817]]] [[[0.9995258084752431 0.4681968541686057]]]]] [[[[[0.35811518084431737 0.08405235040685]]] [[[0.7075755054608174 0.7047768219201321]]]] [[[[0.7937330259782274 0.8243857023552406]]] [[[0.24918947491761656 0.4390954780502456]]]]]] [[[[[[0.45834086194342993 0.8172757222851196]]] [[[0.7013247069924126 0.9251784398877991]]]] [[[[0.6827862698699196 0.42085099794909797]]] [[[0.1714032167820071 0.3772432398563029]]]]] [[[[[0.47670014147763684 0.11804969778429719]]] [[[0.21734738803245524 0.3136377996098215]]]] [[[[0.654090644864574 0.5837292804479258]]] [[[0.2428740763846241 0.881219203979655]]]]] [[[[[0.9084699989976981 0.5655702421510119]]] [[[0.12922797126550856 0.625666945245]]]] [[[[0.8310239033862947 0.9362895197957842]]] [[[0.5994508223309308 0.5191170988424871]]]]]]] [[[[[[[0.47015710492015417 0.23866279027228854]]] [[[0.5003154536695134 0.8390164622392152]]]] [[[[0.6548481339027006 0.45356441605401465]]] [[[0.3934272860697885 0.23704304533213483]]]]] [[[[[0.6646228574199258 0.7812687344487123]]] [[[0.04333874004668559 0.9006549500595964]]]] [[[[0.6734433011821406 0.03166911586504362]]] [[[0.46911392312299693 0.8307115547538874]]]]] [[[[[0.3328137133103747 0.759446264825542]]] [[[0.22778667572138922 0.7890767394296839]]]] [[[[0.1375788776077993 0.44931102168083537]]] [[[0.11795805287609307 0.3657600219420638]]]]]] [[[[[[0.4124216886847434 0.6290770999707093]]] [[[0.8600318879667042 0.05168138296194691]]]] [[[[0.7670572154198515 0.21292885230708092]]] [[[0.9731759304048796 0.34439353960586483]]]]] [[[[[0.9381591536775669 0.6784302992898562]]] [[[0.02760178434178162 0.24783997871682817]]]] [[[[0.39209217979819466 0.34137948910675087]]] [[[0.31609214613554704 0.8647780755091522]]]]] [[[[[0.05126103189391906 0.7754532189333747]]] [[[0.8270462339049447 0.2602426898703213]]]] [[[[0.5830107562930411 0.07693085105160813]]] [[[0.6984301102570909 0.0428186718059006]]]]]] [[[[[[0.44630914874002625 0.9801122362630065]]] [[[0.998454486606044 0.17162918028528562]]]] [[[[0.312450650821682 0.03321553634995833]]] [[[0.9336383060163004 0.836461749816628]]]]] [[[[[0.4250421111569087 0.8341318473270232]]] [[[0.7798125705947425 0.7240473578038494]]]] [[[[0.13612426885135598 0.1499878390530167]]] [[[0.9204585370377957 0.051646177072314225]]]]] [[[[[0.7689600507955576 0.7806871909446708]]] [[[0.9251924532313006 0.7362871019358154]]]] [[[[0.21766162974566206 0.1022972563791823]]] [[[0.25371597794630596 0.6927207111219782]]]]]] ... [[[[[[0.809643424987847 0.20797213337044174]]] [[[0.20023680040865155 0.17392943644661274]]]] [[[[0.18831148347865512 0.5951193686958276]]] [[[0.2936410561149251 0.7676804723014966]]]]] [[[[[0.8021088417710305 0.10882962250395589]]] [[[0.8068266816483712 0.2519242735459277]]]] [[[[0.8789977809815581 0.4939402331328002]]] [[[0.6465187951617759 0.08803423330070859]]]]] [[[[[0.013906650457034209 0.04757527552270846]]] [[[0.985178929329828 0.212271958308632]]]] [[[[0.015423949895962408 0.7387641468051845]]] [[[0.9168503241153407 0.17929786561855754]]]]]] [[[[[[0.3612471181173639 0.02035036992081729]]] [[[0.030477710699590932 0.35987631787659025]]]] [[[[0.9710057357606556 0.9389946696314179]]] [[[0.8864644888112039 0.13879144188932002]]]]] [[[[[0.2017800902857103 0.8608888593045283]]] [[[0.5659844364545998 0.07354312708811861]]]] [[[[0.7382132122829056 0.6106781638711786]]] [[[0.39645651895610845 0.7995450589909238]]]]] [[[[[0.5486475053596734 0.9175287213033477]]] [[[0.4970341815834457 0.08694957074904242]]]] [[[[0.7096615255989246 0.9054739645756336]]] [[[0.04208031614746566 0.8580205700707303]]]]]] [[[[[[0.7775150942724289 0.3437309642667139]]] [[[0.006576550826769667 0.8817004033330155]]]] [[[[0.44676941781908563 0.556139441168106]]] [[[0.9762342277133242 0.1321720540652883]]]]] [[[[[0.6916538181893102 0.06475989310861485]]] [[[0.5447156927480105 0.8285499519485315]]]] [[[[0.23986816782193643 0.8732030977245239]]] [[[0.2990048855357281 0.600037239887619]]]]] [[[[[0.12756852781458317 0.08786967181370553]]] [[[0.29465755128167337 0.7921447905309101]]]] [[[[0.7654265300083163 0.05333590814680089]]] [[[0.9791717586305914 0.2575636046862133]]]]]]] [[[[[[[0.42289966827701686 0.836472456678108]]] [[[0.28746803009603494 0.7486790585335444]]]] [[[[0.03625263817425972 0.20572968829178462]]] [[[0.46137460557498444 0.31508807120954085]]]]] [[[[[0.6862813763482165 0.5624714265939907]]] [[[0.4992308866404137 0.788494284632237]]]] [[[[0.6355155522936857 0.06129905103279787]]] [[[0.6885836163798476 0.7685142736232486]]]]] [[[[[0.9995010830235753 0.271656209484328]]] [[[0.8941488715858923 0.024342857724629297]]]] [[[[0.32214476473436326 0.11923018742200675]]] [[[0.4544711087383263 0.9120362992019645]]]]]] [[[[[[0.15014060540346852 0.4998599923710241]]] [[[0.7196707666578328 0.021062891643100157]]]] [[[[0.34766687520778583 0.536750267231243]]] [[[0.5780813240414728 0.750709023405469]]]]] [[[[[0.44462834105865967 0.14862300508635784]]] [[[0.10574897785755866 0.5547492862760149]]]] [[[[0.8841801994460666 0.9189900705638924]]] [[[0.4743673625870145 0.16984877658562836]]]]] [[[[[0.021749890388553683 0.707827167176504]]] [[[0.5560103570070654 0.16299574555793905]]]] [[[[0.42602588304299804 0.8844651661979215]]] [[[0.0977267917724769 0.22240457322150708]]]]]] [[[[[[0.9522911931252394 0.7382976445392286]]] [[[0.13981622453134246 0.38736741137610653]]]] [[[[0.3209578989806585 0.5159470974881493]]] [[[0.17375905634672806 0.05778816139335019]]]]] [[[[[0.27714278214024124 0.5358717403837661]]] [[[0.10278041914949954 0.26184931201442396]]]] [[[[0.5725715362019542 0.6277960267005928]]] [[[0.133679436788828 0.8608415279299455]]]]] [[[[[0.7575447027217224 0.4381409119983074]]] [[[0.6764052760872281 0.43836983088644466]]]] [[[[0.9029393756557368 0.8708911557421026]]] [[[0.5126607733134674 0.3387626468147321]]]]]] ... [[[[[[0.2747374346209741 0.805181718420814]]] [[[0.720341120868041 0.8958174569894715]]]] [[[[0.3617382223837734 0.8158422862340432]]] [[[0.34933940970246424 0.5799758123497681]]]]] [[[[[0.5972829062704582 0.09803516260890688]]] [[[0.544355413614579 0.5810313614443969]]]] [[[[0.04099395959113261 0.7274199308234336]]] [[[0.04777810184887865 0.34795243783612595]]]]] [[[[[0.4744761547736517 0.5531118911039946]]] [[[0.6476944420433159 0.16146861578899574]]]] [[[[0.9713241949488182 0.4269720554020384]]] [[[0.5946194131100301 0.17859032400351704]]]]]] [[[[[[0.5534756109292827 0.8622154669004152]]] [[[0.3769247901155448 0.8374314239542284]]]] [[[[0.7483229674319598 0.9176161601156358]]] [[[0.34956621234343377 0.404171857568174]]]]] [[[[[0.49652166588721924 0.9243167269854229]]] [[[0.6508540468480749 0.9306846196765924]]]] [[[[0.5382575191888994 0.5754394165333659]]] [[[0.8027858466711331 0.7238047714799769]]]]] [[[[[0.0896306743023102 0.5779037201621497]]] [[[0.8783064687394861 0.21867221098888823]]]] [[[[0.19400252113818162 0.7586404980880476]]] [[[0.6732321110443045 0.10007893434694881]]]]]] [[[[[[0.7326854733650322 0.29465912250108095]]] [[[0.2100472340001911 0.991599022205741]]]] [[[[0.8629937046261564 0.9250214942395001]]] [[[0.41505016611015755 0.7813969239587261]]]]] [[[[[0.2560036968896283 0.7118324271371612]]] [[[0.0033960805454886778 0.654468127493206]]]] [[[[0.8297228212201527 0.7260823787503787]]] [[[0.41863427458211055 0.74854161392289]]]]] [[[[[0.8906129038948747 0.11576005455462157]]] [[[0.8569496707631714 0.22456294061136306]]]] [[[[0.7223481988898319 0.013676500861254604]]] [[[0.672556733087627 0.2006682996417848]]]]]]]] [[[[[[[[0.012134386295582167 0.9468837745739684]]] [[[0.010423355860599393 0.7370365840985229]]]] [[[[0.6925519089553519 0.8624856047848052]]] [[[0.07594058389719471 0.8247527649939774]]]]] [[[[[0.7268992860895496 0.4842515582462218]]] [[[0.16115393749986828 0.9652304191700494]]]] [[[[0.3694841028323763 0.6775732499992388]]] [[[0.39227203578851955 0.08069111108464788]]]]] [[[[[0.9388104319006669 0.12476254374429674]]] [[[0.7200651744564704 0.9626173854000935]]]] [[[[0.03975112344431475 0.5834741902085059]]] [[[0.33876922853377167 0.8738548670388357]]]]]] [[[[[[0.179176955545037 0.23247608597031433]]] [[[0.1900171999507242 0.7839362084836329]]]] [[[[0.9184045588271935 0.9990759817131711]]] [[[0.9263429629441872 0.4286681672419581]]]]] [[[[[0.3842358144530774 0.03301209897418533]]] [[[0.8082290993906068 0.7787430927017148]]]] [[[[0.960166143669977 0.8910814164762236]]] [[[0.9206796832271515 0.6805800767227883]]]]] [[[[[0.2559137554335448 0.10882875297366112]]] [[[0.3543735874069097 0.08901869285964059]]]] [[[[0.06666150610941646 0.5258756998092549]]] [[[0.9720852963753852 0.05763654035968235]]]]]] [[[[[[0.8769361304903212 0.8590690246928028]]] [[[0.33350242184040946 0.21130025686738685]]]] [[[[0.984189174572355 0.12839852035573363]]] [[[0.3642227385688588 0.6867418639232413]]]]] [[[[[0.08209892116232687 0.8071604597777577]]] [[[0.8496848977742265 0.9481352645354293]]]] [[[[0.8793810867369675 0.003257975528153767]]] [[[0.32032486654753234 0.28797333484849075]]]]] [[[[[0.6009583231459399 0.43371366039264814]]] [[[0.24946681274633598 0.679991623719087]]]] [[[[0.2876670985260338 0.6112291137967205]]] [[[0.9708765384925789 0.09399631022491306]]]]]] ... [[[[[[0.08917288469416695 0.4147126811477242]]] [[[0.18606482479139108 0.35747818889203364]]]] [[[[0.8419276205300678 0.5751467309307696]]] [[[0.8685743607166865 0.5700603620511671]]]]] [[[[[0.6597802819036059 0.9852544476533145]]] [[[0.6638149950880645 0.11425812690806814]]]] [[[[0.8599096432187626 0.7518760720412571]]] [[[0.8704210645676557 0.3452434358005366]]]]] [[[[[0.505366030287084 0.415492267963223]]] [[[0.6683599682788388 0.8798881643914507]]]] [[[[0.6922502354759716 0.10950453978794283]]] [[[0.05041346468711383 0.8408935316711338]]]]]] [[[[[[0.04873135777989479 0.04638059563658481]]] [[[0.3884354552780196 0.5512320609403423]]]] [[[[0.9884917855468227 0.27913284307953545]]] [[[0.9547977280966451 0.98761893113134]]]]] [[[[[0.5348808722637777 0.5665171273511]]] [[[0.17806049590619288 0.8346917387388344]]]] [[[[0.526993641392946 0.9993633768409915]]] [[[0.056664923422632185 0.7166769566789613]]]]] [[[[[0.09676000991533984 0.625952876825722]]] [[[0.9639951472327988 0.13570251364478314]]]] [[[[0.06349174269064262 0.6380639686920739]]] [[[0.4342351691134577 0.5882699026054656]]]]]] [[[[[[0.9275924988080231 0.22211467715626565]]] [[[0.22451447061301044 0.23025884407904895]]]] [[[[0.408369187360499 0.053872007924073206]]] [[[0.9094137299188864 0.4083036009446541]]]]] [[[[[0.7673357419415018 0.07822318546966511]]] [[[0.4036000389836153 0.7447990557088069]]]] [[[[0.9258460627905103 0.5950647685418662]]] [[[0.05593251789431908 0.7469912172934907]]]]] [[[[[0.1530791708446534 0.3442435219486496]]] [[[0.09164221756045277 0.7994621053408925]]]] [[[[0.139659125438377 0.6546201181626702]]] [[[0.011650233381640507 0.9710751581755603]]]]]]] [[[[[[[0.7737563635223301 0.3447996969431292]]] [[[0.7033287028674573 0.6442461532303141]]]] [[[[0.9325140197973365 0.6580819376318309]]] [[[0.633368208764669 0.8656188772892064]]]]] [[[[[0.2658124673602702 0.9885017127156578]]] [[[0.49925578061355824 0.8105713113210467]]]] [[[[0.2997066408582363 0.9607593962836238]]] [[[0.597568475059737 0.3612908810562222]]]]] [[[[[0.8061896354152368 0.284280631703689]]] [[[0.7672835156385679 0.5951524251868812]]]] [[[[0.6015746161531585 0.7383564190378826]]] [[[0.6076750530744032 0.26977942748256023]]]]]] [[[[[[0.3936337556166817 0.41873184494021976]]] [[[0.663082321992796 0.3404533130368118]]]] [[[[0.4213358978190389 0.39071296112829623]]] [[[0.851246614715562 0.31364696310200735]]]]] [[[[[0.5555404080726393 0.28278690763038705]]] [[[0.16715439132838328 0.653222383361989]]]] [[[[0.564766164110768 0.8497086299421159]]] [[[0.48864724923823444 0.8451479542188752]]]]] [[[[[0.8067092823102345 0.6929525739747814]]] [[[0.10603966824041022 0.22157417523748946]]]] [[[[0.7809788943181217 0.6875497479092622]]] [[[0.9543757937270717 0.15394932132090466]]]]]] [[[[[[0.34913912132638303 0.1127229564005715]]] [[[0.7411935214853088 0.2173889958435563]]]] [[[[0.6820652147495616 0.8758837640238534]]] [[[0.14590411235856948 0.9025980296983781]]]]] [[[[[0.5680088204091039 0.138534127253225]]] [[[0.43070172665946127 0.32353727100002283]]]] [[[[0.10954345031828927 0.7050360615371916]]] [[[0.5919821864019128 0.4632355125715846]]]]] [[[[[0.09313601634618407 0.028029710332949098]]] [[[0.49362303542417596 0.08140949436374145]]]] [[[[0.46271494845457495 0.0009951355480128932]]] [[[0.9808784866312013 0.5981374697511166]]]]]] ... [[[[[[0.7352623049851789 0.9039181409445222]]] [[[0.6140568652167394 0.7767226225876821]]]] [[[[0.9579194162724981 0.0495727224682323]]] [[[0.43289374705940775 0.01613522664612721]]]]] [[[[[0.5388626905027118 0.8786034172810844]]] [[[0.020156627463074006 0.24023034650601915]]]] [[[[0.36327279027958603 0.5508486709970133]]] [[[0.6314459667350724 0.5419415143896431]]]]] [[[[[0.959875632500674 0.5318384327791176]]] [[[0.4303357101431784 0.40996960235016433]]]] [[[[0.83887417266437 0.7487211719872356]]] [[[0.39113234313157885 0.3744747565451021]]]]]] [[[[[[0.22027248750168338 0.24993340639681882]]] [[[0.24527275709704532 0.8452559011659223]]]] [[[[0.40614504750709257 0.1886366217820995]]] [[[0.49874277418688584 0.8646424024323509]]]]] [[[[[0.9231526027581621 0.8886864262716919]]] [[[0.7124465919725518 0.3658771334736587]]]] [[[[0.8809267030206577 0.807197188290274]]] [[[0.9966829378475651 0.19601579125614255]]]]] [[[[[0.881232960585753 0.000494366880611441]]] [[[0.03583166383517533 0.9651244488398377]]]] [[[[0.09488206419531231 0.13952496169242024]]] [[[0.2762492049148445 0.17430639905087497]]]]]] [[[[[[0.3723517283649155 0.00018305600315793313]]] [[[0.26082491998177026 0.22772999189582577]]]] [[[[0.8181041697170912 0.8408213689197265]]] [[[0.40009195530462827 0.833536698941057]]]]] [[[[[0.6518847584963037 0.4621779467125098]]] [[[0.614153782117242 0.6033137962807585]]]] [[[[0.5319404921262643 0.9488838453055634]]] [[[0.4532189045749213 0.34486970462345745]]]]] [[[[[0.38855388699023086 0.8584088123233913]]] [[[0.8426782712629711 0.2247588005541018]]]] [[[[0.6493575784503105 0.2734328101852226]]] [[[0.1725337877176315 0.26222962740427125]]]]]]] [[[[[[[0.9042897970797834 0.917329542648438]]] [[[0.0021309490924876773 0.30176097704753224]]]] [[[[0.4617772061348683 0.40991811796416655]]] [[[0.25912397758944594 0.047597560118331605]]]]] [[[[[0.81573661122827 0.2082300929285551]]] [[[0.30326854719761187 0.23892751786141841]]]] [[[[0.7751585639062966 0.6231592773512782]]] [[[0.156672259989584 0.31750997764979283]]]]] [[[[[0.737525956995468 0.8864454125314934]]] [[[0.2913518660962814 0.11585856416706686]]]] [[[[0.2647469953307573 0.423542936668592]]] [[[0.601586359922001 0.6377265840559869]]]]]] [[[[[[0.940277162024295 0.9924682781441792]]] [[[0.011112256914523222 0.5827662543378211]]]] [[[[0.9683287959457851 0.02387628830932964]]] [[[0.9815002339858313 0.11888101703754839]]]]] [[[[[0.9824900616562016 0.4808357349603848]]] [[[0.05108621360797405 0.0008652879766216648]]]] [[[[0.21718186090589786 0.5998788204173333]]] [[[0.8401523210540845 0.12177777178860316]]]]] [[[[[0.41489555671922196 0.6155591837594456]]] [[[0.45152526170896634 0.5254814425922043]]]] [[[[0.8862432198089855 0.44592787602429795]]] [[[0.8058795136604111 0.615648160323691]]]]]] [[[[[[0.8750870520743619 0.09129858608659625]]] [[[0.9632142384621128 0.9824479251825937]]]] [[[[0.3382140182133212 0.41520891591119946]]] [[[0.11608872411155469 0.18766000214495926]]]]] [[[[[0.24987243167116913 0.9910409935499667]]] [[[0.22179352337881963 0.21851197755419915]]]] [[[[0.26389650379453544 0.48813995267593546]]] [[[0.775350282457942 0.008189691795081888]]]]] [[[[[0.9384545276398295 0.42778450593583306]]] [[[0.22735261817164443 0.08290698875079483]]]] [[[[0.16832544455578136 0.8014982213310567]]] [[[0.2515112517786925 0.8792604820198341]]]]]] ... [[[[[[0.43932161547922755 0.28937131173292496]]] [[[0.9670649981567726 0.6860226821926073]]]] [[[[0.5621620051695515 0.8513307841126873]]] [[[0.6835597102438236 0.1778485332568167]]]]] [[[[[0.90672507234159 0.3981579458060772]]] [[[0.46541960078090794 0.3398280772744333]]]] [[[[0.33334575912784314 0.2720617952797937]]] [[[0.826342198853428 0.3445620709014906]]]]] [[[[[0.5200538743401231 0.9644818004986125]]] [[[0.9268618280513005 0.09310289089036172]]]] [[[[0.6028754934890437 0.4727429328979492]]] [[[0.3194659228083273 0.7768295112004275]]]]]] [[[[[[0.9927476924769809 0.21944607757704349]]] [[[0.8269929376709305 0.4167592991683956]]]] [[[[0.9857377910123818 0.1381217216416929]]] [[[0.6232236071188103 0.729411209018606]]]]] [[[[[0.0419253037840962 0.2412449042869521]]] [[[0.5010484232124779 0.446597680772701]]]] [[[[0.5979081178966884 0.19258759091345823]]] [[[0.34333223220978315 0.7735205483360326]]]]] [[[[[0.9888893670718474 0.6560835763723526]]] [[[0.7897395146747362 0.14501798032299817]]]] [[[[0.08110416687131694 0.6634541939434871]]] [[[0.5369713115240794 0.26442760457288816]]]]]] [[[[[[0.5430691316695699 0.6291287441385944]]] [[[0.720577514959724 0.29898099261940947]]]] [[[[0.7744138160494496 0.5989156947384948]]] [[[0.44870769764201235 0.36192966502082424]]]]] [[[[[0.9841377834529167 0.29171380408110426]]] [[[0.49164684384653257 0.7086099777501342]]]] [[[[0.4189859153519415 0.10857672232669247]]] [[[0.30237455726764406 0.6559742927451425]]]]] [[[[[0.17978309618855093 0.9043963356450455]]] [[[0.36253312096649815 0.9256734216220139]]]] [[[[0.02806406083698254 0.43052332779520575]]] [[[0.7001681315510269 0.04216704595937326]]]]]]] [[[[[[[0.7225714125945756 0.9107619702611298]]] [[[0.6743606080689091 0.7751915526565859]]]] [[[[0.5524691471550222 0.05520954276793155]]] [[[0.3351991963578329 0.8814810114907468]]]]] [[[[[0.7805018741900993 0.7685224906929501]]] [[[0.15936382130728777 0.30814839269947825]]]] [[[[0.5766884453544786 0.21528192499409915]]] [[[0.07356568444223122 0.6807768373782251]]]]] [[[[[0.8451612412648839 0.3718199640224771]]] [[[0.15608989496781567 0.342493698875159]]]] [[[[0.11958166168213957 0.9659658864920663]]] [[[0.1738292077927619 0.594770457779824]]]]]] [[[[[[0.7863931288874553 0.2789369644153381]]] [[[0.40125386937480967 0.5153671771324838]]]] [[[[0.3313366880246398 0.8991802883922303]]] [[[0.7043407140381921 0.2584720070432087]]]]] [[[[[0.04366668143839003 0.28404500936586485]]] [[[0.06060022348480021 0.6380542615601271]]]] [[[[0.8118399503460925 0.01234197834891615]]] [[[0.5682071995865584 0.7880013426060463]]]]] [[[[[0.502944729889341 0.23402752534748505]]] [[[0.348480692107927 0.3630234544004596]]]] [[[[0.18706833315082128 0.5955795328288037]]] [[[0.8346529736576499 0.3592663241441094]]]]]] [[[[[[0.10279619410460294 0.1364987194034164]]] [[[0.04465943825841501 0.9770521702609483]]]] [[[[0.7701767371607303 0.553887481975154]]] [[[0.8474741233520483 0.7907880768725417]]]]] [[[[[0.31396537616409814 0.8200954700253958]]] [[[0.8387215869735721 0.2691220099375212]]]] [[[[0.35110768787684943 0.7110615522137902]]] [[[0.1573979010217521 0.8139868780576086]]]]] [[[[[0.21479675254978325 0.19020510328453233]]] [[[0.5679019802317506 0.3089407971157324]]]] [[[[0.791496414222018 0.3256843861787724]]] [[[0.4273537220757583 0.41910996575654247]]]]]] ... [[[[[[0.3491441744339412 0.5272417129152939]]] [[[0.6298120196961695 0.28323448754256697]]]] [[[[0.660635135965253 0.7361063839734745]]] [[[0.19179990067617836 0.37198584811112734]]]]] [[[[[0.6601336180742633 0.1789666973852312]]] [[[0.1020324697726186 0.748139023745916]]]] [[[[0.1410247935730351 0.2710695035084182]]] [[[0.1163091841131274 0.4147242565150565]]]]] [[[[[0.3033518437331727 0.7983789791305479]]] [[[0.4648073185664705 0.6425004380284601]]]] [[[[0.3489334761964792 0.8683983543577757]]] [[[0.6776514688835468 0.03182842713686196]]]]]] [[[[[[0.5996275725783324 0.05308942026300101]]] [[[0.7901400650360252 0.05607072535353441]]]] [[[[0.8053567723103394 0.2265097443491063]]] [[[0.8298588156543407 0.8067814976881773]]]]] [[[[[0.5427789352980286 0.15883246386689864]]] [[[0.6173705969473449 0.8283677784562091]]]] [[[[0.3587108256924779 0.8272822475340008]]] [[[0.35648461224873385 0.5784807863667629]]]]] [[[[[0.8611958078658528 0.4174678445966452]]] [[[0.2556827692672473 0.4342798447113789]]]] [[[[0.29726619510188335 0.9816783613219084]]] [[[0.5354065757506657 0.5674019477737442]]]]]] [[[[[[0.004977145608275668 0.3957035572232732]]] [[[0.1394895943621739 0.7219985474623527]]]] [[[[0.7379192773651663 0.8422477287828828]]] [[[0.3298902721755289 0.021913242593538218]]]]] [[[[[0.05900752913148766 0.5977010383099831]]] [[[0.97963574368791 0.14109752993290592]]]] [[[[0.27405968345335363 0.666742431772093]]] [[[0.6252565936265614 0.300515298646445]]]]] [[[[[0.8492926170057826 0.47991472147106173]]] [[[0.1729015098397393 0.010564104644247396]]]] [[[[0.44367078166755247 0.6870109670228532]]] [[[0.15333916197217434 0.04564605544937139]]]]]]]]]
Units CH4 gigagram/year - population(time, area (ISO3), provenance, model, source)float64[] 0.3573 0.2594 ... 0.06831 0.1225
- entity :
- population
Magnitude [[[[[0.357315071421043 0.25937718706214696]]] [[[0.339345294587049 0.8877985255151444]]] [[[0.25786689859833856 0.3228233290114232]]] [[[0.5747785796274842 0.8289485397374499]]]] [[[[0.8889384948962028 0.6284414125115073]]] [[[0.8564972605038893 0.5945543782181283]]] [[[0.19637025003038655 0.5121157095123902]]] [[[0.906541260506393 0.711338583722834]]]] [[[[0.55163843365575 0.9501090251487323]]] [[[0.92635511639969 0.28426245843681464]]] [[[0.3156733475381024 0.48116445095591664]]] [[[0.1292397514318494 0.9922558630066104]]]] [[[[0.8168152722073521 0.7211249092388876]]] [[[0.35019129853691155 0.2082790823579086]]] [[[0.6258399577514162 0.9110490043952719]]] [[[0.17389486799037068 0.0704594415508154]]]] [[[[0.3027648871091031 0.9758306184530241]]] [[[0.8453278536402771 0.3631715375979975]]] [[[0.15496519555236798 0.9653908944301072]]] [[[0.7341247987824955 0.07577615418880357]]]] [[[[0.00025440316582525657 0.08622357857803364]]] [[[0.09451428876832779 0.2788508831654073]]] [[[0.3496481143945145 0.08207131876048401]]] [[[0.697382737225769 0.14289257131150146]]]] [[[[0.3030608976786755 0.8183245338693593]]] [[[0.759051289859381 0.8405999739200516]]] [[[0.6132459297957789 0.7597068258834613]]] [[[0.051424320125745715 0.6150011580484733]]]] [[[[0.9065016082332655 0.3863949748745389]]] [[[0.4006411525006125 0.15473297256307705]]] [[[0.20820100683584708 0.621116922125307]]] [[[0.5903738621783348 0.5676957565874283]]]] [[[[0.971197733107378 0.3456812620946975]]] [[[0.7423929136087125 0.27352383006136005]]] [[[0.4271589905157227 0.44279010878145453]]] [[[0.11323832107880016 0.9566835776588906]]]] [[[[0.18354465280779808 0.9441850479367366]]] [[[0.5493406434120713 0.5104158161169305]]] [[[0.31471898101074425 0.15944974119914168]]] [[[0.429576196492107 0.630934716201911]]]] [[[[0.31937032959090783 0.9159228507339587]]] [[[0.35025700161306406 0.525786094718297]]] [[[0.8789072590690399 0.20814930738874482]]] [[[0.13911160641687947 0.016195316868251042]]]] [[[[0.8733901322157027 0.4075403095590656]]] [[[0.2930392472262875 0.9967801030138953]]] [[[0.24935242447968686 0.002475150023857453]]] [[[0.4107454481044176 0.07146752361945286]]]] [[[[0.5602407519583495 0.6968111335364858]]] [[[0.2198348589500454 0.46720092603342456]]] [[[0.817696562741738 0.1128742986720005]]] [[[0.666130137107265 0.3145927328784175]]]] [[[[0.37512316454513384 0.668908660020322]]] [[[0.2644772499916729 0.022287652740373365]]] [[[0.11662130642867397 0.9746412247514064]]] [[[0.10096446945814697 0.9671888582014962]]]] [[[[0.785628382345371 0.5809972478092711]]] [[[0.7103259623188165 0.7266554344408567]]] [[[0.017349273635154705 0.2615346703220407]]] [[[0.8584508585421997 0.6002239155930157]]]] [[[[0.6325541949856279 0.5353627050880183]]] [[[0.37592634864189434 0.6551931197565463]]] [[[0.0745790823956759 0.038895275097243553]]] [[[0.34713431352252055 0.01085620981952684]]]] [[[[0.49760679144568676 0.9815600773570016]]] [[[0.5576208722388214 0.8484571736181754]]] [[[0.36169491534440434 0.1832712203809468]]] [[[0.06235639528718806 0.8179131188259566]]]] [[[[0.9236458881640097 0.3778239334925947]]] [[[0.4837041757828011 0.40315692092278554]]] [[[0.04827344053407734 0.6971835008929365]]] [[[0.24560770164260748 0.07734307138841034]]]] [[[[0.24066604322659457 0.37324832305573763]]] [[[0.8177881706534565 0.22087585564351198]]] [[[0.46234532172074594 0.14326588627752956]]] [[[0.993945085172863 0.32828501115377084]]]] [[[[0.7309043630879523 0.7635680843902257]]] [[[0.017734256162662887 0.991103884033524]]] [[[0.6684144986983757 0.2728728649196328]]] [[[0.08735002713911078 0.49457305635038606]]]] [[[[0.3664134159509357 0.54960561949004]]] [[[0.7785404037066763 0.4322614162302748]]] [[[0.7824617796050317 0.6340520579061091]]] [[[0.06830955618511025 0.122522137803875]]]]]
Units dimensionless - SF6 (SARGWP100)(time, area (ISO3), category (IPCC 2006), animal (FAOSTAT), product (FAOSTAT), scenario (FAOSTAT), provenance, model, source)float64[CO2·Gg/a] 7.231e+03 ... 1.101e+03
- entity :
- SF6
- gwp_context :
- SARGWP100
Magnitude [[[[[[[[[7230.755349605592 1022.5735599489494]]] [[[2395.231794454923 22012.319749059403]]]] [[[[18171.67076880367 11091.02983115112]]] [[[20811.98228749641 9421.035270045955]]]]] [[[[[17966.640543818405 7031.2790306283005]]] [[[21155.412217203368 12928.586023657494]]]] [[[[1613.2977287986578 1150.0376362603226]]] [[[22968.322648427413 18360.127671130453]]]]] [[[[[22329.112189363394 17561.879800781437]]] [[[1275.888356991312 3192.7824219945387]]]] [[[[14733.025497001448 5931.740356854261]]] [[[21412.580136636847 23398.889079966204]]]]]] [[[[[[22714.104185350203 11108.340333257804]]] [[[586.3415571664194 22944.917395854667]]]] [[[[6653.373643871041 14957.272436317873]]] [[[7940.4477996930855 9776.317146117133]]]]] [[[[[7270.293253731998 8660.44309512411]]] [[[13075.553618476413 15770.351197266136]]]] [[[[23588.02380900144 10372.45842371914]]] [[[3710.6345551794593 2692.0659494335396]]]]] [[[[[20429.720663582615 20516.92053795325]]] [[[18200.68008843774 18737.065325879394]]]] [[[[23179.324599510164 9496.54851355411]]] [[[23190.805729321044 23821.17289137178]]]]]] [[[[[[20775.077730256147 1302.0740402904605]]] [[[9194.641163472916 3423.243186781467]]]] [[[[15108.661971934467 2945.751609928192]]] [[[6092.527118084872 13180.779386154902]]]]] [[[[[14821.820968595825 6651.544348243904]]] [[[12990.370281713722 1108.7302705161044]]]] [[[[14330.248316844545 3247.8336688635786]]] [[[19418.34443282995 1034.781427214196]]]]] [[[[[17702.969185766207 11719.892869078143]]] [[[9394.11719161033 12148.309097229292]]]] [[[[21378.93749501965 14289.259274073805]]] [[[1847.9739355574259 1967.5054796094328]]]]]] ... [[[[[[9691.809664910654 13616.451316240302]]] [[[21211.011332145972 11313.434637144337]]]] [[[[11110.53573464617 14179.382901482652]]] [[[18646.890757280366 7491.550723620081]]]]] [[[[[7070.85987580302 3761.453605657811]]] [[[7589.085874179052 19500.94201521045]]]] [[[[8771.972555861206 4241.450318122412]]] [[[14948.439856594829 22655.041179582717]]]]] [[[[[4657.354388512449 23705.30061953246]]] [[[3652.9238242371534 15677.747166593494]]]] [[[[17117.53412720536 6988.093239560263]]] [[[12265.457915087998 5032.030532409337]]]]]] [[[[[[17218.208681721506 9365.84786074618]]] [[[20392.600503863203 23519.463858121246]]]] [[[[10736.29015195292 4339.416376620272]]] [[[19364.863122763323 1720.423136856989]]]]] [[[[[13408.510612266438 8989.29573960684]]] [[[18974.269009121323 5050.385310406396]]]] [[[[6995.539108124723 22190.205693730342]]] [[[13020.348622490832 3669.123705957523]]]]] [[[[[1914.4198888191434 11442.490780281341]]] [[[4611.384841607092 1740.8754037898486]]]] [[[[432.54198864019384 3786.9285117443865]]] [[[20155.711717154158 10307.30439575613]]]]]] [[[[[[9662.330915447059 4520.506523175874]]] [[[3755.7412140809397 23512.51980704929]]]] [[[[6412.057615759274 20279.65080054611]]] [[[12730.86121589889 20364.5891067344]]]]] [[[[[22614.103349144672 2095.0941124503415]]] [[[20568.384498695843 15398.217712552025]]]] [[[[931.0322582664959 21800.74586268238]]] [[[16406.939432764895 2266.25505529751]]]]] [[[[[1233.9502124348792 13084.769664512047]]] [[[14666.944258937381 6153.907760230935]]]] [[[[10265.828363341356 14547.058577970145]]] [[[6973.128065309481 20991.359832380545]]]]]]] [[[[[[[20020.611773670702 15088.301903429334]]] [[[21854.97600326967 8754.15570567863]]]] [[[[16311.038393042654 15788.678761065748]]] [[[20684.46699757825 2442.5886406059503]]]]] [[[[[5088.785995112983 22287.37245321958]]] [[[3099.542997561197 18473.83585324993]]]] [[[[12000.746235786679 12132.790435229816]]] [[[4098.909017901507 19825.038119060362]]]]] [[[[[8150.807033869828 21917.91881417126]]] [[[15383.326853192477 17877.26671824998]]]] [[[[10483.187716447206 9164.259395160576]]] [[[10914.558923807113 7046.764208847463]]]]]] [[[[[[20292.865574697276 9045.577370587955]]] [[[7944.477178820833 19087.94068851184]]]] [[[[7034.522103708502 859.3096454931466]]] [[[19357.245919877638 17657.471013678864]]]]] [[[[[16997.750227466866 6552.788509034757]]] [[[6003.648149845191 5090.624695672678]]]] [[[[16878.230152253625 18622.028806449023]]] [[[8543.14563365472 290.26164950699274]]]]] [[[[[5766.0366639400845 14437.47104265893]]] [[[20412.468628044353 23347.699550782854]]]] [[[[15125.699111149692 22618.972184938404]]] [[[532.243622491446 20658.35939863892]]]]]] [[[[[[13541.952990642842 6221.559360902384]]] [[[11983.180473447144 11830.07257505596]]]] [[[[2055.155586939143 5837.691565640749]]] [[[19789.945957515356 3842.0204334203713]]]]] [[[[[1393.6063480398966 20708.9959104182]]] [[[22776.874948711313 21908.875357933965]]]] [[[[2747.6655553815003 2893.8815764292094]]] [[[2994.521192889496 21581.509968971637]]]]] [[[[[6342.026885518947 12040.84706426158]]] [[[11869.613328506503 19005.66817229152]]]] [[[[21655.547812720833 20333.465824122297]]] [[[3149.0230339757422 5075.254986571254]]]]]] ... [[[[[[11.472471915222282 15227.779905748994]]] [[[2409.675012807832 9531.486580760422]]]] [[[[6063.728218795782 17057.86620105214]]] [[[16865.41505512609 20244.892144166468]]]]] [[[[[17478.97689481264 6273.693313531429]]] [[[22105.518864430665 15625.098984795497]]]] [[[[12415.039208982962 14239.480981919442]]] [[[19180.88642330072 2912.1353542499505]]]]] [[[[[16682.591251179245 13011.449907841758]]] [[[819.3658093786997 16372.805617349964]]]] [[[[13607.397936408763 8526.616983755679]]] [[[11793.551829835646 9006.063280734157]]]]]] [[[[[[15068.089891313602 13664.436511957134]]] [[[13411.767766216784 284.73812811828896]]]] [[[[8874.272406210179 22534.695958105567]]] [[[7532.188450189531 5558.749185641364]]]]] [[[[[23646.15540258298 4893.114517758081]]] [[[10289.711811500189 16556.628176452265]]]] [[[[4214.819692115417 14541.363509621491]]] [[[21599.386115092253 7864.983923392369]]]]] [[[[[10514.362471557613 6091.090899119751]]] [[[7809.129162448424 18174.61931484725]]]] [[[[1150.7249054511537 1815.4630188446438]]] [[[8778.896809983531 12201.557598066718]]]]]] [[[[[[19654.284100363144 16708.1881733437]]] [[[16375.465138646176 3930.410122905095]]]] [[[[16276.987169048229 21812.804313875225]]] [[[10259.915936775913 9452.237676424684]]]]] [[[[[16004.232235127742 20148.63686948846]]] [[[20743.38824766262 4475.753615264272]]]] [[[[14948.296845401754 9357.410050478231]]] [[[801.542607765734 21995.34228943427]]]]] [[[[[20112.910348200894 21889.5670376228]]] [[[18015.10303706094 12511.948862886089]]]] [[[[2620.3804989414184 14302.112479985733]]] [[[2733.3569497095536 1458.6034476495422]]]]]]] [[[[[[[9045.747675930925 20585.703508538376]]] [[[20496.317027785597 3603.0293724886374]]]] [[[[18541.49073813235 22855.89143825902]]] [[[15705.074549264229 15481.118255272553]]]]] [[[[[20241.93341203227 5619.344063923332]]] [[[3788.3239506752757 7846.413808172202]]]] [[[[23638.948164804464 3266.43385784323]]] [[[5957.648331792558 13072.934688903277]]]]] [[[[[9615.755793935632 10408.506749973722]]] [[[2139.3142859590716 15674.300390924347]]]] [[[[11647.511758781544 7187.626622889125]]] [[[17220.40739410908 20553.221568101104]]]]]] [[[[[[8318.089125996887 8422.173981395837]]] [[[16703.974629933302 4404.71995500859]]]] [[[[23897.754519142567 17667.174628352084]]] [[[13166.077571122378 16617.4217334112]]]]] [[[[[3903.0733751347625 10173.249535953588]]] [[[10290.795240962125 22219.964310496922]]]] [[[[12470.387295632278 6030.142913649759]]] [[[18791.079134263917 16117.398776877344]]]]] [[[[[21371.370468566813 11109.174399157808]]] [[[7215.481855941077 14342.942786406971]]]] [[[[5410.551880729809 5508.866351049301]]] [[[15745.38199188118 9919.527922488289]]]]]] [[[[[[1758.5097883520732 17433.876994114544]]] [[[18024.739996538578 18321.178140779757]]]] [[[[8200.72818590504 16244.277007286364]]] [[[9432.692909570882 17596.430186758687]]]]] [[[[[2025.3463609353666 22272.427912225518]]] [[[16056.553689174298 7706.631291145306]]]] [[[[688.0925413997782 8013.774153144676]]] [[[8829.050256433982 6041.335786736765]]]]] [[[[[19925.834975424288 23767.70282407863]]] [[[13973.40961854086 20385.52825412927]]]] [[[[9295.621206509079 2517.1061985178853]]] [[[20883.745553189965 23119.511531933003]]]]]] ... [[[[[[21635.100228949916 2401.6629096313086]]] [[[17874.100182539398 2681.4124004429386]]]] [[[[14922.004428053706 21791.19135599362]]] [[[21301.226439722905 22283.252081308634]]]]] [[[[[14235.681276598078 9006.967024543239]]] [[[16837.898723672988 19410.646362011063]]]] [[[[1725.3916975941067 20810.056054956483]]] [[[2276.3821861972733 14207.287014936213]]]]] [[[[[513.3768715384392 22335.861667324367]]] [[[2667.377617348272 5277.044665778726]]]] [[[[9468.865582103406 21310.78939503205]]] [[[12987.68701007045 13754.256066385384]]]]]] [[[[[[5651.663070470699 10411.342818561585]]] [[[23177.003663494426 21927.80777314201]]]] [[[[1778.1219406720052 17869.515839503445]]] [[[10183.461817493917 13353.980456180492]]]]] [[[[[15869.624297345676 12416.062377017577]]] [[[15884.201152006466 13579.896845258401]]]] [[[[5491.208835204176 18347.011051581634]]] [[[1000.1970532817079 8611.411530253461]]]]] [[[[[20994.331017549135 6323.305928182533]]] [[[5743.72502544828 11059.187460469317]]]] [[[[13330.059189521988 12290.733807976158]]] [[[22848.879362885935 13418.255241774328]]]]]] [[[[[[7157.160787088583 2399.3842287942275]]] [[[12393.865547278094 10801.330522716638]]]] [[[[12457.394556457428 7236.8581144641375]]] [[[13863.801325901337 17686.671607332344]]]]] [[[[[591.1428381142596 23637.227697549668]]] [[[3014.337375954547 18582.28940751432]]]] [[[[22687.182488731196 13755.764459765125]]] [[[10564.606950826328 6983.671232675868]]]]] [[[[[11370.416718258239 19995.841551868147]]] [[[18236.152072234265 16383.541456477222]]]] [[[[2556.0625983829323 9291.043278703633]]] [[[380.2454800825537 6543.5938582044255]]]]]]] [[[[[[[14760.573563086564 1013.2297352345446]]] [[[18214.990170151374 20156.38109770379]]]] [[[[6700.252803211713 13733.035300625706]]] [[[4618.004800075776 17240.780278718674]]]]] [[[[[17752.80818233669 11947.139496013688]]] [[[20609.453799227354 14713.095690951424]]]] [[[[12432.301777667933 21391.379822822826]]] [[[4069.698235441949 4700.239814331405]]]]] [[[[[442.54949858296766 21558.31000731002]]] [[[16324.912417218367 8733.63708048805]]]] [[[[13871.435159224422 1861.6370048968859]]] [[[23020.738797461654 3404.92053582735]]]]]] [[[[[[15942.32029698147 14625.145052912683]]] [[[19071.875930531038 438.1362352294572]]]] [[[[14054.766799111752 19852.349442236464]]] [[[6195.07751071761 8016.499234592957]]]]] [[[[[18331.4037900963 9918.079640229796]]] [[[20957.101615539883 11471.162056580633]]]] [[[[10276.929438528283 15322.763889098489]]] [[[14023.567241082112 16688.244665666538]]]]] [[[[[20212.133148714507 5656.075471501439]]] [[[17766.13552354034 9647.916494657458]]]] [[[[20705.465366510067 9286.03819839271]]] [[[20831.81332175382 4716.731718688966]]]]]] [[[[[[4944.598582556243 5738.755247417807]]] [[[14018.254836298367 14097.273824664038]]]] [[[[11837.05908636675 8819.42675694621]]] [[[21239.01432496284 9094.691177632496]]]]] [[[[[22714.72074299673 10531.6104237348]]] [[[12172.767351010003 21672.084836108283]]]] [[[[10006.01423155621 6561.659358754291]]] [[[20051.210011331274 17239.462689840762]]]]] [[[[[16985.310776029928 18915.1141969421]]] [[[10955.077159615643 22141.986249474972]]]] [[[[16386.49736294791 14173.805681128195]]] [[[5142.184083184308 11476.269619904519]]]]]] ... [[[[[[15718.401911027453 22921.598262112802]]] [[[11920.17629564218 5638.944320605734]]]] [[[[18300.56570599878 19572.735333411314]]] [[[12226.179736230086 7350.512817294802]]]]] [[[[[13916.861668344696 23240.04970124573]]] [[[10061.1963677134 18958.31925147998]]]] [[[[23588.313414603086 23406.067071503036]]] [[[6251.915757550583 12806.834923888995]]]]] [[[[[3192.601724122815 8123.1295641873485]]] [[[2368.072952721193 21998.437383807897]]]] [[[[23008.903226958526 23238.45251211357]]] [[[3827.7933022874586 19377.701037738265]]]]]] [[[[[[8428.882809476785 4492.66447875736]]] [[[18663.678320941166 19013.27749521846]]]] [[[[5814.558516213221 15406.12876263859]]] [[[11422.122841188539 6063.012223973191]]]]] [[[[[22662.841644928038 5593.584477892466]]] [[[15282.4450499229 18335.848448733257]]]] [[[[474.1881898873977 11441.797400396568]]] [[[12170.01591394332 17140.07682707752]]]]] [[[[[22967.490178071075 18694.016265157687]]] [[[14678.569896441772 10729.272426396323]]]] [[[[887.1172131562914 20023.48021134315]]] [[[9827.070715206799 23732.13736305532]]]]]] [[[[[[12281.355512293934 16304.219440314759]]] [[[943.7875683368917 22918.717170665514]]]] [[[[13699.071642150042 2949.9859942052103]]] [[[9358.576509844963 4854.928750638022]]]]] [[[[[12041.903094355395 20399.805763503417]]] [[[7719.070229533178 14403.045655382648]]]] [[[[11346.615116481862 17208.50690869345]]] [[[12396.629392213974 5643.622437302766]]]]] [[[[[13570.369486300173 17131.37301825492]]] [[[12418.800192189046 15843.826866052737]]]] [[[[8125.202554714828 2148.9269570016363]]] [[[1392.0414623529828 16227.260366725852]]]]]]]] [[[[[[[[13488.730709776892 23589.6988001224]]] [[[4480.77381456229 7413.758061062759]]]] [[[[21503.68120040358 5947.526998846555]]] [[[14879.254020161492 4305.126385889176]]]]] [[[[[5378.280582584408 261.5818445272627]]] [[[19069.987738681695 17322.721301514623]]]] [[[[12604.17837460599 17299.27168168504]]] [[[11954.552133666755 10451.446654836098]]]]] [[[[[17598.532304533022 9987.530731621955]]] [[[17513.08920457096 20591.15771818735]]]] [[[[23068.144331789324 10390.494818151608]]] [[[15071.61014541225 5852.787707007103]]]]]] [[[[[[14287.833155778773 575.6941164426863]]] [[[7413.480686688728 11488.501427242603]]]] [[[[7635.757073332339 6901.5273096769]]] [[[358.1134987646411 2023.826156635177]]]]] [[[[[23446.776883080034 18972.85503951822]]] [[[18658.984390988477 4204.285395656914]]]] [[[[15413.037025936004 4615.933232827085]]] [[[10371.690447563426 2917.6187553270315]]]]] [[[[[5481.139938969887 22223.163465787522]]] [[[12951.844600984592 13468.218582191925]]]] [[[[15.612625280448055 4699.122062741073]]] [[[9733.674820913186 1851.7426179238157]]]]]] [[[[[[15097.864251930001 15094.195389535604]]] [[[11742.978929874625 11400.390892581792]]]] [[[[1176.6697297144779 3615.5613602234093]]] [[[21502.460949398934 2097.86414355092]]]]] [[[[[19585.53420511076 22299.517670887897]]] [[[5903.110490915046 13110.129051273874]]]] [[[[5668.791389908324 20221.38603348107]]] [[[15482.785022396029 16259.39290954225]]]]] [[[[[23586.39717364246 9861.286779222586]]] [[[11583.363239693153 10098.920391534646]]]] [[[[1976.767356682205 9808.393259893302]]] [[[2122.497549204536 18574.999309541225]]]]]] ... [[[[[[13791.57344596045 19436.176896564637]]] [[[931.491422943622 5521.267577884939]]]] [[[[10548.74100443984 13514.392875989846]]] [[[6321.502243722644 13001.780528425492]]]]] [[[[[18548.736534339663 3611.1134624268657]]] [[[13729.304532646638 16489.177670015546]]]] [[[[19241.158833678932 10599.110142825388]]] [[[18308.143883861823 18444.54326742563]]]]] [[[[[11546.866712319055 14783.876747591154]]] [[[23874.5908703073 9342.913131740213]]]] [[[[8035.653854762893 9108.782741401315]]] [[[15909.071352193587 15911.736456998091]]]]]] [[[[[[9307.372993687553 8594.256439945002]]] [[[1767.8152834057357 4015.6992684416155]]]] [[[[13309.007154330962 19589.563603870192]]] [[[8263.27622433211 19927.831350693625]]]]] [[[[[5803.692808478233 6012.992035986894]]] [[[928.6387644379647 11785.193451104895]]]] [[[[23386.01171847548 8295.887875519362]]] [[[22946.639632305676 14078.442637315957]]]]] [[[[[5037.391348619276 10308.360498948598]]] [[[12359.650217489352 16294.218066111542]]]] [[[[13621.19637098583 2028.034652483934]]] [[[16962.87561510589 16034.335067921225]]]]]] [[[[[[4566.489629408285 10074.113010569574]]] [[[19742.25351276801 3624.396654894844]]]] [[[[4401.293008750518 9841.372626835493]]] [[[8853.586119659407 1499.8067505512545]]]]] [[[[[7523.03149586412 6135.779860459007]]] [[[11552.429747295322 14028.469839732092]]]] [[[[11298.624679254106 3730.9933268639575]]] [[[7291.9338234132165 8054.006617981666]]]]] [[[[[321.2442534614112 8067.324536753833]]] [[[19104.899306020743 18252.880449671782]]]] [[[[4806.806398771095 16416.78375492365]]] [[[7250.891601639159 1708.9967771656004]]]]]]] [[[[[[[19261.047583201027 23114.551100991695]]] [[[14220.34024349343 2781.87786497887]]]] [[[[1567.2935635452222 6341.238693872827]]] [[[13578.066913430508 2084.744315880797]]]]] [[[[[13253.992780720318 8552.193098990621]]] [[[1136.6445742762924 914.7806432328533]]]] [[[[6004.913702694272 20128.473753941314]]] [[[16663.908607591766 15148.249678970022]]]]] [[[[[4821.95372715104 18120.88979100214]]] [[[7961.81909681916 6648.684062396313]]]] [[[[12864.782170921726 3680.614071580223]]] [[[3558.344821168308 15123.103949414355]]]]]] [[[[[[15658.367559424836 7823.746005786255]]] [[[20520.32347000263 6294.194262919543]]]] [[[[21778.12060623005 18464.393723146484]]] [[[10899.144925713985 17110.568298840077]]]]] [[[[[17132.93350657221 10100.397863710408]]] [[[5063.4376612762635 21162.889115321133]]]] [[[[3675.4146708704434 16982.893410055774]]] [[[15818.960176384737 8427.863876749958]]]]] [[[[[2723.179465302777 23582.341621871437]]] [[[17348.12540603586 17136.748809461926]]]] [[[[18406.18333326963 17062.24751067276]]] [[[6854.026859580438 3225.128039044426]]]]]] [[[[[[2759.0606014389455 3829.788152378664]]] [[[17677.695075724307 2204.0544808509585]]]] [[[[2101.926985053519 13241.771527330218]]] [[[4875.428244818332 19869.49151333902]]]]] [[[[[21781.489837375262 23246.376650885974]]] [[[5982.917700906401 4795.845573614112]]]] [[[[6296.634236024895 10895.154748323]]] [[[18629.78406918774 23267.510826534344]]]]] [[[[[12647.822629028247 21414.43516296324]]] [[[2195.3843653415956 214.50169323443293]]]] [[[[23377.370658120835 10010.52060451744]]] [[[13782.596321633691 13704.580039839962]]]]]] ... [[[[[[22418.06215784007 2560.572108361509]]] [[[15545.509675065865 3130.535125954736]]]] [[[[8443.410303291068 5643.801654495245]]] [[[14076.8609526608 121.71729423681865]]]]] [[[[[14158.056229484197 4486.438482957264]]] [[[507.8110511646526 16466.309618541058]]]] [[[[14694.09362738545 7507.62232233722]]] [[[1117.487524826434 14738.89442132012]]]]] [[[[[11123.620905806712 10082.619158731377]]] [[[4217.555395992975 19182.201878366344]]]] [[[[3539.4830517353944 3191.569490866141]]] [[[19012.005870309124 21005.647805174598]]]]]] [[[[[[2139.045011746567 4441.3913500677845]]] [[[12829.018353345997 14668.264428028098]]]] [[[[8782.70850672388 22339.30873413322]]] [[[11746.688330098184 17605.179556887513]]]]] [[[[[19056.556261551086 18942.894278900516]]] [[[12807.014741857321 18908.442794860428]]]] [[[[12379.572042583597 14157.86325664891]]] [[[23344.194315372388 15385.332788267326]]]]] [[[[[11581.433856433448 1298.6203025539683]]] [[[15975.42051348782 16994.361053364373]]]] [[[[10479.707142026662 10223.205928236699]]] [[[8996.051706949584 2605.5273431459027]]]]]] [[[[[[7114.39835844815 6017.270392307369]]] [[[22250.252835724805 15052.487962526495]]]] [[[[1505.3855108502103 22049.444061508253]]] [[[17065.7730733909 21893.95512018323]]]]] [[[[[17070.63174598956 17254.423468835244]]] [[[15854.207459792571 23386.023305820494]]]] [[[[16360.85625623668 20627.070387871372]]] [[[3245.625890293207 6781.37478529312]]]]] [[[[[11262.709671617555 4778.96635577854]]] [[[10386.426859062583 18600.56629059181]]]] [[[[21722.9921810995 23664.07471377838]]] [[[20828.967628927374 22512.573245847812]]]]]]] [[[[[[[13546.310874279878 14815.151617376472]]] [[[11927.25880870178 1886.8947945141522]]]] [[[[12290.470683606603 13552.623925655233]]] [[[18415.046626898555 17296.30381269244]]]]] [[[[[11355.121837160856 4455.755897659413]]] [[[16213.451149639734 3215.031760189014]]]] [[[[10790.9885184171 23014.51502328367]]] [[[11458.46908551379 21418.083394789046]]]]] [[[[[21891.09255559756 20182.31828522085]]] [[[23359.877166603634 7866.565676052125]]]] [[[[7593.072438661461 19826.863453433445]]] [[[12466.848269719174 19215.840864632526]]]]]] [[[[[[8514.87913578766 22981.346729719677]]] [[[20405.817231386187 5099.257320599857]]]] [[[[3113.5561782963937 507.83321336700635]]] [[[20971.72882685383 13037.246226152402]]]]] [[[[[10389.476732028708 10256.787479564715]]] [[[8370.706467583364 13309.654477928758]]]] [[[[11400.12078357207 23253.465425790517]]] [[[15891.366752771519 20817.512996746445]]]]] [[[[[3208.850956930471 18240.944404515812]]] [[[15052.860629081488 5207.2923574424185]]]] [[[[4952.207654810189 21805.455930008262]]] [[[8450.806758915753 11983.406380186469]]]]]] [[[[[[14325.429247013806 97.89536405862127]]] [[[19123.10494690066 20869.10576152448]]]] [[[[19688.628695192136 9577.067333007408]]] [[[4495.182210702502 10978.128551708216]]]]] [[[[[5053.50423903575 17759.347459967914]]] [[[3307.2536455874124 22070.430348227903]]]] [[[[619.1490237172319 19443.060142733906]]] [[[11292.395308878711 12153.885273658567]]]]] [[[[[12652.377864525142 18729.548952380133]]] [[[22635.746694467252 13370.88075886698]]]] [[[[22391.486874364477 3071.5100648557645]]] [[[21111.550187241388 22779.736419928922]]]]]] ... [[[[[[21898.283002570544 19386.81649576542]]] [[[9658.96504577325 2919.0548224520603]]]] [[[[3264.6356913085724 6623.821246949247]]] [[[21575.465020984906 6105.178050619754]]]]] [[[[[12946.929137943504 16283.288971193062]]] [[[1704.1064951298308 5476.037058438263]]]] [[[[21407.037870532437 5687.761729801277]]] [[[21461.44105086183 14056.421018170522]]]]] [[[[[15026.913536993228 19861.34901382266]]] [[[908.7865623232368 21080.31168455652]]]] [[[[6886.925411759143 2728.691788693703]]] [[[5523.670300642016 19335.51921155233]]]]]] [[[[[[2416.393660476072 1887.0698470921257]]] [[[17065.848890360416 154.40556185107172]]]] [[[[4383.900446648185 475.16663320342406]]] [[[9424.773583411281 3934.961328338171]]]]] [[[[[6304.021214310962 329.8784848310838]]] [[[13929.44104021087 9704.548410905287]]]] [[[[22609.416972825515 16110.917969554539]]] [[[5074.0875196625575 3241.025371882519]]]]] [[[[[13209.004322170247 19519.020182932578]]] [[[5551.236763048733 12972.98919975148]]]] [[[[2903.9385294716376 21227.247324231867]]] [[[23295.894193722615 19142.126576140592]]]]]] [[[[[[8253.315898414126 6336.670095904329]]] [[[7530.8424048043635 7122.200425098411]]]] [[[[12744.418357836466 15732.30467585922]]] [[[20200.410498779856 21041.775944260236]]]]] [[[[[22805.83468606206 17122.37168120284]]] [[[18496.479510648842 19273.161392481747]]]] [[[[8665.566675112032 16114.83372730624]]] [[[13780.913804695574 13988.049602868688]]]]] [[[[[9289.173310784316 22848.429384346517]]] [[[15209.706845411372 17447.182594107715]]]] [[[[11637.407346641503 9448.448347087351]]] [[[4424.391600629849 266.15922325515754]]]]]]] [[[[[[[19478.819839859916 1228.031537098779]]] [[[20708.770473861656 3563.0287456742235]]]] [[[[21077.323560470468 23340.107966006122]]] [[[2023.6292794265792 1503.8068160850733]]]]] [[[[[4350.1337226715095 4380.104931698279]]] [[[10127.264729476237 9998.562158107416]]]] [[[[13246.879565854077 23399.568380754696]]] [[[19510.51702540695 7568.035464193382]]]]] [[[[[20653.268414038266 9172.472825680154]]] [[[4700.789874601381 8759.097853673577]]]] [[[[4570.634507381 17931.985052933695]]] [[[5967.224910493115 17067.612791396037]]]]]] [[[[[[13362.841748794217 10734.544170526753]]] [[[16136.845165397373 10987.546792644762]]]] [[[[17067.372145747253 21164.19766254621]]] [[[21026.890515105446 19120.378316121732]]]]] [[[[[13726.19346314007 8905.342640487297]]] [[[21384.126919483708 2853.921659191613]]]] [[[[4749.330807027691 15973.607470347979]]] [[[5469.17798176765 19551.046768176646]]]]] [[[[[15485.371195084768 6060.624915058328]]] [[[4049.485348409026 2813.62579565998]]]] [[[[7702.664273357701 1277.1367719102786]]] [[[2893.1134885672896 19127.21613472122]]]]]] [[[[[[7845.332038623714 18083.18545294263]]] [[[7700.778075118761 9197.160433690038]]]] [[[[23853.717053973378 10130.498321723077]]] [[[23666.442608760863 13506.316369210363]]]]] [[[[[21721.487096229044 15452.038927949547]]] [[[16221.044384023675 2820.8883571770284]]]] [[[[1984.453881765286 3434.0119648285727]]] [[[9910.672656735456 2787.6214921787214]]]]] [[[[[17762.42465298024 21973.44939308984]]] [[[20914.385510523105 12431.428443759092]]]] [[[[5137.735527070064 5263.088124600854]]] [[[17350.865786580736 22256.780476949385]]]]]] ... [[[[[[18773.539151276203 11043.404974357134]]] [[[15951.99011279425 10685.646928039245]]]] [[[[10510.165771378912 22036.08713739721]]] [[[16795.44119131318 1028.4720663721575]]]]] [[[[[19423.779875035685 2848.7707358377843]]] [[[15831.419875162535 7831.292651204919]]]] [[[[9905.12983143215 7289.906597304403]]] [[[621.7604506136245 9547.921720611575]]]]] [[[[[9518.975503211936 3353.6250895654707]]] [[[17883.204715143784 1276.5169597603033]]]] [[[[23457.55906010534 759.1354207538116]]] [[[14371.771705509229 2736.2293841273545]]]]]] [[[[[[21597.2543861095 5295.528274997052]]] [[[126.04560588607899 6696.913456521686]]]] [[[[16208.48149940863 6274.8020520003865]]] [[[19092.579773700396 17080.47702663091]]]]] [[[[[23375.394388392728 12136.32860003981]]] [[[14801.287055222643 20842.118092683122]]]] [[[[19305.918852339386 23765.58089184487]]] [[[18103.925315018772 13648.447039385337]]]]] [[[[[11942.053519646332 7369.560004858202]]] [[[3764.8162070618273 6075.968748148247]]]] [[[[22545.59135069096 12522.051868191296]]] [[[4782.56744314773 15878.775873135157]]]]]] [[[[[[11879.396420662779 9356.956918034504]]] [[[1990.0090935626279 22235.44827470609]]]] [[[[16485.726825219575 23788.92987092303]]] [[[2253.2381807917213 1010.9177474690896]]]]] [[[[[17049.902443053244 17469.399230124458]]] [[[9205.964612781941 19202.68081315585]]]] [[[[14636.418368545954 21942.909754663287]]] [[[8848.094137885073 16242.72063132289]]]]] [[[[[7846.959776956011 19345.601807009236]]] [[[15911.867198493766 2011.8018119650967]]]] [[[[23328.50945248701 19049.246028977846]]] [[[9217.808289836115 11426.98304304648]]]]]]]] [[[[[[[[6092.903002078518 10551.776210738919]]] [[[11125.658862030621 5641.536617165858]]]] [[[[6347.006811202393 1883.219309696808]]] [[[6520.7108582385445 17984.83690219123]]]]] [[[[[1777.2315921096024 13524.798359641589]]] [[[6800.106683364904 22531.572821588117]]]] [[[[18257.862154727554 5335.184297489418]]] [[[7666.706749268285 14428.887277770473]]]]] [[[[[11156.821524014418 15572.210023999054]]] [[[2145.192602111645 10434.423869176193]]]] [[[[11629.335073328017 13185.245829687685]]] [[[23710.364793994548 18244.863437153406]]]]]] [[[[[[21352.188736611817 23174.038038032064]]] [[[20531.93597326361 23727.94248226549]]]] [[[[983.3295323751315 16559.109377085202]]] [[[13762.411224128919 550.4350302027526]]]]] [[[[[2408.7033756431915 10017.894781965731]]] [[[9906.877293297595 16477.38213553525]]]] [[[[2216.171376599286 13309.707700831768]]] [[[1816.8577254484273 3857.782887845644]]]]] [[[[[18451.16352867672 4052.1011257446053]]] [[[8241.86251273469 16585.373951795413]]]] [[[[15436.945626923038 10524.594122570508]]] [[[6395.944512026649 14751.692364325037]]]]]] [[[[[[278.8176022534048 19245.605712148434]]] [[[4631.83086179882 3823.446881457646]]]] [[[[5428.888363001058 6954.181840241763]]] [[[22356.668947845796 5866.908842699899]]]]] [[[[[17352.288295394854 12798.328568455947]]] [[[20890.145296379458 681.8152505698558]]]] [[[[10826.483454980711 139.86026211867724]]] [[[1774.8663092711502 19002.481195233817]]]]] [[[[[600.9632138564335 23392.15037279328]]] [[[8667.774991058723 7706.420216121925]]]] [[[[2323.065888699524 14025.949255911708]]] [[[3681.625299304412 22878.269087174976]]]]]] ... [[[[[[11799.026441266544 7672.612414417904]]] [[[22158.354883532873 16036.937545906056]]]] [[[[8324.587679910881 15391.505581490535]]] [[[7406.364097693461 10813.157712069009]]]]] [[[[[10867.752919248545 9089.046277440699]]] [[[3224.178926987507 5546.72997116301]]]] [[[[11712.51087130907 14277.514012843676]]] [[[4042.234171821273 5025.997084396085]]]]] [[[[[19319.879827060846 21671.634162686452]]] [[[7041.453256768772 296.72535614989334]]]] [[[[21904.343713101676 1746.3244726785167]]] [[[19533.451545641306 3577.0467409978373]]]]]] [[[[[[20162.76280281587 6075.101930317197]]] [[[18889.647958410755 21863.598363997717]]]] [[[[7319.733118669801 1161.4289861847417]]] [[[21995.77580482054 1063.178476704891]]]]] [[[[[2336.6320738316685 1854.5441373581625]]] [[[9281.234738701525 14367.95420857883]]]] [[[[20064.25577248961 2426.7115687083683]]] [[[22004.664242544168 11327.875913416452]]]]] [[[[[19174.128951281757 6907.446673051367]]] [[[5200.163124165035 797.4093334229237]]]] [[[[12188.704782923276 17592.282644927272]]] [[[19686.109671595317 13920.235397344732]]]]]] [[[[[[7455.3980920893055 22333.81431246763]]] [[[3982.5672859939273 8028.636562290232]]]] [[[[20040.800450635503 7160.977489188451]]] [[[17346.169338255073 4334.640569594018]]]]] [[[[[4712.020759819849 10623.109428428152]]] [[[545.0061641057283 13710.132879626823]]]] [[[[2965.269768729052 20170.630017132702]]] [[[1929.8142662592738 18637.04832357727]]]]] [[[[[4547.145126390932 7200.543075045549]]] [[[8397.289957195846 18546.839244756677]]]] [[[[20309.59261818806 10733.758003720892]]] [[[12059.770027391025 23654.098822567234]]]]]]] [[[[[[[6968.814807962511 13798.874283187957]]] [[[23054.98069909246 16877.630582476544]]]] [[[[21483.514301697203 5542.61162897466]]] [[[2622.3089283169884 10229.807858190148]]]]] [[[[[17009.967800897888 11694.462075627513]]] [[[20536.363820323455 12780.149937099475]]]] [[[[20373.7073688652 4241.218767458239]]] [[[1340.8542319475353 4028.6290819922074]]]]] [[[[[18366.86227819786 15458.776163709847]]] [[[8296.19491353546 7613.497238332602]]]] [[[[8115.242554870523 216.24945648276324]]] [[[13131.456361849156 6404.021251703978]]]]]] [[[[[[9880.163338228 20438.03013456596]]] [[[6534.676429887819 7079.880671739367]]]] [[[[5179.79587712594 21908.261761375805]]] [[[19008.158792642593 7105.813289886801]]]]] [[[[[6941.603854492879 3658.275135361528]]] [[[16093.791547190003 10195.043279613237]]]] [[[[20225.787974615476 10669.213115154625]]] [[[21296.145125274666 2029.0147334358387]]]]] [[[[[20559.904677405484 3940.17919040819]]] [[[7129.096382646706 8604.747765855662]]]] [[[[6129.187917331292 22296.441447843627]]] [[[1982.7043040949134 15726.174819664655]]]]]] [[[[[[20448.661964987066 20.190229736365627]]] [[[17129.21551975447 7448.877434554042]]]] [[[[23307.04117990115 19996.119718335623]]] [[[5585.915058933078 3408.3210967173236]]]]] [[[[[2867.313358758997 22309.61762664842]]] [[[4278.236566848771 19267.743368091767]]]] [[[[8180.139027383024 12737.196617781894]]] [[[13158.166825648545 5396.247280373993]]]]] [[[[[16823.100466549815 11366.887652147907]]] [[[20870.062878795627 21771.82929477792]]]] [[[[5147.203188274509 9620.33455961704]]] [[[18444.121573650755 18504.380513418826]]]]]] ... [[[[[[21795.59501860553 15336.937006865497]]] [[[12637.059986348357 8262.822590957763]]]] [[[[21085.23619405376 16922.307413383103]]] [[[819.3775234432746 4928.35326446431]]]]] [[[[[5771.2927255897675 17479.380475441263]]] [[[764.9947975341786 8336.00597245844]]]] [[[[12594.604304790833 22369.208556206348]]] [[[19563.37387393718 14819.32577396608]]]]] [[[[[14197.18617836412 9518.526952038063]]] [[[2229.481788950806 7378.875125015064]]]] [[[[22819.961122344455 4708.89205442994]]] [[[15023.04440018212 13979.868095735837]]]]]] [[[[[[19867.201895635593 22188.428631501192]]] [[[5090.871148531843 14360.63908677242]]]] [[[[18560.89369341534 9376.107676837208]]] [[[6148.273839402971 15567.062869234001]]]]] [[[[[10760.602688456433 2975.932998407629]]] [[[16638.8009667723 7257.311379779672]]]] [[[[2583.117045201497 11617.90316294907]]] [[[23745.62170350413 22663.203437231965]]]]] [[[[[16140.265674509295 10661.321220602706]]] [[[4526.949319476251 20280.769035736103]]]] [[[[17254.970437470067 17718.94621822371]]] [[[3036.49463127577 9479.05373308686]]]]]] [[[[[[6075.013374674016 23626.514301283525]]] [[[6366.6402104464705 16616.08500276453]]]] [[[[8018.984088674704 9364.676915659495]]] [[[9218.078113784839 6705.7361334986745]]]]] [[[[[20324.367653729623 12412.397076524676]]] [[[158.12995174779704 23173.099375149985]]]] [[[[22714.30994435065 21766.140300417923]]] [[[21869.77298110684 16581.07898206449]]]]] [[[[[5714.756214705669 21835.818701939424]]] [[[7380.727382260907 12291.558066854244]]]] [[[[20310.88533952147 23563.3801762404]]] [[[21078.407433963537 1045.260921459789]]]]]]] [[[[[[[17001.643041402967 14264.137806721677]]] [[[19125.290312680325 22660.24126944838]]]] [[[[9599.527362247432 18240.2806725163]]] [[[6207.305834661492 12300.13820288577]]]]] [[[[[14002.899365183275 11449.193023161142]]] [[[7898.247346740314 19494.3201708964]]]] [[[[15333.864800029645 3539.3527540712275]]] [[[8301.355277785957 3451.6347203838227]]]]] [[[[[17700.786507638302 22865.898720607933]]] [[[565.4517600913669 1626.4932921886805]]]] [[[[15122.668795155809 15651.831865472]]] [[[7619.632532267664 6175.525646053041]]]]]] [[[[[[3476.042357926962 10746.855743572563]]] [[[13080.248801144273 20706.48594246441]]]] [[[[19880.414628073762 5781.6483875193035]]] [[[6301.410107270741 2201.865224732516]]]]] [[[[[11969.875102178925 22826.645007240582]]] [[[21786.933953065778 14128.559429301551]]]] [[[[1601.6835649784111 7971.536965582929]]] [[[14977.720779172376 23365.880825166256]]]]] [[[[[1795.594385475749 1194.2387677010704]]] [[[8201.967099707304 23082.499985322116]]]] [[[[5778.916304607804 6404.448390901109]]] [[[5916.906221998388 7209.371741062208]]]]]] [[[[[[4708.018297265934 20784.316256141705]]] [[[21874.672899607292 23113.85161022241]]]] [[[[2458.4509212948255 21325.315321143265]]] [[[4139.745139883673 13326.240271443321]]]]] [[[[[11420.567624210504 16163.643720714565]]] [[[14251.050827450921 4275.9845143972825]]]] [[[[9661.352288632548 14673.938940682821]]] [[[13769.079008831297 11449.391540053313]]]]] [[[[[10189.471247347305 3437.3692704868035]]] [[[23131.78948901175 5880.2928988479935]]]] [[[[5246.4911199613725 23450.184637703325]]] [[[4104.969981482615 23783.805871027344]]]]]] ... [[[[[[9968.793254419958 7137.3942776472195]]] [[[4412.911080422506 23389.116391535194]]]] [[[[9539.900662317044 5038.819130201806]]] [[[15070.24202113327 1105.518066459461]]]]] [[[[[6411.3582235193635 10835.694808225215]]] [[[8800.123500047699 17606.85761547219]]]] [[[[1718.7105026785198 8194.049473472845]]] [[[15740.010837246202 11197.255533934918]]]]] [[[[[10565.596793835419 3362.2793086011156]]] [[[886.2330050726853 22813.197138571246]]]] [[[[20658.503747673334 14035.684967352418]]] [[[23812.483126404797 15296.46335717906]]]]]] [[[[[[19414.22499953394 14184.583986646532]]] [[[9978.644951659457 1799.5332091944786]]]] [[[[16473.13810797072 2678.1870228876764]]] [[[15248.290398257937 19506.400488834817]]]]] [[[[[4694.075043294953 16983.518737762348]]] [[[11721.184302402555 19899.873716939288]]]] [[[[17465.795369821688 21713.625232792343]]] [[[15147.600888033496 21880.13943826029]]]]] [[[[[15598.7135791755 471.3757596683701]]] [[[16341.062088457053 747.3545099427549]]]] [[[[7949.109218680375 8580.944304760971]]] [[[20465.624414295267 3209.385062717058]]]]]] [[[[[[5311.944999724064 18841.49236113225]]] [[[9362.864071037004 10888.276288869223]]]] [[[[16348.753930547318 13482.415543385798]]] [[[23204.674642702586 6755.643361533627]]]]] [[[[[17203.528361500456 361.7615813843928]]] [[[2048.6145392418457 12896.622878864857]]]] [[[[9282.087480968614 11879.613515244251]]] [[[3569.7587614628524 13061.750296548369]]]]] [[[[[10561.265992801813 17167.822088669778]]] [[[1347.4202689885217 9182.322806237715]]]] [[[[15251.842157176317 10256.070843289419]]] [[[18340.169662265922 9248.648448997932]]]]]]] [[[[[[[8592.598793495406 14542.969984688993]]] [[[8282.07177264957 20548.438636076815]]]] [[[[3541.0201457512417 12747.530091808041]]] [[[21261.3414200629 383.6004508625164]]]]] [[[[[14816.411710040906 13015.856025739793]]] [[[8984.483698770655 23328.601465289546]]]] [[[[9817.938844219481 22130.08076056469]]] [[[17047.635378782208 20854.975578744947]]]]] [[[[[15640.25804601121 9151.391660407693]]] [[[19472.164242891267 35.374231189291855]]]] [[[[2413.7266722765157 11769.73326109231]]] [[[11290.158038797037 23683.831429433852]]]]]] [[[[[[14908.45567632592 960.5873804210885]]] [[[779.302092594065 13605.585576492791]]]] [[[[2033.683146588702 19364.532301098054]]] [[[22364.14079903212 631.0769469332508]]]]] [[[[[21519.443202029033 21726.10515612845]]] [[[22231.088329826653 4524.839586502138]]]] [[[[1736.5219192653815 23552.12389653561]]] [[[15563.572866615099 8368.128537179573]]]]] [[[[[11080.317217340309 740.6990630674699]]] [[[21685.490770799177 15645.096886907779]]]] [[[[23010.033920459915 3363.539121638455]]] [[[6596.7213842826295 19013.301951765076]]]]]] [[[[[[924.2529452794943 15761.448457231136]]] [[[12900.152469135219 3509.606611917627]]]] [[[[18441.730203599003 3122.4472922387986]]] [[[11421.30072331283 7746.526126003486]]]]] [[[[[17018.196768761085 17567.224047934626]]] [[[19791.26281553954 7487.099295416574]]]] [[[[13873.021734781682 2043.501091820148]]] [[[10621.374602709864 17207.514983096386]]]]] [[[[[6814.645651750541 14957.045485464061]]] [[[20722.07361227081 8039.051888446254]]]] [[[[3856.0062112368782 21881.553090654466]]] [[[23054.809221362848 9086.273296792944]]]]]] ... [[[[[[12752.404991038646 19695.38974388627]]] [[[14327.250069521411 8418.418962235084]]]] [[[[13649.67185026899 14548.079830245111]]] [[[17777.761024624142 23725.8181466385]]]]] [[[[[18771.416648070404 11897.349402491836]]] [[[4765.763890771344 252.8728899686904]]]] [[[[19806.35284702803 5581.64332296139]]] [[[13685.437958683951 7092.14592538291]]]]] [[[[[13322.761408902306 532.3793534233685]]] [[[9301.677414422285 19123.165301061377]]]] [[[[11917.649545308652 10204.773875797071]]] [[[7107.354962504068 13907.723809445895]]]]]] [[[[[[10588.256014042376 9678.454951017395]]] [[[11659.70224215178 21193.180679154455]]]] [[[[3009.819758243831 13630.969259875812]]] [[[16579.791971619114 3657.2137039618187]]]]] [[[[[15237.425076527317 22034.805356256285]]] [[[5514.263318331487 21593.18710869784]]]] [[[[3993.0746933021255 6218.8780595699645]]] [[[23540.010997401165 8123.3545949671125]]]]] [[[[[20575.53478972404 14773.871733079044]]] [[[9632.98059410834 7449.881395631782]]]] [[[[9159.786504154028 12673.377536845781]]] [[[2534.4086147064445 22022.003431003788]]]]]] [[[[[[19906.66465858801 6612.9597116428395]]] [[[15293.670669853365 5816.355068838967]]]] [[[[4920.0589229023035 19547.017061374314]]] [[[1780.9880071807218 2233.459017674304]]]]] [[[[[1424.5370850795853 322.10199725800805]]] [[[7417.195549755765 10509.125528064222]]]] [[[[23151.324184869223 15302.406306321891]]] [[[3461.2498724045226 562.5865874755948]]]]] [[[[[12394.476198988506 5753.358586903556]]] [[[6928.168772916607 1796.318578605434]]]] [[[[8585.906072103888 15191.993463214432]]] [[[5203.328469412454 23726.985443314345]]]]]]]] ... [[[[[[[[14487.503890090564 16455.694721137745]]] [[[20137.96875011284 21047.466443464276]]]] [[[[9005.966746848273 20481.169678455073]]] [[[8734.003174201554 966.8360394953737]]]]] [[[[[15560.935987192548 22782.993721838946]]] [[[18294.05274789367 2407.5773906859345]]]] [[[[6375.1746613805235 2261.3588873121407]]] [[[10256.524573622437 5162.150773464578]]]]] [[[[[16139.604086087178 6615.9345964998]]] [[[15683.485822471248 14594.726721695499]]]] [[[[6590.12625888053 10737.24330040441]]] [[[4014.8732005503025 3421.2261178378403]]]]]] [[[[[[10563.125500335083 7031.58391147899]]] [[[1639.4880115877427 14904.66458665004]]]] [[[[21618.851087332525 16632.114939651183]]] [[[14714.844386873989 17355.59679833925]]]]] [[[[[14110.923405568 20813.69581250247]]] [[[12576.708664791182 20218.47904146699]]]] [[[[21222.80887361803 15792.624476551835]]] [[[20542.916391158942 11470.041847230345]]]]] [[[[[2352.128355652188 16780.303525185922]]] [[[1699.5914796963962 23808.02448245921]]]] [[[[13963.922864584501 13227.227481085802]]] [[[8044.380147102251 8239.034314642578]]]]]] [[[[[[3108.785372352949 21661.104786381067]]] [[[6710.89941515234 8301.913726064711]]]] [[[[20076.903211813315 12762.528479044535]]] [[[12862.979212620969 23330.932805129163]]]]] [[[[[16331.862016169078 10745.724130892766]]] [[[15420.980245039662 10244.952843282197]]]] [[[[1285.7698874905866 15042.416556947039]]] [[[20150.917682585634 23320.781163644853]]]]] [[[[[21286.667256020566 12983.777547581707]]] [[[9517.44232120113 14173.295044382143]]]] [[[[13852.82144698287 18434.660261085854]]] [[[14171.79224699872 11694.46568340715]]]]]] ... [[[[[[7237.722161411772 20302.883898739794]]] [[[6000.995747763282 2572.9065845630253]]]] [[[[23564.15032134062 6810.33084534969]]] [[[12405.84683415802 4788.807661726894]]]]] [[[[[10906.255969195012 15403.048671058174]]] [[[15711.922553311713 12555.524178898982]]]] [[[[12061.513136125875 20020.40411789709]]] [[[13380.708240028587 14638.938341519068]]]]] [[[[[431.9081374215476 17109.87892285185]]] [[[1441.7688345642912 22330.380640210948]]]] [[[[20037.759215962327 23532.300149794646]]] [[[19867.20375373144 20831.959021193365]]]]]] [[[[[[22831.733056076246 22611.893841389654]]] [[[10355.75104736637 16100.835184625686]]]] [[[[15368.945435242245 14171.885263000819]]] [[[7532.144402769437 18907.583369148793]]]]] [[[[[11579.667183208552 9245.505089211703]]] [[[11189.09009774276 8958.033460818511]]]] [[[[13063.934885853256 6082.407746551456]]] [[[5588.165638747661 8303.946572604587]]]]] [[[[[23355.4158053705 16248.456137683574]]] [[[16348.52184398171 21224.650741629688]]]] [[[[22054.25331319964 6739.807093418977]]] [[[16924.40040731469 9468.147190912961]]]]]] [[[[[[21094.361021804147 756.5066711584975]]] [[[2255.9663048283737 16193.76219770535]]]] [[[[6486.910525482175 22239.331792040124]]] [[[6983.067020114224 20612.840367150508]]]]] [[[[[23593.002791162577 22997.20593341768]]] [[[16457.747869424104 6237.649827645892]]]] [[[[5805.100724241246 5302.928089099494]]] [[[16115.40108193433 22653.35713051306]]]]] [[[[[11328.048887821642 17668.10132853654]]] [[[12010.604791860478 14799.194184883601]]]] [[[[16971.736575927644 22963.99402735819]]] [[[22282.965141830573 13020.782380343624]]]]]]] [[[[[[[20072.348030798017 6123.252193778273]]] [[[22080.621225930015 15625.734073815125]]]] [[[[16043.674609558562 21102.00219102112]]] [[[16788.994634814946 3499.9095420347926]]]]] [[[[[4901.384291413957 23269.9290870618]]] [[[16779.53652425994 15395.04100020707]]]] [[[[4694.201402555089 14725.06575432406]]] [[[865.6468050810864 1752.8923959895124]]]]] [[[[[5132.715276730102 367.77503667418995]]] [[[22944.738760202927 15375.617661970633]]]] [[[[19843.099404563553 7737.315123474134]]] [[[6442.828641373816 18961.3266926021]]]]]] [[[[[[22678.567410677566 7532.29305064367]]] [[[22392.23499423984 23632.7084631027]]]] [[[[19718.7319262742 19910.6282057503]]] [[[5283.093691733171 15049.416028688493]]]]] [[[[[11619.006455006862 476.39165016818214]]] [[[1751.799844240442 12496.552458240394]]]] [[[[20533.236028864772 16898.634652301276]]] [[[11766.483276176037 22392.49199205595]]]]] [[[[[11953.699996462457 13561.238036173265]]] [[[13008.527490102664 2754.6216619271386]]]] [[[[14487.074729841986 11646.727685412243]]] [[[19369.974461274123 8217.125673258397]]]]]] [[[[[[23375.900792277498 20249.365248237595]]] [[[1749.7155472990382 10537.330659229212]]]] [[[[4005.345503684596 19274.529447094606]]] [[[12711.988569894716 7542.714015509923]]]]] [[[[[10222.225113773624 8508.547616836911]]] [[[17302.758679864648 19682.425091108686]]]] [[[[2401.6518925671385 9645.755943436456]]] [[[15581.13388241828 12313.489218334842]]]]] [[[[[2209.839325857277 9740.312174034227]]] [[[4794.347917663404 17719.418289907186]]]] [[[[4859.76802254808 21066.9974550595]]] [[[18090.038459197775 2854.042920655103]]]]]] ... [[[[[[19797.831554925535 4578.529950926946]]] [[[20412.33740341568 18504.311359325802]]]] [[[[5931.517406834749 2584.021830577111]]] [[[10394.171646018038 12266.538403398328]]]]] [[[[[7754.8284812981265 19435.964627348734]]] [[[10997.773460778337 23354.8216513126]]]] [[[[21788.534006331975 14555.457487802221]]] [[[7380.268861852227 640.1598980525428]]]]] [[[[[11858.910514848994 10445.458996069457]]] [[[5626.1935041143815 2242.9859000833085]]]] [[[[2983.5881097983734 13946.75012228732]]] [[[20359.028970694424 19310.167626419396]]]]]] [[[[[[16887.039130975107 17857.282828564083]]] [[[5223.449205452252 21892.29042202098]]]] [[[[21430.9723429813 19214.733172953926]]] [[[19742.8531987552 2961.349590397386]]]]] [[[[[9889.810228338258 23690.815895178155]]] [[[19385.10462996576 8905.028112259091]]]] [[[[20242.11422389687 10303.12544693802]]] [[[14055.799199427844 17132.69908268362]]]]] [[[[[1972.6849666384564 15178.36836420003]]] [[[2192.489719617846 19484.07656777093]]]] [[[[3570.1771439082722 14651.492576438675]]] [[[14560.275100400697 13792.246195255562]]]]]] [[[[[[6912.959929874165 18764.716295016708]]] [[[1324.018082047213 19843.551906986973]]]] [[[[6586.435096528824 16547.63404681058]]] [[[2317.415638384473 22777.12224678122]]]]] [[[[[12398.256803346285 11440.25737756571]]] [[[23802.316724471275 6606.7310722563825]]]] [[[[1266.0962215081965 22041.967187903596]]] [[[22684.67112876476 23844.775547418692]]]]] [[[[[8446.584529170279 19909.433601991866]]] [[[7325.487751978273 22442.03024485765]]]] [[[[8958.967473585511 14427.172440129398]]] [[[6872.022682190773 21091.53295711237]]]]]]] [[[[[[[23615.177658003424 11872.255494335708]]] [[[12085.198972487948 7806.761104095687]]]] [[[[3851.128568666134 1524.3673866466256]]] [[[20436.029333686725 7892.507677478934]]]]] [[[[[23760.84497360051 5652.153364801982]]] [[[21271.012828488034 20869.984104445775]]]] [[[[356.8732703093052 10286.735649757495]]] [[[5207.999563963173 1516.591230217348]]]]] [[[[[902.0610525082135 16959.495160986895]]] [[[1757.693926326141 19546.88423733183]]]] [[[[22914.264057767792 18541.71467850714]]] [[[4649.595011561312 224.92288696053797]]]]]] [[[[[[753.7679764754771 15957.335006787285]]] [[[7949.101028464498 11328.309298157295]]]] [[[[3952.690302204444 18295.814047196254]]] [[[1306.450323507515 7466.507722475681]]]]] [[[[[9864.841184982377 21527.34783844727]]] [[[21198.953306296014 23514.25335735194]]]] [[[[15743.419345876677 15951.806557115393]]] [[[19500.328446268708 9474.222328235424]]]]] [[[[[12579.91090045558 15192.497103847767]]] [[[13836.012376012528 168.22991599690272]]]] [[[[14821.934392591738 7428.07824385565]]] [[[907.8672117882176 13752.174784696]]]]]] [[[[[[2172.0053900134703 20616.69422749364]]] [[[16760.396183193894 14570.695755806591]]]] [[[[18706.43762457255 19673.063165135733]]] [[[22583.737374120865 831.2761431065511]]]]] [[[[[6990.747174737982 2330.0767310733263]]] [[[4101.197228989698 19662.831641122764]]]] [[[[3874.953356376425 469.5903085760858]]] [[[23644.40842353788 18657.347826902944]]]]] [[[[[7769.206115397142 4957.180375562784]]] [[[18976.671492135378 2374.0069265096995]]]] [[[[10325.67821784165 18445.873410773806]]] [[[6.8086095755307 2027.8075612420653]]]]]] ... [[[[[[11966.927878767327 23034.821760815987]]] [[[9549.890727012798 10521.967713541542]]]] [[[[2433.8456509463886 3896.982240686404]]] [[[14438.12819585322 10241.388894754487]]]]] [[[[[1930.9305405854282 3701.2434320139896]]] [[[16273.452909272342 5813.155148163071]]]] [[[[9368.092214657581 14248.906447666526]]] [[[14271.063119235638 12892.118838780012]]]]] [[[[[2442.4728690147567 17744.283501069567]]] [[[18012.893446588707 17466.034709466785]]]] [[[[11910.000362343566 23093.8986394429]]] [[[6220.358879546902 18315.012828648327]]]]]] [[[[[[21988.856583376295 8036.399360398878]]] [[[7682.972269380488 15474.314677928814]]]] [[[[22716.77712189167 5869.696493175004]]] [[[756.504094153818 22040.615033183647]]]]] [[[[[16431.5523391355 9011.28848919032]]] [[[17619.82829144058 8278.691263285516]]]] [[[[17166.885672719945 10549.121420511505]]] [[[21355.65262904435 4832.103877412214]]]]] [[[[[11199.40559306012 15452.775166490012]]] [[[17367.563142754625 5457.048074611148]]]] [[[[9770.864856082102 4784.576983111426]]] [[[8090.6351707679605 2502.869825850148]]]]]] [[[[[[7752.595496452128 6892.66000372986]]] [[[7332.361184128929 12420.39239528758]]]] [[[[20926.459689699976 14852.972252974716]]] [[[4185.698732563919 18838.075950108774]]]]] [[[[[5835.480971289683 17568.364082860193]]] [[[15316.962363029392 22094.03295140521]]]] [[[[14406.103076509584 22428.971888932636]]] [[[9762.78011865118 22892.4395172916]]]]] [[[[[11343.356940913776 11124.14049540438]]] [[[19979.30094711239 9076.427357852966]]]] [[[[22979.59941398351 9883.80967350866]]] [[[16732.863035566224 6559.728887802324]]]]]]] [[[[[[[7458.958342171967 21366.24410569542]]] [[[15802.97225599556 11594.541592556905]]]] [[[[1453.613635931273 22943.573757865895]]] [[[16934.96156467934 13671.520397442944]]]]] [[[[[1475.691483996178 20580.138085470688]]] [[[8521.37895134244 6088.048916996812]]]] [[[[2861.1054347902345 19478.99659896234]]] [[[12561.952226712065 2851.692477352303]]]]] [[[[[17336.560211252367 23604.756715330357]]] [[[7951.520628303333 19694.965610816085]]]] [[[[21899.99622184059 18499.8736776158]]] [[[21008.17878625509 441.82633300370105]]]]]] [[[[[[14512.76345415279 11545.406943982436]]] [[[11687.485465397956 22222.84097492006]]]] [[[[5773.485052234738 19669.732217238572]]] [[[19431.216503266176 8131.027763741459]]]]] [[[[[3519.768400510873 189.76887732479244]]] [[[15678.178056520537 20705.877956445907]]]] [[[[4687.766948894559 17436.351758277313]]] [[[14782.59827902169 7100.600214650027]]]]] [[[[[22163.58493385025 4297.790892956755]]] [[[5920.9673516968005 20795.952436465846]]]] [[[[22067.73697198585 7118.873034905606]]] [[[2621.358422850097 16573.459472854123]]]]]] [[[[[[8837.930043638866 5148.672388894689]]] [[[9957.785549455448 7513.90960248478]]]] [[[[4751.9312285795195 7224.0488751690345]]] [[[2672.4403180561308 8413.499035479965]]]]] [[[[[19957.160726813974 13222.32558889488]]] [[[12003.386188475228 14362.558869949407]]]] [[[[15889.348090086765 6031.5456053817325]]] [[[13853.873728647528 21012.627488689533]]]]] [[[[[23171.3887424988 8308.515985301483]]] [[[15842.794717061604 5929.1913507895515]]]] [[[[23095.08577857165 13280.885124440665]]] [[[19435.026923225305 2441.431484747795]]]]]] ... [[[[[[19505.968238352532 9197.89990670193]]] [[[15251.820019342733 19561.683841588634]]]] [[[[22998.755596431234 21280.86240019611]]] [[[13765.702247770148 14053.73266905224]]]]] [[[[[11074.609072409663 20404.355555217277]]] [[[9091.196918808499 3158.2782355575787]]]] [[[[5633.201330444695 13631.546969174597]]] [[[7636.098334521888 9575.83412483948]]]]] [[[[[4615.864654231841 11448.137652681222]]] [[[6864.680224829043 7467.3734583239675]]]] [[[[11139.622411708351 6110.862980288307]]] [[[12825.96585342393 20127.967590134183]]]]]] [[[[[[17499.62307920779 14078.567716613627]]] [[[18411.407254918737 14933.398511609916]]]] [[[[711.2985125497228 21016.094264291583]]] [[[4975.692695852887 6397.197730309907]]]]] [[[[[23514.94077119286 20994.872890159222]]] [[[13731.005355102938 7311.160014838929]]]] [[[[6916.6636596845865 3796.742347183394]]] [[[11680.798440297878 15346.504777002014]]]]] [[[[[14462.751309219959 2410.6923896331796]]] [[[21482.137208183147 7933.792075239983]]]] [[[[11944.926463698406 7108.985681287439]]] [[[15513.571180523528 14277.086685716424]]]]]] [[[[[[6657.359635155228 2796.0574642501865]]] [[[2025.85992750394 16781.516665122243]]]] [[[[13167.66578628013 23442.093281701833]]] [[[16095.661823450306 16995.05127861024]]]]] [[[[[8611.6205425501 16858.926601803276]]] [[[14870.08648761464 15553.476206350553]]]] [[[[7090.341749992407 8701.07114094298]]] [[[2063.1257344038027 8327.440067957461]]]]] [[[[[18679.811066204107 5604.0785000411415]]] [[[9366.371733700746 18584.12726306637]]]] [[[[20343.449947897363 10959.744117705019]]] [[[8690.612555016396 18532.830585550797]]]]]]]] [[[[[[[[5308.566561030302 15877.29320896127]]] [[[13852.169908366799 21203.50466161991]]]] [[[[12770.940726000275 1833.4319973931988]]] [[[8909.262052358772 7343.5049520860875]]]]] [[[[[13791.11680823682 14495.08786969013]]] [[[8669.90942846304 2763.9603402244543]]]] [[[[20183.84716232483 6419.26964430938]]] [[[20323.00526717355 4036.381306006849]]]]] [[[[[16993.845105340853 14150.435117260005]]] [[[21927.010605267977 18495.67464827029]]]] [[[[19507.83448524034 6672.701721692556]]] [[[17981.57425481008 21881.104800677556]]]]]] [[[[[[3010.9090123806427 12400.310707261015]]] [[[9071.396310969461 2011.4745630409282]]]] [[[[8390.96784026828 8067.237258005329]]] [[[2021.8209903824516 20545.267762092226]]]]] [[[[[15622.112359728475 21882.425003917077]]] [[[11626.808875524719 7302.879257622092]]]] [[[[23872.192989631545 20512.913672473424]]] [[[15929.68902640917 10851.76849014383]]]]] [[[[[4713.242617768315 17583.340959204063]]] [[[5457.510309782557 18835.592298263255]]]] [[[[18712.816017479287 14110.163890373564]]] [[[23356.753156346043 6271.935586083072]]]]]] [[[[[[7296.946273692987 11870.082221864983]]] [[[2822.4179603265966 18655.958463531173]]]] [[[[18528.81326018602 882.6392064388269]]] [[[23586.92863662043 7164.8107166028985]]]]] [[[[[19984.13268841546 9642.361180740738]]] [[[3352.4118331423106 13063.626735610911]]]] [[[[3254.594968469712 811.4852427918365]]] [[[16813.97768328079 21491.196418169606]]]]] [[[[[9.438616388872179 5324.873332905878]]] [[[8169.493999569624 16517.486116067314]]]] [[[[11259.042706865956 19376.54820328614]]] [[[10066.20450942966 17649.257006209795]]]]]] ... [[[[[[2959.74850439133 1001.400463276807]]] [[[15353.729994542735 15415.416699980064]]]] [[[[1420.548433125587 11273.410219265903]]] [[[7777.072446916022 20150.691407167407]]]]] [[[[[2025.4647971003458 17527.15278059624]]] [[[7126.040367496286 4535.6893596494065]]]] [[[[8899.374747416909 15840.04552258531]]] [[[9530.159264273188 10838.827258003914]]]]] [[[[[16397.335281032258 8456.42046691023]]] [[[16597.208714068423 636.3362260792037]]]] [[[[206.8043747730165 16369.393934389378]]] [[[12502.597084970756 1677.5359649614522]]]]]] [[[[[[642.9652850705627 5747.573624652298]]] [[[19464.69856638543 6942.165336164067]]]] [[[[8496.49621478579 7729.920960629005]]] [[[216.10989404003004 9658.142597268577]]]]] [[[[[10725.682013318445 23756.046596722885]]] [[[23699.77589272032 6477.03132843477]]]] [[[[6333.682673690691 1439.008226516784]]] [[[14764.947802099145 9351.28157880114]]]]] [[[[[12204.852114056072 8601.849988096597]]] [[[2766.740153775366 11515.09191603242]]]] [[[[12105.08869782552 14595.98360759966]]] [[[23189.179802001447 9055.992324359468]]]]]] [[[[[[335.44893057583 21378.888277446214]]] [[[12464.377617265296 14372.637743179277]]]] [[[[8618.77374616419 22819.707816795613]]] [[[19176.56931047098 2447.952613196285]]]]] [[[[[15207.620959999487 20843.04924029107]]] [[[22614.016620690614 9011.613874151542]]]] [[[[5141.737612894501 7533.861057135839]]] [[[1267.3821279678043 16960.87420299154]]]]] [[[[[477.6690357852019 10445.860671969873]]] [[[11805.530056076734 16129.808531068647]]]] [[[[22052.967710454475 22323.56390607562]]] [[[16760.819559658434 10388.609924796734]]]]]]] [[[[[[[14450.622012785843 14849.509940785449]]] [[[16846.740920871795 19800.750360248243]]]] [[[[12014.674051518972 17797.421481813883]]] [[[14737.713067773848 11525.151410781802]]]]] [[[[[13942.923049038543 4379.420613367561]]] [[[5974.267498321652 19189.613815832206]]]] [[[[6320.6083636978565 19383.59320444226]]] [[[11547.01591961879 14322.462127791921]]]]] [[[[[2366.69974275299 12888.468412266393]]] [[[19602.542226546855 12186.576109876587]]]] [[[[22308.587002412598 13652.272661490231]]] [[[21835.748395665836 22851.901697661782]]]]]] [[[[[[1499.7496466760756 9084.126527104154]]] [[[16684.478551294138 6059.243353347744]]]] [[[[2468.534840189751 6013.818022027191]]] [[[3050.6796239005653 10959.091313317327]]]]] [[[[[22120.65841909822 14896.952794452629]]] [[[13204.398286521237 2598.2085358036675]]]] [[[[7982.525011732811 4601.851889204703]]] [[[23143.233979567045 7117.662896299357]]]]] [[[[[6723.682154115152 14595.266194058837]]] [[[4295.790385823162 5530.266073261244]]]] [[[[15089.316016430046 20453.694006708512]]] [[[10505.105228358023 22361.850899080462]]]]]] [[[[[[3476.8100097914325 15151.275798480456]]] [[[11733.877566646674 23351.74192693536]]]] [[[[23067.492096180205 17788.431762935303]]] [[[1682.248480243167 7237.5267298968865]]]]] [[[[[12038.139284935192 17741.431188814084]]] [[[5720.278344690825 18015.85292785917]]]] [[[[5994.295098055307 8293.751841659569]]] [[[5157.846382232782 15534.728773352355]]]]] [[[[[2163.2327421300643 18817.423659942728]]] [[[3395.3200357878704 18404.122918423927]]]] [[[[9255.63647871832 18924.13902664938]]] [[[12872.089646729446 17545.604601858595]]]]]] ... [[[[[[11058.086423103428 19837.262012446714]]] [[[12907.944188962236 9930.879293973527]]]] [[[[22846.43024118974 10205.611765204647]]] [[[14096.904767913544 5382.800069736127]]]]] [[[[[17136.447596077207 13544.861205458115]]] [[[17621.907165253648 20450.53953148478]]]] [[[[19835.70009806154 5190.200892998572]]] [[[12382.29269461431 14527.753024622623]]]]] [[[[[13210.560191267074 4705.671764913289]]] [[[9824.879175859382 5877.228801517874]]]] [[[[22891.369995054774 16080.811221866448]]] [[[13756.52169309236 20915.89818689295]]]]]] [[[[[[22524.48623719352 22310.290334047608]]] [[[22926.152037666514 16638.39600698993]]]] [[[[20290.773053616784 10272.8608088464]]] [[[8292.758032161713 15266.940500904737]]]]] [[[[[23187.813769390537 10751.690099836742]]] [[[14387.67854095621 14733.16468163558]]]] [[[[4819.3685999665995 16885.84200020499]]] [[[9815.625819647286 2841.8108717063164]]]]] [[[[[18598.212685250553 7760.329785691688]]] [[[18750.021575138773 15924.77785351715]]]] [[[[4706.707577062831 22776.213454720513]]] [[[23818.997820800952 15073.686588911769]]]]]] [[[[[[16054.043990291771 18501.813813743924]]] [[[23833.203821842475 7188.598834989419]]]] [[[[19203.13694469508 11042.355717826691]]] [[[2642.149089288437 20449.18799701829]]]]] [[[[[17018.48743095764 13970.177594364086]]] [[[8867.555204723772 5109.32246871988]]]] [[[[10678.391230497575 11246.426058673947]]] [[[12826.295542321881 3717.1095641334196]]]]] [[[[[672.688269244153 18168.580833450404]]] [[[2261.339963666893 15379.163244008409]]]] [[[[20333.541336452552 3043.0588153421686]]] [[[10394.148283657823 22383.47454087385]]]]]]] [[[[[[[2233.0039524384497 5559.435467673872]]] [[[7947.3263532307765 20528.18634663451]]]] [[[[10364.491737868046 2225.895060173887]]] [[[21279.51122747363 22014.252091245253]]]]] [[[[[13151.268522828914 646.9533627088692]]] [[[22168.571197077952 6143.482974649214]]]] [[[[16377.9399584871 13294.150137245484]]] [[[20333.896498748083 15738.068952465024]]]]] [[[[[14875.194726798794 7286.588276777865]]] [[[14555.542679023481 12559.75578763921]]]] [[[[8006.003229513678 18339.956946496084]]] [[[5093.271793746229 14111.23390937264]]]]]] [[[[[[3702.2563421938917 14825.627070289796]]] [[[19332.4029496847 14989.903778157895]]]] [[[[8244.424415812364 17648.815577536345]]] [[[13009.724578464931 7441.131256610894]]]]] [[[[[11958.463685421664 8041.924575758336]]] [[[3586.3060190253404 6525.526716046026]]]] [[[[21379.785946679338 6021.361667943692]]] [[[13352.918889172255 16070.483862443249]]]]] [[[[[18175.65723627053 18857.572822745835]]] [[[816.5101012109366 3328.7884360385287]]]] [[[[17506.355416268932 5509.52561523868]]] [[[14215.905762746865 8641.57902026537]]]]]] [[[[[[13638.836194119138 5209.05921031971]]] [[[21516.6325504209 13505.312248523676]]]] [[[[4716.0062412007155 15124.47691926602]]] [[[1326.9342899637356 18310.212664864805]]]]] [[[[[11961.420764693878 1503.1095662955981]]] [[[10992.084413099452 7224.017851807012]]]] [[[[2916.9479620809566 826.7112641671715]]] [[[12620.882486154525 9667.439347667421]]]]] [[[[[10047.313463705768 17663.492332148322]]] [[[17131.189546037895 9003.641679593404]]]] [[[[17129.618549837567 3994.9062394481384]]] [[[12223.282407825414 13583.380816600275]]]]]] ... [[[[[[7397.549346813861 4486.921536009417]]] [[[18763.751223468294 22132.01495914497]]]] [[[[16218.632834431315 8029.41767812794]]] [[[8086.9121922206805 18859.358187823014]]]]] [[[[[2918.332157200867 9578.12625784974]]] [[[20603.22296874409 21968.027244871282]]]] [[[[9964.400810576963 12039.538017287225]]] [[[10923.572472817661 2959.160176288528]]]]] [[[[[13678.538230192396 3976.3307180138772]]] [[[17937.829012105114 13400.951847604314]]]] [[[[270.4416802351563 7594.526019706229]]] [[[14382.37147112774 19949.207422556807]]]]]] [[[[[[1044.9301555573504 10097.140196875005]]] [[[16680.72981562619 3203.9507367905408]]]] [[[[22316.072595718393 1501.348780338517]]] [[[4582.370218615894 2891.976974040626]]]]] [[[[[14683.549156516014 19680.67542913542]]] [[[2194.825211151184 21386.202271909682]]]] [[[[22466.589142866822 16960.88502383694]]] [[[17119.701333876732 11973.95576775583]]]]] [[[[[10971.740448108076 10048.639522070398]]] [[[15499.93297949217 4344.561103842391]]]] [[[[8673.073332521135 2808.8840198839216]]] [[[15852.17690559865 12628.712588769487]]]]]] [[[[[[10323.641645883565 12937.22356005272]]] [[[4669.319558688792 5941.15441112638]]]] [[[[14173.360509778473 15232.147307533023]]] [[[13323.263655696463 11917.913888942636]]]]] [[[[[4627.206800320237 9379.33701603908]]] [[[18988.732560834786 18366.62440576007]]]] [[[[13354.32592261258 7215.283857437182]]] [[[9007.754193878873 21039.38316095002]]]]] [[[[[2133.1635924487127 14807.2552972683]]] [[[22359.407137146656 14479.879870789762]]]] [[[[13229.322374858653 9494.614160637004]]] [[[13115.08801631826 23832.538815120242]]]]]]] [[[[[[[7511.1126220964425 4479.496547043145]]] [[[15807.367332046975 16304.613146446483]]]] [[[[851.3798552368007 21615.93433353181]]] [[[20353.639377214782 4027.8283868491944]]]]] [[[[[2414.0085501380154 4289.748965992952]]] [[[8330.004083012373 11748.874711022567]]]] [[[[7473.103483739077 9024.260138713724]]] [[[3011.485302342654 13487.568184439002]]]]] [[[[[2239.2236557105534 7742.950971082403]]] [[[19610.33237466173 4593.977788873463]]]] [[[[9751.491916359748 20444.966926562887]]] [[[5084.927591405588 14323.993510344642]]]]]] [[[[[[16671.29354698005 5289.15180693946]]] [[[10592.820209941887 22412.070341207607]]]] [[[[12998.369520402272 22472.204435405343]]] [[[13888.114408706864 9560.05174577623]]]]] [[[[[21983.461348591387 2409.154904332888]]] [[[10979.688499445705 22474.159454449302]]]] [[[[9761.168282903176 3549.1553422404136]]] [[[21820.413868956017 3647.42471982113]]]]] [[[[[23127.915763331468 5651.055453337473]]] [[[13528.18939156361 3952.697745531379]]]] [[[[16913.3680888001 5613.532843040082]]] [[[3321.611208753162 8296.60515638817]]]]]] [[[[[[15937.27020508061 9795.601633407017]]] [[[5400.0225270574465 6180.5926934301415]]]] [[[[211.03283554981533 4013.2199156542697]]] [[[14278.18347221145 23109.791988091827]]]]] [[[[[13857.946970186156 5125.703434426525]]] [[[23762.11032126866 9925.862797068026]]]] [[[[3585.2955997164845 11431.622140112631]]] [[[3692.7382993698384 10626.020830862017]]]]] [[[[[2031.1826645806084 4679.23183120881]]] [[[18941.87662190733 2597.2611002739977]]]] [[[[22523.169884069906 17622.726482654747]]] [[[18739.664993628074 15773.530640547262]]]]]] ... [[[[[[8911.186956395002 19557.13246445283]]] [[[20674.417144878087 17807.930442591947]]]] [[[[23787.64036951128 12398.039924991323]]] [[[7321.908731247735 15299.584298262154]]]]] [[[[[5283.376741063921 21445.995703584973]]] [[[9944.12014848989 9327.116821989433]]]] [[[[5712.380175784896 20084.264312410625]]] [[[2771.7820111342944 21118.198768561684]]]]] [[[[[1190.3448399708557 22281.545191517096]]] [[[1877.4498717228878 6931.172226639653]]]] [[[[10094.17703549072 6004.113457778948]]] [[[2641.0429116876644 5975.697416087068]]]]]] [[[[[[7671.616841676424 1678.5810936540172]]] [[[7449.030485645837 23135.12343633218]]]] [[[[4978.659784568511 16690.42364042849]]] [[[4025.697001736714 3970.4244128470045]]]]] [[[[[20129.64665612769 13612.937260410692]]] [[[20925.45418953265 11554.770062829593]]]] [[[[3156.659614059815 20768.761641319114]]] [[[19042.563773561873 8653.14819163678]]]]] [[[[[5322.896163076556 15071.480306493622]]] [[[20658.03430163654 2779.028862961904]]]] [[[[2914.7091940557566 1692.096370116817]]] [[[16960.72710370615 9855.946521711767]]]]]] [[[[[[7333.583897231655 5539.341833501564]]] [[[22806.13377972518 20691.22191711442]]]] [[[[12649.495871663757 13388.651494983966]]] [[[14813.104782102379 6271.202000902714]]]]] [[[[[6689.866387827274 10077.868118380715]]] [[[1233.8096584645596 15952.893566048206]]]] [[[[12102.67865480393 15833.72885052684]]] [[[4967.811063025943 22274.649475933285]]]]] [[[[[8204.57796390344 23265.029145910554]]] [[[11831.263599009855 2004.5671880685588]]]] [[[[5119.973183653763 23341.142396525924]]] [[[18255.372729591676 17538.096167066396]]]]]]]] [[[[[[[[495.31592723947944 4158.904842674261]]] [[[4234.926411410744 12647.237234721762]]]] [[[[14133.74398395382 18509.43195223592]]] [[[11216.954101116784 21733.638913441682]]]]] [[[[[12780.339109644183 2561.3576727174095]]] [[[16089.409604932278 21527.26192517177]]]] [[[[21443.796386152313 6913.237819957899]]] [[[2227.737583283259 18999.037276069208]]]]] [[[[[7886.977371833753 6296.161245515665]]] [[[3909.47329644904 12504.173868227785]]]] [[[[11505.02873238656 12540.305590969696]]] [[[17804.197174086697 13594.924045202077]]]]]] [[[[[[1153.457626323142 1382.905294267894]]] [[[22911.854994816156 5115.9680255415105]]]] [[[[8942.335740259135 17924.229140690382]]] [[[15569.2964949524 16205.470628198573]]]]] [[[[[491.20724703817046 11289.81630385881]]] [[[11968.11226532251 379.2654346579522]]]] [[[[20247.598587264496 23167.90265997581]]] [[[23223.189555697645 14453.713078709035]]]]] [[[[[4540.823401653824 15393.952250634107]]] [[[14219.67241716086 1597.4493923350558]]]] [[[[1923.6074649493546 8708.809257853065]]] [[[2905.4796204805934 20151.530275485027]]]]]] [[[[[[19238.814825810703 1720.089855239517]]] [[[11787.844223965267 18059.343247723256]]]] [[[[825.5156711428747 7948.36588336722]]] [[[20513.32264178819 18583.08225980649]]]]] [[[[[3873.3023838652894 16376.268958228333]]] [[[22368.498091735808 15939.230398010237]]]] [[[[21979.524118740817 19732.917995480297]]] [[[18665.719229288545 12162.142130223265]]]]] [[[[[11038.546651175035 4131.489002112]]] [[[2000.192240342627 10800.85009543096]]]] [[[[16310.391826283783 22046.773112717157]]] [[[19488.596814383203 10555.87284442152]]]]]] ... [[[[[[1759.7056354034976 10768.559555019861]]] [[[9350.477019960235 16484.83290050012]]]] [[[[14708.860159345995 14495.641420857157]]] [[[2913.6630112113194 9061.702170742912]]]]] [[[[[9705.964797439208 12372.26060539671]]] [[[15622.40685222514 5392.106907272994]]]] [[[[1124.915866050075 11752.979532125068]]] [[[6552.449992883332 17124.53170379792]]]]] [[[[[17127.078091258918 14085.263466994855]]] [[[6703.056188055686 23867.460585323683]]]] [[[[18668.312127915728 22942.68524841504]]] [[[14682.655293316835 21011.262684505204]]]]]] [[[[[[11839.08422405542 8241.983656694712]]] [[[10754.448766657259 22974.22492080988]]]] [[[[1424.8197921091532 740.8895103041698]]] [[[1599.7582596086295 16058.577487682433]]]]] [[[[[21554.682289969827 7503.335509953582]]] [[[10405.43390404768 23103.264908926565]]]] [[[[4423.850244339753 20170.388528774143]]] [[[5576.257985153268 12636.888928249402]]]]] [[[[[2494.644582514378 23602.154957794446]]] [[[17084.320219085814 4481.3876890848915]]]] [[[[558.6644771850821 20999.57958115972]]] [[[8516.007620682376 2634.9264135906783]]]]]] [[[[[[10616.153815900469 750.0192710548085]]] [[[15776.239730471172 1410.9034664615533]]]] [[[[1985.408091381408 21934.37578108465]]] [[[23760.251215666332 23074.98572007315]]]]] [[[[[4248.93534804209 15913.003168425319]]] [[[9693.577812947322 246.35833731286397]]]] [[[[11641.590919322376 17320.12216745662]]] [[[5715.870961965099 8714.441205425685]]]]] [[[[[3990.2026710543496 7457.334190265791]]] [[[1553.5221537688244 4652.8967698532015]]]] [[[[5063.060916560929 23534.790332215118]]] [[[856.0539460078802 17169.12641289319]]]]]]] [[[[[[[2650.9672430534865 13411.56023822178]]] [[[20772.53573470189 18425.857084160627]]]] [[[[16001.76786248003 3242.289992147868]]] [[[15825.808638120101 7525.366205327451]]]]] [[[[[1826.1378189434029 13475.883232133443]]] [[[14827.808824025244 6587.086653793555]]]] [[[[18163.08599263275 22332.313618790176]]] [[[2127.585493300363 11603.48111683726]]]]] [[[[[1929.8909325460997 7709.949749651894]]] [[[16731.8233150214 10498.637015469141]]]] [[[[11690.36832795078 13344.800701340657]]] [[[15208.738675044087 11134.810493093897]]]]]] [[[[[[17613.13125603898 7006.755638412533]]] [[[4773.631929955786 22604.47625072699]]]] [[[[15072.044546768686 21420.008458234493]]] [[[21539.821607162856 3043.5876200607227]]]]] [[[[[23118.826490954292 1733.4293119842412]]] [[[9625.5978558694 675.4733303175673]]]] [[[[17005.38348390704 16894.202799880964]]] [[[14933.426291865642 1271.0756703383056]]]]] [[[[[22876.871831199467 12849.402845086259]]] [[[13231.80153255236 10604.21055009079]]]] [[[[4923.042847017997 9520.240539052418]]] [[[23507.516074601546 21786.103731534848]]]]]] [[[[[[6367.789953620686 23499.713754408505]]] [[[13739.488030509627 6454.384421057152]]]] [[[[2235.11202097301 6650.600608411578]]] [[[13220.684791623034 393.19200671302536]]]]] [[[[[1295.5832312453463 18083.414378735437]]] [[[21407.58139075528 13378.85850401064]]]] [[[[6550.806282433603 15959.943467695637]]] [[[13550.905864962833 5400.345739011457]]]]] [[[[[16988.84749667511 7181.356350802056]]] [[[1110.6648069775972 12705.960453435431]]]] [[[[6343.966338080184 2818.7017429874063]]] [[[14886.286799531552 13177.659763586398]]]]]] ... [[[[[[22154.817180864226 616.0423498995651]]] [[[12939.211509853189 19156.33532174093]]]] [[[[23642.865690927985 21134.597128411337]]] [[[6262.613653978906 9379.669570241596]]]]] [[[[[18035.840132749352 21794.698331158783]]] [[[12950.04441321695 17229.443033849548]]]] [[[[17855.08217510533 4853.131852322494]]] [[[8433.013065911719 9512.956106405802]]]]] [[[[[15923.144823264269 21441.632640877528]]] [[[11086.29051566962 5131.613562127687]]]] [[[[15288.29034864784 7447.213340395065]]] [[[23505.33434348583 4804.421997454718]]]]]] [[[[[[21149.224722307332 16555.622558888837]]] [[[19654.667899170643 5886.179092590214]]]] [[[[15170.785705075057 18481.04000309229]]] [[[2073.685511507858 12369.804307717108]]]]] [[[[[8862.358387047181 10090.647681947466]]] [[[6197.895156179037 13552.385826577145]]]] [[[[7502.641884595929 14945.663762536373]]] [[[4143.513243286772 383.4784935977057]]]]] [[[[[23115.91213709237 15266.240828045504]]] [[[1979.8310777408246 10439.052858163323]]]] [[[[7665.462782262584 16862.957614114883]]] [[[22231.38050085055 21471.56502286878]]]]]] [[[[[[20315.66841085494 106.90638952750389]]] [[[10794.420929687769 1658.8071310078074]]]] [[[[19352.871606391996 68.88262742094227]]] [[[11083.123109211616 156.53220759905625]]]]] [[[[[18082.255081834006 1565.96912515687]]] [[[16605.14049076835 20989.972196385374]]]] [[[[12659.634599488221 13925.742210775788]]] [[[17487.877248240067 11889.501829023338]]]]] [[[[[9002.954083786866 6305.649188384467]]] [[[13305.873629764812 3767.619387139272]]]] [[[[18858.875315126723 5447.888077515361]]] [[[10264.369876964323 23462.357906943584]]]]]]] [[[[[[[2146.9444748732576 7228.160869741569]]] [[[13708.28718605644 18546.338126814735]]]] [[[[17114.301721821113 19613.887947253683]]] [[[17885.766351851413 19921.554988128104]]]]] [[[[[23867.12628699345 9503.145705749199]]] [[[1086.4859211989724 18093.43666686064]]]] [[[[2296.6164298058266 1407.3105494872493]]] [[[4432.191328775852 6973.651928885761]]]]] [[[[[14295.910962296444 9992.174566362317]]] [[[504.8507912402962 21075.567446225294]]]] [[[[23070.362019651802 22445.65686502645]]] [[[18966.763250322005 9732.826687374662]]]]]] [[[[[[6832.837002076406 5940.330351109132]]] [[[10243.752451748436 19338.357383523147]]]] [[[[343.1442903930656 10747.21468028695]]] [[[5841.717786568464 7035.082192597573]]]]] [[[[[16504.709384724676 6283.389449810354]]] [[[23040.94455665815 20630.087113973925]]]] [[[[15694.680553851465 22804.498459607148]]] [[[1080.6952379248455 10087.15977385706]]]]] [[[[[4915.081294468585 16117.689347005844]]] [[[11323.11811085368 14750.319620261756]]]] [[[[1715.9563056407114 12343.113841805467]]] [[[9284.071940942938 5515.186910499612]]]]]] [[[[[[16540.110109288737 12274.70921219669]]] [[[7328.166324105578 23063.5719319918]]]] [[[[19820.068126544742 15898.284415317708]]] [[[4936.920462917268 4930.441102253769]]]]] [[[[[9433.123281787846 6895.773341031257]]] [[[8585.53536651761 18936.254252885767]]]] [[[[11919.647263318098 7632.0274565899235]]] [[[13769.249675563511 11074.945175424093]]]]] [[[[[7660.017455221795 424.5217640625066]]] [[[23434.819120948014 12951.795971969195]]]] [[[[14926.623238128788 15080.442598442185]]] [[[21763.047928792977 5542.659185927448]]]]]] ... [[[[[[2959.87606032017 3399.6920750839226]]] [[[18618.275008297183 4951.991631526835]]]] [[[[18673.595366783553 4252.8900347019335]]] [[[4476.910955061264 14855.28882792334]]]]] [[[[[13671.21090154668 16635.29763123693]]] [[[18035.513000343388 17301.802604950277]]]] [[[[10772.161593044591 15106.063966039055]]] [[[12178.008728153349 9770.56300477266]]]]] [[[[[8144.213392631362 19421.44043745573]]] [[[16257.280527207033 933.4435708399305]]]] [[[[10584.791061109034 10021.775733576342]]] [[[20597.1153775134 926.9673845754335]]]]]] [[[[[[2325.1274548203683 2701.7268458629305]]] [[[12789.8052651461 11616.882110161952]]]] [[[[15771.523802861644 9769.664419084362]]] [[[4556.875419588021 5394.729795044667]]]]] [[[[[12195.46374638124 4334.787486315335]]] [[[15116.419909153945 15494.050542766201]]]] [[[[2010.733395730325 23608.58870376279]]] [[[22785.790460755477 4473.695063001985]]]]] [[[[[2969.549840199122 4085.7465581843544]]] [[[15780.302785946616 1390.1195261189994]]]] [[[[13843.921713133772 6039.958493611572]]] [[[21228.395513041767 6063.623469436969]]]]]] [[[[[[5267.983678305646 6422.060867338299]]] [[[4257.106005638892 8097.710969548525]]]] [[[[11906.824195903991 2228.9714507767667]]] [[[11608.325694765852 9025.900786574988]]]]] [[[[[6253.394453529363 9723.81964538216]]] [[[21407.164851481724 11588.594940802655]]]] [[[[7163.146562756401 14976.273860349747]]] [[[16008.81735576385 8233.618077150675]]]]] [[[[[16488.761237127263 19071.557561326576]]] [[[22123.43248415623 315.7885448076506]]]] [[[[4361.6345514438435 11263.614277735189]]] [[[14899.25405529676 3320.9328460028837]]]]]]] [[[[[[[14976.51937191631 22703.00588360673]]] [[[10633.945775837028 10425.393762743308]]]] [[[[6853.767304550827 2615.3876779170027]]] [[[7309.644740551342 8046.874807723489]]]]] [[[[[23177.39036442562 13935.206742018041]]] [[[10559.973463008528 152.50564906993765]]]] [[[[22306.17063301023 12876.076609895545]]] [[[6571.7089544553655 11016.162347718553]]]]] [[[[[23278.516149205338 22217.188384717305]]] [[[14505.897028816398 8385.774175350489]]]] [[[[11165.860723940283 13121.483855193366]]] [[[10484.226250632371 19153.827087315745]]]]]] [[[[[[13542.024983334868 15477.03472112445]]] [[[10769.78599805142 20896.425335419473]]]] [[[[23202.045688479167 19745.97340164543]]] [[[21072.831492444056 14066.232803890956]]]]] [[[[[13211.009650749853 9426.280772316151]]] [[[22109.581257313694 18092.214512103423]]]] [[[[22234.65212051243 16687.711565646136]]] [[[15118.084226031093 5280.268161423989]]]]] [[[[[12093.116522631293 6719.364563637737]]] [[[21814.04468728967 21237.486229296843]]]] [[[[8434.910127404948 14325.044360383488]]] [[[21783.817523109832 9392.351143404589]]]]]] [[[[[[18252.11425045266 9991.63474756186]]] [[[20650.301578058712 6317.684430078797]]]] [[[[9822.860322687457 10398.709217403384]]] [[[18865.017288743133 15597.874653977577]]]]] [[[[[20390.13099932522 2454.3605133458477]]] [[[2887.5919036513596 19206.779460942318]]]] [[[[8066.169179201656 621.0541276232059]]] [[[10531.7462446066 20278.620378446354]]]]] [[[[[143.08110172039218 2671.3487017175444]]] [[[19406.547255408328 6151.886028660294]]]] [[[[13828.450138913006 9984.83617752984]]] [[[1920.3307319743583 5810.961647249435]]]]]] ... [[[[[[22092.914537594144 12105.889099078524]]] [[[19132.980674368337 6709.206703691882]]]] [[[[9797.935459744256 21535.073254272116]]] [[[16843.68545922926 16426.03570200596]]]]] [[[[[20176.819806098723 10554.139718666893]]] [[[7733.405851556887 13886.68056341942]]]] [[[[17273.610311874192 13114.176811470577]]] [[[11841.466522349705 9576.867263284134]]]]] [[[[[16014.499459514525 978.2062030387212]]] [[[20432.08333350512 16243.886032515938]]]] [[[[11396.869319032327 21818.192274354442]]] [[[8496.545482541116 16494.53538864136]]]]]] [[[[[[19153.60125779019 12581.074463860032]]] [[[23743.458038752695 2246.622635656006]]]] [[[[12069.05761060073 14616.323318786857]]] [[[16479.59331993355 11313.25670043268]]]]] [[[[[2748.5776260010134 10712.491702923233]]] [[[21476.579140907405 23023.435953027925]]]] [[[[8550.672220519313 585.537539928149]]] [[[22206.23145940728 13123.672977877877]]]]] [[[[[17675.890884993292 4701.253814710079]]] [[[4677.760966040151 11890.163366405792]]]] [[[[16829.337407837207 14801.947292830406]]] [[[21366.707244208428 11715.773071467507]]]]]] [[[[[[8641.747557391376 9375.07709400658]]] [[[17871.936618721997 16339.494180994207]]]] [[[[14443.904440756285 14410.02682806041]]] [[[4221.439399991636 3902.8210900001914]]]]] [[[[[18255.08637983322 1719.7026332334322]]] [[[12485.35489088717 1439.350457130902]]]] [[[[22462.426761938135 21835.183484596673]]] [[[20202.72571787729 11169.705292688468]]]]] [[[[[16192.664449669946 19273.30891921586]]] [[[17968.107146684757 11565.896661303168]]]] [[[[8718.927879040355 3101.4556030854264]]] [[[14897.892745997142 1100.932813858171]]]]]]]]]
Units CO2 gigagram/year
- timePandasIndex
PandasIndex(DatetimeIndex(['2000-01-01', '2001-01-01', '2002-01-01', '2003-01-01', '2004-01-01', '2005-01-01', '2006-01-01', '2007-01-01', '2008-01-01', '2009-01-01', '2010-01-01', '2011-01-01', '2012-01-01', '2013-01-01', '2014-01-01', '2015-01-01', '2016-01-01', '2017-01-01', '2018-01-01', '2019-01-01', '2020-01-01'], dtype='datetime64[ns]', name='time', freq='YS-JAN')) - area (ISO3)PandasIndex
PandasIndex(Index(['COL', 'ARG', 'MEX', 'BOL'], dtype='object', name='area (ISO3)'))
- category (IPCC 2006)PandasIndex
PandasIndex(Index(['0', '1', '2', '3', '4', '5', '1.A', '1.B'], dtype='object', name='category (IPCC 2006)'))
- animal (FAOSTAT)PandasIndex
PandasIndex(Index(['cow', 'swine', 'goat'], dtype='object', name='animal (FAOSTAT)'))
- product (FAOSTAT)PandasIndex
PandasIndex(Index(['milk', 'meat'], dtype='object', name='product (FAOSTAT)'))
- scenario (FAOSTAT)PandasIndex
PandasIndex(Index(['highpop', 'lowpop'], dtype='object', name='scenario (FAOSTAT)'))
- provenancePandasIndex
PandasIndex(Index(['projected'], dtype='object', name='provenance'))
- modelPandasIndex
PandasIndex(Index(['FANCYFAO'], dtype='object', name='model'))
- sourcePandasIndex
PandasIndex(Index(['RAND2020', 'RAND2021'], dtype='object', name='source'))
- entity_terminology :
- primap2
- area :
- area (ISO3)
- cat :
- category (IPCC 2006)
- scen :
- scenario (FAOSTAT)
- references :
- doi:10.1012
- rights :
- Use however you want.
- contact :
- lol_no_one_will_answer@example.com
- title :
- Completely invented GHG inventory data
- comment :
- GHG inventory data ...
- institution :
- PIK
- publication_date :
- 2099-12-31
Compared to the minimal example, this data set has a lot more to unpack:
The first thing to notice is that there are a lot more dimensions, in particular for the used
model, theprovenanceof the data, the describedscenario, and theanimaltype. As before, the dimensionscenario,animal, andproductuse a specific set of categories given in parentheses and with appropriate metadata in theattrs. Thescenariois a standard dimension, and the metadata inattrsis given using thescenkey. Theanimalandproductdimensions are nonstandard.There is also a coordinate which is not defining a dimension,
category names. It gives additional information about categories, which can be helpful for humans trying to make sense of the category codes without looking them up. Note that because this coordinate is not used as an index for a dimension, the category names do not have to be unique.In the data variables, emissions of the different gases all use all dimensions, but the population data does not use all dimensions. For each data variable, only the dimensions which make sense have to be used.
In the
attrs, the terminology for the entities is explicitly defined, so that the meaning of the entity attributes is unambiguously defined.In the
attrs, additional metadata useful for humans is included: citablereferences, usagerights, a descriptivetitle, a long-formcomment, an email address tocontactfor questions about the data set, and thepublication_date.
Processing information example#
For detailed descriptions of processing steps done to arrive at the dataset at hand, we use rich metadata types. This example shows a dataset with detailed processing step information.
# we don't actually do the processing, but add corresponding metadata as if we did
time = pd.date_range("2000-01-01", "2020-01-01", freq="YS")
area_iso3 = np.array(["COL", "ARG"])
with_processing = xr.Dataset(
{
"CO2": xr.DataArray(
data=np.random.default_rng().random((len(time), len(area_iso3), 1)),
coords={
"time": time,
"area (ISO3)": area_iso3,
"source": ["RAND2020"],
},
dims=["time", "area (ISO3)", "source"],
attrs={"units": "CO2 Gg / year", "entity": "CO2"},
),
"Processing of CO2": xr.DataArray(
data=np.array(
[
[
primap2.TimeseriesProcessingDescription(
steps=[
primap2.ProcessingStepDescription(
time="all",
function="rand",
description="invented from thin air",
),
primap2.ProcessingStepDescription(
time=np.array(["2000", "2001"], dtype=np.datetime64),
function="replace",
description="use other data which is also invented, but better",
source="betterData2024",
),
]
),
primap2.TimeseriesProcessingDescription(
steps=[
primap2.ProcessingStepDescription(
time="all",
function="rand",
description="invented from thin air",
),
]
),
]
],
dtype=object,
).T,
dims=["area (ISO3)", "source"],
attrs={"entity": "Processing of CO2", "described_variable": "CO2"},
),
},
attrs={"area": "area (ISO3)"},
).pr.quantify()
with_processing
<xarray.Dataset> Size: 576B
Dimensions: (time: 21, area (ISO3): 2, source: 1)
Coordinates:
* time (time) datetime64[ns] 168B 2000-01-01 ... 2020-01-01
* area (ISO3) (area (ISO3)) <U3 24B 'COL' 'ARG'
* source (source) <U8 32B 'RAND2020'
Data variables:
CO2 (time, area (ISO3), source) float64 336B [CO2·Gg/a] 0....
Processing of CO2 (area (ISO3), source) object 16B Using function=rand f...
Attributes:
area: area (ISO3)- time: 21
- area (ISO3): 2
- source: 1
- time(time)datetime64[ns]2000-01-01 ... 2020-01-01
array(['2000-01-01T00:00:00.000000000', '2001-01-01T00:00:00.000000000', '2002-01-01T00:00:00.000000000', '2003-01-01T00:00:00.000000000', '2004-01-01T00:00:00.000000000', '2005-01-01T00:00:00.000000000', '2006-01-01T00:00:00.000000000', '2007-01-01T00:00:00.000000000', '2008-01-01T00:00:00.000000000', '2009-01-01T00:00:00.000000000', '2010-01-01T00:00:00.000000000', '2011-01-01T00:00:00.000000000', '2012-01-01T00:00:00.000000000', '2013-01-01T00:00:00.000000000', '2014-01-01T00:00:00.000000000', '2015-01-01T00:00:00.000000000', '2016-01-01T00:00:00.000000000', '2017-01-01T00:00:00.000000000', '2018-01-01T00:00:00.000000000', '2019-01-01T00:00:00.000000000', '2020-01-01T00:00:00.000000000'], dtype='datetime64[ns]') - area (ISO3)(area (ISO3))<U3'COL' 'ARG'
array(['COL', 'ARG'], dtype='<U3')
- source(source)<U8'RAND2020'
array(['RAND2020'], dtype='<U8')
- CO2(time, area (ISO3), source)float64[CO2·Gg/a] 0.6326 0.2966 ... 0.3837
- entity :
- CO2
Magnitude [[[0.6325975165166506] [0.2965737100588096]] [[0.6404405023463234] [0.7227234509774569]] [[0.6008130003131497] [0.1172434491917419]] [[0.03380092802212087] [0.37671868194240477]] [[0.2677010539247605] [0.49534975152242144]] [[0.6889179293440574] [0.8663583732046445]] [[0.5263999210790112] [0.03736022386039617]] [[0.22991847977074142] [0.9288735624649831]] [[0.5748795742931722] [0.5104310872537933]] [[0.33409765627929666] [0.59949115097465]] [[0.8591124171313392] [0.18042729263874469]] [[0.02160059582787066] [0.011455430002852651]] [[0.4102512580496096] [0.21290051713321623]] [[0.7204819349840944] [0.7076187909408546]] [[0.34876592052865485] [0.7983193541297083]] [[0.1532642123414616] [0.07432676220723589]] [[0.712890082168694] [0.18306023170625085]] [[0.7644457391077832] [0.07772562131616945]] [[0.0040527988725607145] [0.8053507142983537]] [[0.11871283785357323] [0.6412383875266566]] [[0.5632153915593304] [0.38365598600318973]]]
Units CO2 gigagram/year - Processing of CO2(area (ISO3), source)objectUsing function=rand for times=al...
- entity :
- Processing of CO2
- described_variable :
- CO2
array([[TimeseriesProcessingDescription(steps=[ProcessingStepDescription(time='all', function='rand', description='invented from thin air', source=None), ProcessingStepDescription(time=array(['2000', '2001'], dtype='datetime64[Y]'), function='replace', description='use other data which is also invented, but better', source='betterData2024')])], [TimeseriesProcessingDescription(steps=[ProcessingStepDescription(time='all', function='rand', description='invented from thin air', source=None)])]], dtype=object)
- timePandasIndex
PandasIndex(DatetimeIndex(['2000-01-01', '2001-01-01', '2002-01-01', '2003-01-01', '2004-01-01', '2005-01-01', '2006-01-01', '2007-01-01', '2008-01-01', '2009-01-01', '2010-01-01', '2011-01-01', '2012-01-01', '2013-01-01', '2014-01-01', '2015-01-01', '2016-01-01', '2017-01-01', '2018-01-01', '2019-01-01', '2020-01-01'], dtype='datetime64[ns]', name='time', freq='YS-JAN')) - area (ISO3)PandasIndex
PandasIndex(Index(['COL', 'ARG'], dtype='object', name='area (ISO3)'))
- sourcePandasIndex
PandasIndex(Index(['RAND2020'], dtype='object', name='source'))
- area :
- area (ISO3)
Note that the processing information in the data variable “Processing of CO2” has the same dimensions as the described variable “CO2”, with the exception of the “time”. The time information is included in the rich metadata object itself:
print("COL processing:")
print(with_processing["Processing of CO2"].pr.loc[{"area": "COL"}].item())
print()
print("ARG processing:")
print(with_processing["Processing of CO2"].pr.loc[{"area": "ARG"}].item())
COL processing:
Using function=rand for times=all: invented from thin air
Using function=replace with source=betterData2024 for times=['2000' '2001']: use other data which is also invented, but better
ARG processing:
Using function=rand for times=all: invented from thin air
Limitations#
xarray does not provide a solution for the management of multiple data sets, including search and discovery, change management etc. For this, we use datalad.
At the moment, xarray does not deal with very sparse data efficiently. For large, very sparse datasets with lots of dimensions, primap2 is currently not usable.