diff --git a/models/recall/youtube_dnn/README.md b/models/recall/youtube_dnn/README.md new file mode 100644 index 0000000000000000000000000000000000000000..d7ae92e268dcafded93d4298639ed47271302d44 --- /dev/null +++ b/models/recall/youtube_dnn/README.md @@ -0,0 +1,146 @@ +# Youtebe-DNN + +以下是本例的简要目录结构及说明: + +``` +├── data #样例数据 + ├── train + ├── data.txt + ├── test + ├── data.txt +├── generate_ramdom_data # 随机训练数据生成文件 +├── __init__.py +├── README.md # 文档 +├── model.py #模型文件 +├── config.yaml #配置文件 +├── data_prepare.sh #一键数据处理脚本 +├── reader.py #reader +├── infer.py # 预测程序 +``` + +注:在阅读该示例前,建议您先了解以下内容: + +[paddlerec入门教程](https://github.com/PaddlePaddle/PaddleRec/blob/master/README.md) + + +--- +## 内容 + +- [模型简介](#模型简介) +- [数据准备](#数据准备) +- [运行环境](#运行环境) +- [快速开始](#快速开始) +- [论文复现](#论文复现) +- [进阶使用](#进阶使用) +- [FAQ](#FAQ) + +## 模型简介 +[《Deep Neural Networks for YouTube Recommendations》](https://link.zhihu.com/?target=https%3A//static.googleusercontent.com/media/research.google.com/zh-CN//pubs/archive/45530.pdf) 这篇论文是google的YouTube团队在推荐系统上DNN方面的尝试,是经典的向量化召回模型,主要通过模型来学习用户和物品的兴趣向量,并通过内积来计算用户和物品之间的相似性,从而得到最终的候选集。YouTube采取了两层深度网络完成整个推荐过程: + +1.第一层是**Candidate Generation Model**完成候选视频的快速筛选,这一步候选视频集合由百万降低到了百的量级。 + +2.第二层是用**Ranking Model**完成几百个候选视频的精排。 + +本项目在paddlepaddle上完成YouTube dnn的召回部分Candidate Generation Model,分别获得用户和物品的向量表示,从而后续可以通过其他方法(如用户和物品的余弦相似度)给用户推荐物品。 + +由于原论文没有开源数据集,本项目随机构造数据验证网络的正确性。 + +本项目支持功能 + +训练:单机CPU、单机单卡GPU、本地模拟参数服务器训练、增量训练,配置请参考 [启动训练](https://github.com/PaddlePaddle/PaddleRec/blob/master/doc/train.md) + +预测:单机CPU、单机单卡GPU;配置请参考[PaddleRec 离线预测](https://github.com/PaddlePaddle/PaddleRec/blob/master/doc/predict.md) + +## 数据处理 +调用python generate_ramdom_data.py生成随机训练数据,每行数据格式如下: +``` +#watch_vec;search_vec;other_feat;label +0.01,0.02,...,0.09;0.01,0.02,...,0.09;0.01,0.02,...,0.09;20 +``` +方便起见,我们提供了一键式数据生成脚本: +``` +sh data_prepare.sh +``` + +## 运行环境 + +PaddlePaddle>=1.7.2 + +python 2.7/3.5/3.6/3.7 + +PaddleRec >=0.1 + +os : windows/linux/macos + +## 快速开始 + +### 单机训练 + +``` +mode: [cpu_single_train] + +runner: +- name: cpu_single_train + class: train + device: cpu # if use_gpu, set it to gpu + epochs: 20 + save_checkpoint_interval: 1 + save_inference_interval: 1 + save_checkpoint_path: "increment_youtubednn" + save_inference_path: "inference_youtubednn" + save_inference_feed_varnames: ["watch_vec", "search_vec", "other_feat"] # feed vars of save inference + save_inference_fetch_varnames: ["l3.tmp_2"] + print_interval: 1 +``` + +### 单机预测 +通过计算每个用户和每个物品的余弦相似度,给每个用户推荐topk视频: + +cpu infer: +``` +python infer.py --test_epoch 19 --inference_model_dir ./inference_youtubednn --increment_model_dir ./increment_youtubednn --watch_vec_size 64 --search_vec_size 64 --other_feat_size 64 --topk 5 +``` + +gpu infer: +``` +python infer.py --use_gpu 1 --test_epoch 19 --inference_model_dir ./inference_youtubednn --increment_model_dir ./increment_youtubednn --watch_vec_size 64 --search_vec_size 64 --other_feat_size 64 --topk 5 +``` +### 运行 +``` +python -m paddlerec.run -m paddlerec.models.recall.w2v +``` + +### 结果展示 + +样例数据训练结果展示: + +``` +Running SingleStartup. +Running SingleRunner. +batch: 1, acc: [0.03125] +batch: 2, acc: [0.0625] +batch: 3, acc: [0.] +... +epoch 0 done, use time: 0.0605320930481, global metrics: acc=[0.] +... +epoch 19 done, use time: 0.33447098732, global metrics: acc=[0.] +``` + +样例数据预测结果展示: +``` +user:0, top K videos:[40, 31, 4, 33, 93] +user:1, top K videos:[35, 57, 58, 40, 17] +user:2, top K videos:[35, 17, 88, 40, 9] +user:3, top K videos:[73, 35, 39, 58, 38] +user:4, top K videos:[40, 31, 57, 4, 73] +user:5, top K videos:[38, 9, 7, 88, 22] +user:6, top K videos:[35, 73, 14, 58, 28] +user:7, top K videos:[35, 73, 58, 38, 56] +user:8, top K videos:[38, 40, 9, 35, 99] +user:9, top K videos:[88, 73, 9, 35, 28] +user:10, top K videos:[35, 52, 28, 54, 73] +``` + +## 进阶使用 + +## FAQ diff --git a/models/recall/youtube_dnn/config.yaml b/models/recall/youtube_dnn/config.yaml index f77755150cd84b5a5c30a3736aa15315ce239364..048963f558b54cc7cfedf505f30bca589852a597 100644 --- a/models/recall/youtube_dnn/config.yaml +++ b/models/recall/youtube_dnn/config.yaml @@ -17,11 +17,10 @@ workspace: "models/recall/youtube_dnn" dataset: - name: dataset_train - batch_size: 5 - type: DataLoader - #type: QueueDataset + batch_size: 32 + type: DataLoader # or QueueDataset data_path: "{workspace}/data/train" - data_converter: "{workspace}/random_reader.py" + data_converter: "{workspace}/reader.py" hyper_parameters: watch_vec_size: 64 @@ -30,22 +29,23 @@ hyper_parameters: output_size: 100 layers: [128, 64, 32] optimizer: - class: adam - learning_rate: 0.001 - strategy: async + class: SGD + learning_rate: 0.01 -mode: train_runner +mode: [cpu_single_train] runner: -- name: train_runner +- name: cpu_single_train class: train device: cpu - epochs: 3 - save_checkpoint_interval: 2 - save_inference_interval: 4 - save_checkpoint_path: "increment" - save_inference_path: "inference" - print_interval: 10 + epochs: 20 + save_checkpoint_interval: 1 + save_inference_interval: 1 + save_checkpoint_path: "increment_youtubednn" + save_inference_path: "inference_youtubednn" + save_inference_feed_varnames: ["watch_vec", "search_vec", "other_feat"] # feed vars of save inference + save_inference_fetch_varnames: ["l3.tmp_2"] + print_interval: 1 phase: - name: train diff --git a/models/recall/youtube_dnn/data/test/data.txt b/models/recall/youtube_dnn/data/test/data.txt new file mode 100644 index 0000000000000000000000000000000000000000..64aff676b129b695ec331e5ea1a94439e16bf4d8 --- /dev/null +++ b/models/recall/youtube_dnn/data/test/data.txt @@ -0,0 +1,64 @@ +0.663491309502,0.0462631992275,0.110320166459,0.935335624774,0.848423288725,0.327383024174,0.034578861577,0.504204625525,0.399456947718,0.991494076354,0.35609069258,0.125509644035,0.111029681241,0.0107053613687,0.152277864434,0.429065973674,0.729009199679,0.372730438865,0.718309629947,0.0316650827627,0.692915557804,0.293932169136,0.401600100989,0.352075402009,0.664737695934,0.289952120467,0.51277750852,0.154503453043,0.45670774431,0.0895023758903,0.55951065107,0.691613915701,0.818114155108,0.357621685047,0.107789992823,0.497176331166,0.600770277764,0.922752018451,0.130871137521,0.426172183235,0.612807451472,0.293261179287,0.528358015663,0.278022232811,0.0177712748998,0.898082038855,0.438455293642,0.519032213197,0.810505919363,0.314394908905,0.965395894347,0.640618801149,0.292650315102,0.0489737047336,0.677445066279,0.47339913205,0.674104405663,0.0801497353144,0.756026837013,0.52593217333,0.452235002417,0.604411817701,0.907287679446,0.827230202401;0.977850828727,0.735656171429,0.785065544916,0.198565780904,0.544706505849,0.039677952396,0.551253079018,0.456750818092,0.585714877564,0.268410045505,0.835015425245,0.290519189488,0.796901000452,0.775228099834,0.0567713455371,0.557388639646,0.966095579815,0.843225508661,0.948695698346,0.364014886224,0.258156903853,0.031010847574,0.594834206166,0.395727543894,0.0792763660784,0.592895825115,0.522951141801,0.191433851403,0.221839072089,0.499329731329,0.0726435584111,0.1304435334,0.649220700074,0.484940332254,0.152309421606,0.483157636438,0.595243129114,0.521842790617,0.104613332731,0.79384428159,0.422804794194,0.30496294286,0.0520971284786,0.801279246323,0.737422875989,0.931025257885,0.551735146559,0.272569007741,0.532573776049,0.936146709892,0.741300360879,0.182841290271,0.268204500494,0.564380671493,0.28277740763,0.764460991224,0.724844562963,0.308909533554,0.278068690764,0.720810517049,0.234775525122,0.118345564569,0.605303865539,0.957503776109;0.163856499285,0.125235057206,0.388318092277,0.73267295319,0.692168583601,0.906625620481,0.391968364638,0.943677721055,0.385348826216,0.342165092282,0.48472722125,0.51775663604,0.348643731423,0.347010096317,0.581397840675,0.190013631798,0.680276644748,0.447425075407,0.614735014292,0.559669119341,0.702003534572,0.400971637847,0.0481670731018,0.0111658500663,0.435858990037,0.173385332599,0.524925859985,0.348288246857,0.0383219216165,0.71052852859,0.605787275729,0.821580479003,0.738849562248,0.638459375397,0.751616688942,0.938587853982,0.675601293552,0.881685410647,0.623529699606,0.0999096097592,0.395782593427,0.455395361703,0.428868038193,0.556811521285,0.0713573220307,0.17473662534,0.252939630435,0.231317391034,0.650861201945,0.650616888743,0.281837855624,0.133947886298,0.975968680651,0.159729710584,0.320483227141,0.149009687982,0.0538050636189,0.923100934601,0.377769143565,0.99784039723,0.171793507873,0.564098485978,0.425088114926,0.480168767917;77 +0.240113165562,0.267870364888,0.374637318615,0.514929824877,0.716442539659,0.687188435509,0.431795983761,0.282617527388,0.279806807337,0.782306485779,0.0813236874565,0.48251037202,0.940696766059,0.544022751138,0.870396657783,0.513032578541,0.914506889493,0.778598646097,0.420243279492,0.573537772663,0.0251884577576,0.314035931941,0.0898679049542,0.226083844597,0.624544438014,0.639909932124,0.0869942540311,0.400298654596,0.433940176861,0.998156058468,0.378203493652,0.954433222885,0.919894792644,0.500558240958,0.797119428749,0.139917394886,0.556429163424,0.033879808158,0.743059049225,0.0289670375101,0.946784078146,0.764913490018,0.768904655539,0.944966988083,0.211139676873,0.137240250032,0.872591787866,0.851957988622,0.586369215955,0.12245953253,0.946293652962,0.899127760712,0.886295538965,0.267343058305,0.722479381005,0.810999188324,0.514765795566,0.922560651823,0.722150743104,0.816356715765,0.928733112471,0.0796178994383,0.736380979936,0.885181882909;0.551753107151,0.838546816445,0.122904269167,0.323103301086,0.132919501078,0.576905375866,0.984423535155,0.29520294088,0.161923614258,0.600354281829,0.258637378523,0.00239171384147,0.980366516116,0.0629821747231,0.23091704681,0.149788520989,0.073038253184,0.817858214261,0.311085927981,0.451745327073,0.00800133883701,0.968512119148,0.266708658584,0.948805441929,0.280470098943,0.499638733555,0.0780162121983,0.213547219827,0.781332820802,0.737137754376,0.923380909887,0.504403770868,0.0797837565997,0.933828690957,0.402604312194,0.340550360326,0.454714701804,0.528414566388,0.182807864892,0.699446274816,0.267468234067,0.322969053713,0.580013695791,0.123763518439,0.979544543037,0.836834720328,0.607196843414,0.052550052345,0.905725885958,0.720559052794,0.0123805985389,0.324768289781,0.791103790457,0.259593577677,0.191189245627,0.11171464737,0.20569487595,0.996716603956,0.603393443294,0.91758808474,0.261917465613,0.813254532102,0.790294641069,0.249964663698;0.358971542394,0.656430037701,0.396550860386,0.51864810386,0.768387668512,0.0375002678572,0.822942909594,0.730751405004,0.537872292969,0.144344426046,0.0775013488723,0.669601916963,0.0294409664303,0.813056834164,0.705822650056,0.64128711119,0.300453032616,0.18171910265,0.376285757739,0.085487269247,0.781100581359,0.339437694984,0.149333843138,0.946515459227,0.787867294135,0.195533163327,0.241486295643,0.944827263044,0.635978553309,0.217530754976,0.973056666757,0.995766256677,0.724799481313,0.655250130052,0.800592533838,0.709143752741,0.547655081164,0.194908803793,0.477192673919,0.908352710165,0.33729015512,0.791222675031,0.964981234381,0.53759488587,0.967173750664,0.522832136281,0.598816577784,0.900626050696,0.0585993047708,0.488163240304,0.477697515579,0.845985218274,0.272847490792,0.0731308925424,0.879736188523,0.775593132792,0.789684069342,0.188910128289,0.811020763404,0.461178380391,0.63599701941,0.653753802122,0.107165018536,0.715507173913;43 +0.808897933914,0.460436674705,0.0199705291616,0.654661690135,0.159885982799,0.823615275975,0.462332977825,0.548065543183,0.599400911103,0.858961264993,0.68619205841,0.811414527058,0.865716618066,0.372163944107,0.359168960492,0.794859247684,0.862977143912,0.928916090744,0.83549274173,0.538640682049,0.255076446308,0.311073768365,0.712646447015,0.771687423882,0.158281135739,0.735419620227,0.673828277497,0.413501398812,0.666221816046,0.979522514177,0.0869729438034,0.522659194106,0.313020118137,0.501003536438,0.72142925621,0.981984490643,0.351026223178,0.861440703512,0.915337954675,0.593464721616,0.84566990395,0.0060091068861,0.880374273012,0.361641141811,0.297712253835,0.109681613938,0.920306728028,0.943792795067,0.111632320528,0.584759761299,0.232702258941,0.134234086745,0.401845000498,0.99327543075,0.133149460531,0.303367949948,0.131433256836,0.817334755288,0.676094940714,0.735920094987,0.426198449316,0.699118426212,0.664974932901,0.671440009981;0.810470246738,0.996400809654,0.557300251316,0.973690580315,0.817695733793,0.99100292803,0.544695036496,0.851448839092,0.337750810561,0.973677590625,0.540666394817,0.147454359907,0.313334686559,0.207806003152,0.50587303088,0.326536209701,0.449164525937,0.624193949641,0.771680851421,0.808576141639,0.340508197972,0.332360060518,0.346499575308,0.858714301864,0.896631623432,0.471681218796,0.273805253218,0.13051720947,0.216253598573,0.390633087578,0.318490327768,0.679084110249,0.889729867557,0.515539616955,0.162458510692,0.821666265245,0.366579461791,0.225214000649,0.933303375342,0.310274372844,0.144496095051,0.14900238681,0.591456687532,0.776748501147,0.888788271424,0.540532195925,0.341493394633,0.309373758965,0.328457113391,0.0556112488816,0.629293874646,0.190598330811,0.41647419596,0.0904873984056,0.870229969245,0.811513526748,0.48562529399,0.808964642338,0.487973003948,0.109264517586,0.613284366711,0.704175978585,0.0579393759987,0.558635071516;0.153623871989,0.178769718873,0.545892695755,0.172147918411,0.717615793427,0.977299705364,0.884722115391,0.309235651592,0.355922436526,0.751404821931,0.530610321305,0.795350511266,0.48205120444,0.325725232803,0.0920412110703,0.604264431466,0.556661717974,0.126839344118,0.860378150385,0.320953740491,0.907626065104,0.667790814138,0.530521901658,0.393532235473,0.180271110043,0.954903488463,0.460110543359,0.615823126232,0.450125071419,0.538975926214,0.232180879229,0.982322511673,0.576169420626,0.17317885903,0.191801959885,0.822955532481,0.452326058136,0.367219298864,0.342959975899,0.462828530948,0.895548447661,0.471597347321,0.22993461118,0.647698060855,0.236987803256,0.408605583683,0.64540266099,0.139592270019,0.094624564263,0.837284297571,0.723230292374,0.223450193947,0.263667123822,0.787438190199,0.692312363377,0.0961851091355,0.899728398132,0.20153959089,0.323061307106,0.505494287501,0.1095590698,0.750620276727,0.0832661577546,0.209466848179;55 +0.754810259556,0.688280762912,0.0680950053749,0.995267581723,0.996915560442,0.302409447644,0.603095025342,0.845522566468,0.577259904019,0.804505191091,0.672571546979,0.952363454582,0.670681904495,0.449861925023,0.593334205557,0.547809459563,0.684447386626,0.105225974447,0.76612516256,0.423049935447,0.728539259269,0.781261849581,0.511540744374,0.647102726362,0.600859626787,0.127246337358,0.688218306252,0.713265035217,0.270069747563,0.300840456695,0.348619145273,0.312169932148,0.802808111969,0.977965359216,0.695767497082,0.171534465093,0.413750151305,0.326785462472,0.371911133343,0.91293704507,0.978704391278,0.172665958475,0.00102737760708,0.167951387036,0.68858563029,0.479617073814,0.290008430836,0.844870539684,0.514123468323,0.955386629673,0.615674034164,0.23487836956,0.710514846162,0.351254037455,0.612844336866,0.291925824899,0.997136932572,0.00169261607213,0.444686282579,0.0486738307777,0.297112957743,0.338849670705,0.751024759738,0.548073135517;0.135393157279,0.849024890129,0.759095371819,0.833282976673,0.349648322151,0.60355313391,0.7940706333,0.61047573342,0.578257800778,0.80007409031,0.532551718953,0.717014751971,0.582310544233,0.324110068838,0.745708311372,0.319449217768,0.786982320361,0.35789723554,0.366181238809,0.974455638497,0.290601108526,0.129031439907,0.318531309264,0.800038003345,0.843832378365,0.00797756531259,0.381626834199,0.592662808997,0.42703631581,0.539493248082,0.506434406905,0.0787009791353,0.492074170795,0.617498913236,0.0406792187885,0.17831666829,0.99327948904,0.579284094557,0.0871404107487,0.223100329347,0.268972309269,0.163058838896,0.866520134505,0.905018904846,0.131427174043,0.0875822440131,0.86957819241,0.533153830004,0.72141494771,0.1943031372,0.315772856725,0.0139693847867,0.355607331089,0.244051560788,0.753228772653,0.409103219654,0.954008022624,0.577796574621,0.200323622034,0.495054296478,0.0560124353015,0.935237106903,0.0427643855117,0.784833363844;0.882798740347,0.957138513345,0.355646809734,0.828499661383,0.194755351811,0.796290388219,0.133919966814,0.16698868868,0.112416074406,0.772266421898,0.838970740436,0.82379501792,0.852037162902,0.266115010187,0.646364548939,0.346819025675,0.900314353398,0.418216009662,0.128228710165,0.523855521557,0.99139743071,0.258598235524,0.692979025222,0.981222895124,0.430095610905,0.62130465303,0.283439551805,0.547697499464,0.667354675995,0.0125966552668,0.964128651924,0.345588173906,0.787910107124,0.585571050466,0.22090229699,0.904227522851,0.266038337969,0.918573511342,0.411576597423,0.0296892719344,0.412740612311,0.666866850055,0.444985362773,0.709197272438,0.887383077631,0.620263545776,0.177091196313,0.099913599062,0.0703884789993,0.785673718074,0.605520366445,0.985760493216,0.506257472925,0.509363276421,0.247450903667,0.944906884834,0.732556166791,0.191958980934,0.953731326015,0.335560187764,0.830570458691,0.789896458932,0.310445853112,0.867640785621;20 +0.591525495943,0.897549861471,0.117727800095,0.482349070216,0.178775216087,0.643543222409,0.748648229648,0.428077967767,0.0949528443634,0.15950205454,0.52954328841,0.282539483893,0.443925271995,0.425605626983,0.761351182083,0.104335160666,0.155074978378,0.0927238888822,0.230856161476,0.588131019787,0.609388803209,0.151961950118,0.598729622228,0.947868060316,0.572645259724,0.573768761421,0.528383345115,0.652782801721,0.900362126642,0.808510646682,0.389762625278,0.235017020902,0.678767701488,0.516326283738,0.549488778953,0.245551014361,0.859644600312,0.909320196675,0.549246920681,0.260209340424,0.877186094881,0.838294828234,0.236579445859,0.281498845608,0.901676869202,0.620528669292,0.360673857741,0.780485058333,0.562146200343,0.719302271603,0.188025015228,0.0944832242447,0.682737164192,0.92240225292,0.132975419385,0.822565486579,0.808649977836,0.815876127866,0.62080148932,0.820479800503,0.202503297841,0.936065105128,0.519244843708,0.393579985963;0.596469805146,0.549605996609,0.504582004206,0.785903874422,0.418544329324,0.2223062839,0.59010504325,0.736689214628,0.113451190099,0.417154707111,0.831645586808,0.0346132687277,0.683336725873,0.280967253016,0.0370857159769,0.18491531856,0.255509639819,0.53317734344,0.579307658756,0.420558472277,0.775077621428,0.456215919904,0.0906526135843,0.582323560366,0.736788447024,0.0138757331795,0.97177734031,0.109511388626,0.531199698839,0.905780299161,0.966905226225,0.23678832549,0.787116187426,0.696062697674,0.0482550030315,0.839050281168,0.746950332415,0.192611108684,0.368064604702,0.275213231078,0.0144333121953,0.249130088042,0.537250917521,0.135481078935,0.928916332627,0.280986644388,0.387037101213,0.0469033808488,0.926784982742,0.533434059223,0.439221084262,0.599682485434,0.360660701518,0.68117542104,0.726066459134,0.793989069422,0.840191555518,0.454814910364,0.0868079477428,0.750159449927,0.613683370976,0.282919226748,0.646466947939,0.331159714559;0.773588145516,0.136315389136,0.412067918632,0.158284243981,0.8021483748,0.624294254,0.615666463995,0.472796974382,0.377872478235,0.597394496593,0.551776585375,0.636708412752,0.773480737358,0.431235515025,0.71827651887,0.297440480825,0.707034596039,0.371858971253,0.876182836114,0.291963880592,0.398668659643,0.869907560822,0.70575998916,0.875906922668,0.924394332338,0.278450047881,0.338394726901,0.67625007464,0.122318514715,0.690960404392,0.448124615794,0.364600445418,0.627723205281,0.657832180333,0.238555416716,0.777788679179,0.299453160187,0.9758870655,0.355028408123,0.310747870072,0.669370024211,0.675397191206,0.612362070371,0.109324325954,0.354720560012,0.584811246716,0.641211530067,0.152493413106,0.485870522422,0.286170250038,0.952459303646,0.957509081447,0.0632532367508,0.11788664538,0.539419597355,0.659810896725,0.167215612459,0.400539816197,0.966817081763,0.797075223806,0.402433158348,0.0491251491261,0.0342667322765,0.953796953153;41 +0.208485376451,0.1981322895,0.298727727493,0.447520846392,0.261465733895,0.92565619824,0.615179050804,0.899054192464,0.547323344821,0.3566108844,0.408560372363,0.0124023809787,0.856998960034,0.150652032013,0.948649001701,0.637028862937,0.0545658299411,0.965409949677,0.61255519784,0.275254894952,0.564144731314,0.303707826769,0.850370563212,0.803638888708,0.524717949885,0.925896173957,0.856149101205,0.901262799025,0.833290557045,0.567751051369,0.623788586077,0.335743292999,0.962893057104,0.661694178834,0.309443036632,0.157463540432,0.943961078213,0.000355146311373,0.38297783229,0.50949261284,0.937978827033,0.629759035436,0.154147733644,0.79735146601,0.614100043503,0.643046372234,0.616575833476,0.0636697010713,0.686521312212,0.430045180973,0.452719573189,0.304317121825,0.855524971589,0.924711427366,0.245908568432,0.699293866159,0.902813537191,0.923837585101,0.827258318108,0.280203405534,0.231731953871,0.0952317421256,0.734102048423,0.0927595805285;0.250559039304,0.585889647435,0.71639937349,0.0886526322388,0.179550068219,0.0377287668272,0.70686478294,0.0896610279185,0.675290171027,0.466841841541,0.768212717277,0.454611074805,0.663236583381,0.574138818144,0.193654781794,0.513425249328,0.934755832624,0.249842347908,0.306462185332,0.315210656353,0.426828126243,0.282302324448,0.431007828441,0.812276962624,0.426655594716,0.218233187486,0.507512861828,0.699539520159,0.613247709411,0.910215087061,0.950766385333,0.381998561322,0.466545213044,0.61123004049,0.925439412557,0.706449485424,0.757683640886,0.89563799863,0.0630912239069,0.321197730485,0.943257073259,0.402341654384,0.256100660844,0.0469485602118,0.861347684295,0.81413131796,0.670985901277,0.405493240565,0.674116828632,0.534066156015,0.267282078554,0.67915138414,0.764077049893,0.641090524697,0.596647133684,0.920921244467,0.128148032649,0.0739780486153,0.903119515224,0.434436133534,0.545954293976,0.810319198278,0.963576398248,0.74332155827;0.071588583663,0.538181123743,0.55913869609,0.0841418390646,0.235957267739,0.105171181669,0.91137989325,0.880166773866,0.193186740678,0.711815644128,0.20648305807,0.509636805324,0.934136770913,0.728013346185,0.722995147697,0.446594343221,0.0324145091773,0.498952353756,0.734415612823,0.439008879691,0.135851087737,0.40263653393,0.437349700025,0.806488862688,0.85373332389,0.018074899907,0.107276914418,0.404022738031,0.782445787332,0.0811732421762,0.78349281883,0.118715643162,0.0884546795912,0.164987139179,0.27727408064,0.125876930095,0.572886670348,0.944768772407,0.34520519536,0.237404559862,0.813886538421,0.904444309245,0.480615093002,0.741426091874,0.731463848364,0.323258857571,0.3982261306,0.0866535391128,0.202040700403,0.474255673613,0.217084878124,0.0673281037888,0.179250968085,0.391814609404,0.201019852774,0.00581211136683,0.293034997684,0.734903789879,0.482700408983,0.418625304255,0.639239987906,0.987963196262,0.932266290299,0.80558910896;7 +0.0394250821843,0.667096987662,0.6852199234,0.322152625783,0.0831297826256,0.417388408442,0.119626412734,0.583142641933,0.328836941664,0.378838172645,0.296536526823,0.86627090194,0.280755909376,0.769139742551,0.176496754645,0.695449820536,0.762365020954,0.654895991015,0.505611373621,0.521622586682,0.572681732498,0.799559038639,0.645284754532,0.671750828682,0.588716607468,0.560908094496,0.332222275704,0.866980283146,0.122628215822,0.827757705088,0.422226810202,0.953684061102,0.983257135957,0.916034375317,0.314916428655,0.315350501352,0.939544719173,0.610034622616,0.266579500397,0.145513559823,0.224693205526,0.544431419652,0.773941401248,0.398233058041,0.614756213372,0.842706469777,0.309626883791,0.518110620351,0.656826310228,0.343749985145,0.984879928169,0.578248719948,0.231147552227,0.264694538252,0.132476403195,0.329001838319,0.765972831307,0.450010973556,0.338863918987,0.343516975285,0.715246892131,0.205819429029,0.740417803722,0.803184074626;0.46487906503,0.942583986289,0.933914175578,0.741524244359,0.995257560752,0.326806012694,0.965152989621,0.445259351764,0.795759518522,0.595878963864,0.873887440165,0.870105318346,0.617192396715,0.278690488658,0.446425038963,0.00302644791813,0.56248531385,0.556432776241,0.413631685936,0.663589235125,0.222443060603,0.115869279152,0.655337641558,0.983079897449,0.365644173157,0.33715998563,0.922196370522,0.48047871011,0.144201732166,0.733507665829,0.49688875838,0.128541978566,0.834408560739,0.0593667109814,0.353837247596,0.253660176617,0.907059358316,0.661557118079,0.800576498624,0.140522293661,0.696788097976,0.327009207628,0.254439472881,0.935461110419,0.758764213834,0.419289253021,0.262683520613,0.993650636199,0.606737067674,0.280459345253,0.521639860962,0.988193737617,0.984907714892,0.989169957443,0.0870027490973,0.611493154563,0.132373449661,0.18060531124,0.712421058962,0.394307821809,0.975912064341,0.484609702115,0.659847548564,0.203867352529;0.0529854033463,0.746226412397,0.557109605806,0.649507458758,0.480512950815,0.662257228764,0.423919631573,0.735389286035,0.12415953796,0.904266044173,0.87552384735,0.872059032136,0.441094314923,0.573547775304,0.877742186956,0.37703891949,0.657615100513,0.584239918984,0.588663700439,0.36921855407,0.527188717051,0.710258977263,0.335466108063,0.326442807604,0.499985090909,0.0840245000273,0.378906563187,0.972387226397,0.866668416324,0.410572583177,0.32123695457,0.0166133910892,0.701244200875,0.953670072266,0.673988935126,0.535456571093,0.365615096652,0.028776724419,0.786646437292,0.259280694873,0.712055650025,0.253433428634,0.538148858037,0.148278606376,0.35724689791,0.41807901463,0.305943997308,0.435903530598,0.665386152484,0.574266427626,0.0245460832832,0.958718830292,0.182702921875,0.00186532651674,0.733661723121,0.525324657059,0.650362876355,0.962715562931,0.159310672373,0.812685230319,0.987949002506,0.272086466435,0.628895671592,0.821361049744;62 +0.0612270182104,0.500579163077,0.65001027159,0.243082821384,0.426155521223,0.550158954921,0.717070891704,0.131990790016,0.785179775839,0.675312590294,0.160535516469,0.138998238547,0.15586102193,0.0526596208628,0.159259943808,0.114551041961,0.53449157503,0.139778992909,0.788778053752,0.0888856383438,0.391947065278,0.0253207109916,0.109872744164,0.706107793116,0.617934201612,0.467111193924,0.178253857015,0.828725199332,0.172986335743,0.0235738639601,0.141434933182,0.0143797439854,0.0473123066686,0.591102111386,0.0583496516801,0.78207327036,0.280679658942,0.67427817607,0.627372050544,0.805449204723,0.117766783318,0.994151206918,0.959364881829,0.774756136244,0.268321215756,0.0120091314864,0.433837839598,0.184523393309,0.843627444495,0.427963743774,0.0630755475265,0.351565022469,0.838791638541,0.772502540014,0.0556028403085,0.930386041611,0.117749282612,0.0197484408877,0.888572508581,0.0084259239974,0.219229048981,0.250550131597,0.975792603065,0.364909304051;0.926745242661,0.335551166884,0.815222192802,0.913635034832,0.585740778888,0.151449312223,0.269068603884,0.434208104594,0.449008971244,0.0100992059901,0.870037320976,0.440085682059,0.797188217912,0.703294847194,0.773105031709,0.599451831617,0.743683245065,0.681798615717,0.419982343851,0.957522447496,0.485045821704,0.756219802457,0.0688054395314,0.931265860554,0.561767009874,0.355176111565,0.813718201821,0.114748615592,0.149437063195,0.146270380711,0.140105051306,0.114377904846,0.565872430093,0.793689825684,0.625573601873,0.800235762824,0.620568414366,0.979189648869,0.803705590275,0.502819683371,0.605207775527,0.0875247864904,0.923914946354,0.607438785635,0.941621014841,0.077276431614,0.628673944569,0.721189443705,0.390390516623,0.188651147127,0.189576632095,0.187061121916,0.67888030455,0.88638813769,0.537858707776,0.208809550931,0.565202448372,0.466375732603,0.0254702255384,0.272583273532,0.864470440808,0.373475720094,0.896847021691,0.0797468509315;0.413133998843,0.504331397568,0.892584438643,0.369055407957,0.563432419234,0.723178295285,0.979925608947,0.995251007818,0.560365864373,0.606602407876,0.639317289216,0.0230071047888,0.015162505436,0.590285201185,0.222124145073,0.0832276384282,0.89282343441,0.512938465967,0.358546653426,0.983160314628,0.154970406952,0.359924670864,0.966623715755,0.623087306676,0.104981423441,0.764405051051,0.816271345665,0.255568847083,0.622732149201,0.561095472321,0.426261722517,0.352661724043,0.264858366797,0.709861126538,0.25821799552,0.619153706042,0.58309555603,0.3422568712,0.713693060326,0.880755795453,0.638721329279,0.882228767844,0.985106942591,0.31105054231,0.551308841458,0.362703318693,0.624320224001,0.640816683152,0.314166418527,0.57328082297,0.713423095368,0.699148447327,0.306474746455,0.400217357239,0.334255337964,0.17878405321,0.693517044783,0.149229646125,0.639966658124,0.689301369134,0.237751774037,0.395099162015,0.285770229363,0.581941594796;41 +0.633837947198,0.883880722832,0.843481948981,0.175407097155,0.878168929406,0.264993328001,0.431923576777,0.520788955082,0.291206767632,0.252275674469,0.634180592627,0.417903788603,0.270632918884,0.851286876578,0.792208948268,0.346735999909,0.816877534692,0.988746827119,0.157041255426,0.825388876831,0.201724709267,0.266967490335,0.34756677075,0.05466272463,0.522789958492,0.0781521771394,0.528469100546,0.621620384099,0.179807687768,0.342895652312,0.205237706513,0.502405690956,0.657360619956,0.431529531319,0.691630920486,0.407238563097,0.0630787667202,0.481383968682,0.142729404167,0.211294758846,0.751733888305,0.959504416486,0.239209884352,0.675393661186,0.256313238907,0.337244808081,0.863075052528,0.317612845571,0.964840102303,0.15828751372,0.291994676059,0.696622910512,0.99394069582,0.222426827715,0.226059564332,0.158623669618,0.566249309558,0.507200081108,0.202742634197,0.352013643721,0.884756407515,0.772070113869,0.382783632854,0.350818289991;0.996154915046,0.772540130762,0.591663542338,0.492629584595,0.0978558308763,0.207399633271,0.620699164573,0.70183465876,0.159414598007,0.697722066877,0.0863783466819,0.92259209291,0.58696674662,0.520400431084,0.653459796609,0.577732099072,0.671198506213,0.246990810861,0.602234523666,0.406112310798,0.862209098812,0.278884628499,0.241316719845,0.315955535641,0.10521624513,0.228643148558,0.800601556465,0.715449035244,0.798282016526,0.584408215657,0.540739417348,0.704809810272,0.571682104929,0.416117521184,0.380673120834,0.741928526652,0.304086985069,0.48604132617,0.0189175648211,0.47110159331,0.37530666269,0.786854591704,0.267128268071,0.100254415557,0.968065469848,0.190777898067,0.730617269492,0.416658723608,0.72420175472,0.756643299372,0.983416027443,0.358627741755,0.191059104537,0.739290302445,0.159798952385,0.795308050271,0.173145439737,0.453163592564,0.968541477862,0.171022955984,0.352141416208,0.390709614091,0.887831319527,0.0586960870833;0.886059784416,0.784203696477,0.397728965644,0.457483223272,0.520787958174,0.602395397666,0.739716337718,0.786600243175,0.7835840674,0.73130642908,0.325463534055,0.961465075579,0.117457457988,0.692086724965,0.0610322920242,0.968501256614,0.890874789209,0.945548570494,0.612453221614,0.975949437637,0.8457577988,0.681794918527,0.0260949790946,0.000218217957998,0.694209922898,0.920534825838,0.0148138964044,0.840214553265,0.387193424939,0.207746477051,0.445760031922,0.696776047825,0.917731578741,0.27701266839,0.928614062723,0.0416094674729,0.741053283442,0.373192306681,0.757702224772,0.212625424042,0.862228772098,0.447220533044,0.144360851143,0.543075391613,0.0182406428293,0.975123811618,0.761067737468,0.928266433268,0.262522346423,0.893568903235,0.171428255622,0.972540551517,0.568391217639,0.598054903731,0.108793400207,0.355570521922,0.235096728389,0.705339303147,0.625970789985,0.630318262434,0.798947623477,0.840720270506,0.499156090976,0.679633536246;12 +0.894246661061,0.964302247761,0.299928768087,0.993771366998,0.89194918606,0.922995224958,0.937190833429,0.699992951869,0.764483954754,0.565043052926,0.393414845997,0.0727481422132,0.183188386534,0.0259306442228,0.211938177051,0.808823423195,0.0352432650841,0.638193759381,0.0714375330312,0.0630349059514,0.111235855297,0.685945981341,0.194288577807,0.494338437836,0.204224103646,0.887759438812,0.787221938999,0.172546158389,0.799938061907,0.235126858982,0.670434081876,0.461533935105,0.579284105104,0.0624200550922,0.571702239989,0.584336220557,0.573220426705,0.868799824889,0.978758123754,0.987822823401,0.485910571901,0.344475541901,0.626849747293,0.462446316507,0.385635701239,0.711119812822,0.407675216855,0.410452764739,0.525954419769,0.38756213522,0.6507797179,0.352878312663,0.248972859219,0.217789937235,0.0807236711564,0.608309391048,0.425684024444,0.171069072881,0.844864654507,0.2481004186,0.773117274462,0.615784251364,0.745303165336,0.73095618392;0.733263748006,0.788095460633,0.93200015895,0.438391457435,0.9062224192,0.0652673794201,0.389644985928,0.894282951172,0.916897290853,0.459783555547,0.45147782607,0.274513245142,0.475983018416,0.728249886233,0.00690542140021,0.520137442435,0.785207216385,0.583785009364,0.738145716658,0.73704461979,0.106288310894,0.109344714783,0.913648706483,0.57941552452,0.262644728239,0.894685220872,0.38433039774,0.15470368091,0.896790787681,0.203799209782,0.873585469931,0.13182569318,0.53640350871,0.501035361734,0.0626454223491,0.464025148449,0.547992482031,0.655699331746,0.813233582821,0.851019485979,0.383141690864,0.33872355484,0.229636911183,0.517896058012,0.28017975315,0.706455897817,0.909601872136,0.581074767277,0.151434763795,0.118003687232,0.592285130853,0.6742042389,0.110764544072,0.93833264055,0.0104659681341,0.241020279517,0.582474447733,0.314982730267,0.869828042614,0.930626790331,0.856565966714,0.390343235303,0.808799776044,0.914550904246;0.232398523074,0.547985970765,0.957206365438,0.682586619546,0.963681846026,0.836629443143,0.917259562598,0.19718373379,0.55507984969,0.456286530083,0.556043346551,0.148414817619,0.107975551009,0.456660381633,0.399773596983,0.915896172556,0.608393654004,0.922825881976,0.164831852692,0.282788883658,0.57231669271,0.142957135858,0.904033392099,0.828680714922,0.130713112887,0.605414060441,0.00347272987805,0.518896596994,0.107105217408,0.0283999526697,0.351245094423,0.796558367508,0.980482333897,0.936746846091,0.214863081255,0.475854375161,0.900745352622,0.0988761381353,0.145417137269,0.756354818355,0.966618703253,0.821167109077,0.544723216672,0.989697475926,0.62174144814,0.995262221359,0.579190047616,0.15369466394,0.975869271139,0.502090726898,0.0425571247782,0.557179546064,0.0020241799084,0.95175761977,0.678510528226,0.36469259016,0.0901178229997,0.093532974967,0.93992620305,0.226942751907,0.0951588707553,0.354915943782,0.173223415985,0.378348658122;57 +0.994387087108,0.261486635067,0.967893681453,0.532857794361,0.595346925449,0.808032671597,0.806679891825,0.665738302965,0.570201276497,0.430665680696,0.797927571175,0.152839854164,0.0757231692103,0.0564457229713,0.388255788917,0.284811609999,0.00860195667952,0.665119721425,0.553883170662,0.874752963732,0.776425070964,0.893607780818,0.747634749471,0.823084244885,0.227418375217,0.489088272795,0.461779632025,0.15455701946,0.660994102901,0.804077873283,0.766556087259,0.623685986509,0.242337733113,0.322970787052,0.350794123964,0.919142928328,0.285154968379,0.562866958906,0.133213416817,0.795520175164,0.338018631049,0.227222379432,0.454734707878,0.68486275056,0.262059817408,0.0440371359302,0.853528749676,0.662630941698,0.0719763109312,0.707023217597,0.737268299415,0.430324324841,0.293021454738,0.368612929487,0.689944434244,0.412318785019,0.313743418493,0.200598114392,0.790539270473,0.482977787205,0.766531120474,0.578952604941,0.424090892706,0.630077129024;0.899781651661,0.468097002815,0.372549708412,0.992353723185,0.421328776783,0.962406071656,0.243176027313,0.363235033683,0.845674263008,0.502540927269,0.069998547682,0.881658868494,0.633980207376,0.7653270137,0.917984842898,0.548592143863,0.172531521971,0.73913843345,0.393051266046,0.162052951185,0.689977416735,0.724110979282,0.675565453843,0.564164007585,0.130940751968,0.864092273324,0.848715370274,0.769946334453,0.686210381602,0.0458602631764,0.802767388356,0.563646783728,0.911522664587,0.49688083296,0.0335859529162,0.421646434255,0.478828343953,0.968062389791,0.362528294622,0.0929362064986,0.863538973658,0.096525124493,0.0378463031755,0.821403421127,0.0795475436154,0.700794296797,0.0921901604505,0.241090716275,0.469148434682,0.19206816101,0.12384326441,0.693359905627,0.929875047499,0.500195135782,0.251008573968,0.258374869885,0.579935823534,0.0028218797832,0.695726188428,0.558451671557,0.333983765428,0.482962165863,0.0729799630848,0.492930125359;0.866283312014,0.170628715898,0.460670531811,0.224257762239,0.778171192552,0.194284258141,0.716007777749,0.071151190452,0.181984560461,0.895993363944,0.505093354879,0.851010987478,0.158250604295,0.799002306457,0.490383617685,0.407791185372,0.0512380555368,0.851876108283,0.0556922699915,0.27718502456,0.808332050224,0.496437113734,0.0211996903425,0.0738297660278,0.541274268722,0.316252694428,0.116391542964,0.951011578106,0.316629121444,0.65358479811,0.138533904395,0.27941419118,0.540758947406,0.333828074803,0.0741962436896,0.761864344684,0.0855668195375,0.527060341652,0.158922550415,0.56019684276,0.227863319703,0.149292273129,0.829648140274,0.0562086752505,0.598829686293,0.537139091257,0.14501361895,0.358311444499,0.367586736726,0.704403500491,0.196302641253,0.0843613564126,0.738247468301,0.626225608386,0.164087381079,0.000581023585902,0.537484052673,0.461827808978,0.409058215597,0.973245663574,0.55371094254,0.118991395875,0.361457413685,0.568147421245;26 +0.774029867211,0.232717436562,0.0205685727994,0.209172922792,0.553734491186,0.450727585747,0.521428758537,0.0490653796195,0.899302416503,0.02038647202,0.900277043488,0.555639502155,0.459126740081,0.623864121268,0.210116774737,0.993458327967,0.0663944016179,0.152648636789,0.733970147531,0.736404044974,0.324212274691,0.249663112328,0.956860501917,0.906003009764,0.916793077752,0.194829727517,0.479437086356,0.912863602775,0.181735513362,0.656878483437,0.375134526161,0.566415319839,0.872524712477,0.415393612131,0.439687836369,0.952445776591,0.511771577901,0.583327920023,0.217770895208,0.0920011659752,0.535528117703,0.605633330778,0.340814914597,0.863558303256,0.893054755219,0.771625493033,0.189249913479,0.0545934414998,0.802179828798,0.0682931342242,0.778507156452,0.505549177173,0.688565668898,0.097858524327,0.822397887583,0.466361466227,0.87266801237,0.266493525211,0.656607334839,0.40892793014,0.131448010803,0.698944857573,0.429890635931,0.572152174382;0.399363516038,0.353236154572,0.00406998338269,0.779618824978,0.99747555476,0.998306840152,0.422021709721,0.790502552034,0.906641013911,0.262709824484,0.888765130052,0.203449312644,0.18978936061,0.948735704423,0.880763926557,0.0919009439976,0.926331129618,0.0166928332322,0.764745457355,0.815461539663,0.818032414026,0.0464903671373,0.933997969885,0.836237489026,0.161417677491,0.087445982632,0.477153653318,0.141326359595,0.267216445965,0.314207984319,0.438052299229,0.602399369553,0.737930634867,0.305731737484,0.819366247953,0.808157281219,0.994916391352,0.99944679001,0.324382701336,0.879942429523,0.60584589024,0.814774705612,0.448083671032,0.675378425026,0.0883386637481,0.41416172426,0.124019522234,0.595689147341,0.886462441064,0.602405092561,0.768435122021,0.155348400851,0.155606180863,0.106497393287,0.328923019301,0.684521289719,0.0809594359205,0.174452910101,0.0776191648833,0.104714288391,0.805146827843,0.221652358635,0.272070570052,0.136662835678;0.856933318373,0.809250040847,0.925330407611,0.769247292959,0.762521936132,0.601822278882,0.0880090575802,0.523993783636,0.201713205215,0.680592264258,0.453679247418,0.0997854943994,0.139294720175,0.347633764965,0.359789576013,0.526016507599,0.461261929894,0.455648461913,0.1650612853,0.901546478958,0.258068391658,0.822092383194,0.583649303307,0.356294466436,0.232659157518,0.778997827022,0.440753636529,0.228589380189,0.308199052653,0.22271250953,0.236749655301,0.213121109806,0.416075607783,0.967831947697,0.725723513637,0.429324821419,0.168107864007,0.253654548912,0.0588232345892,0.457829424225,0.97416822971,0.299078347993,0.839128336129,0.715142018633,0.44623633269,0.722403042375,0.986458531694,0.775256330776,0.599154086247,0.879605260988,0.298960440306,0.0244486834241,0.721804009711,0.725412513745,0.887444459524,0.673002426429,0.648312819021,0.111616147082,0.612722603782,0.456244042654,0.739373698812,0.636408533572,0.152109604983,0.835780940667;4 +0.901194644461,0.596155620523,0.330560196792,0.908762560779,0.11113521178,0.157447067133,0.583834289947,0.261493577291,0.0581457875317,0.13520645647,0.908573333655,0.447405281822,0.0243851298032,0.97828395549,0.69480038196,0.581864387532,0.600295149107,0.949975630809,0.200524333407,0.599222460444,0.424935139691,0.580720907411,0.689780114843,0.877576333807,0.133442938373,0.899290667117,0.185793329358,0.0469685612195,0.689866016536,0.243353418572,0.592146047598,0.684632656337,0.234132992615,0.931540273784,0.67802828721,0.872272835489,0.509419278873,0.60915088851,0.120617272033,0.0507211543721,0.0746339052502,0.435320778349,0.477883839562,0.396485603851,0.972876345019,0.54032157331,0.951334323684,0.560589943993,0.100297929646,0.133899422605,0.834219983388,0.00552057197661,0.563511828969,0.426551127387,0.358380112198,0.213401294706,0.510776219596,0.00462898489368,0.383398209681,0.24902652784,0.868662412689,0.365261076543,0.357947047215,0.0413429747039;0.520455741297,0.188326512068,0.525974888115,0.163189351168,0.939913719036,0.272328607063,0.984473107714,0.247627799717,0.345030857381,0.656779200945,0.0286399883364,0.686923090087,0.589015107769,0.744954055848,0.0805941505079,0.368557961663,0.477692679624,0.943071264406,0.0711944124715,0.570705562774,0.19688620871,0.794751426891,0.49028549493,0.739424180591,0.860255923094,0.381252015679,0.34999106196,0.818807196774,0.594996219477,0.841625460021,0.239797609766,0.168000047911,0.0855930155373,0.526282183769,0.318065124695,0.280229063934,0.403777182307,0.971555563619,0.310240510151,0.320384928686,0.0450334619848,0.372042851973,0.854401115891,0.403327291025,0.058892887026,0.523898600792,0.84950414487,0.0887467033395,0.070244429822,0.735800128826,0.568479957397,0.0642209171003,0.392380772421,0.109798116812,0.660723078377,0.743009640784,0.557411404299,0.956859571482,0.121508093309,0.656453515782,0.980360984665,0.427383764618,0.0939893511866,0.199105308348;0.837253911431,0.926395898044,0.190300224882,0.662299073369,0.450958543761,0.902407022714,0.0604782874052,0.729246542552,0.0876147851184,0.471924206672,0.0275484470517,0.661232637395,0.59109435037,0.872920216122,0.129051900522,0.978430866708,0.511812278158,0.69045877573,0.546930154358,0.152092422055,0.744028298719,0.886582929243,0.386007926719,0.0111161811817,0.700933432265,0.626289308656,0.939524053239,0.290029408481,0.384508346994,0.133017613798,0.183082473682,0.019785516848,0.288693043192,0.548586039347,0.88262773796,0.139759211651,0.208775803813,0.118382171684,0.792455433682,0.441907147994,0.0838383696476,0.290320747692,0.0474885360402,0.0122683218142,0.40594288347,0.378933167848,0.407575700871,0.323417980101,0.481550804768,0.902760954403,0.357238640628,0.269340892793,0.603434053483,0.913287395432,0.470178891629,0.291285723774,0.733900853582,0.822789239517,0.899645865851,0.394507541658,0.833114042826,0.18467751635,0.788614313035,0.0626780451111;89 +0.481785103449,0.188850792996,0.915544572278,0.992309902213,0.00552350382821,0.759060849619,0.964090916695,0.348785699343,0.543226637938,0.601470753903,0.161917034334,0.614945186805,0.497283570052,0.760116057587,0.0231541450077,0.458426956688,0.867214438909,0.780146149306,0.810218267063,0.1606810393,0.566713630957,0.207831313457,0.806267181166,0.431273255875,0.107496898909,0.078811866856,0.481565927985,0.290132982809,0.441649682769,0.0592397131665,0.773731063755,0.960639296211,0.744138476907,0.335773148846,0.869144527822,0.31493156373,0.955502155095,0.504907696909,0.0997589211326,0.44491299455,0.88818797565,0.507547409821,0.342061345132,0.758290958317,0.131301595713,0.274861465102,0.987192002407,0.700197315445,0.450986854621,0.18694284153,0.237276379062,0.232771948964,0.59955368497,0.244089910615,0.631517485996,0.133537889612,0.817695506299,0.55879586825,0.638477588045,0.342095627925,0.190832631187,0.911810852749,0.15938460349,0.627420123819;0.909501324931,0.924454447186,0.714089573172,0.163427939846,0.202513632267,0.134895928682,0.163064224011,0.644930718602,0.0582382837914,0.0960002602612,0.0167764411511,0.0666020737198,0.94718129766,0.433747308897,0.420109681875,0.579121058199,0.874692397673,0.234323587016,0.417190326824,0.686705676994,0.199814020234,0.236006547413,0.351571202661,0.566592076761,0.848500609366,0.569890119231,0.555414426319,0.0719248300062,0.29289003205,0.100682190111,0.893672534921,0.578847637163,0.0837627011298,0.921609843929,0.868848591639,0.464296795617,0.678010757986,0.279465324564,0.28758476603,0.484585749838,0.853900622015,0.143285432771,0.709749575092,0.0599488443357,0.40679237725,0.518278887354,0.678804108937,0.602433137452,0.49502382675,0.143405147118,0.887347211986,0.737064816408,0.775763428291,0.76006675434,0.306646384942,0.92561040406,0.45735590689,0.640185763418,0.091334893984,0.658243257147,0.32132782915,0.394901494774,0.161944277453,0.17689222604;0.0725472526557,0.0546545764342,0.141953776159,0.495580092045,0.453601995235,0.893343474161,0.0751846925746,0.476885497384,0.836238728447,0.0581338664893,0.0441921210684,0.613139951798,0.521364975568,0.901362073354,0.443987492181,0.0228817059478,0.146806023414,0.574002081071,0.200264544457,0.673172977725,0.99177424036,0.313634865937,0.621634256023,0.940254718499,0.761483037385,0.99385421768,0.140489146922,0.209711035587,0.704435109225,0.871512605468,0.877070782063,0.826726330868,0.515865631996,0.892714087332,0.405019540068,0.866739746739,0.114794448513,0.0726993008483,0.20708820251,0.180102716591,0.781500623799,0.0644195764029,0.322051096802,0.111577321385,0.709722714645,0.414798701835,0.410493240152,0.645355480587,0.0540007978073,0.304487185049,0.994608587371,0.889216428249,0.961958137167,0.754705616235,0.432118342812,0.77053538722,0.360270857356,0.412559759567,0.604185594751,0.259914116069,0.319045607403,0.00205834159278,0.494294149336,0.0528728682239;92 +0.107201762239,0.278410925383,0.924828283319,0.992879387123,0.933616454023,0.534204082332,0.143272822217,0.159581165523,0.415212106503,0.914687078334,0.410578049159,0.500859016165,0.613948118824,0.370794397463,0.395818589275,0.296382099334,0.964204204724,0.146398615573,0.496854180517,0.825200878395,0.388261186267,0.222460927918,0.604218741849,0.81591817453,0.805104379314,0.737925417246,0.813413307893,0.425735043126,0.272279392193,0.53471494624,0.00375027233452,0.6564070741,0.261380582677,0.232568866171,0.830568345809,0.819213128711,0.96881501507,0.250766783719,0.259441011361,0.734992276108,0.00802114429671,0.105706716301,0.926328615731,0.630988021547,0.61272510576,0.100637555747,0.29265811326,0.241834258205,0.741309558862,0.395632174452,0.189362227037,0.604035015739,0.516826273962,0.129222964924,0.90388010953,0.629236844539,0.143815873802,0.107814672255,0.8302341021,0.188146248849,0.929713751867,0.693655904394,0.346283458966,0.189882717481;0.086463539563,0.0978421605511,0.0952817093745,0.498362308752,0.312215861254,0.0507750836489,0.719229341444,0.502316893329,0.7921364738,0.752935115462,0.421329949555,0.205168290207,0.13600715185,0.977194436533,0.662345707007,0.303748287971,0.320146664019,0.724632190488,0.228864716226,0.406243671512,0.0164728638459,0.0260041100162,0.555917057904,0.922606187822,0.458894574471,0.107900021686,0.823974952705,0.874347039042,0.490768658722,0.131962953092,0.965523512395,0.368412499375,0.551472911908,0.89434821769,0.685969541006,0.808136607603,0.728385200945,0.823674463869,0.625285719561,0.792429466253,0.282395925825,0.93982258144,0.919868148807,0.117061797968,0.312522039178,0.219758499155,0.223766307879,0.728184830206,0.884776800922,0.279532839773,0.945497057949,0.637229077299,0.772958811071,0.166597544863,0.16007841037,0.329537660377,0.43598478149,0.758367493497,0.799120382179,0.517997011227,0.760895066782,0.352305752894,0.0787525011079,0.0139327711099;0.920425899705,0.564539049445,0.756455477767,0.814096661938,0.862453392681,0.323939158941,0.99570647009,0.398349242392,0.881574395549,0.748772756203,0.980810955039,0.567934948436,0.898133861104,0.469728487792,0.136645798204,0.621539149336,0.407575779313,0.294863654061,0.989118675535,0.112203193803,0.0206799133022,0.46055444271,0.414739887833,0.442811867046,0.982179796804,0.261605584436,0.386767356598,0.330723746629,0.222772104597,0.566238029186,0.957722752293,0.973454304227,0.35291275282,0.0255273820639,0.699284806456,0.300625932787,0.973196053662,0.165611305566,0.187901878878,0.0481791787087,0.819766481174,0.823729233807,0.417927410779,0.0238437584977,0.605850398243,0.750664133369,0.323865446581,0.373980681629,0.707721036111,0.877063231621,0.372412144455,0.688064935024,0.00218101639588,0.917812776318,0.853537706827,0.550091184879,0.721134917978,0.242746796802,0.749273053852,0.195353607245,0.391960994659,0.00261116073659,0.400036888055,0.0420486730702;96 +0.344537699632,0.129025690428,0.869881676748,0.974944660816,0.910522397751,0.164022047152,0.428341482809,0.122824490384,0.079187530934,0.221393439638,0.412753800847,0.437596814481,0.792195062852,0.5775256988,0.743903936454,0.612068001676,0.80273544073,0.767475024396,0.472339494411,0.536689050096,0.213214144211,0.230063478608,0.279502903661,0.747158065943,0.781693542936,0.569747395787,0.456281663968,0.205519182151,0.762804695685,0.0929089894765,0.0703043601394,0.915761057539,0.0173443468847,0.383450949021,0.514918084104,0.898801504339,0.506630792112,0.383443908743,0.475471411568,0.674869821064,0.681581521278,0.00615389039074,0.0357391201575,0.363622140075,0.165602331323,0.367883805432,0.872506896304,0.333834248229,0.806368683171,0.0497877773191,0.966101684979,0.433294666873,0.393223490821,0.456033821338,0.807148050644,0.134630627004,0.771444237384,0.923578171987,0.416799108643,0.966469473958,0.597192845696,0.397740627832,0.996944364564,0.747295388876;0.262192622499,0.580631711045,0.637301787929,0.533191676652,0.417218427957,0.52864601903,0.88275852708,0.491214167113,0.625852726286,0.491594709043,0.250854761489,0.911568105676,0.943377818849,0.623434629459,0.0998818138092,0.573333747678,0.597192762466,0.292230113767,0.0737048171517,0.135341173806,0.0854322054154,0.854493570395,0.622022035374,0.16140853222,0.637755879056,0.851609384618,0.798789791456,0.150830304858,0.173557520366,0.461569913127,0.232274638246,0.690424133189,0.287496180388,0.946489922077,0.475581349508,0.862933705539,0.604948627835,0.983187687453,0.443066382185,0.920680514629,0.441303646145,0.367964031768,0.159028253447,0.580111340452,0.824103331471,0.700374105783,0.545076952323,0.427876504001,0.729523847897,0.721359753752,0.944817054599,0.943415679608,0.347542351689,0.0428063744347,0.619097898405,0.892710658122,0.0546539404427,0.626715100125,0.0362216868879,0.472560916678,0.166629572032,0.23149752536,0.513535795271,0.232399155326;0.77349229277,0.236004779604,0.503206052829,0.976388397021,0.430678243228,0.355829572484,0.79465932889,0.0207759241356,0.180961130694,0.0751124830135,0.933374418895,0.62821651687,0.744502841323,0.613939958517,0.778653141703,0.641423033982,0.493419609645,0.999699369875,0.282612646595,0.984016460529,0.492709330027,0.831853862627,0.448183988923,0.464159773749,0.128721310973,0.169148659654,0.781684408402,0.887729853814,0.265788026441,0.327492145316,0.407143479916,0.121579605271,0.600770259749,0.576315590872,0.575026888301,0.694559053401,0.597590426528,0.564636217991,0.761673906186,0.634158529419,0.584264283772,0.272343655108,0.636401350954,0.538098891883,0.20093217177,0.990387063123,0.629655556803,0.434323642183,0.518444202506,0.351004618313,0.430791501371,0.887665897887,0.0537562204174,0.197777817697,0.776847646072,0.65092574328,0.439656731729,0.40712733799,0.139016544503,0.932032973274,0.603091724545,0.934631506625,0.236967978986,0.294074820255;74 +0.919277558818,0.478086729701,0.00856336020508,0.914951352053,0.606789600359,0.184744554678,0.377572539469,0.796246199545,0.976477021525,0.65230319464,0.871900596575,0.682784212122,0.27500202871,0.96374730949,0.798427674491,0.530015853427,0.358043212719,0.0984771830832,0.698110858464,0.88437076265,0.976338552208,0.607864765603,0.437786925839,0.311195290245,0.122825853781,0.576903364772,0.441181474043,0.558846435186,0.793760258201,0.368649691177,0.0498163409208,0.574810957545,0.00912204823953,0.232276349856,0.86016086228,0.883555466691,0.266473769221,0.606309591383,0.581842253259,0.796244372051,0.540785585978,0.162466553832,0.893819208888,0.251400289139,0.32804415817,0.961381458108,0.85413382669,0.836412580156,0.892465511283,0.956910938117,0.993631787079,0.0879682250228,0.784254258068,0.320906817861,0.233249552642,0.504257401762,0.735810854412,0.735744132828,0.427127220122,0.512831465015,0.794723475219,0.214449430083,0.584835600108,0.377105600044;0.441832190858,0.0801631891283,0.684483885323,0.293658030943,0.159202260805,0.67386717722,0.152573804302,0.802379541362,0.899030340354,0.352945585117,0.772422238155,0.70222463291,0.907379501618,0.85613351994,0.994668631756,0.62302151376,0.815324722817,0.923752561702,0.538091228043,0.731256715487,0.629872910239,0.916488911657,0.524477391585,0.490981254466,0.012405596798,0.313741788449,0.221385974074,0.622937413686,0.7400062055,0.481329048219,0.00108061348239,0.674750857136,0.538725422801,0.835762045134,0.252618600466,0.345903158124,0.122385151054,0.70916639493,0.0714013515028,0.375612328878,0.781836369816,0.824987872049,0.110238942555,0.322870429294,0.332868610622,0.0548523045287,0.91176746858,0.167248343406,0.111499262301,0.622733240923,0.489366217656,0.076448695723,0.190398031525,0.46931076097,0.599585602082,0.511115060735,0.129814859566,0.906784823304,0.417603013831,0.726817380119,0.184733055895,0.658733179611,0.973407605254,0.430265170627;0.00250030461612,0.565950905559,0.563404265236,0.923436195947,0.00758963644568,0.593089441372,0.447337030622,0.670177127578,0.377436843553,0.738476752028,0.0184951084814,0.673537441561,0.252375564299,0.479549916075,0.683099733893,0.823239652928,0.186537156085,0.705961787266,0.93101606115,0.795038592078,0.310688506229,0.734160809191,0.0454335688957,0.79855578935,0.164188947836,0.627079545389,0.976314097693,0.617383482735,0.0262789887891,0.182568785616,0.297320534589,0.847870386235,0.892020106088,0.228095541538,0.964648045223,0.964960421625,0.812483354767,0.781668492339,0.672208443716,0.455788921408,0.821358270819,0.91206101297,0.788376651036,0.97108346935,0.559654108537,0.814317253033,0.0221920659308,0.736285916214,0.651738244873,0.93134054537,0.641887524847,0.159902065491,0.0273609889874,0.361550477242,0.162201051463,0.990919679965,0.458680788102,0.441898479632,0.0272380004399,0.168037472155,0.170919968668,0.894103337122,0.841887162244,0.571300688701;84 +0.723592150951,0.294488100102,0.465890400171,0.121330776206,0.827533885416,0.944327167043,0.386369102646,0.24221973302,0.702607578505,0.615507270361,0.286525982729,0.670049830324,0.0583828509558,0.0339563149456,0.603257486316,0.659273759229,0.322625512178,0.581589013547,0.837418274794,0.392016920794,0.0602284717824,0.263999353356,0.321920219301,0.381577345485,0.746291852501,0.909847858012,0.305115287191,0.121321165851,0.470307840224,0.983198455785,0.359373920283,0.185609710249,0.676237835216,0.222214151082,0.266588294836,0.522005144547,0.71591507957,0.674925276507,0.192456845167,0.831796549252,0.368357956658,0.66266989107,0.470673998011,0.426225322318,0.098766524293,0.815756381143,0.351605779324,0.920778458198,0.984334734897,0.640475571201,0.976651128411,0.246377703993,0.408333212884,0.957432039564,0.522126705319,0.444861276623,0.44047508329,0.0521023017699,0.804400326201,0.313594037666,0.620270778887,0.608551712029,0.250211165309,0.0799091183745;0.303638997737,0.178272178179,0.806163890922,0.779448325129,0.708427168844,0.438785078207,0.633828526879,0.00589442963888,0.692913448162,0.606737568316,0.0300461905968,0.416155808334,0.256812236247,0.408632577501,0.587533187877,0.819231185148,0.738631363321,0.99407474626,0.111663644509,0.292802517497,0.260966252473,0.638761140914,0.378498529502,0.849706335419,0.177273945429,0.550547649056,0.0439129468838,0.0300028774154,0.349598279289,0.509558225134,0.581685189968,0.59159487475,0.332234437547,0.0852988471711,0.706099097602,0.699124082171,0.632564760826,0.0421790075457,0.043560477766,0.272772647005,0.619787951257,0.269268239071,0.260192193614,0.620137699635,0.334068069653,0.352740766031,0.572271197143,0.020717740519,0.563301047103,0.308336112703,0.569525166714,0.825680051229,0.648588866359,0.772613939846,0.209508720141,0.900527160343,0.27973192136,0.998956976809,0.48188018019,0.764933772872,0.260001893694,0.956054782504,0.294262941105,0.209055497188;0.229816174006,0.497060888236,0.995300819329,0.97314940808,0.983245107216,0.668598541478,0.100734246802,0.0844340692598,0.0622361297683,0.422324928326,0.106786362527,0.902904038489,0.0936770945054,0.411421433899,0.660578846881,0.0193553393488,0.669670897928,0.427115951703,0.667688447668,0.0181864434934,0.638865222897,0.255312564164,0.187885551171,0.625841555086,0.392595614226,0.34309763901,0.753625858601,0.904501903378,0.197454297147,0.693736752729,0.0503625155862,0.295797566136,0.771620138178,0.623414821812,0.620542900343,0.0208459753483,0.480525281185,0.648544179129,0.563809180911,0.455242791572,0.817279161744,0.469537393817,0.500985205566,0.662681888664,0.0570901446794,0.10686938921,0.0108950260371,0.129674878883,0.703558871217,0.0340887938922,0.948017575117,0.42225951761,0.581083439073,0.756812854978,0.708149769872,0.25684202582,0.615324776872,0.322664196697,0.292387919088,0.988603226071,0.248987509177,0.530937112957,0.0557086784835,0.629938596617;98 +0.492474087405,0.909103954823,0.363950003849,0.0154920146579,0.060567499596,0.206277233464,0.403675572997,0.844317491651,0.0125568891855,0.761232594975,0.0942861677708,0.768938370735,0.41514210776,0.432604617678,0.440986139468,0.6176788914,0.618987995748,0.737562715026,0.443011454322,0.571278607222,0.537813440906,0.67371076307,0.0817361853472,0.658990488872,0.705600157505,0.673950477431,0.402060874162,0.749203835655,0.627090425741,0.880938013069,0.530345485912,0.284929994161,0.349036880914,0.273789931257,0.994094755664,0.741917640892,0.782383706559,0.433718162079,0.92497676093,0.685490728163,0.839044321847,0.324457972707,0.0055508317983,0.35304250433,0.151189870453,0.452230697518,0.231244698508,0.683895824937,0.538475670104,0.148992072507,0.829849577404,0.481235693607,0.636267696234,0.154450595672,0.553018372759,0.898732276722,0.190323174652,0.0597333350651,0.250305397851,0.718579197725,0.508158161234,0.69427775519,0.0681527362967,0.0545337226859;0.273315052967,0.444461813021,0.550786747889,0.537646122397,0.0868922081579,0.683170709777,0.860955891635,0.91881110677,0.420793647245,0.218163632542,0.245700347583,0.139511982798,0.583493909275,0.345527511125,0.0734866556895,0.471188537563,0.554134442817,0.294251907744,0.0869787137648,0.242937209844,0.607446508703,0.200200550042,0.643473127746,0.446232679222,0.0189847629016,0.361294061536,0.256337549795,0.371760778591,0.979605901641,0.514507955125,0.908144645592,0.433128094762,0.779507179939,0.813341406536,0.457805682337,0.68910456634,0.661358347192,0.886479690337,0.0904474428869,0.726962493625,0.565668967438,0.0299119479294,0.592424186,0.116923999045,0.348232754006,0.805099859407,0.541289085379,0.374046989698,0.5990487697,0.602550709745,0.966702216642,0.946457226477,0.792983455813,0.979904726415,0.7795849883,0.257992242063,0.748516396942,0.323028050631,0.884995150136,0.993227700042,0.224100015765,0.388387800854,0.860012429334,0.205021803799;0.0540283298648,0.200847979982,0.147935495928,0.112600135138,0.57692446779,0.317107310914,0.4716657114,0.418314022716,0.834559978733,0.304262589354,0.211474545072,0.995893867734,0.3637262269,0.383687491544,0.365595070992,0.998231027512,0.481436913045,0.0513632625073,0.897689730731,0.0236847922823,0.713392022464,0.846635861261,0.0701076581675,0.687615741493,0.244718703138,0.986092554374,0.639852545977,0.659634644883,0.837119266495,0.495893817402,0.650182865684,0.704015281663,0.924399194677,0.14689535321,0.974091820742,0.337429033054,0.614356829497,0.257595960123,0.902090395714,0.155463818959,0.0781052847714,0.394142987954,0.543771372253,0.626498202946,0.0228083708371,0.986447105907,0.697850253173,0.782446422908,0.353251937193,0.449274547733,0.502985665085,0.77667851479,0.272914357624,0.696774521747,0.25494172211,0.230638390493,0.0976012921555,0.763519165589,0.689565901716,0.460310519789,0.464026390606,0.584404432526,0.0271375496575,0.0688835491236;73 +0.862945487974,0.801825515679,0.0637660879821,0.959399079652,0.500362128082,0.634816146118,0.695808116852,0.551095325693,0.133193167277,0.422732840648,0.399429839162,0.845052509072,0.780859068195,0.882563336647,0.693324332012,0.306688134218,0.864387407843,0.478987598872,0.000253837434357,0.339324144996,0.108192912443,0.245891326473,0.128914242198,0.893014099753,0.853621292005,0.41937843876,0.63635981955,0.423793625293,0.62497145803,0.182702015709,0.989448595822,0.281923512356,0.708499594044,0.747782478773,0.827404595015,0.559172880786,0.00398883375545,0.776818057193,0.465883673718,0.800810155633,0.472563523967,0.342885575316,0.261024939997,0.153523474878,0.180308372366,0.309597846252,0.273540492778,0.867895786726,0.71937567784,0.454258099698,0.286986000231,0.365243536883,0.504420426552,0.789087132304,0.198682352503,0.921717776864,0.852554464229,0.269374638556,0.27114539425,0.836529706314,0.610262494932,0.675290709945,0.888238836334,0.74167143023;0.948485321424,0.234101253668,0.405782815517,0.0933216963635,0.128960324869,0.696139584543,0.238389993473,0.117602024857,0.491940276879,0.711390630257,0.538736200576,0.00830568408509,0.801381828743,0.429577852786,0.684710954653,0.163135115154,0.292322967693,0.900383514983,0.686014575564,0.368723112257,0.71689816049,0.672917839056,0.234212425772,0.195776999213,0.729389212527,0.484066051168,0.0473060159414,0.992123426526,0.657633510186,0.46826538595,0.0304769571268,0.254572991724,0.445693958096,0.892406140135,0.974683736952,0.893506185332,0.91803916998,0.359245798564,0.616202198006,0.765011912977,0.946281211264,0.0660982529658,0.0856003491694,0.982408784365,0.810218804918,0.91169017627,0.854648439278,0.929071143871,0.797611692955,0.826554699501,0.146752165317,0.606926550963,0.836217250357,0.44045424423,0.103922408638,0.726772431971,0.16288486063,0.19825460109,0.472834126006,0.2818706869,0.23437786393,0.46112489618,0.97740517877,0.567292560907;0.935023362805,0.436254035844,0.79569035534,0.213260163237,0.257792684679,0.517816461595,0.516689573302,0.242700561304,0.24508774369,0.649874446219,0.446077314818,0.135511476562,0.0597612348227,0.607905988394,0.338176193506,0.28410674565,0.676612727202,0.436468890254,0.98680904089,0.220213144947,0.884891059474,0.490987668922,0.988358704934,0.289350768304,0.813711453742,0.846790403385,0.0372212844414,0.739183760637,0.551418115049,0.264895842923,0.163614641706,0.924573602983,0.0932228904573,0.0445613981956,0.84977381878,0.997993914097,0.630660123662,0.583574656216,0.49625744148,0.828914231384,0.83836516998,0.329974393423,0.384528353945,0.891565216478,0.737398188967,0.2638669342,0.254510685714,0.540050309213,0.628115711188,0.124226410683,0.424257142356,0.37063490547,0.326758352393,0.765056835549,0.974786229991,0.143572330059,0.826493808761,0.0732029855109,0.125816313337,0.972559010462,0.173312376743,0.432539667614,0.374999622716,0.505153166549;94 +0.494851002697,0.768389022706,0.375172945803,0.577088456676,0.640432024494,0.670565236258,0.741840458946,0.667769412271,0.734103137214,0.105730797037,0.66310744627,0.367213299402,0.164385917143,0.446768259111,0.5771408883,0.542468823603,0.407793176083,0.9132380546,0.57191208126,0.600150872341,0.0178436151334,0.401722359891,0.753039919656,0.288690558924,0.722356650699,0.994721860502,0.761932664259,0.763703761682,0.798704803255,0.658091130646,0.512178471831,0.940135812319,0.852143359629,0.544398105322,0.570799438849,0.405023702333,0.222787805539,0.741431141248,0.420256725272,0.470449971229,0.863710995254,0.248461882658,0.0419784596752,0.569614965974,0.51040099861,0.615909262982,0.146658912633,0.800276916342,0.182751500629,0.0954287461406,0.18257951886,0.525800504936,0.975145538357,0.368642917664,0.571582626149,0.183038470723,0.453458811214,0.0343191822071,0.623350892995,0.150914107129,0.605112786829,0.726207174807,0.744607147698,0.0771116819434;0.966100283829,0.13404637783,0.3487562775,0.416436813315,0.330610621273,0.0522796264209,0.75664020474,0.69668996182,0.137868612092,0.654921519875,0.00591161980685,0.0749138852394,0.673892106096,0.91161258211,0.513909193003,0.134975883029,0.29380024201,0.806863169361,0.589601537586,0.569943392427,0.413969085736,0.665653423843,0.181865802972,0.600115996604,0.579469019573,0.792361809338,0.728602141232,0.897375242428,0.668247809672,0.820182870098,0.365261397389,0.119497628086,0.314590482865,0.744108998409,0.983313384338,0.0986684635752,0.494167695317,0.775235665478,0.482382847992,0.339271176144,0.473282708825,0.677856575202,0.921238255088,0.576884083233,0.795921013258,0.0937919508965,0.703700709998,0.583637041288,0.873031463225,0.959693087964,0.855528938316,0.672908847295,0.745780053769,0.912222640513,0.373467460199,0.681193570322,0.0874871096522,0.0750521418737,0.679657148422,0.278485372747,0.847274663728,0.632579038428,0.723904142848,0.526728063408;0.533124520577,0.146103580745,0.83381885712,0.552285696748,0.903899211111,0.963812050329,0.578847069761,0.339507681769,0.920166125851,0.711081711126,0.262993477951,0.137429514915,0.639001558174,0.725230892904,0.335093907642,0.790175919464,0.19807524833,0.616553484496,0.113077432241,0.179723520375,0.771451585048,0.758002641158,0.046562937566,0.563396464657,0.261418675798,0.0799548837882,0.689405191856,0.864735427335,0.89659688083,0.37747472624,0.525371432513,0.598762837913,0.145487851639,0.946747044708,0.537928664282,0.518530023855,0.13649364049,0.50976803717,0.522278961701,0.352038608469,0.499960771809,0.791439496699,0.445844417102,0.354593564623,0.48855875902,0.508997542986,0.337509872206,0.759241412127,0.0646083460125,0.996809750421,0.521366920143,0.456001619043,0.626586959137,0.373247912313,0.671778675779,0.532351193462,0.604775037354,0.295667419654,0.170070526476,0.140557070012,0.863421747917,0.807599836463,0.485646122029,0.980605436617;38 +0.426830291083,0.474260971297,0.962918305002,0.805172912498,0.772195212707,0.662379502153,0.534809162611,0.909849166376,0.511786841337,0.715239622997,0.882417505676,0.496486598753,0.759403075953,0.235888743538,0.137923400838,0.170001763138,0.407177841107,0.289376540645,0.0900917954631,0.282099402597,0.621792046506,0.64902694769,0.258981479365,0.392068596092,0.117805844529,0.434380885873,0.164377803578,0.773869494023,0.128148692668,0.300780340854,0.540893454869,0.887545682614,0.0485347764251,0.965555998278,0.944133052293,0.135249690443,0.573730838214,0.15930813923,0.98237178119,0.937205449371,0.923588973483,0.495865146713,0.278380057045,0.716819685052,0.533240100872,0.142153370589,0.398325849297,0.242049638632,0.286007537945,0.578799803076,0.971009348092,0.713492910942,0.329360963231,0.159007249336,0.709229059623,0.748550605446,0.964632196041,0.161268380838,0.484506727986,0.405453054108,0.94348448404,0.205862783736,0.595917697802,0.337974059861;0.620228938583,0.928070804067,0.393489372453,0.555648811054,0.119339894702,0.0328414683119,0.502311380491,0.229638772307,0.320168228375,0.432085064362,0.483711939131,0.425038446176,0.860622604422,0.85824218939,0.529193534821,0.186655653923,0.950107681511,0.611276646674,0.596496420481,0.396502974146,0.681915698202,0.943020700488,0.09189756514,0.795823497402,0.163478475685,0.945100387877,0.0381950011831,0.606547121158,0.944612088676,0.234646617001,0.380651235294,0.657914624526,0.116472646437,0.137325500733,0.305709986035,0.673323064514,0.681981138004,0.0977611993331,0.811299530761,0.36341352849,0.684485308501,0.931367888891,0.550656574798,0.513707311016,0.873312388731,0.273795000328,0.143562489268,0.576475976892,0.52090149955,0.894839653553,0.447246518678,0.657764554839,0.229741006196,0.605110496933,0.879362863838,0.225299935697,0.62883430463,0.0509603559577,0.680915627375,0.571544272796,0.826491529525,0.483417257271,0.848212348671,0.0636608261682;0.996451920725,0.335480302636,0.474336555242,0.500611770851,0.799776950708,0.366646818092,0.428225619382,0.0806630169085,0.834014495514,0.982713472089,0.00922214346072,0.235520284503,0.120798750266,0.262632280131,0.743076838134,0.114804721054,0.430293397796,0.453370218186,0.0965741673916,0.942622002765,0.391272343413,0.576600138384,0.553764974032,0.0444801288775,0.0647285269558,0.678998461785,0.0115627310048,0.168411077246,0.85964154233,0.486348396915,0.424635935405,0.0773693134981,0.757234542977,0.805778335901,0.84403133823,0.222306066467,0.641084032994,0.944852456652,0.330512244745,0.124383477336,0.771044673174,0.879893900671,0.163280143667,0.908795349543,0.20916133351,0.687136797628,0.374494633498,0.225538488861,0.339001734626,0.681665873805,0.425707238037,0.949544643539,0.29089207566,0.319567319217,0.161061754671,0.551612674792,0.905039248696,0.072091881983,0.0834047190654,0.768992133632,0.27460617969,0.0963116755831,0.712376183459,0.328210741755;51 +0.884751092247,0.471702264968,0.378117273716,0.451085066848,0.648763867079,0.402795686477,0.734843364506,0.721551889588,0.896566995803,0.875642149476,0.22829697206,0.389616493974,0.254328421381,0.128615046537,0.719719547023,0.38632930991,0.523418603144,0.775701989175,0.683049836765,0.651596870127,0.46744655976,0.886129593673,0.0635422871246,0.38787860439,0.762033778585,0.358621464862,0.174700666489,0.742018018139,0.258290229213,0.146602551195,0.878192853298,0.815340211426,0.499821064478,0.285784348211,0.783458013492,0.697226716022,0.479317458656,0.256141688084,0.697779565445,0.390511729174,0.783982273876,0.289662997323,0.36915919068,0.515013734055,0.715479182579,0.118423762273,0.896104121908,0.406899118627,0.891865185645,0.61763213983,0.953676633023,0.558651069505,0.0059631110108,0.180574138364,0.638440889181,0.182609113551,0.0173124426573,0.063343665266,0.481157750356,0.904828040162,0.369556919619,0.454303925956,0.565342677374,0.655881686608;0.912957470758,0.44744482556,0.289657994014,0.296545135474,0.938287071519,0.83615304589,0.223788614372,0.336392801671,0.712119909561,0.189137659763,0.911052428587,0.662845649281,0.318103618986,0.516923635,0.317079801181,0.0100642296683,0.740105199052,0.0512073304894,0.846762324173,0.0387732319399,0.767295386657,0.273351342599,0.332214887192,0.930189486856,0.234629138873,0.706310049649,0.632266054762,0.502573042743,0.56372603891,0.175155626941,0.263440103731,0.810382877116,0.43474492614,0.0936743609357,0.17096145443,0.886112153727,0.2876154778,0.204512367688,0.847747325985,0.244982754332,0.575821951966,0.237387763471,0.689819738298,0.363699542941,0.299088582065,0.52769735531,0.999135755987,0.577271262176,0.683237834803,0.849098864671,0.23373706178,0.408231534434,0.599000971545,0.124129108861,0.77356409144,0.765637533986,0.712888407786,0.369991645936,0.78434702175,0.04208615167,0.486089377959,0.737912318405,0.544404940587,0.601831245249;0.523261791713,0.789693436579,0.27697855857,0.682034608567,0.753060382326,0.321132202455,0.720653304628,0.703150093943,0.302986961534,0.850673873045,0.873834024173,0.323451127722,0.666254961339,0.134223352012,0.856401162877,0.885567303322,0.620693359226,0.377407682194,0.555145201027,0.119044352353,0.706624213769,0.88439013462,0.711456893537,0.648430092781,0.107474857742,0.344663263964,0.66376818023,0.998071737085,0.341463929601,0.0864105171291,0.0686233424587,0.118210115854,0.0803175032541,0.392410914125,0.380423392672,0.191630101906,0.829764265601,0.883623288157,0.0504343696538,0.227430316849,0.5181392799,0.508648893971,0.716517651153,0.974960771922,0.415032698236,0.392913787263,0.905177708143,0.278104332206,0.243095309316,0.583606834761,0.459905870595,0.0391289129161,0.687916260759,0.0418121414882,0.608983087666,0.265799057585,0.430090727784,0.545624304536,0.386276958177,0.762212950656,0.378537897167,0.874937063608,0.342509777839,0.970141571876;84 +0.499098869191,0.802952893032,0.546300066712,0.629054202386,0.284157860254,0.92354886884,0.849075709611,0.597137169357,0.940857874353,0.625384303376,0.900320070046,0.0567798441132,0.387898905946,0.360035019823,0.143865081894,0.232392320423,0.399217142091,0.197272345436,0.306274945156,0.552145356267,0.636913402342,0.386460379519,0.259357114089,0.982059247335,0.834376574595,0.515101532751,0.880988273114,0.620597531145,0.866933795513,0.153258759968,0.259623588861,0.0823853974652,0.390959621718,0.124094506472,0.200563778528,0.311628325956,0.264818277915,0.553912542436,0.650114513229,0.764032209037,0.866751685397,0.411506407537,0.748491281816,0.674143798152,0.933285901831,0.846967870147,0.471035792447,0.31754487099,0.0292603013856,0.213456182264,0.683672095516,0.969646496073,0.534791515275,0.128316227759,0.790896298387,0.0635130467048,0.700402314089,0.492823370219,0.213258322315,0.647413868061,0.6917015224,0.741795579196,0.343265717159,0.462658665815;0.3092398899,0.00907333009056,0.931678216727,0.374281695947,0.19502613468,0.535190038778,0.135538824759,0.633747828637,0.606830463578,0.807946723928,0.0771339300137,0.325014498131,0.111684200492,0.602232997862,0.552119258732,0.846843577605,0.765184688858,0.712685276297,0.937829925667,0.656261960764,0.170073784495,0.400165928006,0.155568865033,0.789066903168,0.330842852405,0.798847483018,0.80199242291,0.00468690949551,0.460117308678,0.703655444909,0.0761527431031,0.870439611063,0.90674476967,0.0317395800696,0.648080349166,0.748738493909,0.974625276701,0.809775184948,0.33623802865,0.19567014999,0.276415370544,0.184733322507,0.839522522425,0.241958071715,0.815734710829,0.757176183721,0.228109440474,0.752779934946,0.256386055416,0.692014324369,0.134256926298,0.789494985561,0.516993480288,0.752646047138,0.863673500418,0.261367364303,0.407434732925,0.265729452008,0.215842606435,0.12248573133,0.529711836115,0.287938660911,0.424016349776,0.0970832466978;0.177262228456,0.213593370784,0.23455400528,0.596530674139,0.815804678869,0.762135550169,0.968238658505,0.135608474455,0.968050241611,0.036600287232,0.616540383208,0.533514523645,0.804284871132,0.280025693518,0.213787050324,0.826558107169,0.852292774897,0.311199298216,0.474666395856,0.688124216386,0.984617965569,0.385656711089,0.936025037514,0.916310150633,0.536803959903,0.950011056262,0.0473438512955,0.659947653591,0.837460515247,0.127937180013,0.652212597762,0.494550112969,0.714850369709,0.315785065247,0.44504070389,0.880660411934,0.100971574353,0.0389460728335,0.485101458678,0.317045395787,0.33158454392,0.107762922161,0.492494190896,0.562518299667,0.398441203521,0.0326922211491,0.275056701934,0.88236808614,0.121157104718,0.133982919424,0.132590314633,0.289581171063,0.987270827098,0.871237149976,0.551570838351,0.114148091349,0.9196399716,0.564192876628,0.662797352215,0.310628825081,0.40096273884,0.80934209887,0.929517701214,0.203084562268;79 +0.556680707261,0.796315882217,0.545699571599,0.993035936001,0.205349127009,0.701543929345,0.37998407654,0.558708052398,0.817064031016,0.247028953595,0.19302382496,0.291466712777,0.353395994322,0.54581496192,0.417395834323,0.087577299535,0.765640759005,0.47050444214,0.258310428701,0.610839840479,0.542040634152,0.593495776393,0.638901627722,0.62732488861,0.742655931647,0.971498340488,0.0778965473339,0.363813012734,0.67500306115,0.552537694971,0.339308823584,0.705794586967,0.971552907831,0.693612251272,0.811088496974,0.103062672862,0.645197041984,0.423372083444,0.205463960592,0.49633244863,0.254000184891,0.0451421130531,0.983274036034,0.834901377591,0.519614082134,0.258417641827,0.681237209195,0.591866534215,0.226509150568,0.260255505089,0.402860626418,0.450980591253,0.208481793329,0.36754149678,0.718444971746,0.575960847878,0.732145626466,0.330380490798,0.736139610782,0.129875978947,0.275435885476,0.350226172699,0.172454229271,0.0821163163914;0.149965991041,0.932103910709,0.44720185927,0.752602561875,0.628164770821,0.57425074502,0.200888314228,0.554533183983,0.599271156844,0.0226017981167,0.783302885698,0.501018214345,0.834134308853,0.178383807682,0.343419124539,0.650225694481,0.501655673535,0.190406785525,0.601058858044,0.294461144253,0.0934568796784,0.612282246306,0.15036489756,0.706942635879,0.400971362952,0.81527598603,0.359576318478,0.647651018658,0.287972798233,0.24076123404,0.673942010455,0.581265753496,0.190796831985,0.925423593904,0.375644936125,0.24282862716,0.54900840719,0.272644608284,0.635340079929,0.91238485964,0.747737216422,0.625735129643,0.503355221233,0.00906396018341,0.0059641554032,0.322374261705,0.235841264422,0.365679446279,0.849919128177,0.117497926738,0.23258068806,0.306534505263,0.43856117874,0.250344139596,0.298579495537,0.432678809134,0.0494368078462,0.907073581762,0.852060756685,0.190710445648,0.926377283815,0.394360687281,0.671415869914,0.739909240374;0.74492426531,0.859650649955,0.714753487381,0.838192527944,0.724062144346,0.841785039786,0.211438131988,0.202728213015,0.146007253518,0.767308077024,0.413898280936,0.469395238791,0.0946138093072,0.305238007705,0.908528868525,0.472136481879,0.228869933258,0.031811770124,0.0857423478407,0.0416830225333,0.823799736375,0.192413048293,0.672419449018,0.748935987424,0.725753447577,0.760545882447,0.772915506321,0.00657951249472,0.809536475396,0.0366603179714,0.323503035615,0.827372057274,0.952489038069,0.459080351538,0.211590692673,0.793232915485,0.470369723114,0.661284885975,0.458688018014,0.813822751941,0.81281362961,0.350034864887,0.640477712292,0.5977073208,0.687493855458,0.83357111552,0.234534166352,0.547495368456,0.567040972075,0.967416490949,0.0950836720971,0.925254077051,0.393851932836,0.457691136932,0.876958443802,0.98244477506,0.214321768729,0.755412901009,0.325221525157,0.785599174749,0.561817629009,0.410368150475,0.489309913535,0.435785730046;75 +0.405776600006,0.0789342476268,0.0372432730997,0.30350959297,0.255325750328,0.935558360692,0.538553796245,0.570935241364,0.19713983491,0.88261563953,0.575856761699,0.175060068187,0.940461175513,0.409995928473,0.476296377464,0.229578600414,0.563308133514,0.231044914904,0.115792311336,0.565597575764,0.921591671833,0.110858060521,0.0962988677889,0.575424169819,0.0845623768421,0.229666052188,0.291605858738,0.21261590578,0.837782392859,0.993732393625,0.273656325844,0.433495193513,0.12732001449,0.853321914735,0.406970793958,0.830663420193,0.182973601174,0.560847128761,0.282131766557,0.752822590813,0.542903943826,0.560703032392,0.29348152294,0.997902657302,0.924534935863,0.511480801894,0.842478773054,0.298287172789,0.809717956182,0.222040811646,0.159830282824,0.430719029039,0.907534570171,0.195705730705,0.91188757647,0.559797513487,0.0556493234835,0.607392130803,0.399386923421,0.172049777225,0.756019484733,0.944952526673,0.579593227908,0.722740250884;0.798733047432,0.933123557036,0.836107782436,0.567461681284,0.315449524414,0.0272358678045,0.690681412825,0.178951902268,0.444774535562,0.432116575895,0.111110805214,0.777269898744,0.420896212576,0.0272779278002,0.128247976283,0.971441982514,0.278956546414,0.964699343431,0.134697826337,0.613833915696,0.873465939255,0.69746229804,0.108223081635,0.453529970461,0.774851583225,0.659461715677,0.0342836263056,0.0170094125837,0.036527284336,0.337132764103,0.102437919519,0.866615246667,0.648057723881,0.338104242481,0.752691067799,0.359295584426,0.622037012546,0.585727329323,0.895223704268,0.998210056472,0.739283265567,0.0352111964238,0.934937323599,0.746675789415,0.865930979847,0.723884049223,0.0310343171332,0.1262709348,0.480592101491,0.264513556619,0.223195229445,0.473326784652,0.156010436504,0.418912194779,0.017385857398,0.0647692446526,0.395906912831,0.4562471958,0.512238552901,0.947072737501,0.96234683353,0.473512696689,0.509482572971,0.130182817093;0.237111478876,0.995072832222,0.620638024717,0.564575961683,0.590593674842,0.597280585984,0.456188490098,0.341984346309,0.601234487617,0.893498671671,0.755355631468,0.498797975094,0.952377546318,0.132393175178,0.689357161803,0.670748942729,0.154107717204,0.521616122742,0.174332158791,0.90104860267,0.0503071377434,0.327644143201,0.935323210329,0.0345031123071,0.0240853191791,0.65019451488,0.425090122425,0.21600812257,0.170807857312,0.0585261612574,0.693863898737,0.0851742044862,0.958448041949,0.364160697195,0.0411874977249,0.474356681155,0.38242121592,0.885458340611,0.156867145509,0.435172969844,0.645562371399,0.0332395965021,0.762497836707,0.307907695023,0.977926030344,0.173466341575,0.162867482903,0.316389758347,0.342604358845,0.462455723445,0.84189284942,0.658413880853,0.68375040237,0.364801940518,0.619380287964,0.619384014982,0.331935106477,0.0698837926374,0.341843783393,0.348282255453,0.808728259322,0.785011431241,0.190210914793,0.0512695784336;58 +0.844210245203,0.772959401821,0.470635941728,0.662750196017,0.307288529079,0.382181516881,0.354015597303,0.525590044862,0.588635338498,0.883746687906,0.120304048213,0.805980248907,0.459913845411,0.988802829383,0.110590109813,0.0364302960809,0.157383194019,0.366608457293,0.510758115323,0.939917493139,0.124863538726,0.853298261965,0.973639437555,0.634799984343,0.906269060715,0.450765964042,0.200805921648,0.920331915636,0.825804881274,0.487542208512,0.743000538505,0.497137389929,0.872088923089,0.524032221366,0.804463713582,0.556792255307,0.467754931006,0.60161218736,0.0321139784525,0.497297110352,0.836175361008,0.99419508513,0.0743139350337,0.242700305768,0.0909327520994,0.646355370847,0.531537226767,0.0882925473663,0.117750715038,0.853428195924,0.739155849901,0.966227487602,0.688337125815,0.628509377877,0.787219972767,0.0323776394395,0.15665661924,0.458024292075,0.377091096467,0.592612763195,0.536760817153,0.6760554963,0.0312733407163,0.98357339551;0.787266460241,0.955425258682,0.347775158616,0.986279654917,0.0383423774125,0.397811757459,0.654465983921,0.315848748262,0.0725933293429,0.928563342032,0.984732776951,0.625882694994,0.471546062144,0.169950241707,0.222841626752,0.829704851872,0.961243267503,0.15282490197,0.301692568982,0.81019618978,0.850669397339,0.347472229597,0.89323340516,0.968401787512,0.235903918581,0.313196092516,0.83074773187,0.32449785167,0.0137512793462,0.801212909272,0.105301158764,0.540991420157,0.433649659573,0.254198949617,0.875519474554,0.572765368272,0.048230476552,0.325593404775,0.435474319367,0.299340384353,0.368634551482,0.443015906365,0.172172880217,0.54019340588,0.703086148842,0.411907655637,0.34415183263,0.511950607775,0.360127808321,0.96955284096,0.902325761888,0.967681166351,0.394549184471,0.0336693890838,0.600598169841,0.451664077775,0.573545616049,0.655059120953,0.328691604603,0.662650445773,0.454753747685,0.902336762191,0.704923139071,0.879844142037;0.721496559104,0.745101493855,0.39775069661,0.170275806556,0.337116044669,0.219987335118,0.427985628352,0.514971339789,0.286423108517,0.576690682922,0.692044882105,0.315535749235,0.0792820882792,0.493508380601,0.013732335067,0.183826745204,0.310969057347,0.546336285235,0.490568561606,0.69986975814,0.164797758811,0.14906083676,0.217517282632,0.371290066513,0.637476070675,0.364935054757,0.468140083978,0.6323285945,0.18517151183,0.463017755461,0.440889347454,0.744250686881,0.645904480676,0.465139093459,0.74969810899,0.743716175162,0.208506505145,0.725045618905,0.420981565263,0.63926853114,0.358333223928,0.177853383557,0.849898938379,0.865218540318,0.266996096467,0.863707255788,0.0729962776297,0.157698334563,0.621145726973,0.621388764423,0.305498375025,0.0364424602837,0.572920037296,0.0542604750442,0.242436796404,0.235893202063,0.886285675005,0.299751186654,0.498589118094,0.259603422772,0.787941660898,0.677485434492,0.664848901363,0.343900520614;33 +0.611542018735,0.174948893895,0.50211797869,0.424494494581,0.193675711767,0.446661278951,0.871963493351,0.761619131033,0.869083664078,0.101899441857,0.529151670063,0.181507970745,0.210293034982,0.5889006689,0.569167529215,0.741956857303,0.401822054518,0.945022055716,0.49738472349,0.404842749897,0.809727760299,0.00316878527187,0.907126916766,0.671052959169,0.836171026599,0.918161756281,0.265047426409,0.472958254093,0.478609981834,0.905240186212,0.558020143171,0.365068596039,0.466474853355,0.471354371255,0.546697030225,0.263751717846,0.254325720572,0.904468131046,0.760075686075,0.615502567443,0.471274936267,0.377005175196,0.295066707187,0.00149865786392,0.0689207882517,0.153007264622,0.949864300816,0.791122140603,0.285174290362,0.751220077053,0.908615302365,0.680534815535,0.454906726834,0.301490270641,0.899547170325,0.0741942516894,0.834141623915,0.832706609937,0.930226409904,0.149218494249,0.725193104996,0.812338526555,0.220303081856,0.234585394896;0.604068456547,0.161224403851,0.665824784746,0.448519241079,0.0580709225912,0.637569604384,0.664737918469,0.796759746469,0.605106617963,0.474233037696,0.322707845386,0.22441374711,0.282453897332,0.481344040968,0.427529604915,0.7253255648,0.368388857475,0.394669766983,0.804092551398,0.595269337708,0.992180376091,0.142063227786,0.590428113262,0.683738135394,0.0128703321823,0.318442980221,0.122947544874,0.987886003494,0.424290911824,0.620426184165,0.802065590079,0.707026111856,0.597005978919,0.027249070226,0.179108469524,0.747610440798,0.484347215519,0.0578666951462,0.326996615603,0.273532357794,0.107934837697,0.158736928346,0.941940820036,0.533707672751,0.824200970519,0.751250937577,0.158763583109,0.403051322151,0.292877721308,0.874929586462,0.132626070084,0.772214986711,0.571515554642,0.295259685454,0.108876806318,0.690374606128,0.489884693041,0.0457206194284,0.565432867673,0.757924011197,0.18893901302,0.644971429994,0.517911128253,0.875051485175;0.824566661147,0.526867028519,0.321459360166,0.81421807774,0.0794678205926,0.617809479199,0.0143598394533,0.559691917513,0.545890310252,0.887134652564,0.652223537705,0.539212700072,0.502906859692,0.922242921127,0.000557557884085,0.7500675444,0.556040159848,0.5339709466,0.44489524901,0.345154240919,0.480683696254,0.767436842274,0.543914333716,0.641603294324,0.0771626940738,0.106372565015,0.860906309252,0.733502633756,0.575814040105,0.971809399566,0.460099959595,0.199099400908,0.455592210804,0.588810311981,0.706098924353,0.77998621067,0.425655060978,0.519616379365,0.24581424598,0.280943675194,0.938891473702,0.675132903078,0.26148147075,0.982637983737,0.536046088341,0.222042441673,0.432529119242,0.964554034495,0.828766567535,0.531906813699,0.098968139059,0.869072996575,0.168993890224,0.246466212713,0.010350264721,0.347577925097,0.478816763736,0.597022491506,0.768386430144,0.162270198815,0.533125149933,0.80525833695,0.69068165611,0.920579557068;17 +0.317163033897,0.184821979114,0.0864806334219,0.919398696336,0.696468805853,0.206835194678,0.294253002442,0.40731896473,0.434472552806,0.699915369725,0.326851281386,0.42059064522,0.577302381789,0.151528427689,0.737046187468,0.797651687851,0.47942271845,0.702281520481,0.22516245468,0.26322179129,0.684314416149,0.98553694224,0.206561384517,0.29705266859,0.259976999031,0.326817186248,0.0592672737725,0.303054860593,0.474979793962,0.413322388908,0.24169447296,0.398625634856,0.964387846102,0.733434498737,0.567836613723,0.924871101338,0.370030604389,0.70499600468,0.408386937955,0.681944132512,0.763598389266,0.100910426646,0.952144332007,0.735067072378,0.365554540398,0.0763693010577,0.558574294198,0.428982304744,0.858204221471,0.214201075454,0.509381138179,0.504304588262,0.157570373286,0.0766798408664,0.35782692985,0.914978387663,0.4396153297,0.98875702445,0.954714454042,0.442916365121,0.948343983017,0.905859747567,0.361697921064,0.526311921388;0.45926412154,0.937945605811,0.522790623347,0.453548309896,0.0088190278595,0.360374380641,0.446473079328,0.535679758106,0.6915094638,0.608863208961,0.757440631887,0.968008156365,0.728554307792,0.138324801913,0.755389462358,0.922119208913,0.251584957835,0.955299722814,0.775212977594,0.924968084382,0.894874486339,0.575195119684,0.404584650322,0.740541070201,0.386550957747,0.338813059122,0.871212371643,0.811613168137,0.753134123562,0.05482299139,0.400261830927,0.673870420798,0.366442802031,0.0722684706391,0.083657528065,0.68762816973,0.534434215319,0.506852208034,0.117922999765,0.56620057897,0.948596868894,0.475952303754,0.744494101328,0.897119913516,0.535329449506,0.567070644849,0.120433913979,0.514492784026,0.825909431895,0.521647312176,0.201666798076,0.832842004928,0.419773004441,0.00983070541378,0.96825256598,0.486952456908,0.693181842411,0.788387330702,0.133104211547,0.105187306194,0.576535456019,0.681539743593,0.865651044577,0.243899314367;0.964755830173,0.603324965822,0.521623949254,0.990653682145,0.220163333922,0.15751203712,0.444225529598,0.530948352558,0.875599917625,0.0485704339876,0.76421766738,0.486906813921,0.46268866673,0.384863801432,0.528436292777,0.241251692036,0.0163943142655,0.0231504703599,0.248705141958,0.731312202971,0.615500817639,0.416551797514,0.748198445082,0.531930936551,0.706846926088,0.00740125819133,0.65244759368,0.354189836606,0.168508581932,0.116416382487,0.629961004596,0.574877179755,0.424184125539,0.231945816257,0.424036675805,0.383417809342,0.950610988382,0.592057310986,0.218736769648,0.326954686071,0.774246546848,0.162292696676,0.252222539043,0.200780913255,0.650767799507,0.833956258344,0.0832195895951,0.652667413824,0.907316911325,0.418534629471,0.316236215306,0.645844208015,0.0999861590204,0.448610850742,0.148797837518,0.0385734652305,0.683205972635,0.676853585743,0.895362658226,0.687574621523,0.940908125503,0.324895125784,0.841543527426,0.329937903164;59 +0.307928992073,0.264185919176,0.923718033419,0.292571855924,0.230603838285,0.168737039824,0.868341983066,0.405318367743,0.00723681936378,0.544139548612,0.106298981051,0.744503919828,0.770653392273,0.419329374463,0.170760724356,0.210115546562,0.0531066552506,0.154886619512,0.649995433329,0.462266632402,0.731401745265,0.66479654618,0.0857263676733,0.616780551962,0.196110522958,0.00834148436039,0.288025600268,0.255183493308,0.320031291679,0.149215704724,0.324060860936,0.874262944469,0.0460448102607,0.740060287853,0.861567920653,0.950417068575,0.382051747346,0.619298240635,0.681958341113,0.360083000915,0.792991574671,0.541246274512,0.133999123173,0.770416982888,0.662988371662,0.855310836545,0.586364138829,0.172166246377,0.0306486076097,0.902904515487,0.083150980227,0.573862555989,0.537623644559,0.735471491857,0.630379678422,0.411324687237,0.798607048743,0.975062064856,0.806940429588,0.340069809829,0.439242894311,0.460951508096,0.838887483631,0.379200950277;0.243235830844,0.849628508312,0.372912018309,0.145994063276,0.405761295463,0.26382680468,0.303330041196,0.316764233708,0.0964771801716,0.369099902349,0.542915917333,0.633329086955,0.0738412902608,0.816086009023,0.522446611013,0.596652990888,0.634174880791,0.248966182989,0.936441152277,0.785503918132,0.178226487071,0.202027669441,0.54064504945,0.943583030811,0.0630670656007,0.767542658293,0.662433956082,0.478193984279,0.903702538345,0.931095591457,0.986724789741,0.308726305171,0.620426797293,0.459815460103,0.961244610005,0.672040836804,0.399505029082,0.722261143721,0.936716980113,0.858486264921,0.426682054162,0.407288641221,0.6405968423,0.284925613238,0.815262508814,0.170929968203,0.128879181798,0.904737002921,0.480452389221,0.196150225479,0.481057467497,0.0838371184988,0.569682329408,0.0807151453546,0.114226487569,0.480923662935,0.559283813096,0.774154127061,0.694489212022,0.845562147391,0.334748195831,0.243547896292,0.0556247963985,0.629562985864;0.423909769282,0.239419835135,0.792192509638,0.563562053802,0.618702872148,0.329622034438,0.179688827966,0.312629703653,0.308507837931,0.366832242669,0.709678913357,0.584097849317,0.0996303871739,0.7323144949,0.782236031464,0.555660850762,0.56292256399,0.178036196207,0.385454094598,0.414960680642,0.831285080884,0.855475414268,0.432651914099,0.588635264887,0.311716494979,0.0684446792206,0.125029925514,0.516724325135,0.266290657457,0.252158855664,0.280532794031,0.967435449599,0.894654643939,0.940492275662,0.90893289222,0.997520390472,0.044681515176,0.807001484531,0.466578937273,0.464858120901,0.611743023791,0.843534340412,0.233256891218,0.661852573858,0.220338538779,0.965854583341,0.337052714959,0.720470517477,0.522714758167,0.13348292466,0.630619663003,0.799929430662,0.441307077321,0.452773534909,0.208570944234,0.413177375933,0.988898528889,0.541433868504,0.150457794322,0.683019176197,0.236691567089,0.589242454189,0.901557026523,0.407133916522;64 +0.934461502114,0.00928656536988,0.730046035357,0.780032192779,0.454910773525,0.291280784882,0.326021944517,0.490991114924,0.832035108713,0.0104640037345,0.505645648867,0.142296461683,0.107781637056,0.554997264029,0.645642423546,0.390298770142,0.600790444883,0.471008887336,0.157634377394,0.958144530208,0.470275866561,0.0445067121927,0.423119540737,0.788236479539,0.842581013947,0.549383829204,0.350643088959,0.653379940467,0.355943358181,0.785766593327,0.572201268702,0.992184353837,0.317486934975,0.774067140972,0.337717940055,0.114108368776,0.70701669592,0.547626804111,0.715850148609,0.311017616033,0.822743423102,0.314027930554,0.563162539654,0.00637167400347,0.830545039997,0.106413882816,0.441053676524,0.123008424462,0.698672772829,0.935795138271,0.509496637654,0.729553858297,0.607006515019,0.0915235159072,0.211859098622,0.400774739791,0.35215431352,0.883125201187,0.803708984653,0.173727356388,0.596988030906,0.827661969998,0.414754468019,0.894186973941;0.479481602041,0.53028386208,0.336646907547,0.0933505571256,0.878601717176,0.458267805748,0.362215958473,0.371495512109,0.218816379216,0.455362026396,0.571379296116,0.402191372234,0.392182958259,0.3577641181,0.234087959925,0.537768124839,0.440298598675,0.553328499917,0.950404018248,0.872735523495,0.0619241616958,0.0625072580272,0.403076368195,0.622178062391,0.361844923998,0.515698886328,0.841496650009,0.737449295952,0.17432995019,0.812873665806,0.616855437899,0.829242560278,0.371085479504,0.235394033887,0.967457942436,0.753954072144,0.632895822492,0.134500935495,0.64168510234,0.82963798178,0.358540470452,0.366136626378,0.437346006388,0.106069122715,0.665445317099,0.885966734646,0.319001778225,0.637603798025,0.987848611986,0.0976671879129,0.480546494909,0.352618163148,0.581198412975,0.949288993522,0.113271451726,0.980819155816,0.291291936965,0.912280841161,0.997825589594,0.667849421892,0.370014846049,0.661587483631,0.260301360057,0.597242558192;0.697901448499,0.87632847213,0.945339200096,0.112834922927,0.296518116623,0.0129579441209,0.0727415278638,0.5378618765,0.827731010163,0.767681084177,0.271102160786,0.744752474184,0.0581035610242,0.252520491582,0.46697551752,0.756501733363,0.753875124198,0.883382944557,0.0423422139373,0.0394104854824,0.0994474569745,0.876100104214,0.927222870058,0.948091780123,0.507648774973,0.852689652127,0.402672188525,0.592740023019,0.108365932558,0.872610401935,0.187117991519,0.221973360714,0.369516808428,0.250991102454,0.317992060831,0.859197383447,0.55760595499,0.971370133965,0.786762867017,0.147936193375,0.278108367781,0.259246698749,0.995903668215,0.366117083033,0.508245652971,0.76724038882,0.655768879369,0.708188884777,0.325860988638,0.000944026790597,0.151901961951,0.467304474877,0.948297561088,0.325965844231,0.815169095254,0.565895714433,0.502117026637,0.816920185191,0.881763492913,0.0530548681571,0.0612793227456,0.881390835808,0.0760782573981,0.305352983835;40 +0.899363625387,0.701751395743,0.305101275885,0.91150622205,0.337013721929,0.0781267467002,0.201099966154,0.5627883093,0.436571259751,0.957271293692,0.191638068932,0.304580412734,0.505866064557,0.106563987022,0.579578727181,0.625585283155,0.578874971308,0.217656198237,0.723076847597,0.509525509167,0.51303099556,0.346325660322,0.892962254811,0.0520569061371,0.0109170693342,0.925290293292,0.242591441934,0.351553609381,0.734573902203,0.382448102852,0.851453993501,0.613338428876,0.290406494588,0.089901438063,0.0831803149908,0.753737268274,0.695093307717,0.158391831805,0.904078492544,0.644388088127,0.719203179851,0.4599424549,0.169866860026,0.930182454317,0.274277675496,0.222596417569,0.314808772365,0.696060527512,0.0357566564259,0.46786729817,0.81967373993,0.0445128574679,0.625942477535,0.65811145299,0.533703858172,0.59294338067,0.170350442387,0.429733678249,0.103760563673,0.0879962719808,0.409197487667,0.908977367949,0.352093443943,0.458724245592;0.586009566651,0.476447187495,0.0871104237543,0.439365911193,0.768704111969,0.00452253197606,0.355157359125,0.888484940192,0.149255142271,0.209253115805,0.940524598845,0.340824652017,0.0390016569752,0.897374263994,0.57572330546,0.910722712216,0.0776664459678,0.560185875845,0.990354398439,0.0954411503109,0.253004498868,0.339183895747,0.609704282812,0.768377086789,0.505780577077,0.261386040508,0.148361260996,0.337377463335,0.860636858591,0.468135478487,0.0680739537268,0.923390233389,0.290811586631,0.897486502324,0.51196329735,0.929681921172,0.189363504894,0.514869119066,0.340505883363,0.22079665218,0.592704481267,0.405130375199,0.344342385013,0.3898295964,0.409816934164,0.664820730546,0.0832452881963,0.942614015242,0.947655091759,0.57098002164,0.0724927465189,0.263621212261,0.614072501017,0.509835317078,0.498569108502,0.121929370987,0.0974673440974,0.505020702414,0.466293208397,0.434670632251,0.225717946379,0.83528315051,0.509053814604,0.908294928433;0.0880644067156,0.777381450513,0.641122857999,0.580441933949,0.593808352131,0.904502955298,0.783594988495,0.977903156719,0.427411268587,0.390401783713,0.723643931112,0.0906570319804,0.157888770545,0.469166387871,0.340679414146,0.336665097521,0.934966664627,0.630478815206,0.218135595561,0.644971214094,0.14083254323,0.493604679561,0.813056689208,0.212717904973,0.477571192976,0.269846820841,0.123156231256,0.439786199446,0.156796615046,0.414667165331,0.237277018276,0.610806758092,0.984131992042,0.896652257367,0.859220183038,0.012049151545,0.670667215976,0.168507930094,0.232277619112,0.0373096534402,0.566558119152,0.0243725468631,0.760964910468,0.107377700093,0.798999787305,0.822678868127,0.855627734059,0.900688068028,0.338423987965,0.974583697323,0.578300446234,0.809097263792,0.306984576335,0.957152926832,0.387577603832,0.995057885345,0.367753966242,0.176962710355,0.42246488366,0.653848045323,0.693667627722,0.192137497846,0.419786039553,0.332321470262;33 +0.682666920873,0.777299781145,0.870204060084,0.91810964923,0.445514096542,0.708494544122,0.25698360404,0.0163265056019,0.751735012274,0.0520898841177,0.802459879821,0.442754099245,0.713326428653,0.368568830116,0.788727604897,0.844952901322,0.133403557066,0.229315566343,0.658309524776,0.470432663885,0.392369275627,0.764902492598,0.346089959129,0.436348073712,0.892645278784,0.810526437841,0.496556875739,0.25814591469,0.779025516038,0.43463578987,0.996096238631,0.0090999250358,0.514201072013,0.473197144073,0.829346592347,0.796859702386,0.349616780609,0.102559125339,0.778541714642,0.631291847568,0.447930488135,0.20665383509,0.826656079043,0.273793115439,0.85334357561,0.961571104204,0.0401995544415,0.591738128602,0.363685412987,0.0206982107938,0.423073524404,0.857782649386,0.740398008877,0.71734686381,0.20488981518,0.852573283248,0.514154337414,0.601921417883,0.415168256289,0.7874783389,0.0699369534681,0.676420897967,0.093321513631,0.407425980309;0.182159911994,0.195732159932,0.648255009208,0.46022655703,0.62815975933,0.361595176857,0.730469831477,0.515095885439,0.69963045034,0.20143374972,0.563928860022,0.743221191104,0.331992446568,0.0206628253501,0.962920322199,0.51914718544,0.0173244885706,0.0647817613533,0.486799740255,0.0981126779927,0.723870545197,0.309555971566,0.0288710468176,0.621446068556,0.888598009381,0.772620769996,0.874619508238,0.344309310745,0.606705979093,0.73870813459,0.0145545402886,0.517107853671,0.17272383828,0.443674762467,0.71865724246,0.269779034028,0.514419055408,0.545239993607,0.931354744633,0.893671321612,0.090904529938,0.901173602121,0.890072468523,0.362464434742,0.161277196747,0.246565442708,0.961665722569,0.594606922273,0.320336101517,0.102888285217,0.180105023529,0.316061793756,0.579270021652,0.343044825934,0.206843898926,0.0586397447454,0.999749592451,0.649176282538,0.562418197263,0.467913163762,0.0602861042886,0.993983752303,0.279099465644,0.561612347662;0.349052799884,0.0030403651539,0.751103588128,0.490891855928,0.0109380745042,0.376670539994,0.926906341346,0.381290851591,0.342560903419,0.442112707483,0.855804886377,0.150862783184,0.602207671385,0.607110385977,0.0544765958285,0.575470871687,0.993944552115,0.792188452745,0.735757272988,0.372590855083,0.829116793443,0.496663661739,0.445362380772,0.00168359828649,0.592744998812,0.605462541764,0.687965962919,0.0046201007308,0.425609811918,0.745007175082,0.0404775160688,0.799756250097,0.179548003134,0.037724456145,0.999094509089,0.517325732345,0.944202004662,0.431243901817,0.919740165283,0.958505493459,0.258534186082,0.978855030327,0.986791975949,0.746682221682,0.600665102947,0.939178374711,0.447193287743,0.385492740132,0.753772500249,0.836615935768,0.113078865052,0.369185100312,0.254112783519,0.713156519742,0.58377344554,0.179754479096,0.0552926933226,0.274268763577,0.899738520254,0.671554319807,0.12865777083,0.539255788622,0.702263077366,0.325320934114;44 +0.119477338715,0.720902940013,0.355091255505,0.151102398104,0.618668752485,0.90830852338,0.428294581219,0.655470769947,0.733065498761,0.0431854354574,0.0644526954442,0.413728149223,0.277528583512,0.830632328946,0.570199698586,0.163735426642,0.445547628488,0.355439720691,0.59140459081,0.838740198987,0.462058394587,0.394788066448,0.365206442451,0.0932579269267,0.685422358583,0.388564814972,0.168227387115,0.0313687012478,0.0729858431411,0.46941243274,0.0526338316629,0.445789600687,0.703038990798,0.620823527147,0.618055321568,0.884983350435,0.483133138782,0.707474196604,0.932226233661,0.00212827081529,0.134629830771,0.636303062658,0.281233532764,0.906052206841,0.929380467873,0.851721315222,0.374755451618,0.992935651713,0.947293301233,0.808486120441,0.427810346456,0.579643418099,0.054715996323,0.119706531589,0.823306212495,0.92052123322,0.646533951431,0.908904408849,0.78440667816,0.0563788587969,0.634071607677,0.814592232134,0.512275624155,0.977886005818;0.672481399474,0.851296477395,0.775127093893,0.581953975252,0.747524856013,0.473569380073,0.69165095444,0.0505932391048,0.116891990741,0.39542410098,0.913579842735,0.161240773239,0.921699902483,0.745716130536,0.826271855116,0.388872727675,0.795015378489,0.918329939287,0.567605531408,0.509060990977,0.102740074462,0.870187293515,0.197980192462,0.876855927034,0.713629022993,0.296380622989,0.279710904622,0.730572838407,0.712619398955,0.681851660243,0.9048009975,0.995678814258,0.254254549655,0.380790966161,0.746850517576,0.146552691052,0.422726941315,0.834155159804,0.805921317478,0.318788484486,0.64528736832,0.106623523456,0.298596050367,0.916117370364,0.980617360492,0.566234223103,0.549471475288,0.880774667928,0.486983384134,0.545763215647,0.982430763351,0.254477973454,0.823550805241,0.801879354291,0.426453744945,0.462119509952,0.908188969801,0.446273728609,0.569204693907,0.429259040904,0.112413297442,0.954212558059,0.444923620576,0.535838656147;0.282650154353,0.579214110292,0.140489431124,0.0224125605257,0.810288505567,0.134421657684,0.834463470468,0.950278917563,0.996819021613,0.176835604581,0.901707658508,0.203680424619,0.744031536864,0.589318124682,0.32786089319,0.61566516525,0.61130001516,0.214185586509,0.51404952075,0.880728405512,0.427036125602,0.100525616418,0.388018469769,0.124025621083,0.414000707242,0.979210014113,0.596889823752,0.258386530237,0.217783215924,0.997525429028,0.384087777548,0.0458539151254,0.56348306644,0.0445610935223,0.727016094383,0.725326774881,0.965184782912,0.883922994147,0.173343823232,0.255529881073,0.22533182361,0.911533511299,0.875168664776,0.509574506055,0.258840521549,0.309812456146,0.723957999693,0.769926325688,0.676731389089,0.396753629799,0.375023018868,0.175191169126,0.960590201733,0.603567593897,0.804368341201,0.299934529298,0.488147398138,0.377777713068,0.971968879346,0.0561804313909,0.214636489856,0.893675860298,0.374940445393,0.809152963021;83 +0.752179998884,0.899175754281,0.413571962421,0.80705955856,0.813100126594,0.333510443694,0.336309468886,0.114042223036,0.0155521200634,0.419228550888,0.835980961519,0.316035763455,0.837932740546,0.59451092233,0.136718277407,0.0182280526135,0.238347441096,0.385355585299,0.186332176667,0.0225126418104,0.733070824931,0.238023909642,0.352940211727,0.0475674215362,0.605769676281,0.921801161894,0.613294182392,0.0769205921412,0.652320938836,0.00387250323494,0.34450282095,0.441668869769,0.966845339008,0.365984483728,0.0896844155957,0.292805370787,0.794776336068,0.971209999726,0.325875550814,0.724290595835,0.519151656331,0.899025416507,0.269264101368,0.589723859942,0.0923326220891,0.864946583932,0.633894945695,0.816182927638,0.642485760379,0.157456808191,0.512812634339,0.269902723876,0.529454076182,0.480798148434,0.523727029104,0.503968061476,0.0468527732902,0.319328570621,0.460825977623,0.134238120731,0.301015934556,0.97268573752,0.710875792454,0.29010773368;0.945910485297,0.332358943319,0.0526339778871,0.819045094359,0.633690911969,0.299414789795,0.467270978718,0.633196513505,0.381984870165,0.247838424188,0.627352639378,0.159319264842,0.425893311532,0.466280840499,0.0764692034637,0.506642287601,0.383086494689,0.176457445322,0.557065811577,0.361387674138,0.686058728487,0.150470229379,0.188044893684,0.909317361721,0.839836420414,0.525121036443,0.23876234342,0.840512360072,0.077130086645,0.555861034845,0.33030421417,0.0472119825668,0.942395639001,0.210849921982,0.507211812812,0.311232588548,0.273979379557,0.106863056325,0.428669368849,0.574820029518,0.741377137353,0.132735727149,0.568925931477,0.295681906621,0.696350963725,0.454990252919,0.881776347363,0.360136666098,0.170885351043,0.0724356484335,0.0702840880498,0.960983698272,0.115963580664,0.391643069973,0.155275962734,0.412338871595,0.712599286838,0.677050611782,0.893384725903,0.236237148547,0.822329705001,0.483707088766,0.276090095171,0.551633239417;0.242224125642,0.385229349562,0.758792374506,0.70814118871,0.11964924392,0.397382160333,0.462188023563,0.841262313215,0.520374012374,0.476258692132,0.160208867465,0.00220481461256,0.0261843382158,0.737693889294,0.832096479914,0.553538886139,0.0238413481512,0.436607002473,0.457640309088,0.731121087411,0.403849762291,0.421565821098,0.987771764172,0.713975183765,0.331375897515,0.599138868866,0.517068664495,0.828934077793,0.896172493046,0.769277340255,0.935024290875,0.946324536462,0.539595283384,0.314782818166,0.600527659726,0.340280983447,0.89237860468,0.362022866979,0.765315480074,0.943427377153,0.728484532116,0.330569824746,0.893266323691,0.312921375306,0.387732372889,0.48372389671,0.49784368097,0.231235096489,0.810125507779,0.685702613855,0.32813179469,0.549799040155,0.9551904507,0.505087890374,0.449979823167,0.240133302578,0.982060904742,0.214041343476,0.8025138464,0.568015653493,0.283985918067,0.801623917048,0.760748607135,0.0955570411202;57 +0.675461801177,0.638912381307,0.92920223109,0.701083276647,0.167427631916,0.931536209293,0.212870242142,0.187239311514,0.625574634169,0.239787178887,0.492521045563,0.44142500196,0.916300717509,0.674211084366,0.225081100467,0.926135901411,0.836943020208,0.484703116608,0.49614222155,0.60043973495,0.108276651126,0.465765991286,0.571638759576,0.303727878892,0.378490828045,0.818644752622,0.0605689933023,0.805837654319,0.26853967834,0.784619326652,0.0846003972957,0.665079495138,0.872597584439,0.570972909029,0.937984370653,0.132964904641,0.395088598417,0.0289778158154,0.915124822481,0.22255193772,0.264425077674,0.204085116102,0.359091774279,0.521937692464,0.624248396038,0.365400480675,0.021663110045,0.37160784603,0.382333964012,0.62199723372,0.99003214054,0.387346269015,0.415584736616,0.783863116384,0.785688825047,0.522232463073,0.228863662825,0.0841183760287,0.0507464058413,0.698533413151,0.0514606305294,0.305510599879,0.0236862962864,0.485584842056;0.449871082685,0.0283007337602,0.119143798494,0.895249833801,0.759694665018,0.959734805236,0.428465374466,0.258237402851,0.567687268338,0.141839064349,0.744162896332,0.210250009792,0.549318340917,0.504649264157,0.938658067721,0.426083456488,0.751142400979,0.749013943774,0.861638591816,0.435684452198,0.00261344188791,0.0400987117799,0.112722061415,0.442379910405,0.342881491574,0.0985181230393,0.154762292253,0.329681326794,0.546101631072,0.919017471417,0.977309266329,0.271117158986,0.542154235734,0.121868133177,0.247379848011,0.799251262974,0.787532949036,0.767572318938,0.0681696653265,0.644863625329,0.143474358601,0.727077763508,0.372828583706,0.328224316931,0.512837115286,0.870669281111,0.526406138252,0.0967781576462,0.549503273317,0.970041182678,0.265045803137,0.447503766842,0.670383909511,0.467722479774,0.852924582896,0.352206281751,0.320264606139,0.901815657241,0.168514856294,0.830615641939,0.604112214067,0.419710286405,0.154743320981,0.619664470169;0.354562204641,0.0495097958924,0.904084158826,0.0974279366498,0.337537777205,0.921433886696,0.130625608606,0.756547087669,0.550090731317,0.282275276093,0.613240521486,0.233586454719,0.825104627903,0.592250869505,0.614670923033,0.72067132982,0.457856961009,0.399888683659,0.262330765362,0.362417915222,0.745675574653,0.865751544286,0.284601142659,0.618385966188,0.603288718754,0.436703795419,0.797177835785,0.275466987893,0.728984881694,0.336128390933,0.201837200887,0.793618232732,0.620633275999,0.592456570913,0.866501984132,0.796455109433,0.593362034682,0.784074996678,0.948165981845,0.501554264455,0.486230679831,0.653202050853,0.999122424423,0.23314279961,0.908105717017,0.787249701437,0.725255395159,0.812511126509,0.513858689724,0.479500381602,0.74884478798,0.0473345652926,0.879127930114,0.704884382794,0.114373122105,0.589569049663,0.491329459083,0.0581726664085,0.0530542340913,0.718549520763,0.834269679567,0.345269609716,0.0237633598728,0.58420628553;58 +0.885104637768,0.733916414628,0.745982265403,0.917323555344,0.161813393625,0.547218384593,0.104500899919,0.00360707772157,0.873892094127,0.544434269625,0.0187228156286,0.0216661524426,0.0203613723733,0.81262915664,0.515253804517,0.223610127177,0.260944770337,0.22179453547,0.0391882980319,0.0120013298712,0.424136140117,0.202456829009,0.0828588031904,0.217567296566,0.92481893,0.705868168708,0.700829754722,0.591214151467,0.523405785383,0.468155859448,0.924681111788,0.707659217514,0.586829615224,0.242431634869,0.277469627407,0.787613100061,0.978506610092,0.770975419354,0.440643858225,0.123954893855,0.298133862776,0.0361276870465,0.839846281905,0.431252919094,0.716914301407,0.628177235231,0.550142934571,0.301255505548,0.738381923078,0.537615235082,0.147646906235,0.660353769795,0.658858980595,0.952875353372,0.865473237306,0.836965278275,0.392552057781,0.446929400878,0.957229611089,0.359051649238,0.868893230547,0.377972579085,0.361711626862,0.923910363576;0.243346716094,0.986980460567,0.600371415497,0.0970489416573,0.119325601299,0.736314267418,0.122462800645,0.904483294245,0.312378562618,0.541060225512,0.21500430204,0.915793206946,0.488771685218,0.66165670939,0.645333687574,0.994124836579,0.522068602195,0.0198573936463,0.828847529258,0.0428229974789,0.483191831731,0.916101857424,0.786575294556,0.207573558342,0.016640839956,0.506567952718,0.73802009298,0.392229332562,0.625661008786,0.473415517452,0.150034174525,0.54444287067,0.883641125053,0.663083279417,0.664861975868,0.445981098542,0.0687562120995,0.653927712366,0.0728767055629,0.580191651333,0.666051166656,0.419054297526,0.168993994257,0.818084368378,0.0279949398527,0.586967362712,0.719115419673,0.140277856513,0.709031764065,0.3576642573,0.6763205079,0.22917474251,0.455062249658,0.1826929346,0.616849167633,0.157752588779,0.672146695758,0.262710360875,0.763831127163,0.73991159125,0.0523918175302,0.756442442539,0.552210780111,0.313555821809;0.113103114218,0.193683631023,0.474195339552,0.292982043103,0.56299383318,0.891146910506,0.635391983346,0.608299320777,0.131104446144,0.604091647391,0.693303394431,0.511076874677,0.763090270768,0.0112243457502,0.317950716002,0.538079164538,0.361893372616,0.5727836965,0.0582572855052,0.787980049438,0.673878882698,0.770294586839,0.706757589134,0.749756398726,0.146014736725,0.357164389183,0.0881428223989,0.621768126978,0.779673340259,0.684260515883,0.944568710572,0.731725453127,0.434686171236,0.359221361284,0.958226075119,0.916863815549,0.860629887337,0.552169207415,0.138417902372,0.838041622066,0.050276483404,0.0245850389525,0.450268129308,0.727099731245,0.63252332804,0.564562811141,0.134857767532,0.84802084724,0.379815875733,0.211944400023,0.271155050052,0.941993701971,0.450624578628,0.39234996741,0.224338361626,0.784509341638,0.656908971087,0.901425179116,0.609569251891,0.978945018748,0.36956615639,0.571753549194,0.346166267182,0.442907068882;51 +0.971079108112,0.363846216817,0.4076497307,0.468036302071,0.780612286504,0.513153698246,0.846863752048,0.563761562714,0.3380715045,0.919662162541,0.893458747311,0.289998697849,0.752711851803,0.347804149586,0.846863191559,0.506493018883,0.246840206942,0.795495615988,0.18161594095,0.599571887909,0.193744721019,0.147254725086,0.991977019045,0.0694481712941,0.237656997459,0.630988112032,0.80082074094,0.782113320287,0.381077424011,0.567938888848,0.498605733255,0.723836332505,0.69633682746,0.621661093969,0.489337610913,0.658241126462,0.444706314211,0.392917172895,0.417771396268,0.380407739221,0.390364541905,0.109271829764,0.888125628266,0.590916339856,0.963934367126,0.606532357539,0.149216572556,0.279992326354,0.893330081328,0.180702662188,0.998075329989,0.224528641593,0.968167433233,0.49942337865,0.951069071003,0.551116898805,0.846933464727,0.790905698727,0.229444437297,0.844191211865,0.348674163797,0.0970900523382,0.689813180398,0.187328049741;0.393141920376,0.619079773746,0.872180732318,0.732769887815,0.38839464402,0.853311271615,0.718018219468,0.840449064105,0.774459443634,0.633344323432,0.1653257165,0.513206579609,0.267016801016,0.474065360473,0.980465039161,0.220932710329,0.375274237412,0.513889283394,0.524459397782,0.449797163784,0.0831049166012,0.780629198356,0.0289836305532,0.237436596052,0.395201498969,0.388748733375,0.323374164231,0.488601752473,0.927294354435,0.298602338688,0.27986383081,0.56669045232,0.662086786891,0.906297408605,0.812759606326,0.369045239987,0.367204669739,0.247962732548,0.572706730056,0.938667615058,0.61595980582,0.14306383416,0.0868278174999,0.681856379597,0.860001302363,0.609006685214,0.0379018736336,0.526510716308,0.0875340887398,0.133152718838,0.260797015384,0.494656464536,0.692770146058,0.514064789423,0.559598103375,0.710651135822,0.414351483884,0.139698148564,0.786405247328,0.739214760049,0.256129809157,0.374005062764,0.329966264997,0.818353307222;0.301539323016,0.93286320291,0.597541461184,0.385624548335,0.96665676191,0.774609293636,0.0949820506032,0.597224666659,0.501110419409,0.838378767937,0.580546716115,0.147364892411,0.382087926337,0.70797112871,0.617587710497,0.718784640367,0.523891016482,0.576437026435,0.46625284672,0.852743461946,0.38212270133,0.176470537599,0.479937573992,0.922110969267,0.367113604872,0.0174203936047,0.0879602546462,0.447779213413,0.381998287033,0.550909457405,0.849035381933,0.0648977432647,0.233312043991,0.49899572284,0.708826044289,0.974895799046,0.978456133991,0.78845112976,0.293914640434,0.0574069463686,0.446080238312,0.108525370422,0.847493615384,0.894512767092,0.112393156244,0.121086968165,0.398570008042,0.419743243113,0.390141552881,0.41298976544,0.77858625738,0.915949345834,0.579616516872,0.549975232376,0.667030487021,0.074653002863,0.616449194287,0.211519123643,0.328514893176,0.922795963582,0.0708467042381,0.529291583833,0.0162518431095,0.127623104548;76 +0.398138966538,0.827531949447,0.110417036363,0.178428952018,0.773243390722,0.517141981208,0.180060417075,0.926595223912,0.764087306431,0.168736804449,0.143920507441,0.75124892494,0.575158454903,0.455446014619,0.656618959778,0.244295104078,0.952235052986,0.375656093695,0.975438786532,0.0509991775325,0.184478507691,0.191280497423,0.30740338972,0.479841391711,0.84655575174,0.869085068789,0.942642424792,0.880489594677,0.154268823447,0.362911515078,0.182903343407,0.527775020549,0.368598787313,0.0426663542389,0.972356992491,0.136922678827,0.105838689703,0.0775474875629,0.723467439127,0.0242684511184,0.279095061574,0.397478954572,0.590433507067,0.248171172506,0.172803965821,0.796317898086,0.408553657206,0.932429437322,0.914965437576,0.617358426901,0.937538866769,0.108580943298,0.769527082794,0.234543010084,0.197543065523,0.846628629869,0.343091195276,0.67939288792,0.949251048149,0.610600308594,0.722166477791,0.412403290486,0.673586227428,0.990290876094;0.60432819955,0.943564871279,0.377298564475,0.42533807707,0.512059762873,0.863679055689,0.78414640559,0.108108765325,0.490221236899,0.407141683897,0.746846149792,0.297581573676,0.354611008269,0.504651023468,0.907457198632,0.821915247109,0.938332987415,0.157884055852,0.57859539226,0.277421788329,0.273631843906,0.182208344968,0.677641058682,0.11850079911,0.801926549221,0.883603717742,0.424696741309,0.661128223226,0.680035868737,0.702586033217,0.618557143232,0.494501532776,0.923098570345,0.525698140111,0.0463509997502,0.832023072163,0.638005647084,0.126562974214,0.512621940696,0.289992007989,0.269972230115,0.919755331314,0.601598378522,0.469878845846,0.824068635118,0.363481500979,0.655843013144,0.486240208587,0.700510077627,0.242524604921,0.202571297168,0.86331832146,0.152916629418,0.913061064052,0.62679227221,0.502507247382,0.150324436313,0.641350234503,0.661050618772,0.336042317012,0.523155797616,0.0242852681666,0.977033168626,0.466834702952;0.406512754068,0.955849915182,0.8720984811,0.455960266787,0.763251533786,0.350825867599,0.498200919164,0.919809278067,0.0382925444338,0.218908574406,0.960620343967,0.692831829159,0.282076631586,0.905181973988,0.31735410484,0.576501417229,0.184623484718,0.779586543305,0.458806228013,0.713450132276,0.685073283906,0.269361992216,0.912562920171,0.991628606203,0.512621616429,0.356972742908,0.726285605507,0.794264496198,0.389792818201,0.41929309406,0.388649055288,0.949513278485,0.530241534187,0.660009095971,0.0716856053525,0.693322123035,0.588585282708,0.546202144675,0.105292849572,0.212205525876,0.955613259602,0.773495108707,0.873625282772,0.0141148235833,0.577064528648,0.0226082680588,0.316347597459,0.193052566238,0.0610016116179,0.572792902924,0.606736872132,0.479580211418,0.29206904347,0.684305728815,0.77375014238,0.888547663657,0.935220417436,0.570144825337,0.639066113032,0.50253672053,0.0924931271737,0.190641035702,0.69289083642,0.221985167367;44 +0.986842380974,0.790243708535,0.0685015175467,0.932893479302,0.154592811765,0.759628055818,0.246871180815,0.81160197942,0.951671633905,0.161711213525,0.732219396637,0.242914283187,0.0128552615257,0.902685628196,0.77915231282,0.77139365319,0.0326209466661,0.288430449962,0.284039468282,0.156976985409,0.305943603335,0.342054623771,0.480845215614,0.974711848855,0.689831042656,0.456666977537,0.348193174588,0.36385619404,0.576782289272,0.645262038293,0.192564436679,0.981529511861,0.226746631758,0.778150999422,0.151686780626,0.647705195549,0.222030150551,0.0415603258269,0.485999198281,0.0306617622035,0.889143504809,0.808312916158,0.709170921778,0.755690335873,0.565627912323,0.384423446545,0.249186323877,0.690650167728,0.663873065097,0.71995497274,0.935057428774,0.503298829429,0.88414720531,0.83339335293,0.591454983816,0.379114704783,0.425428251844,0.933806720139,0.589968658716,0.611519783562,0.855175513247,0.83737490811,0.76049764911,0.680777694245;0.880878187575,0.431364499992,0.451782789067,0.604389654795,0.956840601786,0.131464702417,0.959809442649,0.205717898099,0.324604382949,0.960451791942,0.157666738603,0.90148326105,0.458231269383,0.631331030392,0.158655405954,0.386881546293,0.319863210957,0.104723192323,0.718355329264,0.0831105387122,0.856656657507,0.848134215077,0.581628692587,0.584720814244,0.900453196155,0.843814952451,0.54512379075,0.260999039694,0.0399254497578,0.752559643322,0.677258043744,0.354943107403,0.915065191182,0.29187661194,0.0592223746729,0.481458340042,0.0144198798917,0.734727622708,0.968755802243,0.305360536925,0.55605531341,0.17631817705,0.0249161757963,0.0549707727079,0.332599995538,0.479829104843,0.264935349375,0.486129008365,0.691656738974,0.791234666401,0.817112311081,0.784360189033,0.606741349045,0.0816611525328,0.652863547787,0.0710861983353,0.328684539712,0.48289037988,0.837801750686,0.2451793043,0.0840728756733,0.739139270974,0.560310797471,0.475787403598;0.966762551814,0.103543004762,0.601511119828,0.948724351465,0.0825284007203,0.0552201584879,0.349295119493,0.524505112092,0.867131815588,0.166321323263,0.229304273334,0.0661582636993,0.105652454526,0.820732221904,0.523619689096,0.869710271152,0.784125907496,0.663912154148,0.700930062723,0.218263474154,0.712854211749,0.862012885148,0.0524672005998,0.590828950475,0.681860623445,0.412364870214,0.341240040649,0.166947767904,0.689630469967,0.699895295697,0.342483912502,0.942193376931,0.916989803131,0.37515033614,0.22062177624,0.568126697922,0.139738738709,0.881584291038,0.651044119891,0.00487363600338,0.0585217707486,0.833791658724,0.163736714061,0.00749086984232,0.180749405501,0.00363796577109,0.950753476196,0.674279688473,0.168378332857,0.787348324333,0.432111359423,0.942353023583,0.930175127115,0.686635546258,0.692601505802,0.331793963963,0.208778547712,0.204232392768,0.5766196742,0.19780149763,0.781846831218,0.848927179752,0.426781699142,0.755800113249;69 +0.402367537902,0.630220065584,0.974847581639,0.0771961620262,0.397327474018,0.170520949295,0.833464304516,0.15353813835,0.676494315332,0.0950038604526,0.0750038237579,0.903349360546,0.339001909581,0.731397581517,0.753640564276,0.591984489273,0.545156710704,0.714527699125,0.331135202764,0.595181327116,0.578055762103,0.371270101947,0.366281843059,0.149770261997,0.681116318481,0.00714132411246,0.980238689821,0.748711570403,0.903460314819,0.78824365536,0.899843630929,0.102351299081,0.749190055214,0.947948637511,0.983886093873,0.124948578636,0.306854951155,0.263503292189,0.271711418356,0.855095539126,0.954591569794,0.0936330200512,0.545364171028,0.358318732595,0.63378278927,0.0269679527616,0.482437490942,0.316916188834,0.0570454285008,0.915098144307,0.222320207444,0.569002632218,0.581493715279,0.273802176044,0.378605584504,0.307095066213,0.341317172712,0.992427213248,0.161890853503,0.282106336366,0.639172073774,0.610562766246,0.304862800936,0.0507524177841;0.0933370694334,0.554412549316,0.71888186911,0.0542092507839,0.18348135616,0.525808750437,0.61648373376,0.466623847996,0.605251170608,0.471099946798,0.0931947683065,0.108780838897,0.575971386597,0.701147074225,0.504893198515,0.764400882579,0.596742077787,0.892360527389,0.697469546561,0.577458422736,0.0888710524355,0.130595909079,0.564271135049,0.750305303444,0.564450886424,0.308930259368,0.0464895874766,0.924464405514,0.318349341206,0.256397347045,0.411997969895,0.824314477602,0.560505954382,0.876312006006,0.961160126869,0.114150883536,0.0159416534442,0.706526051502,0.702135459967,0.303627572174,0.399699720961,0.183406689397,0.0557917962406,0.0768944786311,0.453041888623,0.491684541558,0.47049784791,0.00811907141401,0.697196865065,0.768622379686,0.903884164143,0.0189098008852,0.967387812799,0.586174988736,0.77026970738,0.917541860438,0.932913968393,0.361032535383,0.935730581938,0.324813203935,0.395981322576,0.136322818828,0.859057965907,0.743168732578;0.504954939639,0.79392093707,0.0956048086388,0.701507122452,0.470789022922,0.834385827517,0.647888227919,0.787883213926,0.332106981853,0.0672981402735,0.261748245466,0.299309508556,0.45331039873,0.624124020611,0.131023940334,0.969660745584,0.980726042691,0.106830288169,0.363525845913,0.0687372115483,0.231999521969,0.702190899223,0.134708411319,0.221800424221,0.769867993968,0.512846562653,0.861765743533,0.177384415008,0.221051209851,0.0631879969323,0.38466245529,0.499368462711,0.357623786585,0.0824595661242,0.873652085664,0.879668883563,0.450915609341,0.330091898806,0.143343539413,0.179734927664,0.115483625284,0.99727413205,0.16817177869,0.448928257841,0.060026778009,0.676323059554,0.198628089475,0.705027968302,0.668602223851,0.997155759797,0.407856120622,0.402140188539,0.385867350429,0.862802266428,0.588902896083,0.0954730461845,0.1954494361,0.266513950142,0.000397252699821,0.496307051119,0.493945520274,0.0350475886834,0.609319965699,0.105065877984;32 +0.846343621085,0.0239302540811,0.905057499617,0.991201321441,0.574563000615,0.563534337755,0.523778808739,0.499597029091,0.0574736160751,0.441388886321,0.897548688242,0.0710863635764,0.519395167008,0.384229939464,0.0226261174217,0.595015130862,0.934604826917,0.126355315725,0.436418719994,0.539549313055,0.908137924618,0.268792209456,0.809195040173,0.622385887866,0.30434503569,0.0836247133636,0.65787789566,0.180976891984,0.39588074364,0.835669608022,0.845877902108,0.669099788569,0.324061754644,0.810581244187,0.434038784216,0.243393046542,0.257533950023,0.962677746584,0.987345229396,0.168792154874,0.0620469596757,0.0964919493857,0.541808127513,0.424728745599,0.811085474774,0.910654733395,0.302108867647,0.362678292992,0.386967408891,0.246523588083,0.442933546778,0.652323830754,0.634563395161,0.68648412363,0.133741949591,0.551081801512,0.465624776101,0.0481817010908,0.970368465235,0.536816706882,0.511931047499,0.421412600996,0.504134221521,0.786047612537;0.291888083638,0.0808799079413,0.6157853047,0.751094430085,0.0189263164736,0.319112245111,0.587451970531,0.24176446217,0.770532556522,0.149029769464,0.87960091546,0.000924374932137,0.459529647368,0.16759138996,0.633539797741,0.692636888339,0.785154376366,0.0836404005213,0.383272986963,0.0434870889386,0.34173965879,0.346044201539,0.294752096445,0.165280466729,0.511370933428,0.752916961903,0.985528590463,0.16176348016,0.623105253156,0.227299601284,0.515894378991,0.162029274483,0.802545411337,0.0967332053979,0.574626798975,0.657501097584,0.712494231326,0.0792270080955,0.688891004931,0.0282750072696,0.726918683002,0.436115353113,0.933510664908,0.840212048522,0.562505031291,0.641808356849,0.639888350343,0.0960708943976,0.983301846281,0.93241971175,0.00527382370831,0.987114076356,0.549958767871,0.96305872605,0.889816077019,0.772223217872,0.382025558217,0.429584440275,0.169157856782,0.250278015442,0.176405813125,0.551296155515,0.546226994658,0.358859103332;0.110283887943,0.511712758146,0.187397618808,0.959923658625,0.150373422593,0.723874053371,0.57804036396,0.165217985841,0.502031258181,0.836101777617,0.563254128243,0.375659700207,0.208105880607,0.200003210516,0.621134246238,0.607340423903,0.31568178984,0.872344569876,0.228881432404,0.539616354934,0.784321051345,0.986222574786,0.0979122830986,0.725349554688,0.735576596383,0.198197339413,0.859069863609,0.0638188348717,0.711574246609,0.60225157082,0.745313421685,0.857369028365,0.220517913473,0.523070968718,0.509352796861,0.571902166033,0.859839216027,0.637329493412,0.453163463705,0.934935430737,0.842023411147,0.804685245601,0.880689867507,0.313176473048,0.267231189152,0.971892260911,0.0110910556892,0.732188935958,0.301375308401,0.779567141506,0.0173300681568,0.192155565947,0.0955292188219,0.642246888951,0.169995085744,0.305375737465,0.610146248717,0.62492738017,0.730677311035,0.282250895286,0.198588419739,0.0469969255079,0.261876068006,0.958381884634;25 +0.145234693434,0.0672665263389,0.206206943439,0.904233289043,0.635557980377,0.626743214559,0.396346880257,0.210863845722,0.32157612287,0.129880778585,0.565837567834,0.533922203765,0.155604387995,0.0901726163306,0.572209342145,0.619116000229,0.903673289897,0.0641288378251,0.0680413775504,0.836127110751,0.0818140931168,0.804560633363,0.383032032042,0.63737237786,0.974393946214,0.808750017568,0.429684192874,0.0086731687488,0.0980706956752,0.551164803561,0.581681833323,0.813682376311,0.692995604163,0.359606862191,0.465648194349,0.714012554496,0.520109562904,0.392909088129,0.485319380391,0.910760951194,0.47043472493,0.987053123411,0.806678356537,0.757401972275,0.243519914062,0.233366206773,0.0569478872027,0.378565924204,0.117016563307,0.823993722974,0.301231846666,0.171261110286,0.407442183236,0.81298138318,0.137807577825,0.238332267672,0.675485002552,0.802619847928,0.788897300716,0.319293877545,0.112178341652,0.915686670107,0.841475500619,0.438800016276;0.41124920336,0.162774949834,0.551710994258,0.267974389821,0.518916012526,0.632915936418,0.483537541499,0.562698640894,0.245948160606,0.441734760763,0.833238784517,0.557229511748,0.373112582915,0.636561182999,0.620716931246,0.66581768589,0.571870471596,0.757246083843,0.0410142964482,0.367818884785,0.88683492341,0.257491585515,0.79083795331,0.418780991229,0.643985918831,0.977024536066,0.253070172785,0.000711849975608,0.527196884546,0.742346559305,0.499787183205,0.567519359116,0.495123975192,0.220244604934,0.323756589658,0.901434287896,0.738886215102,0.924938426235,0.15103378035,0.452729354201,0.745609545905,0.15262320795,0.591659875852,0.345854057376,0.284853256575,0.419205269899,0.822958275935,0.777205264681,0.588791812118,0.056481910667,0.891170030926,0.503755277847,0.937358349189,0.322582529823,0.806048539922,0.870207104923,0.353058655325,0.836282173509,0.383989459662,0.631125066242,0.892257818682,0.509720584536,0.0192049666182,0.672641285468;0.80856791128,0.305010088518,0.143476718822,0.884233230644,0.906918827242,0.294275657749,0.348211331875,0.454723180986,0.408964439743,0.720251192724,0.843895200073,0.907817477247,0.836801590892,0.916542641589,0.408243665901,0.641154609731,0.487743178053,0.253636439245,0.289987740258,0.0906910056373,0.263041056832,0.446077918034,0.714948570313,0.328572063574,0.689532795738,0.626655411047,0.215488934864,0.315409881184,0.0856367719851,0.866994809251,0.640553429502,0.346644633218,0.117058000086,0.379070892155,0.281668665789,0.514476448057,0.416813870507,0.21152931609,0.0133544573834,0.291007124769,0.755355879657,0.762218798248,0.939782997269,0.801478087667,0.258974349917,0.97480601412,0.65345472442,0.479701791337,0.541623847183,0.378396371607,0.910277689413,0.979380087906,0.294610394233,0.111392984634,0.639010002871,0.744575345161,0.242586094469,0.202277401021,0.921475781959,0.14466679036,0.954176382719,0.838631814234,0.744055635112,0.716935202931;67 +0.96296916713,0.699860289686,0.377247122242,0.150002427437,0.167300834578,0.0222508723305,0.952465047201,0.383270765722,0.390264435735,0.150536358435,0.120648122012,0.437138045994,0.663506012856,0.36662691687,0.446003667086,0.624713467769,0.89671994747,0.457421661936,0.486534593621,0.0400394316486,0.54881154793,0.958841726329,0.191749629679,0.917338056405,0.480435993894,0.967364384728,0.400222565288,0.849438344853,0.693289635485,0.981744304561,0.126151426769,0.666476709242,0.464174859753,0.13264428363,0.415056740862,0.657159056765,0.294500827342,0.890038959046,0.83775478485,0.435528793442,0.0703530313497,0.582283230298,0.483686978633,0.407572719581,0.752541606513,0.0342052944473,0.46989771035,0.149993113735,0.523330964174,0.169018915328,0.530015791963,0.749159767976,0.150895067192,0.802245165887,0.322866348278,0.560785914049,0.817029777447,0.458764034335,0.243792344369,0.939148386899,0.54404947355,0.954521797686,0.0881881968425,0.418084511316;0.525243640985,0.262547054665,0.196459183811,0.660681667254,0.70226227675,0.820056826531,0.913461294284,0.628478934052,0.164338575351,0.403676182272,0.363256466016,0.441891415392,0.928553606548,0.313751163508,0.0887320795519,0.991600651529,0.524366016412,0.903813519288,0.563828431831,0.349500728813,0.568325133712,0.894717241751,0.480028384942,0.717633476138,0.748809685403,0.351914993941,0.693384403537,0.972296962567,0.679477645002,0.178291826843,0.87755483279,0.684232402737,0.32813657513,0.429307283745,0.543056735939,0.287920353913,0.140388158638,0.729827667904,0.288543301269,0.711839122095,0.30250497242,0.305016021904,0.964019404799,0.915320438649,0.524413012316,0.766113370032,0.770233536169,0.95324432306,0.0770207881784,0.892260397863,0.929602723227,0.894614336926,0.62457245275,0.106157357743,0.471068396672,0.830048227345,0.793523405203,0.975084187086,0.192014926633,0.618961999312,0.106945217331,0.955517227085,0.828459950498,0.851895174105;0.815202922173,0.731824390259,0.0564063466144,0.626924259587,0.549659415142,0.246227101474,0.253340797587,0.406127950041,0.794962309558,0.432949870545,0.124558419092,0.800373431318,0.692114236302,0.518294870264,0.534036083657,0.406898520365,0.675113853902,0.734572761441,0.0794714827533,0.688944424131,0.444873341321,0.710317900256,0.82503217315,0.655630448731,0.321863382398,0.457961114898,0.205816748428,0.684760754198,0.899648078893,0.916939094359,0.355838647162,0.860794172996,0.741934907646,0.881551042576,0.890682420103,0.983114841204,0.714388351977,0.465931244812,0.637146921276,0.549569563156,0.354949223509,0.785563097542,0.00105129799751,0.911797460504,0.0117580869943,0.742558675636,0.676191150624,0.719399945571,0.491602474587,0.0875636739947,0.233615373628,0.477935625463,0.57948177876,0.599633845053,0.500450343824,0.635069347432,0.36052580793,0.640800455573,0.488978396253,0.9155352068,0.669564471314,0.403839670389,0.412784453952,0.0472417538711;55 +0.104749311026,0.800096820431,0.883934778013,0.146585855093,0.725587520399,0.831138493361,0.754490685544,0.101743729332,0.0221888657563,0.207073951261,0.941167684702,0.492794914269,0.998261058534,0.353954549642,0.880293120431,0.525033525229,0.727901278154,0.249061151392,0.738561541432,0.378482897113,0.757947614878,0.694784318861,0.93722885693,0.906815518218,0.694456109498,0.126668587938,0.606871192333,0.631860879191,0.573211490688,0.414253563434,0.451237281238,0.0173660432161,0.787095275602,0.370794122088,0.295734774164,0.855601680942,0.779255129466,0.488808372744,0.201193935497,0.221711241479,0.760370324308,0.911459843935,0.218308054101,0.720045410114,0.197307122401,0.272835850397,0.543581184349,0.671269530767,0.035599356266,0.501325915033,0.932848595099,0.993903962182,0.8026688762,0.601576083187,0.415091543019,0.484592384494,0.202102386238,0.13575634784,0.707923485155,0.713451545434,0.793519567137,0.75117567754,0.726179615569,0.656489317156;0.465192433733,0.627954895521,0.121868523271,0.94675318267,0.971179024989,0.963206783139,0.653612096261,0.46628102107,0.817248922643,0.0830532610613,0.358276090318,0.698496939646,0.994551434031,0.87965402046,0.891322517172,0.399939118388,0.672418768779,0.715070571273,0.587167616068,0.875888880336,0.827745712888,0.216191455496,0.0813570052247,0.249625018762,0.711192367526,0.745314463099,0.0135776498817,0.165192284849,0.846494586477,0.265757691461,0.958735818425,0.958694416589,0.826257939937,0.331490096923,0.314009440592,0.401516154774,0.601975868721,0.582165363228,0.0658509754823,0.659516948404,0.00586879494304,0.165113051758,0.682532770257,0.721501967961,0.417202635178,0.860765488023,0.516873596004,0.433723458785,0.234561387272,0.223033983778,0.266819572272,0.833651299553,0.0668892039607,0.410580305577,0.427869072374,0.682340433286,0.567681276601,0.444290492608,0.853371103295,0.621923833527,0.434215489521,0.0703508580065,0.206069835213,0.782923910263;0.178749853852,0.505008074878,0.714149605504,0.933399022594,0.226486145638,0.996396289787,0.433433704612,0.0988953016197,0.0212158641824,0.600263835683,0.532755205559,0.76255947075,0.276255587061,0.9630665724,0.373542549573,0.598106178969,0.45974894163,0.224126684681,0.0513630565703,0.957243146018,0.356537036216,0.547550327556,0.991986496684,0.852244129429,0.134737131449,0.939743629797,0.365640072042,0.714821169837,0.946833148644,0.414969056618,0.669320735427,0.0688839489465,0.222738682636,0.991621716296,0.644952482616,0.339135004986,0.861974078556,0.493781005756,0.894082131886,0.980806663319,0.0738135013748,0.335929638616,0.161661252783,0.945046867408,0.829254726681,0.551966159058,0.276861430684,0.31314489055,0.211698049516,0.644613700053,0.756872728507,0.376418059561,0.128301038216,0.656287501343,0.660877421057,0.891478332737,0.452303227709,0.865580594305,0.137636798163,0.068219427444,0.250467803144,0.420625915922,0.784491636097,0.298044180466;70 +0.129302119684,0.204338813001,0.66763057801,0.263479782943,0.24446363032,0.433091151364,0.128689219622,0.334950799326,0.760680543278,0.485454696513,0.570989225165,0.763102419503,0.485626989204,0.369572536097,0.827965387138,0.866904984237,0.613337887328,0.969890830017,0.871252922306,0.42821318162,0.998394319549,0.176002301363,0.193428735829,0.757770000792,0.997239552334,0.642963901173,0.938968994247,0.978221846091,0.905306128109,0.998133190219,0.135506356079,0.530632446478,0.185264367397,0.749195598101,0.344369539523,0.385702485839,0.00322672415572,0.609835241192,0.950154687264,0.8413430884,0.564388465134,0.195644874306,0.786602579456,0.816856876671,0.451509926511,0.0824816286059,0.411098565706,0.970640163236,0.737065037086,0.714439082176,0.0378177106305,0.453742670243,0.367489564663,0.554016031949,0.475563563989,0.922438954555,0.00685903888209,0.278395821927,0.794738062364,0.146100603816,0.926947709812,0.697331593777,0.704330270148,0.0690369271049;0.697524860847,0.780654500943,0.353183971195,0.384989336168,0.276202081965,0.852138100452,0.677816333872,0.417780460919,0.787571572552,0.260920880646,0.912178519567,0.655468215566,0.411050854106,0.639014496212,0.645825363678,0.12601255946,0.703184382924,0.0401002683818,0.65867746137,0.3165732242,0.366543777333,0.418176646148,0.550387383683,0.16161396594,0.838804468283,0.456111696887,0.171072226255,0.708677019411,0.701702841252,0.0838221420078,0.63078373384,0.501294512709,0.798588084239,0.622356802033,0.520346792171,0.14797122099,0.377131723605,0.630424140426,0.656328129728,0.243659237618,0.903126965435,0.283937577251,0.256522307975,0.539428945607,0.0739191835228,0.421944809399,0.0741231083709,0.0665303603542,0.826183458323,0.342087868163,0.148646389048,0.697789903223,0.199947649355,0.721530707459,0.217432077053,0.122924719267,0.704241716001,0.593135341171,0.798527345427,0.315031495743,0.0163826912643,0.614473401399,0.462364658938,0.607639157574;0.649584398523,0.746212306715,0.239516507512,0.387103993679,0.931912702066,0.786038781319,0.238612156697,0.949919276086,0.670959096686,0.912427534575,0.637935260202,0.266388994088,0.241478023509,0.257422060714,0.588478828151,0.392222914277,0.428342122309,0.53772180944,0.699266862981,0.287618272497,0.894782438048,0.797574025976,0.781301032295,0.528660381738,0.795109593021,0.235623914478,0.923635879528,0.118390058617,0.0994661513864,0.515783382332,0.606967972093,0.664162191246,0.13724955173,0.453889328416,0.72969603524,0.659762713649,0.996639494296,0.0972610090574,0.899722068373,0.944014141131,0.720543070123,0.951910023131,0.0977682313112,0.491658072897,0.373195357413,0.67590352707,0.676435162511,0.434743546473,0.566051746757,0.339566666202,0.878495856754,0.0886180423239,0.428428692745,0.218115765436,0.957344209136,0.244463042644,0.848300561401,0.975705274183,0.404741798992,0.447769019864,0.713421285501,0.782591868881,0.458764248093,0.658202624236;14 +0.653683333377,0.408984941082,0.637828955496,0.545139075464,0.25649194348,0.997655613254,0.787240854181,0.68029557567,0.0870864518655,0.140981496717,0.286276157486,0.626838333914,0.105883118433,0.43640745538,0.647838696856,0.954684194951,0.61884663323,0.250235399045,0.825901516765,0.213325741015,0.101178603767,0.475305039826,0.216990955933,0.187160598694,0.123726061833,0.81895389635,0.837563925226,0.594644830986,0.458808939106,0.590926593333,0.155653811134,0.901159841011,0.555251913949,0.787192782144,0.672241138803,0.451114542309,0.554427079064,0.28372418803,0.948878901988,0.246221968282,0.385388368731,0.21240847802,0.874723364303,0.504463330082,0.191344317202,0.832513893948,0.05166309419,0.172996683973,0.804510900451,0.206793265923,0.995947239606,0.875185254074,0.913623228306,0.923864831814,0.554294979394,0.0717803846796,0.78263230562,0.998879654455,0.856913515423,0.48527726371,0.00701121845481,0.85598090636,0.539980027765,0.106394358608;0.181160535805,0.126217668423,0.325257478485,0.530496020136,0.724584782346,0.527537525981,0.819160721461,0.987885112806,0.00478658607185,0.112924195356,0.657939841661,0.069457909752,0.808351448695,0.403920178018,0.549006693144,0.729894478741,0.0498104310066,0.123174602728,0.590905205772,0.134108516729,0.639630058133,0.508906781053,0.801338546242,0.155583354038,0.711105346379,0.548831320709,0.785644872046,0.0247943209254,0.899842229488,0.841724066078,0.396618702653,0.725194563494,0.191791972865,0.93572569901,0.632255312308,0.0768597227323,0.539879857991,0.4449283579,0.74843545894,0.0190118097045,0.0831402223035,0.152487361936,0.794160411878,0.908672789064,0.846820019812,0.321427812244,0.942306224053,0.0868855217674,0.920899189344,0.0242227255605,0.185162705333,0.360257203174,0.503626798229,0.7179803547,0.556579579508,0.18568156377,0.222177522135,0.195369788345,0.392028855878,0.737780406301,0.59867375967,0.955853371984,0.479275475829,0.554863738517;0.218457994255,0.369844021811,0.90663252395,0.835298596678,0.318967612851,0.270995855398,0.24885976587,0.4084217067,0.0206992261844,0.554160334748,0.290304386862,0.560641674124,0.492378286494,0.230880586924,0.760463474562,0.00727168975606,0.41169553942,0.233920024632,0.41883897813,0.377780085987,0.285826425165,0.0580185729867,0.260824655927,0.609978937299,0.852728526943,0.335948478226,0.197674618283,0.0553247759426,0.386249135238,0.77998903278,0.92757650983,0.965801509986,0.827776861695,0.607703727022,0.464331365658,0.908167802473,0.348239060959,0.902173945,0.568693583723,0.89779938451,0.358764812596,0.0528078971434,0.0249026595064,0.673848628574,0.249288281132,0.353569978216,0.647019718341,0.996964259137,0.322060339975,0.831772768922,0.940101587789,0.637954358277,0.280215744455,0.963659529828,0.917202199091,0.816572689826,0.149321308877,0.970409028372,0.915787514827,0.154591939011,0.951881376547,0.0318219394458,0.921823836067,0.977424255114;87 +0.359844309683,0.380800708111,0.726514319113,0.150935814859,0.0782340415681,0.341997398965,0.135420984057,0.138399149595,0.348425162764,0.426935164144,0.316122149793,0.858006352285,0.702915788937,0.975311115607,0.944290199006,0.225230159954,0.575546802473,0.838952462229,0.772310078095,0.478514558082,0.194031178299,0.860565577037,0.261250745993,0.879212688159,0.531733825196,0.164292740341,0.915094883321,0.595712302077,0.221842695879,0.267607241597,0.621409451239,0.715897884333,0.151066189577,0.743580135382,0.0940387027823,0.0562125138085,0.836313640895,0.425509039247,0.290880144233,0.401276064162,0.461555286998,0.198238984086,0.993888345346,0.0767002017805,0.310500984636,0.0871287513663,0.0320693018766,0.746082578793,0.512911225127,0.0164011450594,0.536256876235,0.665435022147,0.186754971352,0.62576331149,0.0872503943948,0.0666269457455,0.340402161487,0.448790898752,0.82802917833,0.950322914311,0.14190414709,0.0905963692209,0.518957357704,0.85725124065;0.300812629836,0.30023102078,0.566953944501,0.258976456534,0.445587788219,0.593213992706,0.289628462324,0.841032080205,0.664106718478,0.721655528802,0.209663239556,0.587284394256,0.266777193751,0.0331805045334,0.723516389117,0.509301982824,0.188911058237,0.476458658113,0.723444565819,0.761151760551,0.351311158118,0.328767981603,0.164638169119,0.143518836557,0.21454336659,0.82129381045,0.944031515792,0.203386867649,0.0761811187379,0.679199140862,0.62943042177,0.875760596287,0.189581612207,0.156184721429,0.238025822572,0.0394837106798,0.918939105446,0.860806642097,0.581729423486,0.614937323584,0.956671167951,0.61675254729,0.427599020853,0.700657561584,0.393105615835,0.667735866756,0.637467068991,0.187577385842,0.555653044071,0.0136015036459,0.7182452575,0.0740896996122,0.46696846915,0.351700775567,0.771463300758,0.0785645960125,0.575777469063,0.289505966647,0.633179280556,0.191738079551,0.76365080431,0.233390910709,0.889033650444,0.5151234049;0.525907183237,0.280603649372,0.359290064058,0.497542305184,0.6415611328,0.284843101099,0.400059419408,0.0661477085085,0.0230436637412,0.27324467759,0.456985787267,0.199975828756,0.0527095667083,0.123949086659,0.583470132755,0.624171923345,0.500280278821,0.0337035887145,0.0594728708501,0.471361354344,0.109652204265,0.610026004643,0.483374260482,0.333013463935,0.407335598744,0.990963429442,0.275019991429,0.508300172942,0.193376616482,0.261785311346,0.780838437562,0.463527017825,0.462671580674,0.321768049647,0.641376890333,0.154753171631,0.107407291167,0.203751121409,0.239575841764,0.465446522788,0.45701418691,0.718297901505,0.270426213889,0.963879353897,0.45679011425,0.813449171231,0.541357538463,0.602925360621,0.490277252482,0.980485999477,0.916687736475,0.15115463263,0.21429389633,0.245009191566,0.806729472906,0.0461026253995,0.634362411462,0.599308675,0.925673904294,0.522911617006,0.908677067157,0.539419308211,0.835409641768,0.714812444913;61 +0.446413250922,0.541258589754,0.663595962353,0.0415316829319,0.383967233323,0.412084783606,0.91688199546,0.124196579345,0.743678402348,0.885650996191,0.367171593526,0.803919918428,0.43494224731,0.637092910594,0.872350998487,0.236185943734,0.732471330246,0.0299341582818,0.896953731351,0.0885055233682,0.996764263263,0.445882103375,0.417843997565,0.359271914905,0.168823379448,0.737307221043,0.808553401243,0.95816033827,0.836662495135,0.00456555998309,0.34366228402,0.411010303466,0.760281272496,0.958157518951,0.549035510624,0.941325332513,0.652685870938,0.793724597361,0.10073610292,0.429615932216,0.548348603697,0.838474248252,0.0937998781393,0.181522247248,0.749491348883,0.107944098511,0.0798207012555,0.541237919353,0.0244805212921,0.31966699325,0.208054317702,0.198830046683,0.737826606746,0.565972277183,0.860635554267,0.236921167146,0.0280239998122,0.105696703872,0.531667436985,0.830033541001,0.125174077718,0.67067190733,0.950527187985,0.304686319156;0.0581420966887,0.167842777124,0.537948165404,0.779309704927,0.643573137998,0.065797122363,0.817938244016,0.902375425259,0.67339584275,0.917343681363,0.770286416565,0.588364165657,0.969643918165,0.139735540961,0.911691672511,0.0564509830256,0.261777762555,0.913103106439,0.234521736628,0.743039182823,0.277290915076,0.754997002233,0.563015437766,0.0140269484515,0.171876189762,0.753367061969,0.144752744708,0.223307533106,0.195279610771,0.306806991519,0.829870722083,0.152013310273,0.146852257184,0.874121273832,0.928275646227,0.276899561402,0.403473902543,0.588923164003,0.0230976830062,0.414426364736,0.47254499616,0.517698484769,0.242512516449,0.0370680431983,0.36615088748,0.370892688789,0.88124256269,0.24129796647,0.324351824442,0.0433228071509,0.377113959791,0.9733022201,0.495558737727,0.173906960716,0.833865380725,0.897502853742,0.0826999866239,0.305639346179,0.790730748452,0.833526704677,0.666244248601,0.349500187785,0.732500093108,0.543769615436;0.739584864408,0.866719151049,0.325191961316,0.573427355606,0.592907756331,0.908060700245,0.84231451487,0.207479613858,0.816760910315,0.528693084996,0.569063041006,0.768967839983,0.0394373153889,0.911922157312,0.422987214292,0.760877945608,0.343341896926,0.36651800919,0.658418248804,0.542546018981,0.943027623747,0.632879358534,0.274653996963,0.882971043807,0.736420617948,0.890035890064,0.0446098017967,0.735328438163,0.970577748067,0.436136290675,0.448316671798,0.407403162337,0.723864172349,0.565470337034,0.23143280064,0.0434004520578,0.44888850313,0.970016658485,0.549606295966,0.093919440913,0.621029444716,0.742907166927,0.674563385715,0.616910203128,0.58187019633,0.070610886699,0.480908580679,0.226298345342,0.248363756255,0.148503868915,0.794974811259,0.766422432321,0.580486897113,0.184006214725,0.319170985683,0.728255167039,0.565044512775,0.0970743655571,0.607539669136,0.132677798844,0.459620114943,0.717518823255,0.693805508517,0.130504720419;98 +0.520015938697,0.187857876126,0.933488880259,0.288812818882,0.0682032319253,0.723557347188,0.462445733439,0.569532787471,0.626402602479,0.891049875351,0.100418412809,0.114870675858,0.910428621605,0.781458973757,0.448906669166,0.247961464965,0.494635744601,0.683339552324,0.223272824866,0.621302812991,0.937650603434,0.787053530692,0.524984001124,0.497302594226,0.305934746691,0.339131488676,0.250898707628,0.670220081653,0.645365000192,0.860508070091,0.0165713414947,0.43735002267,0.630843715123,0.424979972755,0.120467843863,0.290305108205,0.402511352416,0.653540577197,0.448748933981,0.977149198939,0.390197795294,0.0780396159749,0.69904674642,0.890634059344,0.978118061902,0.23062172893,0.768691710116,0.50181496097,0.450483393948,0.772547073372,0.550149927591,0.782209612342,0.10354100425,0.620470052362,0.472153355429,0.61466771276,0.0607613233331,0.0728093479561,0.529508546329,0.625336696266,0.455909351759,0.388271915659,0.304028160629,0.676890595058;0.732616241973,0.230273933761,0.472219298734,0.701788120711,0.736791197005,0.640535080857,0.0900596994058,0.840610852447,0.937491372524,0.94377143806,0.110951146962,0.0120706482855,0.628123996857,0.720317372827,0.182495836973,0.885102532341,0.536292023731,0.731560757623,0.946581409306,0.777993346462,0.32830115954,0.922406553539,0.257501847221,0.716400568141,0.512492987467,0.0890095208789,0.120450626668,0.175714393112,0.962641674769,0.0248501787045,0.665098925559,0.36458490658,0.266994598545,0.145912216638,0.729650186105,0.513926517439,0.671757963505,0.539157033698,0.936518477933,0.0593904921739,0.212309787209,0.880307697501,0.426123104095,0.73559455389,0.0816705592632,0.843899799808,0.29740030588,0.73276365852,0.548795513596,0.57630661523,0.00162529369369,0.82921589608,0.654597266873,0.637232704752,0.799646545805,0.1320929946,0.447217271546,0.411291001841,0.455422849062,0.755044886092,0.857196722419,0.541723344625,0.948569003519,0.688832230274;0.961825605224,0.356395634214,0.678985645235,0.508061907257,0.571773579195,0.489268571659,0.478246917011,0.310977457016,0.104738544857,0.825192589862,0.198636070878,0.493241055078,0.129002066558,0.0877612169762,0.0620862600669,0.538950006574,0.269222889293,0.163502907361,0.558320386289,0.820758367506,0.194823246084,0.425496921697,0.833248524272,0.421979074773,0.434603986578,0.658979994327,0.557474988295,0.209669733216,0.0475191332069,0.96015854448,0.452576349738,0.980117542874,0.925610768149,0.03455716538,0.338768316268,0.575013976869,0.900611678427,0.384578295671,0.392448449994,0.0203192827531,0.321320742661,0.803571977612,0.719611784405,0.988089583822,0.992075963756,0.456475081316,0.161759705183,0.726308413096,0.090060948372,0.33793621732,0.0614719920252,0.235626939358,0.649688860854,0.501819165468,0.349350431602,0.55824554065,0.640143328617,0.1166840425,0.472866699382,0.340435452003,0.384789865355,0.0754384695048,0.998451314643,0.914172787694;82 +0.984889536628,0.074126493559,0.401160449461,0.360925464353,0.626781866523,0.765850539053,0.910141739552,0.59602788687,0.918977209056,0.0637990299675,0.319524201521,0.88420018149,0.904869390526,0.862710527636,0.85283993834,0.857677103005,0.419294614023,0.822595210919,0.159822954387,0.310368562977,0.43360968279,0.189123441954,0.146559488357,0.146092876503,0.998591793242,0.507262418877,0.224594316182,0.825092153694,0.43400167337,0.625349868421,0.634321051413,0.282132134138,0.378129767976,0.951115891006,0.834695171824,0.605736824417,0.10844606589,0.10906216886,0.793422178731,0.257923196466,0.0277384021279,0.190258630969,0.392210291688,0.483047675406,0.429278622047,0.418257998269,0.21713512488,0.405136194798,0.180272001685,0.403921069472,0.46246577346,0.6882958545,0.608806411027,0.128867552055,0.230561302523,0.725373932111,0.241466542654,0.274237728603,0.16761452516,0.580279462261,0.198904179847,0.025802482247,0.169442266565,0.220121782577;0.169306880785,0.355171762769,0.638505667765,0.47517584383,0.524564052804,0.0263140406849,0.893722453411,0.828185617473,0.995448817562,0.476951578387,0.11852376111,0.695916148944,0.743917077249,0.859861455795,0.441110963433,0.612884330311,0.950513433039,0.420717315199,0.42841036028,0.506160591035,0.44096142726,0.132860055413,0.075689793259,0.96334990624,0.178261450353,0.466867158804,0.113293015061,0.0176586952331,0.645911516074,0.0192168121829,0.61700010145,0.303016836213,0.435766902333,0.892957191013,0.46928379928,0.679063173048,0.732397885749,0.0153631219476,0.703429500602,0.734248351725,0.394868183645,0.235134453269,0.942502830919,0.929575480306,0.682623074379,0.615509151681,0.950436145503,0.762865200456,0.639394163202,0.0575850441101,0.505606274145,0.586786102008,0.545826218024,0.233265288927,0.0500824834745,0.930222383211,0.404732569098,0.828733898163,0.966143469417,0.355672975247,0.232424742697,0.742796916332,0.559030963061,0.898994927212;0.689155642733,0.960607904853,0.76986885566,0.0268289975107,0.464801420637,0.597126191792,0.948697159012,0.904103543674,0.164789095761,0.420523668427,0.226869468647,0.183787267631,0.625930644097,0.800331028069,0.549281837032,0.840994332128,0.329460756629,0.802730459844,0.385071520493,0.150399971431,0.374351826403,0.616918662289,0.468263470617,0.727230740718,0.0195580602673,0.412989716267,0.0533851257923,0.613509403299,0.321952528209,0.165079222428,0.342035476685,0.281142075224,0.692621778998,0.221212184266,0.152224825826,0.322119091103,0.289302881004,0.0419311063047,0.625998358564,0.519659976479,0.68330458963,0.575895457104,0.166185586477,0.481592833517,0.1463072681,0.800044715206,0.758763383865,0.478903501635,0.908049135607,0.491527437254,0.527574499337,0.86753078927,0.816567238492,0.862762449706,0.106282553676,0.107909422425,0.732079689891,0.51427530369,0.940845274386,0.800256208961,0.186373431216,0.778913543123,0.484583205935,0.672739789956;4 +0.160268001103,0.607096040445,0.753520386478,0.0952933494237,0.854784434208,0.061328610288,0.0558176144316,0.00911684596851,0.662765639523,0.629326263096,0.790383146917,0.264995504714,0.677447321206,0.350774101491,0.249192053162,0.237137336838,0.101865374725,0.216692405039,0.26053563299,0.837501732251,0.0551386111831,0.320003282549,0.872162559038,0.860395088945,0.127370110312,0.723358471935,0.194097756771,0.214005192846,0.590244276842,0.26214384816,0.308897676708,0.694850174257,0.284951714962,0.46289923081,0.0312204065693,0.594329709062,0.66784611993,0.845684496543,0.0823782222646,0.45895608828,0.553110651686,0.841591684196,0.348749953096,0.87721809239,0.277047173134,0.521186238043,0.317825440198,0.308703308278,0.458963965464,0.43774786764,0.963714415781,0.37157775612,0.894305983168,0.598585778859,0.795999957249,0.596878187918,0.434302333409,0.709081224956,0.337924173812,0.184688228074,0.971909947874,0.682038101454,0.961513163413,0.145479288676;0.269094038279,0.179721336155,0.252393392986,0.0320648374656,0.136229082554,0.980584524311,0.796501792922,0.672184809002,0.605359866754,0.656221245366,0.0349266616035,0.890667939528,0.813198078763,0.85444197397,0.73958480644,0.370082578162,0.00835773562635,0.622218522,0.905038646125,0.29361328253,0.54900137381,0.503065433824,0.562162436563,0.585297431738,0.259014606569,0.788370842698,0.203576439553,0.164028233438,0.255282777035,0.646658155711,0.642879945679,0.846968387294,0.760142543386,0.260587909931,0.416854234137,0.684174354751,0.893880143636,0.758771228771,0.0369368348434,0.20507169448,0.575274561055,0.821697561455,0.559353756981,0.470579645957,0.750204550793,0.122145476423,0.479513337902,0.301849419346,0.218254156072,0.0164633935948,0.800229762399,0.774472303146,0.198775913188,0.810403997269,0.298289303451,0.732405760125,0.644017402392,0.825777016815,0.0184503146358,0.0907528167027,0.0433230504231,0.635927581376,0.144607200581,0.432682924679;0.611741379383,0.339132174156,0.636425918811,0.367793974498,0.237609607205,0.0775840487756,0.182961811219,0.591561922954,0.728518240754,0.912523426203,0.239579264605,0.242124035581,0.835557755294,0.627127588008,0.525062554572,0.428571422596,0.869645091428,0.976354105065,0.00441716872516,0.402172753128,0.715574326795,0.488537041262,0.348902696104,0.0922320344888,0.674663394019,0.536483257241,0.580070572081,0.119937088822,0.545669231041,0.628160463233,0.49832334196,0.951415004757,0.88088612322,0.345283293275,0.799772830707,0.770619753957,0.367620657945,0.187410651706,0.312314697444,0.0119056965336,0.206742836588,0.668648161713,0.268906723147,0.343016228388,0.48545019291,0.985612099284,0.666782160709,0.515765892522,0.995548171723,0.187736627182,0.858042091146,0.697605851331,0.138389175261,0.0888664052368,0.818853466949,0.254360695719,0.402196292737,0.870916758043,0.900258443927,0.160230391622,0.464000385486,0.417426107819,0.756805737396,0.168195319795;94 +0.662463225272,0.214196272086,0.686974564394,0.421811849707,0.131569348082,0.0762043522519,0.622556309829,0.617947196981,0.225440264176,0.545811741658,0.0210190537364,0.609459207935,0.582231740195,0.697539699178,0.501568431385,0.199516855102,0.149756662064,0.48751855468,0.624300375288,0.405497692164,0.468320122351,0.662122188365,0.718239696461,0.73815904193,0.58444099465,0.196940821766,0.184257754192,0.743735117147,0.180561382914,0.456222031906,0.267784263566,0.399097699319,0.631074906829,0.393916340826,0.947260262861,0.0400073910355,0.551807093231,0.658930816827,0.457629476219,0.392648931565,0.471037855603,0.000156428218166,0.71595981795,0.0611073083112,0.186804044599,0.463411530087,0.901024196731,0.625958742015,0.387880110076,0.764957001483,0.846800974251,0.279020975282,0.180746945724,0.480241442487,0.800666352138,0.445154994404,0.342168700353,0.549632286048,0.309569676562,0.412278259657,0.344430186573,0.537500007165,0.255427627226,0.221180920263;0.117303026994,0.654294552692,0.506556341308,0.568073376435,0.607083882376,0.657404907624,0.885205883358,0.0745583347132,0.253754946281,0.480722477374,0.550590758391,0.891171721465,0.876367876876,0.609029829983,0.472922980172,0.354992989544,0.970720159353,0.420147162111,0.655949763883,0.505751412797,0.184277854758,0.480084044967,0.335542971083,0.568265384133,0.0705094735012,0.492680171908,0.298754176112,0.340466941442,0.889443208953,0.0441499973154,0.503065952486,0.942709444434,0.0927769705901,0.00990571464671,0.395703361121,0.0294710540803,0.452691276579,0.151710764676,0.9901713407,0.627118371339,0.0444577945378,0.191736970086,0.0589938032919,0.0558052760492,0.072664759263,0.263652212156,0.880419126706,0.086926596712,0.794088846685,0.27480487336,0.639194670371,0.549288031991,0.733491152477,0.422297714152,0.0652926815014,0.446770251739,0.932935492183,0.511959542198,0.891592266392,0.703255110484,0.448465614335,0.743934010206,0.657319130108,0.622345431364;0.714315243182,0.086659269871,0.938839156138,0.40887429778,0.628711574182,0.839606307481,0.714887974043,0.512977174662,0.452418924217,0.776846592155,0.533929572919,0.270026758512,0.325657997635,0.234562289865,0.0430532708288,0.969876359614,0.770589417056,0.0624899604451,0.838377848387,0.60844654156,0.797555707924,0.864345348186,0.0218421188712,0.0236889322396,0.965978357498,0.0801777137916,0.772424139479,0.964550031148,0.824536986176,0.637440920757,0.715068391164,0.976862811253,0.472722559812,0.169409317569,0.745350832279,0.203975353746,0.388335647267,0.962277288669,0.071943984683,0.965484932408,0.487116870927,0.627112847472,0.122102438608,0.869211241335,0.592124743346,0.689558878302,0.175754912926,0.858268616734,0.547321878478,0.379255237526,0.42252896519,0.0331810001642,0.494666221642,0.481007095264,0.572912306352,0.817748969595,0.437282438743,0.454706235677,0.568172301708,0.220527413706,0.709991529944,0.11082378965,0.147386349695,0.998928380023;99 +0.724475381302,0.784532511265,0.820862994076,0.80960654296,0.337139993897,0.925959100804,0.0188687751654,0.731513783962,0.0939001306007,0.429433090023,0.606118587037,0.845336749842,0.243420107369,0.80502527327,0.162822255862,0.777858674925,0.0191106651321,0.465577637419,0.55411566603,0.635242916844,0.719922909053,0.150128964695,0.721196574609,0.13312988059,0.00363098195749,0.0343124694543,0.997240336165,0.794015270428,0.130601873188,0.89838149092,0.629912335144,0.179423038207,0.94168874716,0.580168870875,0.885895349513,0.657023424559,0.828571076184,0.817182220201,0.277629485825,0.332363366352,0.598371523246,0.0228073376673,0.350825177588,0.496743859976,0.63629493763,0.331659546142,0.507477324881,0.869052800192,0.831281511896,0.128710749606,0.914779978978,0.960923186029,0.441218707262,0.157466321636,0.490043499065,0.856589744843,0.138153317237,0.503338538008,0.62159052414,0.844698640045,0.367778660648,0.900711144235,0.120130566022,0.242687716607;0.974010303804,0.308137128744,0.751063275895,0.263551799626,0.465924836936,0.534484970254,0.467975378608,0.344337959633,0.707945866284,0.897411357539,0.965787294253,0.48626224715,0.00356747748219,0.465694059554,0.0380430235948,0.391650586707,0.376150783704,0.0936752297024,0.976012640041,0.782850144268,0.272716574603,0.467890954372,0.960795710749,0.544567549309,0.223531941277,0.511670542773,0.318452312008,0.736077768993,0.0301974288982,0.0602771029863,0.270298425238,0.30847764914,0.607671790486,0.853884241981,0.877969016197,0.935327709432,0.0966845397728,0.270627272294,0.534750089784,0.130920211804,0.20462546615,0.76789172065,0.708685126515,0.528034362825,0.219968065848,0.557003589873,0.294773826626,0.0620737269786,0.455565088943,0.210469970733,0.19499333987,0.228007006579,0.822101245006,0.765341869144,0.896047603957,0.49457551528,0.780900625874,0.500116407049,0.346654202485,0.926221247527,0.434274668585,0.0049154461514,0.143898549065,0.135451217372;0.739976485686,0.826030409838,0.758033853495,0.212213563533,0.600780874991,0.123239428987,0.870461484217,0.321468141397,0.205670187086,0.937389065052,0.681026627586,0.505644801344,0.663315445394,0.778487694154,0.302536576442,0.97858656918,0.885398755472,0.247907711956,0.52024598765,0.0253751396245,0.917016933568,0.0440252017653,0.264239056599,0.704543301739,0.719273188069,0.140105556728,0.876020049637,0.777470769179,0.490930349315,0.234855627826,0.465155542811,0.168524272881,0.894664379366,0.734529370257,0.549645818187,0.0356412440291,0.733201679499,0.683793204346,0.151408470147,0.172118392356,0.274821260061,0.698877647857,0.0565766642648,0.452669735425,0.53551122361,0.286637351308,0.192809929137,0.00492058201769,0.63508154331,0.0759912685463,0.271370663673,0.976320148025,0.755146353712,0.865178224874,0.842292204153,0.412357753035,0.882690652593,0.138391807336,0.553830081436,0.784950809761,0.914160874492,0.156797534174,0.691374605007,0.274321558612;4 +0.650546288078,0.700025352118,0.112011771502,0.394275648252,0.19993039794,0.781048940787,0.136714710826,0.643242618361,0.874908678321,0.191077583726,0.635555467253,0.395460806029,0.915832677735,0.0824236285499,0.719786470438,0.756715256019,0.159037986935,0.627869888144,0.842105982748,0.183750625964,0.895774921795,0.40114138976,0.324421698002,0.78557979111,0.987126185544,0.779918018122,0.234971183962,0.0106156943948,0.207806868199,0.0915651423619,0.82941431057,0.840427631072,0.322678818823,0.437271792729,0.726661789036,0.481036286336,0.650224082767,0.379723265395,0.346179230037,0.947532985332,0.766386420986,0.607905692211,0.742961255476,0.984516830031,0.0402782504195,0.571281387157,0.452806359336,0.828321438354,0.969494104925,0.293886380632,0.5030473243,0.7083386733,0.533573151597,0.196381910801,0.888764531982,0.911050554973,0.278790343035,0.689389727766,0.36771426344,0.406557072965,0.993760567129,0.149178242138,0.534014942567,0.916092982448;0.930670598099,0.402899105084,0.246591128863,0.863785647629,0.424784972987,0.390122006162,0.695272278801,0.646363183647,0.500263581561,0.288225732991,0.738516534642,0.508266532314,0.0894304170428,0.593806988799,0.287688444059,0.194255325322,0.00463193807773,0.484188818031,0.647840217266,0.772195187751,0.708576034874,0.834031466315,0.861588888607,0.082661198255,0.687123970576,0.668106553532,0.589593301785,0.81739927253,0.584150956133,0.352717868792,0.961566609746,0.809349865828,0.176588593648,0.370992516095,0.0506955651068,0.500542520754,0.224873115183,0.909443723135,0.673929456679,0.28285217383,0.202307616649,0.751284740719,0.707069602329,0.843883471609,0.100674063651,0.0972375148375,0.0929307934964,0.975796607302,0.0929013256704,0.302223915838,0.141056307559,0.49397259554,0.991452474393,0.779381172951,0.508441507903,0.0775096891277,0.426699961342,0.828670502192,0.330308880142,0.512627437532,0.495350589973,0.044325085197,0.294980600243,0.965942376699;0.432978184065,0.930508224308,0.443913989534,0.169758935007,0.835757376111,0.507372589257,0.881174805193,0.485145936267,0.135520332159,0.997513679319,0.937829279114,0.759810657637,0.571235536663,0.129075761204,0.615269110459,0.987718561436,0.318598825771,0.888872183745,0.533465558916,0.557905808359,0.393847189556,0.198018618262,0.354522790062,0.209223830724,0.115154302189,0.443179896296,0.993330184094,0.555268368811,0.885448405588,0.632727474826,0.797334335995,0.0621697533867,0.708419422261,0.854180719967,0.984044912793,0.556856131242,0.287579909698,0.985855329963,0.159051246878,0.468978722913,0.103061154032,0.426324276102,0.0937020413653,0.885017845044,0.586299011393,0.0336236714213,0.352855030369,0.568349251779,0.906785120199,0.636544393156,0.436173620079,0.324772761857,0.724948801228,0.080986883428,0.818940965915,0.517068516245,0.526646735442,0.405587220772,0.661333584352,0.66913283446,0.0278934922347,0.537768142806,0.848651806279,0.868366798558;1 +0.513221794094,0.249331406846,0.779219104036,0.648686121598,0.367291038316,0.0874124250002,0.394001958382,0.919656841633,0.337843383812,0.220541607946,0.694053276459,0.189727901689,0.335133200593,0.190057300114,0.221768713096,0.0136647589464,0.691290799299,0.804375323609,0.686425987933,0.23305505778,0.774331995618,0.352048466278,0.466379922842,0.058760013513,0.688911851029,0.678875796835,0.494156671024,0.437528845106,0.088040369811,0.167484461858,0.701694359388,0.356852190217,0.436190140837,0.117017359042,0.628566808063,0.287527411525,0.0295860685614,0.64187581851,0.782270372187,0.546178424538,0.308865841167,0.230457512229,0.704839792933,0.985866708358,0.297102538082,0.193221689951,0.637613075633,0.353739305365,0.929042706264,0.987353652772,0.0386581633827,0.705051648143,0.0419632491544,0.706754491489,0.888568503762,0.653945427064,0.13531310337,0.0227684034685,0.13125239699,0.479675771098,0.889156607885,0.766640007188,0.906985423369,0.562337779615;0.819060455087,0.235781653882,0.463912294211,0.418524335772,0.135430313802,0.128074177334,0.749365417145,0.577097218509,0.736743228736,0.306154256031,0.477317195536,0.553940035761,0.0498833134008,0.856016093166,0.27497258303,0.392643562304,0.479164839968,0.48055477253,0.987559528247,0.333667635952,0.236250611573,0.792611541805,0.377260543931,0.960331441415,0.334131063022,0.781536673055,0.0670413920775,0.443659426734,0.599665947821,0.783262342158,0.0358549208141,0.159603284316,0.363183685257,0.712707284807,0.385311658045,0.473006682183,0.281661039705,0.509709069999,0.26487760376,0.878144412825,0.634571841073,0.308768926376,0.842533930562,0.875442706532,0.674565661645,0.66506440554,0.186977129047,0.756974795075,0.853955978976,0.234140779509,0.417120527675,0.700874995799,0.0484802288102,0.958510558709,0.418720262773,0.752796287211,0.36641930982,0.811756051946,0.510011907831,0.582215751435,0.94537175727,0.761775571154,0.25533310318,0.321650793871;0.253103874513,0.555898834544,0.32588199495,0.80685432215,0.408924220799,0.896178714478,0.595185167422,0.106222334782,0.641100340487,0.0277293093539,0.133990255307,0.0965488630154,0.683122088546,0.328458545523,0.591188766313,0.153341215491,0.971706852852,0.0872398780881,0.414200282128,0.158393315061,0.640295122404,0.234143223482,0.643568549935,0.632762800984,0.943376485001,0.75448976571,0.196442866955,0.0998302844683,0.805727365454,0.356224585814,0.261826638322,0.27073674745,0.254016994316,0.801122073045,0.2988953102,0.791350086146,0.842562200752,0.262229943903,0.861131248785,0.331330738409,0.00207752850575,0.715587552507,0.666001321975,0.156507240567,0.0110237298221,0.0320062282884,0.840193218147,0.633031591469,0.288731374359,0.434819815379,0.32895188299,0.735186502268,0.91777430724,0.803507788835,0.88137734933,0.0461313450833,0.0931671416926,0.998605703681,0.425825409154,0.0479637678359,0.828861840518,0.500884947432,0.54580995212,0.850360866158;99 +0.5457549506,0.165360600584,0.308341638307,0.369963671812,0.329232291648,0.257964942935,0.968054578229,0.0174783074343,0.390415036207,0.195991583299,0.780498379238,0.634073551646,0.568444289307,0.790135287138,0.91044361259,0.794809506732,0.981264113329,0.59391987221,0.494028760277,0.434882784345,0.471199041714,0.732349639721,0.757115090546,0.845621720757,0.0436824034705,0.242179087168,0.255692051848,0.0103452180618,0.0575131088355,0.887396702696,0.760406503164,0.432243764559,0.376860387339,0.898373606294,0.146252304698,0.769968418837,0.417056745694,0.671338575067,0.766931439939,0.43853969016,0.569481374932,0.329023836245,0.38498865366,0.838255831677,0.328607684847,0.453433644307,0.789613651338,0.198317653559,0.0228121904651,0.192502528885,0.248591793479,0.356699311963,0.544650142178,0.636600351466,0.18151040778,0.965581832989,0.128192515703,0.0706322319375,0.935294143897,0.871788045611,0.489636452602,0.470116165345,0.707595570714,0.913836652707;0.800427697304,0.00463836682307,0.661985238784,0.589328083846,0.981856247668,0.28982444478,0.915200083976,0.183703137874,0.721376675238,0.198248107411,0.745070668341,0.944530416296,0.160308724467,0.494810082122,0.551607607315,0.196021918378,0.104779541256,0.439857605361,0.830313845573,0.997147636758,0.151076293441,0.0371771558224,0.028913789958,0.116811716367,0.593643268041,0.941206136892,0.425605615623,0.890798494881,0.195001962913,0.643654861663,0.50743955899,0.329023386292,0.241009811911,0.811378402118,0.974963695073,0.788418440756,0.362257502145,0.864034624601,0.804076608383,0.331464771649,0.450981366902,0.0967631513125,0.0544450586687,0.364967162531,0.936355376084,0.844213948537,0.601980592854,0.987186178011,0.912234417668,0.688212674869,0.0384847650468,0.254824263152,0.185558219939,0.572348501522,0.670154444914,0.569855889155,0.276217269944,0.952879381794,0.785813139344,0.0544858813552,0.501380605232,0.294487060975,0.403614083709,0.367135457751;0.0809885324458,0.488977166364,0.307225981285,0.402286244957,0.58215351282,0.781025848708,0.196598769408,0.263880116684,0.943705256985,0.423982497743,0.382027803637,0.13082052633,0.0122385293088,0.604793808263,0.852429015885,0.150692756736,0.607677326281,0.953452824901,0.944195167296,0.36571087049,0.977815190107,0.897346943762,0.396882939567,0.821538690978,0.719308523997,0.336060181485,0.388844466434,0.343660701481,0.662485595455,0.372418300698,0.832874927994,0.08459638198,0.05655236373,0.153354674565,0.24230661487,0.900869131699,0.89564106754,0.158733684167,0.57456950631,0.845037697876,0.878463902563,0.814274432316,0.329851692168,0.893809390926,0.830690887514,0.815356680073,0.950869670306,0.334282972719,0.857713576944,0.219040909564,0.792798355254,0.871790037089,0.789822592587,0.14048743328,0.497781931654,0.308807083378,0.594361058402,0.496138336095,0.998451680795,0.972878887108,0.0964111913021,0.248472983718,0.978373995704,0.979196603757;43 +0.323152416003,0.26859331443,0.890646420001,0.99789565617,0.573890539895,0.13869737313,0.974185899295,0.0820307031416,0.128580950154,0.729312197051,0.445097544751,0.463469108707,0.607059312388,0.524699358235,0.676569881749,0.860549590351,0.356062808286,0.0772020221307,0.0763610069999,0.761440226935,0.359637544043,0.307795941582,0.702839084178,0.773675331251,0.208177088147,0.718815549885,0.81967587305,0.912610751175,0.842572640567,0.591604275627,0.10951634435,0.267523551583,0.150253828487,0.252394608913,0.961915296274,0.337792397836,0.113764132333,0.888647576469,0.218324760829,0.610801614309,0.235131853639,0.693271265824,0.187822848899,0.807674252369,0.15283810124,0.313753862414,0.0573696995637,0.959732360638,0.00141660766338,0.612714816684,0.833838595121,0.191304972999,0.37615179148,0.215379680202,0.519815467671,0.120433864795,0.496055042883,0.708535884846,0.735720717452,0.819642645647,0.753305237749,0.925433207877,0.310833870757,0.874892417976;0.951816428983,0.249446205858,0.201772084452,0.431964294777,0.189137575332,0.196587724292,0.969933340627,0.0836198641319,0.0495659430292,0.712150046032,0.441401818256,0.288908912043,0.759856595244,0.0996863888147,0.270004873101,0.844199300722,0.900347327708,0.750255446389,0.4836145871,0.924690024173,0.1315137348,0.650098956883,0.832717587915,0.669222561519,0.356740409842,0.941851242366,0.874118751487,0.341085403838,0.105505771017,0.300473539148,0.754804211208,0.779269588179,0.717469159246,0.596653041673,0.927095767641,0.699362451472,0.355905573249,0.729542215376,0.209301497904,0.478506353353,0.500765265263,0.44253069411,0.414356856925,0.0139703344065,0.8200481892,0.297674358382,0.777288316872,0.46967182886,0.59502126039,0.753355374298,0.0352479337523,0.969885801229,0.341526979318,0.0392829975895,0.704918124248,0.185293219099,0.0367230042767,0.475008074798,0.466012487415,0.283199712954,0.409635052663,0.690816938574,0.208562112392,0.350875057504;0.355839621795,0.684215404479,0.579186116805,0.475834793904,0.483411295173,0.658712048011,0.90806020844,0.639940181652,0.721598706514,0.69483073015,0.556868466511,0.209971826091,0.224885593145,0.208061279859,0.749121874625,0.651622733274,0.356522170558,0.90434363911,0.725593234986,0.463792487827,0.235609947585,0.884813265397,0.998595220122,0.354923501995,0.7305528875,0.566586545586,0.505658781707,0.797704120504,0.459066883416,0.315898050848,0.491111451209,0.831135934971,0.664541106064,0.407566245879,0.238101204026,0.886973901855,0.11877910261,0.15846083777,0.123913409825,0.976518083631,0.896667337219,0.318602132577,0.531686703088,0.480887279037,0.713082782766,0.815229195489,0.308691660129,0.661124142614,0.982786766945,0.204030512553,0.372045556566,0.328617705339,0.203424815557,0.948876222675,0.689382841794,0.213335316205,0.250740861196,0.950122812653,0.0744163652942,0.108348009974,0.853786036424,0.569005859648,0.00970114612561,0.615672667804;19 +0.175863309726,0.499476081311,0.500977090858,0.818571061671,0.645931217023,0.422287615543,0.467601334792,0.402082913879,0.165032897433,0.223075018998,0.703318805725,0.700151105155,0.579291160374,0.800150358119,0.386440393067,0.274250033911,0.869003966642,0.180040894944,0.846316000167,0.909805711947,0.445934348709,0.397609184722,0.443428633177,0.806028790409,0.297685612117,0.593449310384,0.340232329455,0.602941214411,0.228586958868,0.321614131168,0.283057666508,0.34384916658,0.237380758378,0.851243985706,0.545264354481,0.0170897331266,0.362141288372,0.929295168804,0.103834034956,0.0203695148997,0.0345923193463,0.569289629411,0.749514307051,0.327844910109,0.778283598895,0.884587270486,0.405036907143,0.954305077638,0.141915686782,0.0757454607583,0.717697461366,0.443633629272,0.474581628078,0.0411356730993,0.122208089467,0.0710152747772,0.253176023299,0.28345423073,0.306834386763,0.983324191983,0.463764203726,0.399504614908,0.135542085639,0.323079387827;0.525593944312,0.748695423863,0.386097005327,0.929060489937,0.519152495565,0.890746611081,0.205581427033,0.627422153153,0.296253282863,0.500173004331,0.375728028743,0.31686413647,0.617791879508,0.252970091459,0.439981153968,0.548110239233,0.742259200082,0.154735876131,0.246239476613,0.538727941961,0.952686804991,0.067737487224,0.464658237846,0.280430097665,0.404371072317,0.642832751215,0.716554102619,0.944859536841,0.0995523458385,0.409264398169,0.789886247012,0.271754830562,0.101467068344,0.964585363615,0.670641390837,0.00337572717166,0.503246682654,0.998044702611,0.143608935571,0.984307630515,0.779954069201,0.872495974757,0.0993516707662,0.8850606986,0.529636096443,0.0740008585692,0.852078348252,0.476460070095,0.503472026283,0.192356856755,0.610887786559,0.971515568034,0.311881466173,0.0631387230442,0.0139034083066,0.430856981975,0.954682294806,0.459761120423,0.222883972944,0.216124778914,0.146295123491,0.936114773291,0.589387648346,0.595416144629;0.641074175796,0.52566558245,0.643488464695,0.250180804147,0.865139628051,0.252824207387,0.490068662537,0.368718787546,0.593300589592,0.00347042161595,0.10627967175,0.0864534562206,0.615208850329,0.422713077957,0.802618829381,0.781496483072,0.36707128982,0.248077373786,0.706841431732,0.566440863625,0.527959346376,0.485045212321,0.637237099953,0.351484769864,0.15159758312,0.353590664548,0.887206959086,0.707348512519,0.402706116027,0.349937377423,0.297826667057,0.217207087463,0.715980076425,0.571559774102,0.436083594292,0.177639384118,0.98274609078,0.64027982263,0.0787829453883,0.416240079161,0.328219372843,0.661551632009,0.286226714726,0.815556876113,0.277417254098,0.789284058644,0.43668490319,0.812004189316,0.0843679752978,0.755423870867,0.298721344966,0.276352907906,0.160094985364,0.659937411375,0.0332782912789,0.26390896081,0.208605559022,0.670907935246,0.289006205565,0.369223159961,0.664856338003,0.951290620345,0.113919892782,0.669483753862;8 +0.306992197826,0.403776043501,0.522695729346,0.441136891028,0.930086810491,0.699334124957,0.570747613698,0.594378230872,0.841196817976,0.447556747038,0.141064962561,0.877752151387,0.465953895302,0.189881701596,0.11016728448,0.0802731327859,0.31599754834,0.510237403912,0.201945749291,0.250762229752,0.183523071218,0.112141938601,0.337607436442,0.56634083159,0.69846138039,0.213564330655,0.513089112406,0.192677365191,0.421184466628,0.247217410842,0.137148171727,0.00988471352859,0.386269025679,0.93492691978,0.285043030502,0.360349500448,0.58170572378,0.350844694922,0.728419142488,0.974543391514,0.942080873783,0.392367960005,0.866615508125,0.52051346301,0.509132474886,0.921693533325,0.241644150745,0.681819835119,0.909335790352,0.725235815895,0.313208034712,0.145886075792,0.580491798172,0.216273250984,0.157572170575,0.714923539547,0.454592089951,0.876904527912,0.345221788714,0.102438895775,0.398946447044,0.280695235518,0.233296177419,0.636691589908;0.895104637514,0.0200235514108,0.167337657077,0.632931976723,0.91874341188,0.0157270993154,0.68797389072,0.0631497018275,0.766438976081,0.0771826060249,0.95548497592,0.204643455383,0.852740666607,0.0336156394969,0.44525862038,0.658042391439,0.852944906675,0.014047682875,0.306485910718,0.0967746078049,0.293421973223,0.362584110169,0.495409757776,0.827228311693,0.923347671111,0.910208725292,0.710149872852,0.23802090649,0.109511418161,0.937776802881,0.770828816963,0.214053143866,0.390223348296,0.481615152622,0.132174473421,0.345106094186,0.889643570385,0.394101303801,0.527920933433,0.849732693214,0.230620665797,0.387429825275,0.717710957689,0.856531673258,0.43745293399,0.49284909768,0.276173602022,0.455220980108,0.385626448019,0.493684100986,0.728607725066,0.644180806855,0.570264314785,0.761673532176,0.96986339523,0.700129257604,0.881924777983,0.291310021059,0.691505745566,0.607831775563,0.064345706588,0.267537603828,0.923143716687,0.690264804194;0.71678139602,0.512389714844,0.624316015906,0.39135969405,0.47628998825,0.203927944615,0.93664347428,0.193463880555,0.948160162946,0.482896798114,0.67528644642,0.522134750318,0.136317303036,0.291151068641,0.0400869344489,0.8552626022,0.93546766884,0.447578324199,0.335147134965,0.691646104473,0.682778820156,0.26322670395,0.575913203948,0.634506926832,0.76722104081,0.71856540284,0.496914771469,0.498915629632,0.549301071159,0.967998787723,0.793280455234,0.833299459352,0.0188330674894,0.352984792647,0.0764443732277,0.170405270479,0.627235277388,0.716261394748,0.268836254038,0.0207699700432,0.393805244603,0.439581957983,0.544875673576,0.20234182719,0.0529439746782,0.18944413504,0.80460754722,0.277590403369,0.292997835531,0.15013488459,0.11193571988,0.508165763611,0.725329572401,0.728305110642,0.0745687893616,0.836794137141,0.721153550178,0.628642161283,0.655443527023,0.24742584854,0.506079548628,0.200422679579,0.181692969283,0.571889285879;84 +0.756012791178,0.210311371355,0.437157595906,0.661939070438,0.300638340307,0.886395898694,0.911104276656,0.950854024172,0.833998378072,0.0614338706852,0.854851470658,0.758195919265,0.536120320339,0.0815383005037,0.290575488522,0.50842828549,0.0275878881194,0.627718149332,0.786544287662,0.00806197198883,0.749336042527,0.25968611339,0.321821790524,0.562149557247,0.467486785152,0.802423751421,0.102301377487,0.304553828088,0.622905136731,0.772101313193,0.649117314333,0.669173152689,0.00762985207421,0.596698622837,0.258573178792,0.522251138554,0.73112790168,0.290620072065,0.924339771938,0.23832185248,0.0679648337286,0.2362314245,0.283328955872,0.861050307224,0.276525688118,0.0383532177399,0.307201655677,0.404506770099,0.893410335704,0.937600849147,0.468869208279,0.9297144784,0.789409361405,0.647488990183,0.930925807233,0.779660887455,0.405986865249,0.48029124561,0.725085826491,0.13421374254,0.878273107238,0.911867122615,0.981854057264,0.630762651555;0.304812472404,0.332937314935,0.207818077055,0.886482318112,0.42207125192,0.242054598613,0.438844711968,0.707488953279,0.549990319075,0.24305548053,0.802407218134,0.558935420851,0.236059850082,0.4675131091,0.168652737197,0.288185770194,0.938924429635,0.156271600048,0.146259504953,0.865099669995,0.314506121836,0.3288621131,0.11212934962,0.801076845298,0.155219170004,0.571426926865,0.133176314782,0.141658659228,0.555521552519,0.797632839834,0.263722125749,0.586088941938,0.853521146614,0.428235814112,0.387423314966,0.692880671148,0.539085963372,0.927125994356,0.68229082281,0.166628450967,0.85700776991,0.935983015148,0.0441975030288,0.106194202524,0.295092342813,0.588798190883,0.0262086477977,0.804148327212,0.0349585993392,0.160884380047,0.194047117662,0.624488847835,0.476508125228,0.520858513076,0.202413532972,0.564467075952,0.684642354739,0.600941974595,0.428351878551,0.846134402781,0.0617429337217,0.808531939728,0.805848304582,0.507742456385;0.139216003577,0.0340418475656,0.571751769387,0.12949830411,0.938690053606,0.0714816754212,0.00211130245655,0.737751307535,0.95284026238,0.737974158004,0.611225634505,0.757065531688,0.839435144266,0.286313714363,0.946190450817,0.939392163802,0.277893385965,0.329926866245,0.129308547377,0.523935810945,0.746452363429,0.201418025308,0.337780960697,0.162700235257,0.841296231245,0.236189043786,0.161965285489,0.115123528039,0.261101581909,0.184406265189,0.951237043365,0.0118791144576,0.151838054594,0.0908662176604,0.474316028957,0.428103976074,0.502762858417,0.701692115091,0.798822233465,0.317045900731,0.508689378975,0.289246747774,0.255242848942,0.95248787563,0.788949820432,0.853917757028,0.210335531123,0.452820519127,0.246537364441,0.152888628217,0.187812002968,0.572308011688,0.0211645451836,0.280302816604,0.789582599509,0.287245070827,0.526824976772,0.0021936735469,0.983605982563,0.437114710856,0.116306006775,0.0868986560348,0.808176540104,0.338091834406;36 +0.88929704555,0.356941702882,0.977057994891,0.308619422182,0.236061284584,0.697336009336,0.781835026499,0.872680848412,0.5239403498,0.0805536116869,0.0222435369335,0.606749435944,0.0938558539302,0.0139212469408,0.607350160873,0.141140466908,0.431134695945,0.0794334989768,0.626226904603,0.37239272303,0.122500590103,0.985057951252,0.890257242894,0.0235723778725,0.955726714258,0.494681035201,0.981166335641,0.24683419073,0.463881242646,0.90433459847,0.869187595791,0.0441895975773,0.243050452446,0.75672329802,0.474588818372,0.300086330078,0.654998237604,0.510363867204,0.194929311508,0.155504112696,0.297979226085,0.470224796718,0.447513587067,0.388455333505,0.442202614674,0.145881117123,0.0142275748394,0.107059840226,0.777801663475,0.802765949148,0.92362680565,0.0292032298847,0.382379788641,0.76784621481,0.399235809695,0.0621888613006,0.466428926918,0.926590796466,0.128081767166,0.631435270923,0.0554092990639,0.928778599726,0.113967935799,0.65295557345;0.986077034698,0.305992784477,0.298530928562,0.362143665095,0.143627600284,0.576207245676,0.820849239592,0.729952618584,0.108006630761,0.223624839523,0.833365152591,0.896934107096,0.021850437252,0.825501188893,0.52370991752,0.283023681633,0.707686369355,0.315640393072,0.866909300414,0.794178391546,0.23656789118,0.859047840769,0.742440841867,0.318474216947,0.780165321989,0.814378908643,0.830771299479,0.505184401322,0.944392133925,0.206043965957,0.681975871533,0.488390322409,0.683139838467,0.767293319409,0.362664408317,0.293661117038,0.0271388392608,0.999089637184,0.0533126802483,0.448113754434,0.2505508995,0.602489894808,0.842636450084,0.100354083655,0.470350867944,0.925440990466,0.235267682317,0.955459588486,0.105588361916,0.500692205871,0.364675329379,0.970318106138,0.207199086801,0.823804453298,0.15788493535,0.77198438043,0.262867932487,0.170126505955,0.618290446642,0.666067035312,0.264576248718,0.612301561821,0.0240902609435,0.954569274264;0.949433577804,0.630901980085,0.0643730620352,0.378201702725,0.981950557446,0.408646693452,0.0548509942334,0.908017705976,0.351971086649,0.391696738948,0.457717575581,0.00363075654765,0.863975948762,0.0121751692495,0.499635228933,0.760150248829,0.808109363327,0.696109449055,0.381917928709,0.722589999896,0.416382075924,0.835626976097,0.640223594948,0.119120010862,0.461842716606,0.335415363923,0.777769551256,0.555614444966,0.596946421187,0.26156810224,0.321903103066,0.415711362349,0.942251469051,0.254862857902,0.555326923696,0.614191475176,0.41666535139,0.918590128672,0.844986251074,0.240905276187,0.652239618096,0.676952518025,0.529008340355,0.587721206701,0.081347506352,0.339908052065,0.953907297437,0.259555413829,0.121570064111,0.872712503066,0.0483418900986,0.577611246433,0.162275813457,0.83600488151,0.233722216608,0.276158836879,0.492839411953,0.899472302992,0.914017903292,0.847620937665,0.880085866811,0.610908517569,0.86129217367,0.607486758274;21 +0.483155106916,0.0747978963615,0.563680915968,0.0481759241095,0.76965030519,0.405558909425,0.33937171847,0.155413043979,0.258011057415,0.280677790916,0.576408462158,0.090184394054,0.661111443279,0.873650336993,0.836304367386,0.518135331459,0.0990334833835,0.906711148384,0.64615598906,0.172046911603,0.793552937933,0.422309239729,0.756975194113,0.72332739256,0.432309078876,0.319856281793,0.500637495608,0.31762525396,0.202918110305,0.800093307682,0.691807657925,0.665286063834,0.570318025407,0.0459226510603,0.586818744281,0.10950122242,0.334592696801,0.611136394858,0.408870642234,0.689631225591,0.393208211004,0.856669484837,0.469545157412,0.212667699877,0.918114094723,0.092098120526,0.0251029876437,0.578864110029,0.406815180529,0.722019950802,0.331726207009,0.483158559168,0.248992384786,0.579566642127,0.738766753834,0.433497890671,0.718188559712,0.0520105921645,0.180674782979,0.863818707745,0.967965357725,0.0472198873973,0.990728333842,0.772525863381;0.73909388114,0.420460379608,0.532855487021,0.687166681445,0.334466402606,0.108982390792,0.041585740871,0.835447976267,0.87119725426,0.239109302461,0.340420485307,0.156078839185,0.239082751177,0.195270359536,0.962536448669,0.300949665373,0.043124106441,0.150048790509,0.69005548454,0.211704796617,0.541448171322,0.912933369595,0.455905641424,0.970087391312,0.613965940787,0.472548674221,0.69860915759,0.0448017835585,0.465108362666,0.564080850097,0.532935824223,0.0490466570593,0.290072470695,0.0519623983278,0.106946711573,0.69078483462,0.00268846472599,0.301643290436,0.653312611137,0.654089766051,0.980848411518,0.88051224965,0.183269497512,0.884314734657,0.824039656775,0.974917162959,0.136258642144,0.666844102517,0.20608576854,0.189827789832,0.935500153826,0.124223273257,0.903779140852,0.197731555368,0.856493725184,0.161816117211,0.586686728775,0.338207912758,0.688328029961,0.499089850659,0.90043278717,0.897203477899,0.112174152269,0.978279219354;0.747474923673,0.0950495567904,0.934728258604,0.977479255084,0.482520112947,0.545595165856,0.590411006107,0.809229861057,0.498912166848,0.128142228044,0.726531191646,0.207199245657,0.287831644625,0.148034754158,0.167718534582,0.150193655448,0.935498123925,0.487740099786,0.711424309536,0.425247503662,0.0081744540769,0.64655704491,0.907018882638,0.0509547971354,0.964144086318,0.033216759855,0.876037873004,0.803063542261,0.902345905426,0.573184864048,0.292667285301,0.41698396994,0.214631967739,0.855892238266,0.495148043081,0.118621939098,0.948524323597,0.875052708664,0.996745110284,0.0501637589144,0.340925523006,0.228080768971,0.828901666066,0.74168511264,0.246939700506,0.542160364852,0.811197522283,0.622250038233,0.248257268302,0.382637252547,0.526715261869,0.321530224319,0.746284449286,0.440041274482,0.921154570763,0.360631317554,0.515019941742,0.0523494889365,0.865698041392,0.231616327951,0.13419257605,0.49202005891,0.176368956976,0.29834406204;50 +0.434332010766,0.771841230708,0.285398437995,0.0416825177454,0.846381404299,0.855040972932,0.0978309886064,0.995469639491,0.436780261284,0.523703222553,0.136748466298,0.593547777247,0.176710565538,0.851107278615,0.361981735278,0.706241316333,0.268765523283,0.799912883682,0.669346115029,0.659403250425,0.799814495997,0.302564555619,0.0431470833809,0.383568324611,0.455441209819,0.944544816472,0.312906471385,0.0785618462071,0.0621082561606,0.0543318538467,0.590444012815,0.396682085176,0.817929742385,0.900346906051,0.695993874142,0.582808008329,0.720115047829,0.284936165347,0.0410068882307,0.886189581651,0.258435296239,0.760757543518,0.503463641908,0.296192042308,0.40981624356,0.679667903914,0.893087076941,0.558264057951,0.709612576135,0.641600925565,0.819104384675,0.359596987865,0.680820611269,0.0972806065241,0.770539074171,0.928976747777,0.959090664387,0.242227381341,0.106407550258,0.594868460501,0.367426684766,0.88512695223,0.252013705198,0.645000690459;0.685698688141,0.399444881958,0.50103959402,0.645212871416,0.690966935515,0.163543714919,0.500534374158,0.78845895788,0.821937734611,0.947800465062,0.101472659956,0.740406967255,0.913390400564,0.247742129876,0.931283985155,0.476970475747,0.929389418715,0.0590087339113,0.781154819406,0.450614288228,0.863456781567,0.484442754792,0.99238107664,0.116576748299,0.566275188801,0.974066047989,0.512626413862,0.789278793598,0.0812407331079,0.269057537218,0.986325752782,0.846510746943,0.874761952551,0.213771831404,0.867504998398,0.487467192111,0.702405732441,0.0419557213636,0.844004125683,0.863500764095,0.484176055107,0.418504751772,0.810017440576,0.609830445782,0.437605706519,0.682010113102,0.421077563754,0.810952878383,0.722848145671,0.255553660053,0.956451391687,0.158100504597,0.176597121285,0.363118161932,0.722231869987,0.450423394233,0.0793993566067,0.283901797561,0.613554374685,0.00922417047191,0.62707484768,0.228727651849,0.711375687432,0.19350693278;0.683127504117,0.394088236873,0.587160725625,0.695063413814,0.863712460835,0.0982935339118,0.0242671005226,0.801722067367,0.217940976241,0.610830633179,0.848701647546,0.48768633306,0.813389204416,0.778234483917,0.0554116356005,0.0764092024463,0.214935165575,0.932463324374,0.242683699599,0.948391352851,0.417040802694,0.2997079861,0.612092755179,0.217761873859,0.402719627751,0.357060147753,0.36322930352,0.679638039744,0.465482641117,0.538689349242,0.0599751115218,0.759744177584,0.32337535708,0.0620511435897,0.0746381543256,0.303515318083,0.260309815818,0.954514321559,0.0131435030144,0.813761669173,0.121638138008,0.175153857261,0.316521862558,0.618893262374,0.86654924727,0.682276510404,0.0177969722093,0.452898369075,0.163522981892,0.947469337898,0.616090273814,0.63283064641,0.0652483347118,0.495364503087,0.77194283139,0.559747660666,0.128124016558,0.133979041415,0.965613117406,0.77187702564,0.949955211406,0.098088581535,0.811089963,0.383601058619;23 diff --git a/models/recall/youtube_dnn/data/test/small_data.txt b/models/recall/youtube_dnn/data/test/small_data.txt deleted file mode 100644 index c3c4cf5f84f66594e76603cce1f18d211ebd05a7..0000000000000000000000000000000000000000 --- a/models/recall/youtube_dnn/data/test/small_data.txt +++ /dev/null @@ -1,100 +0,0 @@ -4764,174,1 -4764,2958,0 -4764,452,0 -4764,1946,0 -4764,3208,0 -2044,2237,1 -2044,1998,0 -2044,328,0 -2044,1542,0 -2044,1932,0 -4276,65,1 -4276,3247,0 -4276,942,0 -4276,3666,0 -4276,2222,0 -3933,682,1 -3933,2451,0 -3933,3695,0 -3933,1643,0 -3933,3568,0 -1151,1265,1 -1151,118,0 -1151,2532,0 -1151,2083,0 -1151,2350,0 -1757,876,1 -1757,201,0 -1757,3633,0 -1757,1068,0 -1757,2549,0 -3370,276,1 -3370,2435,0 -3370,606,0 -3370,910,0 -3370,2146,0 -5137,1018,1 -5137,2163,0 -5137,3167,0 -5137,2315,0 -5137,3595,0 -3933,2831,1 -3933,2881,0 -3933,2949,0 -3933,3660,0 -3933,417,0 -3102,999,1 -3102,1902,0 -3102,2161,0 -3102,3042,0 -3102,1113,0 -2022,336,1 -2022,1672,0 -2022,2656,0 -2022,3649,0 -2022,883,0 -2664,655,1 -2664,3660,0 -2664,1711,0 -2664,3386,0 -2664,1668,0 -25,701,1 -25,32,0 -25,2482,0 -25,3177,0 -25,2767,0 -1738,1643,1 -1738,2187,0 -1738,228,0 -1738,650,0 -1738,3101,0 -5411,1241,1 -5411,2546,0 -5411,3019,0 -5411,3618,0 -5411,1674,0 -638,579,1 -638,3512,0 -638,783,0 -638,2111,0 -638,1880,0 -3554,200,1 -3554,2893,0 -3554,2428,0 -3554,969,0 -3554,2741,0 -4283,1074,1 -4283,3056,0 -4283,2032,0 -4283,405,0 -4283,1505,0 -5111,200,1 -5111,3488,0 -5111,477,0 -5111,2790,0 -5111,40,0 -3964,515,1 -3964,1528,0 -3964,2173,0 -3964,1701,0 -3964,2832,0 diff --git a/models/recall/youtube_dnn/data/train/data.txt b/models/recall/youtube_dnn/data/train/data.txt new file mode 100644 index 0000000000000000000000000000000000000000..b58cd47a140911d8c7ac1ff8e7e1f01c32334be6 --- /dev/null +++ b/models/recall/youtube_dnn/data/train/data.txt @@ -0,0 +1,128 @@ +0.274689412098,0.73018883866,0.953430004962,0.402571727827,0.653868014871,0.522307295787,0.301244926726,0.010545480815,0.991445952174,0.379429518853,0.55246684785,0.318749815764,0.388597978787,0.734937344896,0.551050398926,0.525285412264,0.456399462911,0.677172262928,0.630038194252,0.255763291379,0.755638589677,0.0586309258285,0.981101371818,0.84447179474,0.71087533679,0.741027343143,0.734441874781,0.303322302544,0.192576486336,0.941190127012,0.445295254379,0.720420975802,0.594917476312,0.259263653241,0.305295737164,0.961968935353,0.0616882098913,0.880530110802,0.172463576842,0.551323527167,0.129697094027,0.378022128685,0.0658076963582,0.947328600265,0.441169455195,0.0139459633647,0.644709091196,0.695081569035,0.660023126521,0.696315209585,0.469482279392,0.531800087633,0.453091229526,0.471249494911,0.800455129135,0.339295996006,0.691363785694,0.892606197645,0.924137347033,0.066281576396,0.335713223723,0.377883961909,0.0333925031707,0.833061153348;0.321773071162,0.558716295579,0.283914894426,0.777627641676,0.510283558449,0.312270782764,0.668555523356,0.462758844982,0.115945771771,0.491916626549,0.607598835561,0.824688803687,0.954297704971,0.265982521626,0.190630793754,0.312776082549,0.683177867859,0.721030794618,0.105898580417,0.702608534916,0.110814267947,0.433698819317,0.93705282347,0.21291936548,0.440852411253,0.870558738486,0.445519726325,0.380876151304,0.617061946785,0.0413098611007,0.912633525828,0.0535493430323,0.786158357385,0.628822008099,0.496279680553,0.228327193569,0.969330282156,0.372665138225,0.238863913178,0.952052690361,0.31407009283,0.064137887307,0.202285072144,0.164802590594,0.67661915717,0.165050020146,0.699842879747,0.768909090512,0.921872832221,0.855551881612,0.903996328649,0.222074637421,0.838421615599,0.718126163337,0.946645025518,0.277685067352,0.356804280015,0.292139897454,0.569553765474,0.446043023491,0.937614429649,0.080728788872,0.426707837802,0.254173491706;0.232399491376,0.897824300392,0.177132129442,0.651912816547,0.183366342723,0.679520919799,0.125074080396,0.987655515362,0.513776074689,0.545716018966,0.0627133388973,0.0875704895916,0.526337457238,0.391206024097,0.424715487641,0.470267302692,0.479035500763,0.441365228427,0.114184292074,0.10895009172,0.196162355529,0.988197430948,0.113330836216,0.965864497876,0.526945242578,0.313362562985,0.0394744411031,0.543887003491,0.363556154535,0.502145840419,0.919046573281,0.762209339304,0.474568021068,0.243070263282,0.43964065951,0.597243293144,0.593366345026,0.305226059717,0.125865203682,0.110070180547,0.842208704771,0.916139777476,0.772829418719,0.997404483687,0.549942923367,0.115652020426,0.12249595189,0.921357061307,0.989407701851,0.876014837202,0.0156383252207,0.715066882581,0.266351910904,0.309671393757,0.535059843396,0.933222364581,0.778698163809,0.145108663332,0.1960762349,0.521003868852,0.211973107933,0.366033150842,0.260136817117,0.848028619089;3 +0.649167335168,0.507212514327,0.54182123948,0.626835799038,0.936790625423,0.052873932465,0.0708137502416,0.695823642979,0.697569632671,0.0714266427132,0.743567179444,0.712863407447,0.733810600582,0.796792144283,0.48584170107,0.278321172677,0.0470389760278,0.0596023960101,0.269489994849,0.80042573024,0.532729990904,0.443667713801,0.159143410423,0.411643568152,0.522946226014,0.11095968726,0.0883677096273,0.65405282678,0.145123371561,0.989088454806,0.892106654875,0.264461130676,0.285560163089,0.760603707151,0.51845500675,0.59188624501,0.358657769268,0.45660383272,0.0319804867194,0.879052200377,0.315560268962,0.715309309426,0.561680672434,0.438351928626,0.577922356215,0.364151604807,0.613544769186,0.891326407652,0.870571910765,0.979032337856,0.866139164226,0.244392052971,0.617102438039,0.187545423524,0.0563347578263,0.911146674427,0.909813627786,0.759010752574,0.198015398776,0.726579173974,0.420325584845,0.241602367967,0.76648388437,0.924012469121;0.880573496586,0.0699477511309,0.351310806416,0.960753563572,0.313926035219,0.411033481793,0.664293657342,0.413181011846,0.400806141097,0.93413205757,0.809793097164,0.496129150779,0.596076816377,0.306703450479,0.912665395953,0.0101465274089,0.522595886785,0.309735174699,0.514054761362,0.611479537901,0.768219093823,0.0590662888807,0.0492285115821,0.0797522481334,0.908001571956,0.000403617223186,0.202481393837,0.547715697215,0.310709160424,0.337062933608,0.313359967404,0.0206379043786,0.593156014956,0.415706944849,0.346924260036,0.172899469244,0.847580702399,0.378837743129,0.930940358941,0.786345276291,0.755218175355,0.63107001419,0.501899493481,0.484041272928,0.349323992316,0.191878295442,0.875420790956,0.671618339831,0.735336064299,0.77456280175,0.847418462139,0.272801181085,0.902761654117,0.768535686673,0.647806039408,0.858159439737,0.34775727854,0.268265123067,0.822979884597,0.083294413565,0.246439626852,0.674806208527,0.139653138978,0.200343557837;0.0400460575696,0.362034551263,0.46948181033,0.651678051631,0.515502057348,0.490839427241,0.566318481758,0.53298157939,0.892371420304,0.539687903122,0.410874499453,0.643266536648,0.552565423967,0.747019489781,0.0409236948818,0.698080810566,0.148742272446,0.28810146093,0.975328929726,0.589486156869,0.185617847123,0.654815086013,0.769190736733,0.951806854216,0.453587717981,0.756720903965,0.108206981353,0.689640418621,0.726682313424,0.965703148963,0.448567464071,0.33808735107,0.298344635648,0.790379768692,0.907505752953,0.693498209816,0.976482223923,0.825945957225,0.260309502667,0.260181362652,0.841366130695,0.107014520318,0.898455616246,0.3634552997,0.511710680581,0.864617696658,0.620898526628,0.718221327195,0.828752501753,0.365716180867,0.50208790376,0.931052421158,0.778628276228,0.111478882875,0.907203104911,0.502629715999,0.164806447615,0.438084654264,0.325996906896,0.163199359518,0.915245886002,0.764907149663,0.178867058961,0.00702176181606;33 +0.262025369243,0.0578232047943,0.943074369125,0.72520993984,0.645619989819,0.705920219152,0.779303431246,0.414577612264,0.58973275432,0.437868597745,0.62806386254,0.967843255401,0.671385428456,0.625027375431,0.453514686013,0.912086169126,0.00337008652904,0.045041050504,0.15891747475,0.94025491068,0.00274348132606,0.595092023826,0.268432846037,0.220804353136,0.331102185173,0.247716883814,0.86300673922,0.826423418091,0.946371612606,0.0240180544232,0.0531069655991,0.105576314093,0.981440836432,0.280469749574,0.670834846681,0.0258042552383,0.47028332105,0.308423507047,0.197623485887,0.562230430953,0.0290699004704,0.350067621926,0.252561572541,0.17586851603,0.62416751693,0.099634132704,0.671064785549,0.118183111936,0.057192941751,0.0996176576971,0.494036970404,0.9101749909,0.855563999032,0.0663553956649,0.747296644276,0.877909237277,0.635048721464,0.658451089394,0.696526853426,0.65600974,0.861268501334,0.545868708126,0.635314198484,0.551527417934;0.946731689039,0.393354142649,0.914135520475,0.452206974984,0.585079378557,0.676546612401,0.918120403076,0.496489784511,0.00719814500375,0.145936882416,0.633016528488,0.848952555312,0.785783111615,0.00738642386866,0.478780288746,0.35142405943,0.355207106544,0.764890716614,0.0964830401269,0.974999468591,0.97859716742,0.666843593014,0.164481734871,0.965218354518,0.929233258821,0.596570500386,0.47718475143,0.34306082936,0.208398753765,0.874139664023,0.591624076282,0.14979942702,0.129859023946,0.529564827587,0.99014562602,0.939365504208,0.0238066678447,0.00122299927055,0.738100286813,0.125233803671,0.222244776283,0.30788549038,0.521398810269,0.946092892132,0.415718894641,0.796746278938,0.864110410078,0.826743256789,0.145595959174,0.233384181275,0.879467159294,0.581720001972,0.0312765012401,0.601307410085,0.776457841634,0.62215117794,0.61896776121,0.0515518145122,0.57713898858,0.343444257701,0.457694094375,0.286042726161,0.626445541378,0.0440620814401;0.465110046898,0.712305777498,0.817648542782,0.368510664348,0.624610447171,0.474405974024,0.343733504937,0.101899017743,0.606366599688,0.332633150683,0.298459717833,0.656031117214,0.13349618572,0.100002304127,0.0222275909103,0.0251772858978,0.602716242686,0.913118603001,0.510606742791,0.471075517566,0.281681608348,0.63105043993,0.235671715134,0.800367353554,0.0385046066268,0.0611603769519,0.582058931228,0.519203542509,0.8948971739,0.478380938156,0.77476825944,0.24568239266,0.512121506997,0.411063610997,0.612299016748,0.595417333994,0.106462718817,0.203262085426,0.542207592082,0.526957141953,0.754710103042,0.441910366035,0.797549929011,0.549057942343,0.57687476647,0.294127645187,0.927606911087,0.129168483618,0.935817297178,0.99145499359,0.0923875912461,0.917725510982,0.538981834324,0.445226515695,0.892645857614,0.430162446942,0.811197141082,0.296563978308,0.468876912702,0.933472638187,0.0302315694642,0.257397219479,0.12799779055,0.0370252461812;92 +0.298570268928,0.770624511719,0.933320552408,0.61655610756,0.807805728537,0.319773541777,0.955701922636,0.291564835702,0.775674627084,0.380099296751,0.712316121117,0.913676520821,0.835513472079,0.820984885878,0.01073886437,0.399240936804,0.846252759639,0.0691828190857,0.261304235831,0.264232606313,0.530307376405,0.697868376065,0.463009205463,0.149821184481,0.369148530531,0.53802776034,0.214076131804,0.129777877321,0.249805262769,0.981847699383,0.495851216655,0.423217904866,0.311703922573,0.686027700154,0.0316966326467,0.475268739336,0.526047962012,0.282179173736,0.642776085181,0.738762068768,0.586215455255,0.331590621507,0.167683295685,0.78915461326,0.517851509335,0.0175272293959,0.953771521998,0.0210069390382,0.240254418913,0.839824410698,0.552888062879,0.562634076145,0.147955221692,0.514397468995,0.39560067242,0.89413223116,0.70935855984,0.956679222806,0.156972659723,0.0435954028569,0.755744764085,0.985143479149,0.604218805817,0.793479906483;0.483565179202,0.585130282324,0.617146852294,0.80690344688,0.520135328122,0.423041135512,0.797492522397,0.881396906599,0.472813063841,0.748094835807,0.943738534153,0.918368597183,0.38808491371,0.966187401875,0.940683612588,0.428371874125,0.682818530138,0.0545355120512,0.139445740211,0.955104366554,0.811364956388,0.794808905138,0.775084140702,0.267213128756,0.141317160827,0.541003791385,0.216499981656,0.776314700979,0.293850961909,0.175000567559,0.0417645840259,0.47721437228,0.31944065315,0.527389048661,0.289891161462,0.437441373433,0.967055153631,0.52626521293,0.758461336344,0.156458701989,0.701247293405,0.553916035115,0.471524011611,0.815667039459,0.190673284096,0.139002876129,0.127762773532,0.140787826443,0.39322599848,0.929802023805,0.866267102625,0.794425377332,0.931606227393,0.75795746322,0.0529752432111,0.676766681847,0.444495384104,0.591576196783,0.0349099145253,0.611663778735,0.966953444864,0.742682280876,0.144434329566,0.513180938129;0.367420262684,0.108747277734,0.649238544315,0.253961204645,0.188562298075,0.429703414606,0.486481775287,0.308617830876,0.349441904566,0.714609370142,0.723536352112,0.457966328516,0.556420592894,0.489724203014,0.779909113916,0.655514637389,0.701267201545,0.120003247947,0.109562961885,0.799798826398,0.859165208122,0.233117948408,0.95396979843,0.553835057307,0.719887373157,0.911376800033,0.488849143729,0.74183651222,0.638186363962,0.384896744931,0.197716464524,0.866141403928,0.087676731572,0.779095485154,0.740968564032,0.966565545283,0.23690306489,0.217269866801,0.966158259826,0.733305014023,0.71114941025,0.0545572121997,0.274389633054,0.437330443117,0.236150824329,0.806376866782,0.120986815727,0.927151027152,0.308645722675,0.254302413383,0.394536069781,0.178034866331,0.757952205488,0.877949438908,0.0564615662344,0.843866381428,0.141943363534,0.359371902102,0.0321164468697,0.843632132497,0.0865384881951,0.51309736069,0.710281318633,0.186249266914;97 +0.25438096939,0.896888202149,0.628706422156,0.362868589069,0.556025391547,0.762375895855,0.0917606699653,0.938113571167,0.850617094687,0.120298377771,0.828356697573,0.168320049236,0.203622938323,0.759410153778,0.246138311042,0.0040282263035,0.637712501926,0.223292047643,0.701547772967,0.157981402469,0.185550849194,0.181020338298,0.76432195923,0.131163838107,0.945835375471,0.918537992968,0.00720119068166,0.964575247221,0.657282806229,0.996085970182,0.210720203988,0.904500827108,0.0219514811827,0.738174335449,0.409333055577,0.430976250666,0.988048262045,0.254119537503,0.574676201475,0.865517712025,0.990516695772,0.385372863175,0.0404323190601,0.772467334412,0.86973188319,0.469019498882,0.040601781065,0.114335594497,0.0729568447762,0.390009157588,0.736458590511,0.187063554752,0.819821376463,0.161403176749,0.593191417875,0.469937471638,0.0592695294897,0.305606345949,0.126701728824,0.248208101798,0.0945491035922,0.453626158486,0.777970555993,0.455639472666;0.847709418254,0.4514001307,0.182502925668,0.306614353525,0.830773668984,0.327147002536,0.42343948311,0.0766766501325,0.600561587642,0.129256975259,0.209304770849,0.737711005833,0.755629169869,0.922698537445,0.27536905561,0.740011016254,0.736406427375,0.76414858125,0.996331544147,0.935848879378,0.892835844263,0.992871804561,0.085025765109,0.329500752744,0.564754410166,0.460855847858,0.968906984887,0.924588317445,0.984883927584,0.621650928364,0.738325676822,0.140387836422,0.992884297692,0.389955179266,0.212480011423,0.397912944859,0.965634823863,0.476319881745,0.113620635317,0.374253247469,0.230547147353,0.313986844855,0.656212366347,0.26886734843,0.00245248433474,0.0500547466843,0.81543607742,0.614574322729,0.0199595689034,0.506939392962,0.0799150494734,0.0574058127507,0.0318881163635,0.272965980732,0.191875606155,0.174399499832,0.239215071673,0.112640260489,0.871353402464,0.860558510543,0.38106801211,0.963272341998,0.38012584029,0.166426209528;0.837971387657,0.246262286389,0.492204172862,0.161616927617,0.155214240023,0.240645216705,0.494282543396,0.374801151917,0.838255195336,0.486597365978,0.604901628819,0.767810746547,0.76905586057,0.0484704588244,0.86571316086,0.348155456276,0.864441108582,0.93636209335,0.288896060544,0.174269424685,0.868933835875,0.142766142004,0.586978406834,0.828014949572,0.320541665527,0.741380126962,0.4728531649,0.519376969877,0.905813888497,0.189185722537,0.213329429426,0.892766062038,0.680023037255,0.851716925041,0.45531777022,0.170240405434,0.525149849235,0.0356509638352,0.307123160779,0.592798964858,0.300116926872,0.470943705924,0.00311816889391,0.862527890232,0.765411978134,0.83925117447,0.360438764056,0.775703534277,0.519283720288,0.768584847596,0.925244583589,0.00427489581177,0.238150563947,0.928541140911,0.363572336131,0.342907299153,0.240787719452,0.20868587276,0.198839030282,0.773653433821,0.283833114722,0.873586974453,0.909796324769,0.78125153853;44 +0.331349316448,0.375915376359,0.383488611165,0.230613698859,0.679385785339,0.167906400611,0.853940287498,0.0495909920885,0.513125744558,0.692261653445,0.771517634423,0.851060671846,0.703665732995,0.197155384177,0.619084386283,0.879187076721,0.843717962963,0.14439984314,0.341300261136,0.172323782466,0.798126800324,0.445852357103,0.915059877433,0.827839351524,0.769851631895,0.434120120404,0.245071128687,0.832447984194,0.208792344118,0.0136291693008,0.988255743918,0.347502647189,0.091244451715,0.776275911927,0.00748657382458,0.626811929802,0.918785388403,0.75554463332,0.306597362625,0.817633054475,0.402548648917,0.911947187759,0.864197320321,0.292669472301,0.795236017792,0.802371692103,0.703439132877,0.462919124489,0.058672551835,0.739287250027,0.0166253606446,0.217744363918,0.151216645181,0.318539729061,0.7921963287,0.487292241371,0.406238319862,0.387171988033,0.477171438058,0.0732370155316,0.871236600886,0.123467620793,0.953142826742,0.0913126761691;0.672028291593,0.258960968508,0.431999453327,0.922434125863,0.881619922148,0.81294167386,0.903937292287,0.770186797923,0.781151565548,0.577226779753,0.0658406933273,0.103840477682,0.43350792902,0.528304557219,0.59054644478,0.696589625716,0.865781831445,0.44465392961,0.980612884626,0.292546085534,0.794120154164,0.297960820985,0.53624236455,0.773936223916,0.785826033653,0.633662688115,0.308431399712,0.275128625286,0.216495521237,0.852760029136,0.0697918257397,0.055636134101,0.874016153008,0.0435593955881,0.863146591761,0.445400299695,0.79233338431,0.490664989874,0.646949088763,0.633309700587,0.959496975698,0.898544430674,0.968830969037,0.158333002694,0.221368688128,0.264113589441,0.834990697034,0.408746736468,0.821262280048,0.331443292804,0.540521392776,0.32807165743,0.790271154468,0.770306758153,0.0535214298853,0.889289372736,0.793345615914,0.842421445769,0.144013354274,0.119146330561,0.370177499265,0.940086103774,0.839882348302,0.132617021456;0.89316257999,0.954486604647,0.227693142958,0.138949528391,0.261577569693,0.496141012218,0.488631312126,0.513258176982,0.975419966841,0.249336248224,0.145231312309,0.153827622406,0.670063363798,0.611056405799,0.467434703969,0.890296267175,0.138941251769,0.495172781659,0.623563860914,0.40328514955,0.275288327142,0.128428208456,0.257377014379,0.00205285486,0.609102235852,0.724808435381,0.00988119678693,0.599995772605,0.245916203738,0.339599944032,0.00211675632563,0.398153949084,0.481371138893,0.960190891593,0.37695211946,0.848784224957,0.0165532492311,0.420157332931,0.902021097823,0.542648263166,0.533612416753,0.504093813641,0.855625402075,0.368672830632,0.652468909618,0.708315671737,0.218946372645,0.975826801462,0.666553814622,0.11320004655,0.512098023712,0.786916781443,0.741851056824,0.970104035228,0.447997433288,0.053941334119,0.499767225099,0.0856040398005,0.692244067639,0.233191977544,0.080890325768,0.795045141584,0.14638586784,0.373644132472;58 +0.439340087064,0.438037791625,0.99074332854,0.156812994194,0.354573041549,0.200804267025,0.26880978855,0.612763583933,0.0115691351117,0.87186794142,0.604733686397,0.854891164093,0.308073618899,0.0578969611143,0.3345047099,0.744577488464,0.414874372186,0.826377891606,0.986534329111,0.877383559743,0.520799293933,0.200517629843,0.993615947675,0.904464682288,0.278921884125,0.358576651575,0.289491225758,0.609271487833,0.680893523934,0.448592496838,0.740590266076,0.702969473365,0.32187333382,0.988086513123,0.351383135247,0.632413927428,0.395426233594,0.686104242109,0.0429011108576,0.21993902795,0.548115997307,0.81559426097,0.725541298948,0.173024748565,0.0680776759167,0.236852868031,0.212090122522,0.618186255241,0.841664986964,0.488184354761,0.77064345271,0.150027296026,0.846472131476,0.010292729439,0.5720785366,0.484251822386,0.705783656683,0.875818169101,0.0097639894407,0.930675087225,0.0437279406507,0.321139683995,0.221141293853,0.0975126565865;0.623191375287,0.75137890903,0.694315453484,0.193498096113,0.159307846738,0.3276581428,0.655613295958,0.470246368586,0.713310953573,0.43725713887,0.840719997899,0.357270864718,0.0479704418326,0.447495525586,0.778244940413,0.0880472169512,0.92426503107,0.367047453368,0.713473983843,0.424285345152,0.132537820873,0.617185452634,0.680852688319,0.205250078083,0.34809812604,0.453684468745,0.572626563041,0.963869437608,0.825976901008,0.531650792552,0.993982635864,0.139020146375,0.667059524692,0.769799411295,0.158769494743,0.41560109852,0.197284403829,0.719980571476,0.0876169383646,0.76896208079,0.268585599937,0.0604005585408,0.893470561886,0.783985058456,0.916107115137,0.0100006854396,0.623931902118,0.713805812392,0.462452108533,0.755388705913,0.536146804177,0.94950262914,0.124738430151,0.902524293875,0.814370593674,0.737013931012,0.350167494733,0.891910401017,0.614874609054,0.651447797976,0.367759460974,0.681787201151,0.808763283013,0.329541779073;0.866734398145,0.879683910775,0.609575173615,0.437229084185,0.019193529057,0.363970743156,0.598062349005,0.181316636789,0.524120022755,0.45236753578,0.742220511196,0.789690362602,0.860768435382,0.0563523514926,0.397549413209,0.563249139969,0.142039583196,0.965557546132,0.792964943336,0.144981767062,0.0403323116896,0.222259882428,0.451829726862,0.628618098604,0.249057275513,0.878448649847,0.272979048766,0.872529851187,0.858766302732,0.0628248985467,0.619387510903,0.915632461437,0.168581408302,0.932718748136,0.134657393334,0.708370190638,0.845972183369,0.139208782475,0.407844017928,0.16917996243,0.380046354676,0.409506791973,0.996947137431,0.451515591551,0.939061009273,0.573256664785,0.532199429936,0.856987092097,0.549166437397,0.540195582906,0.0188226587597,0.199399765599,0.106617967938,0.965442363537,0.00107574369116,0.624346830551,0.404618164342,0.996574738006,0.203406617866,0.0620024958445,0.475665792106,0.75558739981,0.40377947896,0.522311621081;15 +0.92515078255,0.902397620069,0.985913702573,0.730228213127,0.766972758237,0.405526168043,0.51955074368,0.795025944606,0.106984380398,0.207246090278,0.278816491917,0.248113514322,0.65529341665,0.158392782929,0.565269186068,0.0228110828958,0.620469244481,0.143901588081,0.553036193205,0.872049292223,0.87551066904,0.0810912510409,0.89484364922,0.443841067785,0.371275171515,0.706081551043,0.0750757710457,0.985191341915,0.350613382571,0.0172271458456,0.268484193358,0.0558310885214,0.343334217201,0.143065212648,0.962901636584,0.773551172425,0.19787762029,0.211234766573,0.0566950999466,0.93470100496,0.409132263409,0.0120932155334,0.505166302788,0.78558908802,0.577205213864,0.150234561973,0.615907052816,0.976763356219,0.593269740251,0.588893745526,0.624234368644,0.637073692797,0.577024192747,0.862851316094,0.832618278485,0.195473808105,0.67690453315,0.0227085535552,0.821386646555,0.913651243831,0.115782777699,0.289024884319,0.506738322998,0.578470859032;0.368522499128,0.139367134474,0.458645095091,0.412713863034,0.66412480464,0.597742321172,0.0511155870496,0.50697376933,0.159748748757,0.219724702824,0.674376087689,0.882429322222,0.481013074683,0.599204962133,0.23127851974,0.906109034869,0.686917352688,0.383044073963,0.644510109469,0.894700885737,0.381517931827,0.77835242665,0.18976988805,0.559560075582,0.547233615136,0.630362467267,0.44301701957,0.668449779565,0.06545340185,0.144689261352,0.987851190634,0.259895985627,0.635778311722,0.221456827872,0.266253533564,0.148570265979,0.2097239811,0.441193351941,0.612313871107,0.487492994072,0.532870585198,0.0659887448021,0.573243432496,0.657102787956,0.539313483201,0.209587651538,0.772311109224,0.624603146529,0.872604903301,0.477690356096,0.762230969374,0.314151748419,0.60401657628,0.858848435175,0.805658980909,0.161502600625,0.186898511682,0.725055605934,0.722103048808,0.636222996753,0.587619777099,0.323989809864,0.124605102664,0.662183852701;0.285168632994,0.793050195872,0.192362850418,0.382883306613,0.849528025626,0.881200954544,0.190588724749,0.0936090288426,0.189041610339,0.905488436756,0.121924963319,0.722261461816,0.583511769794,0.00953368374644,0.295062045613,0.301888602048,0.750225387193,0.371973719129,0.0459343135703,0.322419165052,0.698298202116,0.489140130925,0.122206460799,0.875594981272,0.679205468189,0.466203018798,0.0592436649237,0.350208843726,0.665040857965,0.180927610714,0.761119223594,0.482131841416,0.106168100777,0.320724664333,0.298544334154,0.494602681765,0.173838781952,0.366673346654,0.719098693792,0.578923308255,0.860553665492,0.288591627636,0.162294936983,0.921686232136,0.721886468005,0.633001399386,0.631339661369,0.062042823239,0.375266732255,0.213961513055,0.566667150565,0.621257668588,0.346169804681,0.890149938408,0.254458991429,0.960537869065,0.369474469931,0.2894915445,0.436836742574,0.335582057097,0.36107141593,0.210791004643,0.890820295934,0.819676651843;48 +0.700907039674,0.197155934874,0.564441508093,0.304899909222,0.742011297175,0.482826193927,0.696312996299,0.600247744923,0.319351793497,0.603106470568,0.378805012644,0.2671893404,0.14463594996,0.974888035083,0.883234124789,0.09288438248,0.0598387698649,0.319406754763,0.343742837894,0.0673997757865,0.095021653311,0.536939996282,0.0244063803046,0.10570377728,0.748458014924,0.212283169386,0.453066845396,0.122976098444,0.93783310197,0.493042238678,0.180107765845,0.376338449479,0.379885929389,0.333037259472,0.342601488644,0.159266247538,0.146565963543,0.899506481578,0.601565435945,0.950553618188,0.269454618956,0.126615821483,0.611373094102,0.169471523832,0.199652575569,0.771546909562,0.342785145921,0.882956275689,0.704871306132,0.549151999238,0.14814513616,0.601600873824,0.300727543358,0.834031736548,0.984421640381,0.788436830767,0.906776227757,0.736077194187,0.971327946346,0.290189149652,0.803734552617,0.502240720373,0.894678061195,0.953227685764;0.380056504868,0.855036382351,0.798106212154,0.965186230658,0.55480550508,0.463600245919,0.957318496128,0.611689115995,0.143077116865,0.0485520824753,0.821372493288,0.712413088624,0.0817051829679,0.771409371725,0.0652515026728,0.551735829201,0.277660712949,0.779500799458,0.488129339831,0.835794861252,0.764646339485,0.0849125531224,0.388046800695,0.675247594164,0.426188790003,0.898314306144,0.823875403671,0.338989601046,0.638495739749,0.419216002519,0.605424552796,0.611141293432,0.471442341797,0.619474523869,0.874829471444,0.281683944027,0.963678602909,0.270287808158,0.102056045784,0.988190986799,0.9636741048,0.775772869454,0.21278186625,0.269338551346,0.615769685457,0.41957014447,0.744238760792,0.475738899142,0.908445554139,0.32556350344,0.308253720666,0.929126757879,0.530975560172,0.619216537023,0.426394400365,0.544983439064,0.464343328516,0.299352513121,0.96769550027,0.900179801344,0.745275879011,0.435116095784,0.689403415759,0.538714485031;0.552032762604,0.109397279325,0.734522996773,0.201071668921,0.144638288459,0.0771862049901,0.409948300226,0.695495828172,0.291420848404,0.301254209811,0.310244572266,0.0710702356444,0.418882933351,0.630514350214,0.526484881453,0.51653923014,0.178751122124,0.717460082649,0.198104948259,0.849147636683,0.532589130741,0.262675822973,0.845048659472,0.937950920765,0.115205955492,0.196217355033,0.79883277995,0.839911529543,0.9351982448,0.653691881257,0.709715132942,0.398416373092,0.656719574649,0.664616311158,0.86266138862,0.379330315619,0.522025225213,0.646716904426,0.691050832865,0.493576504264,0.355300007439,0.24858966498,0.687817745854,0.0868305584764,0.886282553059,0.104358002194,0.519357925213,0.361831486855,0.292506251093,0.274794421649,0.378271207445,0.734035542583,0.262137891101,0.860643458078,0.882842743454,0.398591963103,0.595364865001,0.099404646527,0.730451566119,0.020330238589,0.226834749525,0.129810714446,0.282272205867,0.561310344924;57 +0.119929119932,0.463995614702,0.264900797427,0.604297369571,0.335097703948,0.558020888532,0.792539177147,0.903043450515,0.783196918384,0.475622548043,0.267288412367,0.231308218221,0.483011042371,0.355815429202,0.750631511271,0.181766919684,0.677528938007,0.144836665585,0.778754754111,0.0294295084733,0.457752662627,0.83009778176,0.478502365339,0.935283223526,0.364382789641,0.14997696387,0.919876750389,0.96336457827,0.330625457398,0.479124340749,0.56040569883,0.330179424439,0.0301456076539,0.687346376637,0.74073156678,0.776688861193,0.113835163494,0.778478459008,0.212966383913,0.563462432058,0.423825755789,0.386515687962,0.276488638933,0.456837393767,0.353660790774,0.0466381256784,0.881859145845,0.414957615624,0.985448060777,0.104507092604,0.764633501247,0.80865038284,0.770209621642,0.0730998260417,0.155185774423,0.257540351682,0.596507040013,0.655968824151,0.613046333374,0.113288343391,0.0244605110123,0.587437501781,0.643576533543,0.320863267379;0.650460922079,0.822599343385,0.377940657132,0.0273253808794,0.942980765955,0.145014478941,0.335702293832,0.746200336331,0.56309190179,0.938007399786,0.645191298104,0.111551073893,0.119314794704,0.284081355801,0.526667996466,0.933494330536,0.450818816662,0.518126409674,0.603669419517,0.520882596753,0.49037990612,0.8875925486,0.969955983171,0.865340643354,0.20489726186,0.530289604611,0.744259461505,0.562636831318,0.116094171797,0.599628753107,0.098639020712,0.112130907373,0.90089775719,0.201218617873,0.686399778288,0.552185680263,0.485209534441,0.406482124216,0.393203807481,0.392118868595,0.662007860081,0.793692838172,0.141233358074,0.449658029468,0.703115400877,0.773920553716,0.738577455286,0.708924798397,0.578275898857,0.0490614509884,0.521981006829,0.332595480343,0.489555110753,0.921629698467,0.422922699922,0.650447388667,0.520402739343,0.787650172511,0.627595176656,0.881331944469,0.423658724571,0.238049103004,0.346959548576,0.495027704321;0.0366918145591,0.0164559707086,0.587691826404,0.851674292667,0.897076921141,0.335149712415,0.797355309245,0.0430177963207,0.248713551955,0.349386888437,0.676232011123,0.145746545818,0.996242554419,0.884391404287,0.50457051687,0.247891175622,0.855161480393,0.548427713988,0.272880386689,0.372625750198,0.905624340268,0.835006915569,0.467684318977,0.717719904322,0.51964856694,0.773224571002,0.103904881744,0.155449768415,0.884126817924,0.000488146185658,0.0144812113912,0.126303562679,0.928926038942,0.461424208149,0.492189630895,0.657209928796,0.654183697632,0.91182320321,0.419463156039,0.5293584507,0.776991091253,0.200764678521,0.594905926429,0.859559217901,0.196326866689,0.720565574899,0.760921186599,0.997668626236,0.408197615769,0.137473126811,0.0388925695896,0.981705394758,0.262981346972,0.356686238286,0.235598165592,0.225891686447,0.970724383438,0.0492813199468,0.267652966116,0.495784378053,0.193735927669,0.82358234002,0.304296729602,0.383166852002;11 +0.425124973891,0.330439278754,0.89839481019,0.49831977113,0.630529691841,0.0358264643087,0.936889037255,0.633398458315,0.331283714227,0.411695209255,0.890403657898,0.445675444935,0.22094523145,0.599674222971,0.877968618321,0.619950867533,0.064306708612,0.498987546045,0.0618511049216,0.998668012181,0.708347547069,0.0261452275995,0.153886268961,0.72520477939,0.685214957311,0.51887227347,0.696744574063,0.760657829237,0.0611168725566,0.552687253608,0.794320798716,0.0474708995481,0.27599046528,0.334768013162,0.342438489822,0.275195197338,0.0425838374059,0.370816733442,0.0321131401393,0.809518198954,0.514271795603,0.892976375586,0.378250897748,0.704012504671,0.80043236726,0.620960197548,0.353574127331,0.582904066433,0.270973357701,0.227770234458,0.480913935295,0.747691433116,0.0542441807506,0.325726696655,0.362804243793,0.360027184139,0.686326787017,0.927244725422,0.000564933666221,0.694982443575,0.613074810037,0.140663049274,0.366947745589,0.305689316681;0.731644792253,0.613250447791,0.952749808935,0.517070408458,0.484157630805,0.352428192813,0.376102170833,0.477738761754,0.998940834907,0.117243851549,0.850897677494,0.380446409579,0.409479971398,0.159153169174,0.493935077221,0.20163921275,0.350616338527,0.177416024139,0.597527943549,0.791171489516,0.313090170996,0.975931753044,0.864649334262,0.194151040213,0.881017030978,0.0976106324129,0.983250967128,0.928547629924,0.736096470132,0.63933735998,0.753647336089,0.104412757886,0.38952530891,0.00260156773781,0.810410252577,0.396019081632,0.808280148402,0.815395303613,0.359951895993,0.543624529788,0.306204087822,0.241541231138,0.626727891694,0.785036296338,0.32346896512,0.0389504768718,0.602833010736,0.0389477840673,0.422981695405,0.815995483563,0.23169811586,0.279825609411,0.474611596141,0.738053618735,0.786725100644,0.975769568376,0.438417981174,0.518998305941,0.542519736787,0.101961590542,0.0219318491173,0.233891067916,0.270665677465,0.551080106983;0.791861159431,0.111122745503,0.69709639171,0.110832679281,0.0776934153474,0.0498990229737,0.904790077639,0.0346562957944,0.671800883926,0.643005096938,0.00090019182969,0.625043543612,0.52449997058,0.383556097344,0.259228553432,0.38212580595,0.799405972964,0.483106563849,0.0510120120705,0.21786058994,0.736507513639,0.109827729971,0.870495392552,0.894452898339,0.761080146224,0.772087566655,0.264994859025,0.774680639317,0.465338931151,0.392860622675,0.261626730915,0.469723468767,0.754757142314,0.141467894315,0.71917037918,0.142539506378,0.749053835915,0.68653447649,0.0948502310003,0.00208165545269,0.153563157582,0.384191576361,0.107645691675,0.919442212929,0.992039945341,0.0881140437672,0.399796856199,0.13576442389,0.535193997649,0.473388744075,0.576861997247,0.179551845364,0.232014305413,0.876712744055,0.831591946989,0.319244407029,0.704288650073,0.879036444689,0.583423118356,0.810166640469,0.134395134275,0.488805816908,0.223614994684,0.117005344961;0 +0.0732649853638,0.616379505285,0.306816857429,0.961918930931,0.730804764038,0.0602436403944,0.392860547875,0.210090195373,0.181320521178,0.520877516061,0.672249518451,0.380654283605,0.0320231081329,0.752983910377,0.0807394127695,0.703330787345,0.206969259417,0.653122757966,0.922521440311,0.584597618904,0.849275281665,0.687960461475,0.490681880113,0.779070906554,0.554666625139,0.689627530341,0.944329473138,0.943267390143,0.267935597875,0.407142965259,0.788992655933,0.933238878648,0.0856959628547,0.843540588555,0.931148416525,0.342805263164,0.190935603334,0.662216371099,0.607408872703,0.927391476389,0.33399711152,0.444281137361,0.113245868392,0.876902001826,0.506100649714,0.626764583771,0.0319030241183,0.249280454531,0.916263572681,0.662519833911,0.0785065972744,0.730543380304,0.989320335482,0.0314685917056,0.0534435432422,0.535630762691,0.697065805,0.411488751897,0.133916500786,0.952980651563,0.368470327345,0.916418511962,0.150655273544,0.929213743921;0.567017490959,0.877411802055,0.430487011878,0.685047725583,0.323788986007,0.667344229214,0.735293135549,0.38771614481,0.789245561343,0.321838850091,0.477780300463,0.958267890775,0.474587796646,0.386378248021,0.304640009517,0.894171150065,0.66949612838,0.276615464668,0.188596549893,0.0203612235208,0.980394386419,0.255721000627,0.927618556337,0.560592000038,0.290065426392,0.392651544961,0.957375056918,0.830730374896,0.392576599202,0.187956055066,0.602510046467,0.846379166535,0.303262221691,0.132652979421,0.538214243778,0.281336926508,0.964696083871,0.491313787415,0.273293567113,0.370151079977,0.982393627554,0.761668189633,0.300571048866,0.0353556583194,0.159492136426,0.360871365687,0.499102781182,0.306876752875,0.773112031217,0.0989872448752,0.934790231476,0.941765291878,0.96809449005,0.382143611962,0.50457067688,0.1235628465,0.805120839713,0.82633931059,0.25115276749,0.287054162294,0.227192490216,0.826430590996,0.0173246360748,0.832425797258;0.499485197327,0.797678673877,0.346867924489,0.743927139624,0.113051466908,0.444298695405,0.377249439182,0.924107026355,0.605948747341,0.0260465573152,0.842911506436,0.829709348709,0.418402989729,0.464049781616,0.328231766735,0.94753006504,0.451283390591,0.79337570185,0.654849488332,0.109356615165,0.26466977272,0.870196434619,0.0268214662833,0.617150897252,0.610783290665,0.0987535681013,0.535476745043,0.357417587653,0.921819685924,0.886412548532,0.38273494057,0.499236715147,0.645949950491,0.433588021696,0.479898477557,0.595078165324,0.377266179883,0.271106976098,0.593067347843,0.746122076348,0.905190367957,0.36408442484,0.78817793341,0.150206912481,0.770528874451,0.780506700147,0.175452770626,0.292086538249,0.673443618373,0.600412652357,0.734017951319,0.566654957246,0.114393493194,0.0218040199626,0.65794331971,0.148000226396,0.848835575181,0.679088122505,0.838018715707,0.677253707026,0.701974750844,0.805231132964,0.448883855304,0.204099918214;88 +0.619477938073,0.699013598671,0.779898257679,0.979892404425,0.50843245949,0.899190865095,0.363114259641,0.191945829039,0.632210450755,0.755828090674,0.779738057648,0.45517554398,0.989693749284,0.32705401362,0.0774252743148,0.357377516503,0.634321664841,0.281043921219,0.437699140191,0.0830620081094,0.0635483535479,0.0430642793121,0.842067749443,0.0142854725138,0.558378084748,0.20102394453,0.280146338035,0.352226649281,0.206510487319,0.754964467255,0.880793797841,0.653665117919,0.204473234601,0.00232962568588,0.165169991282,0.505459514057,0.58402456094,0.362784485758,0.700010036835,0.692152706009,0.090157685987,0.736194568147,0.850659172228,0.75949544657,0.545591225333,0.385107540678,0.533044094986,0.824510782506,0.869600585056,0.909243484626,0.0212659235231,0.56758564806,0.514095479076,0.197310099741,0.599863800888,0.820516415501,0.631614999506,0.934239192513,0.845612362011,0.906067435546,0.926125924606,0.493012120256,0.555048481421,0.721071536712;0.447766595099,0.865600740003,0.553282600098,0.130850335376,0.616892597992,0.739841653831,0.176937687075,0.681913639303,0.624627200751,0.01584486384,0.764331013254,0.132996071757,0.652701037392,0.510717371533,0.0550364092789,0.378940136991,0.732565099908,0.93810220817,0.465038446373,0.0832789192166,0.932702104985,0.214106105168,0.425009571181,0.258186216107,0.333419717163,0.159788274219,0.565438449225,0.99602740339,0.988304308712,0.976692101774,0.42006348094,0.964551714579,0.0734715278446,0.988114506471,0.695130069002,0.385891457183,0.303271851433,0.464958192599,0.523750229069,0.826344243136,0.0386604046924,0.507583453837,0.631237799244,0.709748829701,0.963582430761,0.326982040023,0.381206339454,0.0798195315811,0.584975233554,0.0702950561861,0.134312604317,0.893283949984,0.945203991745,0.990372113057,0.423160023451,0.187619898913,0.339395641974,0.702861332584,0.967928564231,0.493954413089,0.00727799597556,0.715906341811,0.414598809646,0.791586561026;0.370917754759,0.465020853716,0.0462812119512,0.338060613086,0.24347095236,0.45193833666,0.407743911908,0.492081836256,0.385266897559,0.817585526993,0.749944673734,0.192723960523,0.261730260731,0.0333773757687,0.184858165753,0.100841841673,0.334754215338,0.650785152015,0.741234911691,0.17601989495,0.466533977902,0.0422280771335,0.588293589476,0.605609771011,0.649383037352,0.416260491688,0.778967948423,0.714612951411,0.686286983508,0.327396536291,0.0861021296382,0.171947262689,0.810997882186,0.0296796970082,0.212199221301,0.928247853669,0.820442755775,0.168401499914,0.984368130879,0.801176224834,0.267802597519,0.470787529901,0.713109222527,0.658920539227,0.800611674211,0.816315259222,0.493013593934,0.106960016144,0.808842144376,0.116221764398,0.613713068716,0.182531160753,0.482343861981,0.489248745374,0.603561139733,0.130230322082,0.570753623846,0.712543215371,0.11368709749,0.766217542302,0.40342853204,0.243417499627,0.656285872597,0.139363168192;6 +0.196129258962,0.889736947084,0.419743061966,0.0317778127566,0.443285371108,0.297769499604,0.463470840167,0.977593002231,0.91981202181,0.841586690643,0.180139627563,0.842730990493,0.78758700896,0.591607647255,0.563712582001,0.859971120782,0.464165558697,0.453330215937,0.35667612735,0.185298814215,0.076982383614,0.709212942427,0.203795317074,0.442009684116,0.628410936106,0.793731573474,0.81271498071,0.594181713351,0.676702502549,0.484519552117,0.326497959547,0.911726442702,0.591926239495,0.139180830633,0.664006431806,0.752377500683,0.156881296144,0.524970854551,0.148796867564,0.861458114968,0.918261925578,0.858073800252,0.116005869364,0.131391179269,0.593497431468,0.195618230772,0.929895878604,0.188786522055,0.962103807859,0.282230467188,0.0234647875861,0.456482305567,0.825254408685,0.00734766988985,0.40550670288,0.0905935948343,0.533221927568,0.910575167927,0.37240523058,0.273493704407,0.392960078007,0.532210796071,0.0740114964791,0.848891795327;0.41609477134,0.578196755429,0.068710233751,0.992978325525,0.481787237308,0.857693925822,0.141669783613,0.658272481707,0.634252040469,0.226690366185,0.12429187878,0.182907486004,0.278460501651,0.0330243446808,0.152915590933,0.0130120411272,0.326530019736,0.174272110759,0.658955805492,0.906063753294,0.327434557882,0.181135053001,0.621793834095,0.445779335561,0.59268814176,0.706587975671,0.503533531276,0.178132135355,0.355895749354,0.778203084445,0.434409964152,0.324039455395,0.477084038432,0.177187019977,0.665883986287,0.686446023052,0.331619141969,0.546860911022,0.292879494365,0.0568635745671,0.483780673457,0.769537676765,0.00585860355884,0.366706257152,0.851551639421,0.717191499058,0.476402348614,0.744004006285,0.826981600553,0.6232813143,0.361913848049,0.947070149106,0.289264971469,0.534776813704,0.368714215519,0.690439095234,0.860081863298,0.836804800011,0.966520592848,0.284572989887,0.0760787635128,0.304025333723,0.0810193180263,0.436733185077;0.136548602738,0.117337469288,0.512103617554,0.821567839016,0.810893637517,0.626988809834,0.474968939423,0.0724720313396,0.518211550716,0.528000908885,0.746238563437,0.940702674081,0.256323019348,0.594634392327,0.722695971179,0.756040604714,0.7710042818,0.0323569552739,0.701794652625,0.453897138829,0.727962480974,0.143451990753,0.426323998939,0.947391084569,0.42448519587,0.713406815037,0.50319678051,0.985671820575,0.575900424198,0.57100646885,0.37291089755,0.486873060601,0.261018447429,0.659165445975,0.180031224871,0.941649260723,0.446178474879,0.501741609835,0.826890149675,0.230540369205,0.218877137313,0.977855535947,0.576176106976,0.5219937298,0.592150877639,0.239583082021,0.77912302778,0.0729576064294,0.412513287745,0.986276855092,0.191568372108,0.515190702672,0.581273180705,0.966818698934,0.833524756882,0.0910686761249,0.501256957046,0.169686520738,0.634658914229,0.685757106687,0.854800878694,0.378692309555,0.68782165085,0.198741602695;8 +0.119196391504,0.745696247658,0.178998608352,0.468229116813,0.385850393223,0.900524700273,0.200836503042,0.503485667362,0.427189558976,0.867555579179,0.648919609148,0.28672040381,0.822888026328,0.177600439272,0.595618772831,0.216200108775,0.289224911019,0.0719384429685,0.993051975502,0.434398615,0.522230413767,0.549312438182,0.111896116951,0.0471575882103,0.230689819449,0.578463025535,0.829556182624,0.280010845065,0.56822980001,0.481313907757,0.114130329506,0.202233309447,0.972799856504,0.418147454318,0.905923595749,0.461545164952,0.940623886874,0.392823017772,0.941240436753,0.22069071742,0.229575944948,0.186839850526,0.808706510416,0.758174025379,0.511411631482,0.107320992507,0.943425958709,0.385389663911,0.643400215436,0.918559265433,0.917563356621,0.822918894619,0.950388040256,0.10019079277,0.342375813244,0.682241059114,0.690672470976,0.713473039771,0.984557816533,0.964697005769,0.555271800346,0.870175415229,0.993995140726,0.942672338365;0.435503074054,0.791721033841,0.712354543294,0.569889054246,0.506301151617,0.266356113536,0.00685650133728,0.00681911702427,0.827675889436,0.757335342414,0.729893936776,0.631841563082,0.665865918341,0.733834417478,0.51262165575,0.375449616611,0.399195199552,0.302783808932,0.39548627898,0.749818037482,0.826084266391,0.426575059073,0.656987865736,0.794254453529,0.442476523531,0.118565340657,0.108466185604,0.286801042536,0.0992763565785,0.716103596756,0.283123207012,0.0798625766636,0.560623515449,0.374001597207,0.888222734386,0.876650823029,0.17936944033,0.915750709313,0.993248821211,0.615404420598,0.793711453192,0.0458697513039,0.98478053015,0.322348918155,0.000284079503689,0.688114951467,0.440995250698,0.73000979678,0.422850868335,0.672518099081,0.42551689934,0.321038430324,0.517492092176,0.452939383655,0.917232264127,0.210048553225,0.455440128922,0.875139175668,0.965772737113,0.947300477746,0.782220779779,0.0966945441093,0.0131711100823,0.167057221098;0.227956290589,0.547439955458,0.635178922337,0.156752612752,0.320856109269,0.0693379705094,0.789695610542,0.310192477158,0.874449070255,0.819448009199,0.383797134176,0.709946977514,0.231321822708,0.816451152755,0.609779547138,0.657401357272,0.641320884558,0.975072335292,0.00927151775787,0.373124205069,0.366466950695,0.508439840579,0.359808098123,0.91568608472,0.868992223657,0.547652112229,0.547857181374,0.928551460652,0.926519145458,0.721421727434,0.988524865207,0.444992072881,0.429863129448,0.634683386112,0.718504862399,0.195126009075,0.0793708802703,0.0209021997396,0.219142951709,0.18834533546,0.763384606701,0.323935924087,0.0380627297625,0.571025370412,0.927227683026,0.752926261586,0.107748923359,0.191737250794,0.67538084386,0.665151452271,0.875680839848,0.417395842002,0.768995862641,0.69366877556,0.355288621552,0.107085856871,0.849983618525,0.502674608316,0.666233822866,0.658261327725,0.576985606133,0.378251490933,0.728046990904,0.241834239583;23 +0.396901136547,0.0424783429627,0.0139063527851,0.978688443584,0.783570319934,0.852638226858,0.185513927085,0.201248970057,0.878061115757,0.879349770046,0.677284610905,0.138546657489,0.937760088221,0.55176973932,0.566656097865,0.0210921207859,0.0893192253683,0.363772652385,0.259222748972,0.511490547241,0.783187814176,0.0795373545662,0.243320922011,0.146624088776,0.710060111381,0.0268054704024,0.97298561029,0.182185196915,0.589911236946,0.962872961809,0.678709263554,0.0182813012291,0.831451638725,0.351795101944,0.0698336795236,0.0287802202015,0.623057730861,0.554499548335,0.0318949609281,0.63503588669,0.000527689691437,0.773313228086,0.315452216442,0.111083228535,0.95750191684,0.494003489119,0.522477539707,0.387993653615,0.0127917816741,0.993157620749,0.939827315072,0.911586349215,0.961565974445,0.98470736605,0.452168901665,0.500618965073,0.251902092336,0.537810051164,0.14457265726,0.96264643021,0.33336766802,0.296064954602,0.480246948222,0.716838534144;0.842471282125,0.447219641512,0.799851046269,0.0696924774394,0.983611210996,0.380203497418,0.733444063456,0.627719096598,0.286111522875,0.791163711451,0.194745940241,0.401127573461,0.103184182587,0.0559506539202,0.606997591943,0.276039337221,0.929433758195,0.310606131562,0.853945430836,0.517196399749,0.156288144863,0.0482906108553,0.0940823735837,0.493137385819,0.905479958705,0.266085632339,0.224109293798,0.375765826495,0.234290048989,0.779877719772,0.66367926995,0.298409900502,0.685640658971,0.935496863417,0.0750631904891,0.725833719879,0.614588075885,0.193685857081,0.724918625522,0.153144283595,0.133096610731,0.271570018472,0.0264829875831,0.127872857323,0.585901147192,0.860276083164,0.692347929042,0.549025450009,0.758766250855,0.00334023489102,0.824575391836,0.326306252931,0.359158454101,0.601683539332,0.0846182920111,0.00748599755551,0.495685267553,0.586884016047,0.696762322885,0.520274597948,0.507841104293,0.816547431714,0.633533216154,0.29079847929;0.35505870499,0.484593491637,0.447388102544,0.145969497028,0.702011247693,0.585641176445,0.912917029359,0.921534682623,0.652216863906,0.782301418209,0.97023155576,0.618158182744,0.659955489115,0.97284914453,0.494989744554,0.200193360379,0.684732159403,0.754580070201,0.124256297529,0.380360057323,0.245129274869,0.146122975511,0.279648688966,0.167530232411,0.213236981322,0.0891773623236,0.643286416268,0.914365225977,0.558123179765,0.233965267671,0.331209866929,0.192491846643,0.432311580595,0.009929344604,0.85259050765,0.137974957751,0.232169225737,0.721901766934,0.178218583586,0.351672097267,0.539700841577,0.576201588947,0.950948774605,0.372524986892,0.00462151573258,0.823011977936,0.539220886681,0.470699808692,0.203174752671,0.61703333245,0.184323928342,0.921133326256,0.865803474578,0.49124271377,0.235309665065,0.2879469166,0.0180956972706,0.028447700219,0.22314885192,0.161309798276,0.897974549721,0.510072024392,0.187750833314,0.502268103712;54 +0.488258379441,0.71393691294,0.594635941857,0.817737121847,0.572300779775,0.638315170344,0.421048527231,0.527506804562,0.426616988066,0.725331298004,0.065248289164,0.436295641179,0.303458161911,0.635902439699,0.244653279633,0.881653164465,0.645619747967,0.965016390728,0.472422393271,0.0692082314107,0.453719379847,0.915718040331,0.295102942407,0.132808212333,0.247472107812,0.0644189430009,0.905735521822,0.129247598636,0.975964619249,0.577620191405,0.708378946405,0.74454116949,0.227099318939,0.444922423861,0.646796539214,0.667548477764,0.768244344323,0.283991140381,0.603306045954,0.205168461825,0.31882325311,0.341514148598,0.29782143515,0.224052676453,0.331502141195,0.592727406047,0.302325833715,0.52228360802,0.631045164432,0.0754612137056,0.268641695051,0.0214625167159,0.25629100484,0.500389261358,0.949076164868,0.930225031604,0.0533190247555,0.179043593856,0.71516734015,0.387347153279,0.179250686832,0.213892002434,0.223042136855,0.25400289691;0.468081313869,0.500559627052,0.822173412233,0.317260617166,0.360325284975,0.598405070163,0.900359634863,0.781142149906,0.556336612938,0.54515949038,0.827420657397,0.0779300169339,0.979983099552,0.910623761948,0.866167113266,0.541744959304,0.322532494164,0.117992234865,0.187121115921,0.680853097005,0.649934470378,0.327687223661,0.219627457451,0.601679802387,0.348651374818,0.746285593768,0.725005733347,0.0883262423508,0.303506060902,0.771728072115,0.950959322241,0.894582055646,0.501186202629,0.610480521894,0.630871009657,0.879695542514,0.437746713627,0.917151666973,0.634643375436,0.0684558450365,0.428836519907,0.751541439813,0.146555447349,0.8061790494,0.776923984868,0.666953894727,0.925771603933,0.77106491642,0.504353891412,0.582465450218,0.89116834373,0.519146056698,0.748390630889,0.351548006422,0.123182688511,0.444484793427,0.125288503349,0.931118024329,0.840455795994,0.305116912075,0.666879817912,0.138182780728,0.335720004146,0.563956932217;0.3563559776,0.851006691364,0.0250062298118,0.429118997351,0.915992291272,0.630863399579,0.476914971235,0.62471010694,0.0301261534514,0.0724458684161,0.544405865241,0.137931043337,0.716128500718,0.373358384444,0.373933162457,0.968863094181,0.115155253395,0.370789041314,0.745048167535,0.00362200593651,0.566566856816,0.120344987086,0.924884302198,0.351235196146,0.00574853012839,0.625180134558,0.730407980501,0.838571820525,0.49983450265,0.578688135697,0.980761400231,0.623850375925,0.869009872125,0.957822830987,0.373763926416,0.0775084420833,0.182037499997,0.94754603045,0.0859258657069,0.734975848307,0.281350731711,0.540121687973,0.360115258431,0.89098781936,0.208155564931,0.591354046938,0.244637397172,0.75762376873,0.851474006979,0.324437517966,0.720776254692,0.386735193259,0.919345742969,0.347274604464,0.942688371786,0.974199435381,0.659644039265,0.754154187192,0.823493889759,0.372688713704,0.912378918847,0.590618700614,0.719028706429,0.0245580576192;67 +0.681932681777,0.999619902271,0.868405105056,0.410688085161,0.745998171297,0.911716707641,0.192510500811,0.416655124719,0.518990597664,0.463207657849,0.178648507967,0.0407824468716,0.455465357335,0.876582722804,0.00891773151112,0.448301696057,0.209505613871,0.509007534345,0.949683939687,0.369365723459,0.190095209306,0.505101055314,0.115646015007,0.56441344867,0.4816959315,0.903504481354,0.368308061245,0.369802799495,0.516460973293,0.492526753978,0.929322843822,0.780710068296,0.746830575932,0.782285876418,0.842569352353,0.591117234527,0.279661205413,0.492600515988,0.236212239781,0.133096957827,0.0728448112732,0.910154842308,0.136498150447,0.554673742677,0.584616045269,0.752765158026,0.472758985748,0.150681376248,0.319108642872,0.900934231025,0.207784553998,0.783506271536,0.759752482315,0.358965116249,0.590345929532,0.17257753202,0.282621044623,0.528046848453,0.878934591211,0.244946114421,0.553993059048,0.186405660345,0.214428370544,0.548006145348;0.515374021053,0.797957912007,0.0231394577599,0.9940186137,0.60768938255,0.855052737553,0.575710169287,0.860327965902,0.149797899436,0.206501862232,0.121370851377,0.203234905692,0.43670434785,0.184480224092,0.665588096276,0.767048896897,0.520158750156,0.0384191882325,0.831797224897,0.183531208507,0.0144030037667,0.986570960837,0.810449643211,0.343536896628,0.0459425854617,0.024285134015,0.485897322583,0.13953677065,0.251693972223,0.880541127996,0.888416483561,0.364009534165,0.636223227834,0.0017359230966,0.414282772168,0.841043887065,0.464310056942,0.735583167918,0.0822913361218,0.333124352294,0.208781264072,0.827907812152,0.780474069755,0.646997296833,0.0284371485483,0.685970448508,0.702002636437,0.7461153,0.570891405917,0.745710098756,0.0220251440249,0.0838323906579,0.99195417538,0.454210566763,0.293328225006,0.447885284607,0.0613577733294,0.729751740635,0.651363355171,0.790358440484,0.32728735318,0.255194389681,0.384123291728,0.873099537614;0.00558076403474,0.944960348279,0.78713654808,0.532573939609,0.7763257797,0.823838533831,0.225604038399,0.219547321234,0.011436682462,0.482353913434,0.78813946539,0.800116616805,0.992343298901,0.10041976864,0.957336909566,0.277309248474,0.180554588606,0.272249555101,0.346367451402,0.85461009562,0.151017033651,0.698002607886,0.144609920337,0.54928610718,0.776018163488,0.244350915674,0.272574969452,0.160136681659,0.50384738643,0.876687807181,0.0852919734219,0.670912275009,0.629486214431,0.762555838168,0.363073229695,0.946870619833,0.798194393952,0.236067621675,0.364586370916,0.172684461396,0.714937018378,0.135450427036,0.935632509158,0.520118704343,0.337259437103,0.325156596563,0.727078723511,0.921853017935,0.358273296235,0.267944644058,0.0646333424513,0.480169330995,0.18499621813,0.302602020304,0.385968150776,0.447309811851,0.856772435421,0.382074842005,0.984570059795,0.805689224084,0.100160203887,0.669975271067,0.436506037511,0.757704609308;42 +0.884280369946,0.109856442581,0.0473523465296,0.402615987536,0.342213223413,0.825349748242,0.0535596818372,0.718776958721,0.92620350033,0.36892100717,0.881504976398,0.992114351786,0.566162164572,0.723000130696,0.307101062435,0.799812942729,0.885986032496,0.292924487885,0.478254286661,0.26616042074,0.70426537314,0.919955996655,0.889141270118,0.110126116883,0.109331881227,0.728403783759,0.103389581037,0.658771225098,0.822824695215,0.976281639657,0.722045049391,0.721074314357,0.349668731054,0.528786151183,0.450560115982,0.165681197263,0.786436787962,0.658861320388,0.216648673047,0.268863097349,0.725537773386,0.220317486041,0.292391575049,0.181092956311,0.423852639905,0.355405739895,0.282966473866,0.728109637946,0.134806291201,0.872229284216,0.0712985357414,0.17636712971,0.0602590136771,0.523837260527,0.38674995549,0.848618509013,0.927118343498,0.404614308553,0.344325055797,0.315737279386,0.789133172508,0.236613458474,0.354300099408,0.654656152613;0.125875642677,0.34126791751,0.413172288725,0.975230916776,0.711915209693,0.29125074735,0.450074324133,0.477864563616,0.148516347323,0.0291081413079,0.93936131653,0.961394947131,0.214285066646,0.050574857705,0.315000178869,0.16832121879,0.0448956022592,0.248927531535,0.921035475763,0.0643846837018,0.175017031138,0.508560233876,0.144810683668,0.745396224851,0.617811934325,0.0636894624874,0.37854711602,0.722340191864,0.764082793314,0.79567581029,0.433349487798,0.0295806174986,0.358904358785,0.558317740537,0.626074903686,0.181569911849,0.829523185897,0.207194708332,0.27914063018,0.731292575623,0.670131679716,0.650395934818,0.765376522301,0.0312362419931,0.765370217282,0.617143428657,0.449697325985,0.0166165281334,0.361574544004,0.670830573032,0.589104792275,0.397684202711,0.828357011411,0.696804502421,0.0253365735838,0.865348470622,0.898833164712,0.514125354579,0.698780237807,0.929619919321,0.919451907959,0.240616873008,0.850499523598,0.106671276562;0.0452189062471,0.929012178296,0.316013152554,0.877305359704,0.0130277393084,0.0914390813964,0.559037927809,0.721725904102,0.0700546427622,0.315083228544,0.196065944051,0.507579416834,0.188315415151,0.440831572792,0.468511772194,0.830889018766,0.715911938559,0.596928970136,0.447331428258,0.691178520094,0.41347486536,0.192345529866,0.892387854272,0.511571216844,0.569038318416,0.963167714078,0.494347506719,0.283324012898,0.432002301544,0.33055592597,0.106163452637,0.29854639855,0.860486067523,0.102404331324,0.270747271277,0.392871149472,0.519812799728,0.280608672427,0.317886806202,0.396744454459,0.0119514785276,0.740791698695,0.186082573972,0.0636974221073,0.613726539794,0.295162936364,0.645104179126,0.663538944193,0.891100535554,0.684024016703,0.309281119077,0.679534410968,0.412408077162,0.251873715821,0.277772581929,0.75054314883,0.342901216054,0.651977998735,0.103439273358,0.552611961528,0.836638113016,0.471526131896,0.355576716175,0.804718859358;32 +0.947000164086,0.134858333081,0.70069272451,0.0864822224989,0.697216064691,0.954878452412,0.582099757603,0.235959425517,0.364805344606,0.0961578328882,0.0354433260246,0.710984946596,0.481312400228,0.107288454113,0.624533817105,0.477279952989,0.579941175552,0.686163946372,0.109455300257,0.495900346394,0.58166527913,0.578227610922,0.974006480866,0.851156132627,0.577613562462,0.918896883731,0.564252340562,0.931300274742,0.607935217678,0.379201002596,0.0597676410534,0.855948827063,0.411369785842,0.852940081456,0.338130395813,0.797193985405,0.494470443737,0.209796630279,0.112527811233,0.405956817655,0.677923460336,0.757756967233,0.731398762178,0.283173933629,0.313823130574,0.594073084414,0.159428498751,0.203694353177,0.0801086832725,0.306973097449,0.629424160865,0.699116561345,0.854884040291,0.659716132944,0.847077986467,0.800237462148,0.738729055212,0.395192981554,0.0501561501831,0.161277624844,0.352170374645,0.973937508536,0.688464032972,0.0456727332282;0.257069875834,0.53293472887,0.145281960605,0.597417175323,0.993693654359,0.809341068585,0.587910087961,0.922424269656,0.880284836586,0.548454115059,0.953474098005,0.919489083817,0.597524942622,0.466030501606,0.66702732259,0.895040074066,0.950524319646,0.812595723691,0.0444803512933,0.584585801337,0.52304243666,0.853990206059,0.545101503628,0.94711893688,0.142853334981,0.454882138726,0.982430517253,0.571022576691,0.534191008631,0.803955140209,0.286611524177,0.773115804294,0.993495988005,0.548226654231,0.875535607581,0.0433875097546,0.0867651568104,0.669896267163,0.00488368596996,0.998973379367,0.309867284018,0.345581839714,0.526422058015,0.366997579993,0.194450506318,0.554753488776,0.0468360662967,0.63833968617,0.00649573831149,0.749567134612,0.38995158444,0.256520808566,0.308488591217,0.93690988518,0.291840319925,0.526298209637,0.821984239192,0.0831545611004,0.774110492659,0.319070438656,0.588494318478,0.289584080701,0.0119427275601,0.800737303795;0.955973529141,0.0216665525034,0.853021331266,0.313054863339,0.833668593206,0.880998414978,0.6397881579,0.253281062548,0.979180442026,0.0506329663266,0.0284729505257,0.761319485283,0.489596799703,0.590316283244,0.510558464757,0.85840634421,0.135894584465,0.693502456039,0.45311245027,0.914300511528,0.906160536061,0.0255109587586,0.199569885447,0.413098411347,0.0661255288891,0.591953800918,0.638249081259,0.281950348293,0.161280768053,0.778115850324,0.990217243194,0.984958873261,0.0206480380881,0.586337703463,0.0923081851631,0.31841407787,0.733257147051,0.135639988035,0.256739450605,0.175960789763,0.248533149735,0.988689943865,0.803022833776,0.421156294913,0.275578136458,0.0713363364792,0.897381947522,0.00862945158548,0.336983903062,0.674470637402,0.909905341045,0.196313914815,0.844958779469,0.405659580971,0.865657575747,0.379184248122,0.706739906233,0.78273854676,0.406542240204,0.0698219690706,0.711740636021,0.0491313777258,0.682770663666,0.432603225951;78 +0.181032859613,0.371795179405,0.68413419203,0.94395102196,0.480818893053,0.409501624705,0.504077318319,0.91662817974,0.550245658703,0.267457076295,0.657605351085,0.672950866725,0.819888880518,0.0437690966302,0.577650917255,0.0657972485225,0.55721628711,0.26396104741,0.407322406037,0.725018902927,0.188332977804,0.357812830328,0.498644842976,0.939830468456,0.360682614233,0.880443371782,0.715571961361,0.126419695235,0.114064984232,0.708961825276,0.375666755096,0.370157675287,0.899407039256,0.85167221929,0.23692658669,0.420671663705,0.960360600911,0.246289451213,0.640050434257,0.823580363417,0.0883867674075,0.918382932527,0.589047112176,0.771435630756,0.806052197409,0.912904132298,0.376702939023,0.378782509815,0.686458128872,0.369091574756,0.765404337602,0.266458848883,0.240985296076,0.148585999823,0.178082793714,0.788729026392,0.157073337219,0.496814968735,0.112647406,0.134388631533,0.866152133425,0.451037431828,0.94192216306,0.810430716784;0.996234862806,0.185170372508,0.988687512057,0.54287747767,0.932537456204,0.439125559072,0.922280567532,0.157675168921,0.853668134807,0.356846006703,0.407227104505,0.75987976541,0.838744758596,0.572815191524,0.797510548598,0.930805667273,0.295349235097,0.333217517825,0.0519879257095,0.757310503788,0.5711110577,0.855891922477,0.897960223615,0.615025151391,0.509521838495,0.537065420443,0.478489488246,0.388977356746,0.540778380978,0.316134609468,0.850964108676,0.162261775642,0.0663332970398,0.73923844938,0.306277247212,0.886578418922,0.0177363161965,0.138780549949,0.818204722627,0.434225865907,0.489327931089,0.612729077378,0.177150908307,0.793103943686,0.277577923294,0.984348333457,0.840849588567,0.116403184339,0.791998067291,0.57477448457,0.874485183168,0.964918497275,0.0616768482215,0.685001065583,0.940373723574,0.610693276739,0.695091171587,0.559799693365,0.48173674714,0.787965933118,0.208631713175,0.623185501529,0.27159781925,0.858591808389;0.912717742478,0.183361698645,0.11447815048,0.155261922123,0.924329102068,0.68843411593,0.895173091593,0.468292642182,0.810247080854,0.500837747416,0.232083444813,0.565146425426,0.764332516891,0.791929051495,0.826712201836,0.683554538354,0.609423950555,0.569440570529,0.826177759186,0.510121401242,0.759149202958,0.898400615842,0.337911563874,0.598279291132,0.172820326877,0.812892079952,0.482203086673,0.360062820725,0.98745110756,0.65586738395,0.531992141728,0.978358934438,0.104929812141,0.869904546844,0.889118883946,0.54263816138,0.788790324464,0.16271424481,0.310523201054,0.982216192264,0.247140449005,0.993753191929,0.325291343662,0.747169671698,0.511656210434,0.61899890274,0.279041584544,0.825888188998,0.404505376999,0.352160567533,0.993451734265,0.0158412266011,0.44293981305,0.507856543151,0.698404602034,0.856424622063,0.76010830063,0.834573250881,0.367028614961,0.633234173365,0.403539950342,0.372445251609,0.155123550768,0.79882262804;80 +0.430345648544,0.673641601303,0.437948263062,0.465349478104,0.657504486378,0.801542446973,0.275181605063,0.151338135562,0.991431623327,0.519973048089,0.467374287867,0.189149955856,0.331000883976,0.790727991357,0.970336048743,0.598470901796,0.769918903698,0.978934184584,0.833343311873,0.726542692388,0.784698012854,0.715716092471,0.191320100861,0.858925654298,0.259871380998,0.682121996827,0.934887290917,0.30937899148,0.758600822079,0.816500222344,0.738324240084,0.959253514264,0.0997793060094,0.507338231639,0.605855286466,0.406270725261,0.829111487642,0.537103841475,0.673418331616,0.43750249495,0.229735620605,0.51839278021,0.885471300903,0.176113579466,0.55716277069,0.987935124998,0.0107174425831,0.298464012699,0.784224633629,0.0640660995198,0.782971049432,0.330579969838,0.0301875580635,0.781065855075,0.0208292363402,0.279570299109,0.183283944206,0.0672919534086,0.727649707542,0.577108806958,0.720672919216,0.998368881374,0.498647322288,0.408724931919;0.402447880173,0.598860045305,0.155761622256,0.668828526139,0.0420593033032,0.616509080998,0.03037887007,0.92092548675,0.78647021856,0.539533186706,0.760855762519,0.474877486992,0.638880631338,0.255863482232,0.780446755391,0.383529910007,0.334810022239,0.995176691482,0.863498734479,0.867347130333,0.727857926711,0.124451886274,0.70893852134,0.507769429707,0.853815599395,0.735671293644,0.21649734753,0.270319373588,0.135455321128,0.0506723622052,0.302517767518,0.761738000973,0.837651727518,0.818403197533,0.781629300657,0.977535450918,0.535064029592,0.214122998071,0.330050027551,0.479941281407,0.780719489974,0.621694084504,0.101841461225,0.817852370374,0.0596088638182,0.140003365905,0.189253962875,0.0641563552849,0.205110657795,0.251085466302,0.576589819241,0.329142330934,0.900842083393,0.546247256277,0.87051902104,0.308121049928,0.123115359487,0.73110172294,0.241851634037,0.83840519145,0.658989881302,0.0393078414319,0.800718093732,0.6548905783;0.189183596039,0.117967657451,0.423353496262,0.221172046567,0.452909934019,0.9124191413,0.78202698562,0.397510985041,0.628417792735,0.571975514862,0.337912439948,0.615403851696,0.162769386377,0.934459057768,0.563328708276,0.799574508192,0.224044995079,0.530920977933,0.683392449396,0.25274218722,0.968229817765,0.374855319743,0.0880404598888,0.34211803539,0.197508634857,0.633032262704,0.858562264578,0.240517809234,0.367938301336,0.19448350822,0.129215729793,0.171260330773,0.484396229161,0.639908697033,0.414777645849,0.26918199185,0.282186796409,0.093555573268,0.112617439168,0.880206016626,0.278692605357,0.634938876435,0.908054881824,0.69956004312,0.848136919182,0.914857136773,0.31691935736,0.585304327966,0.438517387578,0.892968492243,0.936198388775,0.280748498762,0.541249878633,0.424521385344,0.707722675333,0.481622548967,0.857920151068,0.708210863347,0.971634297164,0.67465013912,0.914716772201,0.899652447579,0.831815843617,0.767311320746;81 +0.614484463519,0.687980100365,0.731359729249,0.874521486683,0.874081910973,0.305737910677,0.217046605849,0.246851405939,0.898448495037,0.245245507061,0.259644744957,0.851602759916,0.971402255288,0.188790435746,0.156867340573,0.529932851932,0.442007407827,0.369285960129,0.159857727323,0.0913676122024,0.646732049825,0.600289944159,0.638373314735,0.656939906245,0.488579132197,0.56499546558,0.273635761332,0.23377151509,0.267293649748,0.614962631796,0.380195108539,0.751814452971,0.744198764694,0.240673218627,0.266063680422,0.193398117927,0.764915969689,0.983317462457,0.144690208094,0.822818716165,0.368946524014,0.0949980637507,0.452301614166,0.46833499494,0.460744122958,0.891293593542,0.527306769669,0.646435258115,0.456973141103,0.280942025394,0.0952740231689,0.726033508637,0.683689683277,0.785063453855,0.220389780946,0.945093390802,0.814966454347,0.0366731071021,0.727054968232,0.0130248418137,0.530383227593,0.38082491075,0.152723211782,0.200224277687;0.765502457308,0.358289694879,0.824673321817,0.971629926037,0.448847172738,0.739406546732,0.326207156802,0.116756220938,0.59177000416,0.634179373571,0.397719992063,0.597150585028,0.0671424387515,0.529772048307,0.417379548819,0.582555159056,0.498221935519,0.415417008013,0.473778928289,0.48042671755,0.122312365818,0.852956354692,0.80501337706,0.721089053127,0.928556686793,0.75556791606,0.849998101447,0.1417929415,0.0725522185485,0.52629011245,0.570965009032,0.81420913496,0.276569026406,0.700565885536,0.766337552759,0.328581877211,0.124826094487,0.959142158961,0.488782601927,0.234888443336,0.156036329751,0.40573872004,0.824711399233,0.390404193328,0.0603668050243,0.25587965111,0.576965255928,0.40308454152,0.432422474955,0.923953743206,0.801016486044,0.360651903356,0.950403389297,0.424733726628,0.384153673898,0.742898049501,0.785341201595,0.34683609552,0.895083006778,0.885200134153,0.195135533899,0.91060684979,0.648569181243,0.164132024738;0.947908398564,0.211135356929,0.641343524524,0.916933341872,0.680661678251,0.00804441130694,0.0542243753451,0.284158885788,0.236800049871,0.949263675415,0.0265650658247,0.753732147096,0.372721827608,0.359904827804,0.996303003384,0.722062195986,0.535360513384,0.937853060733,0.93622999557,0.137202859135,0.445310419849,0.105414863343,0.559021350914,0.0727564069377,0.630538948591,0.922235695392,0.856556781212,0.968339468812,0.526608316995,0.0988652959056,0.703633095874,0.562376092666,0.880072611026,0.510054058873,0.611133680704,0.553502418397,0.415076802468,0.466419791572,0.150305932865,0.13303913086,0.840816673028,0.956059916632,0.106685497843,0.808946558928,0.225635087129,0.0420771772306,0.45650845407,0.491753495705,0.844956506594,0.762675636361,0.00821883689089,0.701797202125,0.505186787655,0.208009002061,0.564856728566,0.386084741696,0.941430966813,0.0250367872874,0.84655550597,0.00558163096764,0.382477524894,0.156052815651,0.431771565246,0.106483848842;71 +0.768778007275,0.527649743238,0.692798773707,0.967096733725,0.939380121916,0.625739893337,0.402797632784,0.113524327363,0.51415160622,0.751723772008,0.831061441194,0.206089568827,0.358862002026,0.402858969449,0.269366189835,0.651791238428,0.874237020656,0.468113988929,0.373984331716,0.0406157138977,0.309049517039,0.323519522564,0.473370713949,0.262642471788,0.845880234846,0.430127817306,0.766470633757,0.582177985048,0.0361529017234,0.604149998176,0.309508013912,0.721441998828,0.757051568112,0.14829846443,0.509617132509,0.982748436061,0.485538768019,0.081220405924,0.039522729097,0.350414139956,0.960886943693,0.277022544262,0.620766940691,0.296994964149,0.106994403758,0.841504353257,0.3305448978,0.926606043469,0.499512668571,0.476268207867,0.916778731613,0.947948338568,0.835978701408,0.566958957788,0.363735039802,0.200887184887,0.0994688409489,0.986221109484,0.355006077669,0.0177651916665,0.362012749425,0.783182582779,0.199908083649,0.642185715063;0.163776329039,0.550791368661,0.729600039971,0.0516744972336,0.0997202478945,0.609167855033,0.96463587693,0.669472972176,0.666178029368,0.75538705792,0.224334820471,0.371357452831,0.0124055686075,0.36923109141,0.762254765293,0.480636931327,0.198779460061,0.0726921057127,0.402759152886,0.0458528688208,0.675535649487,0.680349452534,0.64664896945,0.579070924072,0.301630199813,0.271185879917,0.222791069743,0.151042288414,0.418070261437,0.656242340943,0.813261576207,0.317454542917,0.559597835332,0.484862277288,0.216681988526,0.589632438069,0.670093467252,0.770597054132,0.80393544228,0.489055315872,0.00789159829556,0.111046121994,0.389256423485,0.453543507589,0.10731381449,0.03567790282,0.12179855721,0.191465069639,0.332068795395,0.776100351333,0.310237103357,0.421167932466,0.0172966243306,0.356147959513,0.727251321469,0.446194050033,0.944992475074,0.0973932556183,0.662616826427,0.0822663410123,0.177345292073,0.703767842552,0.4674772239,0.595710787867;0.645803655656,0.513993522014,0.486298413376,0.397721099811,0.909121275528,0.0562044407728,0.900851702341,0.600260858949,0.952692008678,0.141949379456,0.195804528506,0.362656381336,0.848447266762,0.768073880515,0.338280592463,0.448918535067,0.994277251836,0.69798522761,0.373339877637,0.8904270187,0.427481029925,0.287657538609,0.113022131377,0.990032083855,0.466822762125,0.556898562456,0.724847627696,0.561801646765,0.662574968582,0.194974399357,0.192341149937,0.326282538088,0.730529789666,0.668448544525,0.321814145628,0.88907380668,0.367382059604,0.551893457791,0.864277993145,0.71876696029,0.262411342885,0.964746296392,0.811632001711,0.84874782034,0.394072759812,0.689146350093,0.193636498568,0.411288906027,0.264754912243,0.389974536339,0.835362763217,0.70797831301,0.179140332845,0.458553383405,0.582366569775,0.0859040905517,0.718045660833,0.54170314029,0.80852974269,0.472332390488,0.606649285956,0.0584848041169,0.593013155859,0.003983716558;23 +0.785712790142,0.369755596813,0.75050582754,0.207814195318,0.644861037219,0.931346928858,0.243043341438,0.354839646186,0.225288907291,0.449571450278,0.630619894689,0.658462871126,0.0653578516149,0.111756276995,0.793737523099,0.10888683063,0.190748212627,0.820297692497,0.735342332424,0.504720614322,0.0882196967226,0.868469690178,0.223506008545,0.175979307319,0.65724386913,0.381841475984,0.0504285918878,0.15478557039,0.460412162297,0.770852618734,0.559769032956,0.514133603245,0.981307778073,0.799970291349,0.826790146327,0.699930859022,0.842296939125,0.942709045918,0.711847134819,0.100325152439,0.140420400009,0.424711957707,0.236279243519,0.80727969423,0.958341555567,0.568171175223,0.40178706835,0.434942532844,0.457983573695,0.864382523323,0.319707784033,0.198552867946,0.421330861686,0.463462299363,0.152603153882,0.410558927434,0.0260979042025,0.824341297994,0.578673136655,0.983097215401,0.732195310628,0.0665892747439,0.654977653937,0.326000112545;0.574280812733,0.329399385068,0.958154632071,0.614762342862,0.656408317134,0.448782220324,0.124544963647,0.811072186087,0.410470051296,0.440370982016,0.560778608633,0.873670732021,0.368779060081,0.445047453996,0.239369210222,0.810980154519,0.539964956686,0.343600798144,0.550151651778,0.319852276262,0.96723559572,0.748048894967,0.970499337452,0.348174232159,0.370465890733,0.935457981306,0.52051364378,0.0149867728148,0.821914987084,0.823042558585,0.886686079018,0.213707748546,0.582630993966,0.456426303339,0.724202677861,0.444039041527,0.852029565218,0.480394251528,0.360557842436,0.181965849738,0.298533732092,0.212353215496,0.514194717772,0.121827503102,0.919245307702,0.0895706788965,0.912299225878,0.29725266699,0.780557409671,0.3820227855,0.647136286608,0.157112069555,0.342458563885,0.723497493134,0.288949394057,0.673226735355,0.127044287871,0.853489523493,0.436954581215,0.32540256971,0.765213806033,0.215851690012,0.190273682113,0.469928736065;0.733522916983,0.0026003812886,0.558058266496,0.0147403276294,0.739251237317,0.762655131528,0.37503005847,0.467622087442,0.433762106855,0.585057744441,0.321613474853,0.0688632495976,0.126033321019,0.514520310746,0.369396120596,0.238562972444,0.503395386003,0.291598746253,0.354510277316,0.716353914256,0.595763078544,0.919463080709,0.695088099349,0.273045720515,0.710111732863,0.937521388249,0.105845517051,0.361246118816,0.333661993506,0.673208940801,0.198337350918,0.292230207037,0.201928687477,0.386468381035,0.249211483687,0.344031116105,0.201513669589,0.431190081953,0.975568964205,0.313389639087,0.865697514758,0.0499548527167,0.558263305128,0.369287467509,0.974845856403,0.496672746751,0.118050520009,0.241226498529,0.140403906443,0.724587993555,0.973169333768,0.668460172461,0.802125914913,0.41083173977,0.894725008377,0.136279143993,0.551515438651,0.00192432249277,0.56540716369,0.167633867716,0.840149559261,0.736149210271,0.768982827288,0.878775940912;37 +0.446442681007,0.334785097048,0.906313023758,0.647947756149,0.379962876429,0.0116336913779,0.229805576674,0.837671570899,0.706559169558,0.528073473494,0.654216050762,0.843953221915,0.276534287429,0.984455365721,0.599371765025,0.159859166427,0.0282592737966,0.52662892795,0.389060595615,0.284694246403,0.751182054196,0.135454194931,0.965666696596,0.366336384978,0.595340900326,0.0667852821652,0.902670910219,0.70376154779,0.339543391617,0.117206541265,0.947850072467,0.974498917797,0.409337532507,0.905006763641,0.0264208631526,0.344485305323,0.0723221658131,0.988318576591,0.0937795942816,0.413796751027,0.110567681253,0.788045644569,0.411675268613,0.0378476804815,0.666610693603,0.38818756563,0.988159212737,0.472065775403,0.0698961388356,0.332938893994,0.139760238948,0.560829974091,0.801078841212,0.196000704748,0.366647758171,0.696003290147,0.872936917016,0.902957219341,0.973479767697,0.858775146464,0.167564565799,0.864978571357,0.577427036508,0.577429109508;0.761433134647,0.701900061455,0.696929092253,0.74781223622,0.140285764888,0.765350198561,0.498560678719,0.787655842638,0.958873417038,0.794911260809,0.744817267658,0.303628230142,0.0638075443523,0.738289364014,0.27183285584,0.350048723422,0.952355182965,0.456903650981,0.916190852933,0.916892596179,0.0702282353436,0.815021506116,0.335338228224,0.851320668021,0.739532261514,0.900104310507,0.400006318661,0.269925969395,0.220912965553,0.792284275309,0.718015572013,0.200689251236,0.257857058707,0.52504469122,0.268653006204,0.502396601271,0.533536577058,0.086244141264,0.317915624085,0.853031703439,0.125852348084,0.750307254051,0.789134316479,0.426951457019,0.106169046535,0.739152021167,0.56407044831,0.374931066943,0.730157121602,0.480794495352,0.315640461352,0.831330510642,0.731697072178,0.655892337216,0.059333809282,0.914697711586,0.639295875856,0.326710857327,0.0275368816865,0.901617139034,0.835771419934,0.1047478408,0.0700447323243,0.570789334591;0.325912105066,0.796039113692,0.294139184918,0.555545033538,0.85883509672,0.0838298076082,0.406284859884,0.677947989859,0.0361338862907,0.118754893391,0.283640201124,0.580898862897,0.0179577593312,0.752934356693,0.991970574116,0.409265128092,0.543398275817,0.1600448465,0.0970302956172,0.806232715174,0.730768759342,0.433840060474,0.436594638469,0.571616514452,0.589823761052,0.63607793102,0.581846070368,0.307794641654,0.326210046513,0.0128466109631,0.531890586508,0.397007318862,0.0840648637245,0.0761985375088,0.11096137953,0.151443145406,0.818822196411,0.297107545046,0.226344730094,0.807586101184,0.241125506302,0.363654086395,0.934099972861,0.929900396303,0.62956101727,0.282333032105,0.593974436795,0.913124541359,0.203950144367,0.077052853136,0.0295946362417,0.259446029876,0.561419065772,0.0807864985189,0.00131058628491,0.178227137714,0.444561511988,0.904458809171,0.216132880178,0.339259743831,0.3170478096,0.967271707241,0.0996847102124,0.242031221033;84 +0.259911649958,0.278046015971,0.406268983175,0.0132805929219,0.592142208922,0.758063640658,0.467730374947,0.69386368873,0.0875390311035,0.381704814578,0.455468807943,0.35857629465,0.0344496474818,0.787803333136,0.339673991894,0.534648160903,0.991234863864,0.0109207591613,0.0414142611156,0.482925452998,0.352888176337,0.244842384644,0.40180295373,0.747734406152,0.727934084378,0.192660450579,0.506055677369,0.356827719423,0.95434886628,0.660657029898,0.71484238926,0.0700736425616,0.326609784053,0.447227144819,0.658655533545,0.756967770771,0.280147573127,0.288907515084,0.558425204538,0.976630849869,0.228511580469,0.773601862833,0.625985515807,0.835196622839,0.514309773495,0.986082759421,0.57813123231,0.973749012943,0.787614840078,0.33769743318,0.230343876692,0.600044532008,0.608709412416,0.479727379564,0.679588583771,0.754097640402,0.0147644948483,0.202200864299,0.92980267284,0.809865548133,0.952516514219,0.462662291104,0.159734247239,0.660571239357;0.892010414091,0.8235981979,0.356711060581,0.178751045571,0.862931390855,0.783215205183,0.833978871623,0.939646851198,0.875921813016,0.786965985999,0.277752059396,0.546439558162,0.310670704545,0.0818085785165,0.583674847323,0.6354025513,0.345067153005,0.168383761769,0.700871735041,0.504761799574,0.748045382727,0.126997667079,0.678220614861,0.821681412255,0.495880416113,0.255379214793,0.216182896249,0.742702811152,0.940925525141,0.0439927740244,0.0716926947733,0.468073553126,0.588551369688,0.488379651439,0.931351026845,0.41401470945,0.962867624775,0.282315704325,0.534859111654,0.848396334784,0.153658307816,0.644320494505,0.363993309761,0.524583124629,0.48022081716,0.363307812238,0.230350976017,0.841825280156,0.757253709148,0.571810775296,0.771079213927,0.982283484939,0.398198091042,0.706310131577,0.188553337591,0.569415450141,0.0762564790518,0.435863408675,0.554952773689,0.174493733335,0.149894315711,0.0915443222576,0.651578629771,0.0243141612233;0.697701185915,0.932308202765,0.598097212357,0.885373515676,0.551975709805,0.587239951815,0.516300188403,0.921603727063,0.442839011681,0.891346312765,0.0994069692893,0.977482237091,0.553973763852,0.553578458605,0.378476779848,0.490946119711,0.595050882349,0.743674276505,0.385524242668,0.634771068717,0.747419868877,0.357665395503,0.643320861903,0.482974443408,0.699884503772,0.958367238515,0.804445710702,0.773768415021,0.421683962714,0.188401266816,0.527013027068,0.155457578999,0.353132140142,0.534020678981,0.657137288601,0.405441685595,0.927844345771,0.292595845096,0.5754231647,0.914656701599,0.505291470591,0.592238888729,0.122145436527,0.540560181386,0.8432510289,0.155710445645,0.561823828368,0.638358267036,0.699997078991,0.972348707484,0.082525500916,0.920066482161,0.242024293171,0.80582912518,0.734711448082,0.80581253418,0.278400893899,0.985058187053,0.0675635157351,0.197157628541,0.392293446237,0.213446836485,0.975583545534,0.765117209947;26 +0.0683079969984,0.942837567238,0.982819673237,0.485413684048,0.3309783694,0.286335262561,0.204313239971,0.323888678855,0.253896327974,0.81418626612,0.468309980671,0.846837237239,0.50578878465,0.327769901752,0.873249682821,0.463405540794,0.40698324966,0.39730373834,0.383868889503,0.810170177927,0.783479236321,0.905540603786,0.367693564251,0.0438076986349,0.732525495103,0.378751582047,0.0635888844325,0.982805972963,0.360824646405,0.0899200948937,0.495294504115,0.786322970475,0.451082432003,0.0917343244243,0.409036183906,0.8832768125,0.92336210705,0.148975110361,0.0147057344732,0.445592203925,0.324966092073,0.221704680278,0.927296480868,0.872229681388,0.0913704830187,0.946985540196,0.71967409929,0.506426751763,0.554543124624,0.0717891144081,0.638836567323,0.374577270908,0.709736621786,0.507848762813,0.359219200583,0.691479297698,0.129399187433,0.101744294938,0.582260955134,0.99766902273,0.466159587967,0.406206313026,0.715854764219,0.236746442981;0.879299998596,0.614269805258,0.109059143837,0.51258734979,0.781318244935,0.432660332656,0.716728071799,0.378241508579,0.59558686696,0.391214770871,0.162605976323,0.102027294887,0.993540705415,0.442291333279,0.707510115066,0.724612351404,0.0581644707407,0.328676577466,0.340052196918,0.064383934763,0.446142205771,0.626923757645,0.350526695811,0.740373211634,0.802952015471,0.0810283016306,0.506837401827,0.810862394937,0.462004913222,0.890198077643,0.978696556459,0.939895638595,0.377775580505,0.995059104798,0.155745825276,0.986915415732,0.385326971061,0.808932904814,0.949774238128,0.284409179608,0.365802028755,0.0564818637446,0.166247953851,0.00310583551668,0.396330967184,0.294207898043,0.486438964721,0.614645338235,0.296176725961,0.136785975706,0.836293539973,0.139560778486,0.664708095613,0.0194177748333,0.723780131012,0.443363100667,0.995293920136,0.2644267723,0.723406602639,0.774889477835,0.464993834751,0.310450399594,0.57433013179,0.633873529872;0.995443896053,0.875833107539,0.393069540783,0.0669539571048,0.455551483947,0.963700362733,0.369345297832,0.633207423124,0.995877200847,0.793666989492,0.395744715952,0.760494952793,0.890682096425,0.0358445134046,0.281712768106,0.428793011564,0.374777310502,0.434606725884,0.0264548847706,0.839970428929,0.583602952229,0.217724162986,0.354324244559,0.460887750844,0.647759834826,0.352312249231,0.640010527261,0.871287313236,0.795612857814,0.835265479418,0.0456905654972,0.726157040886,0.537908624431,0.694339942551,0.884654515402,0.567597746093,0.0950087419907,0.844926600615,0.510991608739,0.951764953855,0.0713213898888,0.53439242606,0.751870891582,0.212735572732,0.495631500805,0.840905378682,0.949364820605,0.283628856422,0.976844638404,0.767614340999,0.41514515616,0.988958819273,0.272775321342,0.218840505396,0.292024269519,0.110543455277,0.108972413714,0.646682755623,0.548680334874,0.355156363341,0.894973669061,0.582947611911,0.600048086068,0.846743517901;71 +0.305682562963,0.692893688601,0.334272420889,0.000735024960544,0.790378791109,0.682154782788,0.478318157629,0.431623655506,0.931011759074,0.577566228516,0.912091980072,0.150389780128,0.77906740555,0.603059299465,0.814116260165,0.35464973547,0.468829509378,0.0724053872623,0.316878576818,0.123570501745,0.542852477806,0.589426440399,0.0518509951345,0.772740807185,0.642085448628,0.0673498713164,0.823116573899,0.015052254308,0.0603727006334,0.706077507139,0.97065424275,0.245688728339,0.616552164754,0.622882196237,0.112780499038,0.00603138542146,0.529095787968,0.0230730153915,0.580428687135,0.0987476052709,0.594652448059,0.00315720985366,0.546450738885,0.651874022035,0.306367284356,0.733084853204,0.535043852632,0.920077477156,0.136758937535,0.191855188559,0.571720793458,0.5675731704,0.916309724636,0.404177933794,0.0845268721453,0.482763595233,0.291855389929,0.278681727777,0.678612841258,0.176515607932,0.0917670690837,0.949065476793,0.832769815003,0.676527490049;0.670807012595,0.34296467837,0.70828764644,0.68083147185,0.96134446948,0.221582551345,0.0774171703543,0.807514043595,0.630956335234,0.440544882269,0.172516349946,0.842188337489,0.285249348613,0.795053899131,0.369585857038,0.793796073963,0.959038266575,0.443969812766,0.825530936521,0.0209323769085,0.715804265536,0.766258331526,0.871740429701,0.572182113319,0.303798826259,0.674691443372,0.609253196602,0.957264454763,0.772511866761,0.343659620465,0.936977836612,0.967434767685,0.403159300306,0.131220701004,0.891318613705,0.331645712156,0.92778165459,0.562644871408,0.303157070085,0.960275535137,0.910580206177,0.569017016912,0.196949487985,0.627460186415,0.288225438431,0.229167517503,0.0792259040279,0.170127421103,0.36678645583,0.699434685882,0.211538021447,0.850269216861,0.670642082404,0.68367264812,0.999105051125,0.414358516838,0.107311394609,0.63301728512,0.256148574587,0.816622635863,0.879712952362,0.424469664007,0.505866301552,0.93685690775;0.0646171595706,0.93564772801,0.424225262084,0.277379807117,0.691886956616,0.443938076238,0.74150512236,0.804925283605,0.305528830257,0.67687249494,0.775776827411,0.771254413367,0.130692969143,0.122121073494,0.820302657447,0.312784221015,0.328920788564,0.674755399014,0.383389983961,0.961184491033,0.731798203675,0.098690343667,0.753977864972,0.074351592861,0.0540157032863,0.602747465515,0.394164321579,0.0613007663151,0.36914283313,0.883796542493,0.792397192569,0.349578271251,0.896359364769,0.434119834681,0.67463802318,0.00176244641004,0.633712994584,0.0863865318734,0.598595825579,0.717930711818,0.128091348416,0.671972233606,0.255838894245,0.210360096444,0.00208800093069,0.887254032442,0.249258819804,0.940565981336,0.334538897924,0.826705756596,0.17599491191,0.403492089337,0.298026683924,0.101691182223,0.438426486815,0.0838494414443,0.612657488193,0.963250424285,0.0537817922404,0.991957915454,0.190869559372,0.263059591786,0.93922628398,0.284694018318;56 +0.317405419512,0.566589685027,0.813417110484,0.395504710068,0.872367272095,0.886492575368,0.714467097932,0.23955789955,0.101886697055,0.92447114707,0.0632307598732,0.0503578729662,0.763169521805,0.273753964738,0.95957692763,0.0423658709601,0.932083114307,0.884925395677,0.567044901617,0.25185408916,0.558942519644,0.907628990261,0.696097783313,0.90019990433,0.650080304834,0.280576572144,0.688183809626,0.942003733886,0.0108917077581,0.713721516309,0.400170381747,0.133697662175,0.19921716289,0.64228004434,0.559451100177,0.46161860358,0.566775021103,0.881211153554,0.426667061625,0.116596736086,0.790407463374,0.0912583148804,0.917648658864,0.02541859522,0.640178593286,0.0294268158807,0.537602182516,0.392858571823,0.172881467179,0.310838514552,0.959877984674,0.723144260436,0.466094293122,0.0569914181,0.169285266117,0.904514202317,0.126926008155,0.902374870675,0.475528985453,0.728502354237,0.479216161288,0.249913522039,0.0754368618546,0.686165189753;0.654012699263,0.0428258723404,0.429494153512,0.700264009033,0.5418031302,0.672651660765,0.678596617189,0.576959409829,0.326882494059,0.0843089677817,0.909194628636,0.716217388949,0.698577663543,0.990260904694,0.173447584254,0.568896186123,0.265229091208,0.961745698433,0.8144919224,0.110034358371,0.17187533501,0.694464320083,0.835524247829,0.374859114781,0.692997010476,0.679531649671,0.520397669663,0.654198129548,0.528445493656,0.244525455936,0.970191374114,0.414558891277,0.904110925687,0.784231422857,0.260556741588,0.0907436110542,0.82781352193,0.593343620272,0.417585775832,0.451451886785,0.13223017158,0.811090494141,0.0990281192335,0.0130983436475,0.898026115413,0.990914573842,0.622778107114,0.719614052896,0.128149300123,0.207484081006,0.773176382761,0.610023888011,0.936624988436,0.664670948427,0.128015629042,0.425094359892,0.383857400456,0.669006367601,0.338643838504,0.718472536294,0.616972855492,0.662690825589,0.837926272242,0.39224047719;0.839829852752,0.532640602144,0.0740501628529,0.492898583655,0.595041809335,0.31361266284,0.254281189034,0.775766423807,0.698708529279,0.234998806128,0.807930363656,0.809665028066,0.495110762351,0.409468560955,0.236099460945,0.796374410181,0.301886587965,0.523263206362,0.992388521256,0.912500133321,0.0453528324219,0.23340501751,0.546937328461,0.877766364262,0.876273122032,0.139130744551,0.941520873857,0.185032284421,0.711453684596,0.681628063106,0.0328912146796,0.530350689392,0.733841827165,0.694579876736,0.716736209185,0.816750581494,0.317007294866,0.135387378754,0.0282392836142,0.508997043685,0.14290773507,0.957816568467,0.356616016609,0.410928213407,0.961013417002,0.147834178709,0.799869966476,0.86723467749,0.883723172733,0.588602129899,0.699756662933,0.0272387405723,0.663485892288,0.918751218891,0.0749802683034,0.0304653328014,0.722232733991,0.753934215752,0.0537746977266,0.0945985199236,0.227104712484,0.791851000076,0.583094058131,0.326744075451;51 +0.953608551344,0.486805735355,0.579326924194,0.139165659484,0.983474278246,0.119842728439,0.175837873112,0.855107214949,0.126879667493,0.480201159744,0.41687842487,0.241168882754,0.100762929992,0.087723094892,0.763679579062,0.933253104673,0.0620239827582,0.700957090546,0.464927492338,0.312520055848,0.49590287057,0.522292724653,0.402059967623,0.994529805079,0.737270994946,0.19005204114,0.752470021502,0.147030996399,0.595340729884,0.100540537095,0.373750127822,0.848068158956,0.338194687842,0.738885120239,0.883454580107,0.848985458119,0.894285467799,0.463695829743,0.403233218679,0.887408901909,0.0579492779556,0.356847148121,0.685199011057,0.107435202648,0.0822973130565,0.741324090304,0.91022178275,0.60789237417,0.607127192891,0.284540869452,0.630829872927,0.754169193211,0.0257198603957,0.039874600285,0.230453335282,0.51655719425,0.245736424874,0.817976855311,0.452563243734,0.27437182767,0.413105796997,0.239348570031,0.98580431371,0.987074610883;0.284826932411,0.852616457098,0.742250308098,0.630535543697,0.338246181548,0.484825981669,0.95131568183,0.0376407711737,0.197662990952,0.85722400252,0.18847149239,0.625900530325,0.141969234585,0.17594968814,0.226620830937,0.897432961963,0.354813341725,0.730822260917,0.420003634412,0.869299258837,0.342243574508,0.995025942557,0.678865674547,0.341016841411,0.0916937567611,0.357062610415,0.5015262582,0.911070356947,0.960282029131,0.205572958869,0.278639045178,0.823728431675,0.225580637079,0.379095299578,0.822417390158,0.743248135685,0.929490297856,0.522151061109,0.567836229633,0.176120958177,0.723639307759,0.606387516032,0.661312330589,0.656330932105,0.785943280619,0.716692256564,0.336503339426,0.226618746309,0.329371889023,0.939518156016,0.71019646424,0.275182451926,0.535101134058,0.168335880637,0.923663823245,0.636185125432,0.0853325911033,0.425576802564,0.379544592186,0.783950414178,0.024711712433,0.285636075385,0.755809623972,0.132055445389;0.96476433252,0.240179509644,0.694552059712,0.968953918893,0.992799874895,0.631922675621,0.975976806718,0.402030807822,0.161296239341,0.832321619973,0.79027833263,0.203748271122,0.760964565103,0.749662705925,0.838100992563,0.281911315821,0.373099747205,0.664187761793,0.0485882573083,0.982488290085,0.963404680727,0.489565211203,0.452166200854,0.728592454627,0.30010383572,0.762437098531,0.338487730846,0.304648232771,0.860541020122,0.655288293748,0.0829656296967,0.103136671656,0.566022090971,0.76932103738,0.8148290271,0.715185117104,0.833975309313,0.74424298167,0.328751789076,0.704352415912,0.831798471531,0.952974495753,0.633382216621,0.145281479368,0.997782957821,0.157403007199,0.386837084184,0.642924922115,0.987021421316,0.710912676513,0.566137859902,0.761129926783,0.174661716527,0.498933162753,0.230079262649,0.0272109224196,0.953858728572,0.372485696409,0.486347063148,0.669693409642,0.745210879975,0.183758706622,0.755734508608,0.892205664947;42 +0.0706190174701,0.211306203887,0.666288295494,0.836265041878,0.568386354135,0.587332929902,0.355161708216,0.306693480742,0.050324883862,0.495668429977,0.146824620354,0.748675544972,0.353533309208,0.452813525032,0.39356574987,0.676607718568,0.960506475872,0.368578320044,0.490322938634,0.258477345883,0.628925696247,0.886181644037,0.995428852281,0.493463230817,0.598075281473,0.704536420066,0.993257816311,0.0579811787219,0.226996800586,0.0305009306135,0.977657098879,0.448018674572,0.0475010342104,0.131844335083,0.497925880895,0.208399287924,0.378516508637,0.776634228495,0.227277315495,0.0401737331713,0.180356825694,0.18073396787,0.0162764673739,0.503861268837,0.258980137466,0.524720110529,0.089883919817,0.268340188927,0.113055699913,0.0597767659812,0.62074758341,0.668010264834,0.907604030273,0.333545089344,0.307112669891,0.85612182106,0.290104387824,0.275830421915,0.023282491087,0.790432923988,0.875629650223,0.339896044185,0.235951879169,0.794981142027;0.423359454274,0.682775305757,0.607484008002,0.255086787273,0.00195338960601,0.335969051278,0.175798263123,0.463419586246,0.205896820419,0.234406824708,0.162165402516,0.986199315804,0.0265492682895,0.18889656199,0.691016839731,0.482501441684,0.193090236992,0.772930883731,0.823602637911,0.936290356138,0.515905698083,0.170607574386,0.595958541484,0.881753870135,0.473192141222,0.0416693302323,0.63488662031,0.0628292573174,0.790983182123,0.741414957871,0.583828508759,0.616270605498,0.349368111187,0.930058279028,0.777098018153,0.406312539119,0.787861176745,0.612367502431,0.156910320388,0.186074189373,0.34532520153,0.292322289296,0.565633663674,0.312108763648,0.00844717279306,0.984039944147,0.315059343582,0.271884710938,0.544151583419,0.814493726901,0.969865538616,0.194100765324,0.90222318836,0.860098206146,0.896462652137,0.707446013292,0.521914042568,0.847642505533,0.645400658084,0.852648931638,0.611100611179,0.753399026075,0.0280670839757,0.149779739036;0.571260660454,0.621222014848,0.563386509905,0.0596499417629,0.971529798992,0.468989067264,0.416754573479,0.197152714483,0.55064551929,0.0262841164173,0.372170520252,0.733859829634,0.328627523294,0.954281614317,0.725484227069,0.4381625028,0.03668533498,0.0426722935587,0.416938484617,0.388206759702,0.970532835678,0.788773559011,0.293236708645,0.649368250753,0.354357229697,0.663996806684,0.134277446024,0.482016614844,0.0747019125173,0.232305475979,0.205820942663,0.175708416423,0.313584916402,0.968181294084,0.064771566235,0.709556221732,0.138227770402,0.165063819269,0.936132173646,0.71225967735,0.911740377403,0.0620370341758,0.154961286127,0.996150449103,0.266777946325,0.906775605764,0.622273938154,0.597128228922,0.944423734617,0.10673004747,0.0951450485972,0.0370421249758,0.572301108531,0.740635340377,0.178390259855,0.891914502901,0.978820868,0.0380552346225,0.759799867212,0.0477183078899,0.780628321097,0.481011776072,0.555284342766,0.078928390179;11 +0.879594545994,0.215202006287,0.00621803811562,0.614010764499,0.513386757774,0.225795102101,0.735418501093,0.725073576654,0.0890805756226,0.963212287641,0.319855765577,0.255395504587,0.842853591036,0.0718842243081,0.390289295461,0.804596836029,0.29031593763,0.0304367491957,0.624005739477,0.706114520111,0.208603964787,0.115991912061,0.426568782425,0.673604361994,0.830446561471,0.979231148672,0.970889890051,0.130235269962,0.953745672439,0.851558019588,0.320691938229,0.332043789584,0.361053071562,0.984933578419,0.313943733417,0.963169701716,0.722917559492,0.106719270852,0.0413697241666,0.0670077878245,0.35861682852,0.558220963532,0.263878513005,0.737157646981,0.177561419391,0.0906682508324,0.0737328826532,0.529121268784,0.858524648617,0.646935384564,0.353706431014,0.663684334155,0.758299433402,0.940893586655,0.596691174812,0.890248880656,0.0142334495818,0.505724355468,0.952252711869,0.172227519244,0.311430602266,0.48969987948,0.318118479664,0.546856898878;0.553041353217,0.866217158356,0.553891428013,0.446663721055,0.766519035738,0.382825376795,0.626396611895,0.605436758104,0.844098641093,0.935955366656,0.154533741816,0.51377824094,0.0122839849728,0.748528522188,0.428704478572,0.344267532273,0.623468374764,0.422172727011,0.093204615927,0.577406750424,0.879718699444,0.734886800297,0.298145161555,0.396524903752,0.930999238512,0.216231207865,0.62733334081,0.260398967968,0.116155376971,0.346325726871,0.224830551055,0.64813641328,0.415795342436,0.814672607226,0.856374923584,0.720757869081,0.280589634215,0.547971518335,0.0203719363883,0.210050762233,0.402507976057,0.913323717392,0.0870190924909,0.953544367681,0.253982458175,0.779400229817,0.854887600194,0.78742490191,0.136122253736,0.0303845786288,0.0694645822808,0.545255827144,0.184674297153,0.832382715119,0.433019448675,0.0133809386587,0.958110276742,0.0566843660466,0.0737610984228,0.688020381033,0.498387915288,0.828447059328,0.9246035372,0.476163000752;0.462322937288,0.24729705021,0.682775814162,0.262368113842,0.263045641157,0.923249346993,0.143345042758,0.65338197848,0.356282764288,0.68051305379,0.544583021497,0.39281375476,0.471796539245,0.721512755629,0.811743836662,0.185773453497,0.864695670141,0.0174703071593,0.663069095351,0.892428176988,0.889503416805,0.616564053332,0.300368313819,0.51941647806,0.175239043745,0.747648823137,0.0712689333852,0.110061530972,0.175373498963,0.473913156932,0.661221636932,0.199154106042,0.193350033612,0.476694699135,0.0123446270804,0.670089052422,0.375793705277,0.039641691954,0.146588203094,0.851155462438,0.574352109254,0.472700524316,0.119631163096,0.323309601576,0.807485197665,0.877906120215,0.808198621717,0.973167393114,0.699917691693,0.772787196148,0.958812278343,0.745027443049,0.466124468455,0.419407305753,0.0574496437262,0.559245558916,0.839384562954,0.0177380459149,0.139491108689,0.568265001307,0.510607361461,0.589362866419,0.213360857045,0.917220974495;6 +0.293366207486,0.844859108473,0.765594924155,0.899286334525,0.0413791371098,0.0328139736309,0.326763361717,0.322234348886,0.352517999956,0.24781540463,0.228442799536,0.317082246768,0.963851397619,0.728659951461,0.622594872022,0.821296469607,0.982586745416,0.0154867936876,0.677124459804,0.975019133191,0.676109633033,0.575970565276,0.0783305654539,0.907145965524,0.381920971231,0.798111608169,0.84499378172,0.0769205539576,0.178544434651,0.0665689402792,0.291157377364,0.780949531385,0.0163752486743,0.479688352534,0.395070679984,0.991715109991,0.0626002540483,0.831228535166,0.533927385368,0.776258461483,0.723076761957,0.764413870699,0.977726719904,0.00869509035893,0.599841921227,0.745772788612,0.286159049455,0.978060751576,0.084759403029,0.659497356648,0.282051980898,0.699834399891,0.732811342027,0.812772736365,0.953236377495,0.595363463994,0.0274849516714,0.995621508966,0.997086530357,0.724977006972,0.871051192987,0.477860340358,0.0640149158891,0.237557491953;0.623304571926,0.795912446351,0.031090312825,0.409027200001,0.651873218314,0.563480572078,0.0372245101106,0.323852764579,0.504021916653,0.697863324312,0.0875539555893,0.427092073739,0.0133676971018,0.438965475902,0.000328962814842,0.106793179652,0.919414353475,0.837541664942,0.0330750846301,0.500774670074,0.778738268699,0.263250406851,0.197777448375,0.533441713697,0.16120111743,0.918953936331,0.906273381214,0.152837009003,0.189295766672,0.766974905787,0.400719830314,0.49408885707,0.181652250616,0.199768699563,0.0512802180631,0.194130804192,0.391526800225,0.935951526598,0.378682570331,0.00551752906491,0.317115521714,0.937895561436,0.385202377678,0.0699177181905,0.910832507427,0.436489800266,0.959422096864,0.52962795921,0.87679024422,0.272528257389,0.538157688006,0.434133372688,0.696280265111,0.670524030178,0.685732011197,0.0384811890429,0.50625704626,0.515945021193,0.416936312863,0.0490563122383,0.126194628828,0.628266340471,0.60819903179,0.331454754928;0.427334529636,0.676761123732,0.550320124138,0.752396958942,0.914483477545,0.667123135448,0.145142528376,0.456006559931,0.680945364148,0.594503424933,0.378491026356,0.905350987583,0.717949167852,0.372008385717,0.592432593486,0.958308329389,0.136374252596,0.586231432504,0.283011507801,0.0266258799892,0.506413754066,0.685887365155,0.102422302723,0.176071873614,0.0508130368466,0.210326305948,0.167402371729,0.896721517076,0.483579430147,0.220085074083,0.97420108007,0.684609652652,0.708491525411,0.549776906543,0.844853100688,0.462423530859,0.0962525101628,0.458610099646,0.538095862189,0.694386798208,0.450223011024,0.763761696702,0.360071053569,0.205077873157,0.228647225105,0.759144512509,0.552240939799,0.263624516491,0.641417409146,0.598558773524,0.142441536045,0.333508329814,0.448586259341,0.894430002749,0.126563491703,0.383572086805,0.957580795364,0.533172803172,0.531865198985,0.241846598925,0.713091832835,0.426739759042,0.899194074558,0.851082568183;2 +0.707537475151,0.287576194139,0.966383611844,0.119218142726,0.617908654964,0.30330077233,0.601782391412,0.76398358716,0.852008707448,0.0474883311691,0.186677090807,0.965668402911,0.0927945555552,0.771822146635,0.822038840598,0.278497607085,0.323039185512,0.508105465469,0.980116796199,0.82023341708,0.539196811345,0.0861483695921,0.443236863521,0.366107491055,0.360891289879,0.0310632634432,0.552943049469,0.990112633582,0.365546915443,0.736118077464,0.149528487778,0.575923222279,0.202021886479,0.99735083706,0.991224813611,0.281667683813,0.591890039487,0.611561910683,0.30305869425,0.390146274614,0.56634810457,0.132600324921,0.713474433324,0.0727976853402,0.59572906668,0.798111136411,0.901311443805,0.338492034007,0.136441512495,0.0465225389892,0.314250070016,0.454581484809,0.749764631597,0.197005287062,0.40247273355,0.0958615307234,0.651617176664,0.4244415768,0.903540784016,0.172796416333,0.878661807674,0.938257332793,0.43024713752,0.463547504454;0.210540037022,0.165662750427,0.485050815484,0.468060563587,0.870743747,0.346751924938,0.487492797915,0.325344092347,0.772220499183,0.181331961052,0.75414275258,0.987829812784,0.0477065382048,0.459607619664,0.793753497225,0.735710762151,0.586569379825,0.970823415513,0.81802599097,0.860393459359,0.36595455623,0.635960480247,0.100838550726,0.624837318845,0.740422862284,0.586131193376,0.381666571916,0.711040563515,0.64412970807,0.11873785814,0.525425460498,0.891594448848,0.353690265663,0.198877883414,0.986855187503,0.227615369984,0.878144794438,0.136112619067,0.892028922397,0.0154942664998,0.779910204002,0.232681385041,0.719142211713,0.38181160003,0.878993666897,0.41486855808,0.0474995856562,0.384863425528,0.902051643436,0.294093901743,0.472451597679,0.432249915017,0.53729182184,0.555132581921,0.133329699626,0.929162163113,0.741409717345,0.397435377695,0.644480684572,0.937965866142,0.272471268079,0.283479970909,0.318266445706,0.493210217852;0.138231089211,0.726258554777,0.34341180018,0.942450474197,0.404440390439,0.0747571328296,0.772281910105,0.240531211589,0.166288327006,0.221945116743,0.302978269404,0.468948231639,0.772086194895,0.552328060979,0.0987292738786,0.536393044849,0.534538411817,0.727542226648,0.707809111255,0.703147128572,0.789865063389,0.762571209355,0.590808718755,0.402521391282,0.539970903556,0.398761693857,0.91815753431,0.292269411404,0.54113362315,0.9997169836,0.524366107289,0.883022429201,0.579273414543,0.670195405372,0.187887731422,0.527224441248,0.963031614452,0.771090940651,0.642731029171,0.0699363163151,0.119791780364,0.967978768778,0.914488007447,0.312301466739,0.053651532803,0.321655869124,0.619146910121,0.536956320054,0.907651670051,0.593402306183,0.510972843681,0.127198138466,0.0469665497386,0.529767708996,0.357596460674,0.84297574005,0.934321278792,0.715885452308,0.551339060945,0.351524761548,0.767703480628,0.70502223703,0.722971000724,0.772892652749;82 +0.0836595584232,0.249904822829,0.230650687166,0.157758707802,0.210354020917,0.999134625936,0.469367195807,0.614744062893,0.121583333032,0.810506998556,0.28252284768,0.0503360597485,0.376934676691,0.312223980045,0.788432827419,0.124192055302,0.51874057234,0.954829044389,0.959863101688,0.115098568817,0.36810426451,0.268551022377,0.174125291641,0.706713614153,0.909150705378,0.852077146097,0.653111604532,0.30558009183,0.324451649421,0.63690183231,0.00387936496526,0.896727387248,0.672280429034,0.405471906708,0.0460760098416,0.864702444832,0.197913913495,0.0179775881347,0.231734293241,0.651596020489,0.474432255405,0.917267541393,0.799309384274,0.334809541729,0.151789910883,0.864536262592,0.629493542849,0.822950528689,0.256897231072,0.612015888996,0.904446121276,0.965526475201,0.413358800404,0.585308269899,0.246674520899,0.895246205343,0.964154735981,0.191297932933,0.611749761916,0.287722405879,0.0834326382023,0.0962772764209,0.80964010268,0.514904234924;0.189962368379,0.168399226801,0.962962003596,0.735284391846,0.429002773019,0.564496626764,0.700601836283,0.675887239104,0.790981685249,0.710110870164,0.887939484535,0.767242166053,0.432101223589,0.963866000009,0.293431311809,0.215544784867,0.0421325718859,0.815582306842,0.711762829604,0.316318688182,0.153320937137,0.493229412346,0.55436195172,0.360687491495,0.763532888684,0.347817513902,0.807922505398,0.459353992435,0.665699296786,0.627255172475,0.246109967491,0.585280276699,0.980355375306,0.37188724641,0.998700953634,0.485541222034,0.934971021317,0.852164582838,0.381953104561,0.451257700612,0.776529356498,0.215642792266,0.0425927507994,0.124877575554,0.630446113018,0.241673163711,0.66922950873,0.874665722841,0.692872222003,0.439992018537,0.972940792828,0.981233153965,0.820385657411,0.666715583159,0.670810728394,0.564063623213,0.203450880244,0.216351915765,0.451739283077,0.716063389796,0.759109862499,0.772309218503,0.105017311979,0.25750529524;0.967048829756,0.029694317178,0.791776505367,0.953404435733,0.588484527732,0.659005309852,0.959532309239,0.988711182277,0.773569275568,0.380231664649,0.00712437555568,0.70444300723,0.51737972142,0.132541477771,0.745104850419,0.752651082585,0.430239782853,0.122296094059,0.378715361049,0.896111046803,0.212528092628,0.512659637065,0.623787688418,0.912709857059,0.422251479635,0.603959243505,0.0807930240321,0.533729177747,0.736589684635,0.631032565266,0.23638032053,0.0205148457875,0.932263099291,0.425794474373,0.993267947532,0.218097718084,0.784747543742,0.200510830454,0.404594476222,0.270192467652,0.269299092999,0.358768466076,0.00265173348852,0.674578455313,0.470401641492,0.0629204260656,0.294660377566,0.581164357938,0.252864909825,0.242286607682,0.054042769192,0.132394468915,0.164571873705,0.983810055269,0.0141801106204,0.610798213915,0.54937739028,0.566691590199,0.762740745388,0.291499976915,0.938826266066,0.959097478023,0.487236385231,0.708823891287;64 +0.255954694763,0.680869265944,0.39490965221,0.301998374124,0.3271955171,0.162444237902,0.646708290549,0.45680212408,0.771939543051,0.88244241214,0.865486178414,0.592394910849,0.53367512457,0.800790447457,0.295344695464,0.128472276319,0.44553944191,0.64144061274,0.262122270384,0.420117597013,0.745760875988,0.814819402155,0.0724422011972,0.503639289789,0.709893373396,0.199719146051,0.618981332986,0.681608169726,0.861619097119,0.460134983707,0.535676267259,0.923135565645,0.718486853071,0.558856662683,0.530357111124,0.420742761195,0.706683954587,0.550280280618,0.432314669831,0.123908173949,0.701790245311,0.131816015791,0.610466785402,0.646330508235,0.619364595349,0.3339722592,0.990243993373,0.197059323292,0.872524690896,0.903334472938,0.417970465369,0.750345380379,0.687095783951,0.609954813411,0.351533950462,0.0196409523874,0.176419792385,0.814332857671,0.161938232,0.195401819856,0.36221727428,0.0422584544375,0.36747998595,0.0386011339631;0.416877968111,0.932945381833,0.373995752283,0.813854343752,0.94725219605,0.733510757846,0.2980922698,0.323866113156,0.630621556685,0.379520205472,0.359937164436,0.443772962176,0.0440742811733,0.0336056671475,0.0801272396444,0.277002858528,0.617428278272,0.354016372512,0.359931645873,0.03357558097,0.317614405374,0.714407724617,0.0259585280003,0.719110866463,0.407599799077,0.470148852119,0.825280028645,0.183115820825,0.765966358855,0.4190108863,0.920339723199,0.983192001231,0.360362852312,0.281561990192,0.668367179782,0.488972514197,0.978829322601,0.348141385076,0.584070295914,0.141712116521,0.236408424634,0.237458686769,0.351106889323,0.956977938666,0.41641012012,0.746661692529,0.930452027016,0.0756567357977,0.333578826036,0.267865712771,0.0380803594103,0.560462658381,0.480673640391,0.182370994301,0.837422176489,0.799318336606,0.783378168059,0.982964439804,0.100335677987,0.376179609648,8.71870637806e-05,0.176660979467,0.370710212818,0.11920595639;0.750479550796,0.830580766629,0.827163526416,0.544363705336,0.263005370236,0.80291877917,0.482902906897,0.357809437656,0.148933681423,0.548795923033,0.631263611432,0.173055516418,0.996545418674,0.809148118088,0.818782881808,0.571402618979,0.871742346607,0.489547466516,0.548296214248,0.220454170064,0.0572618926572,0.448188634989,0.0720869371874,0.929369601603,0.157045584695,0.576268063165,0.89577418449,0.911517722772,0.885710425371,0.669050849508,0.0626166697172,0.12200991279,0.878724587926,0.525267026471,0.962538054124,0.420700900708,0.193354053387,0.71913155178,0.020489270965,0.96338309731,0.585997710096,0.244616691281,0.583169418494,0.92633774599,0.730968218791,0.857422548529,0.221131924227,0.143523795702,0.522429894926,0.61280372139,0.566704783504,0.751312739023,0.812337133302,0.792774930407,0.199734014333,0.895331049335,0.172634989909,0.262095528003,0.82821712688,0.539060022655,0.723854175124,0.63646817174,0.5007720237,0.823012480473;83 +0.658717676651,0.1520043081,0.109317205695,0.878746052866,0.70815086022,0.579639213026,0.831340653397,0.96865576772,0.090635670908,0.875281944164,0.277835431415,0.394214443671,0.327118325514,0.737194034078,0.597349281293,0.702230512244,0.19084492943,0.668803479322,0.556411066833,0.316621729754,0.27190008971,0.972024162431,0.327055373117,0.683943567239,0.490089987396,0.61099036784,0.219891209138,0.53318719291,0.747819937775,0.770518977912,0.846447853278,0.622044813429,0.752640052041,0.993286597535,0.827842510084,0.53139390261,0.727858380187,0.366683642425,0.251033240404,0.797260903409,0.463645083805,0.161174915174,0.232354932822,0.419487922769,0.776494388715,0.304535260606,0.382346697066,0.546308247758,0.930564124504,0.148711023683,0.973886617155,0.253733056337,0.81613945797,0.822501749642,0.638220177574,0.113617031624,0.568037181673,0.170852827275,0.956332767286,0.42098826874,0.869688842548,0.607579405412,0.310834979048,0.24906408703;0.475292924432,0.816736008171,0.354276418399,0.985724009117,0.248166213998,0.0735684505208,0.914324631327,0.851164242445,0.525409886144,0.459264642001,0.421233387389,0.912268885417,0.449807017439,0.407175337464,0.89438656385,0.24781200532,0.600778747694,0.391248756107,0.197820375843,0.84004427725,0.407603841706,0.515819400838,0.271759580862,0.774699683271,0.915280880439,0.982199648567,0.806539731691,0.946489864484,0.728171586183,0.202125771187,0.424906206383,0.429650335793,0.0132211023277,0.120858865085,0.465411741078,0.0296387309227,0.41671733389,0.712024887488,0.65900374425,0.733885807438,0.280226074112,0.734760016645,0.584990852558,0.0856358952219,0.445231474419,0.244088021267,0.915520334288,0.383151654311,0.541313902309,0.933600205218,0.391489027763,0.774361604975,0.959965251365,0.98418486365,0.774756226672,0.162974059381,0.882720304204,0.27671438333,0.697977791455,0.425798421224,0.893192768882,0.252805793289,0.955606375762,0.912346910847;0.121630209348,0.740350277365,0.927472362732,0.377434626545,0.833265180749,0.127271124018,0.624622204797,0.155871923624,0.495906398738,0.290884558348,0.250055036201,0.432423051691,0.00928390812251,0.0234342214771,0.102367007739,0.857962413946,0.73862989154,0.367208737455,0.663155016715,0.0533080740103,0.758971904804,0.108400319679,0.896939872435,0.661154427237,0.244823866634,0.938715309465,0.0192743958818,0.575049058022,0.71253084411,0.117588647203,0.392341663337,0.286183302872,0.270553748349,0.183930067066,0.0855521844885,0.838448889919,0.636431794107,0.441411873446,0.690930777586,0.388390804892,0.269943310897,0.611348082334,0.480384986997,0.974701161147,0.693382263311,0.908758702787,0.518883250863,0.232306654422,0.210545457259,0.158039135431,0.211933007197,0.645796580124,0.688015343931,0.570429091461,0.618553794168,0.422125463087,0.108735000623,0.365723755381,0.602851412594,0.534298772557,0.533810825408,0.927944448083,0.821437202987,0.984434698536;24 +0.717956403893,0.243141897787,0.682548206421,0.0485838354582,0.741695665658,0.57079626353,0.649074532944,0.795454281632,0.0218252258151,0.744123102868,0.349550876467,0.714142966936,0.799178593703,0.28906643045,0.0563130432862,0.515551009843,0.538953253515,0.114793834473,0.229971154063,0.254149474899,0.433755995444,0.966563606083,0.0509774218587,0.287368443777,0.694057326184,0.667809659459,0.3733007053,0.647926056111,0.5500883833,0.443868767959,0.610878016052,0.796536311533,0.851522746454,0.7610288612,0.887912610153,0.329389799295,0.808656813204,0.200170013076,0.885936626487,0.917514633771,0.183679417262,0.104809957855,0.871647943334,0.0697373234777,0.761654244788,0.647984126824,0.736718542743,0.674421525991,0.463332012198,0.679172346024,0.238634705758,0.993144033999,0.958438840539,0.0850593352701,0.207387994361,0.0142259485017,0.890829314346,0.154309092116,0.658481037479,0.490106705456,0.805393409036,0.769625103147,0.705254781182,0.70597265752;0.0283508487911,0.341409257418,0.47706987122,0.695045339046,0.7717273622,0.884197434694,0.976593839829,0.257936417338,0.504460173851,0.292487546698,0.351538848012,0.642333771699,0.415490720598,0.218588194357,0.994497889894,0.331802403564,0.107047137752,0.659653564258,0.468361264175,0.202498138569,0.611416884011,0.601883453216,0.784155687805,0.336043417586,0.189503161559,0.920495851248,0.144840028988,0.426493882931,0.941026057402,0.278161236601,0.402098122856,0.177529440262,0.242835416929,0.58405007685,0.11334411571,0.200582214523,0.379287629617,0.385511381036,0.452956816176,0.348069919238,0.0706976626057,0.972695238255,0.740405183629,0.120752303338,0.253221971659,0.161261235675,0.117816681441,0.711281414219,0.231452302698,0.107922828822,0.531218902184,0.985049055095,0.612476064167,0.316486870367,0.715749215181,0.890786510877,0.879690551517,0.0482090190857,0.618205693161,0.547120631233,0.348093466016,0.646934530987,0.98215989485,0.782353858055;0.537491066309,0.789500798261,0.531033658978,0.444788102111,0.747987048058,0.232034549359,0.321139777504,0.103923494553,0.821858159059,0.348747351397,0.989696231981,0.437098550209,0.983011693446,0.299597807507,0.258793204446,0.785340850576,0.832079450484,0.304978395956,0.243002776208,0.966610662738,0.0831498046457,0.0985389282714,0.623369982197,0.80398854085,0.17513159229,0.679812738034,0.512096942726,0.0125385969684,0.305213131883,0.697892772306,0.980694747908,0.754917035259,0.884706790959,0.958255696778,0.193914590967,0.863022468262,0.372086743548,0.109906852022,0.207857531831,0.580237210575,0.295917616306,0.110675325845,0.474169080549,0.652803128617,0.999180357905,0.288536025186,0.897916046338,0.732957935749,0.467971616413,0.246504009939,0.698205642312,0.375862450837,0.970357635645,0.405724043008,0.764395202729,0.104202876589,0.309390515146,0.854830276807,0.369383742309,0.211716617881,0.817301401771,0.113021899819,0.723742910231,0.0919465938402;84 +0.706541416103,0.116846073862,0.0414377298369,0.960489302807,0.959921386003,0.89114453793,0.859422263889,0.471913904794,0.506751251413,0.344247351954,0.855058979714,0.539495778126,0.906750121256,0.498073915697,0.00657409415836,0.845698469997,0.0972748828071,0.142696777045,0.412341069382,0.915938839544,0.311861594048,0.368754676382,0.0501750889007,0.296271893447,0.803904991554,0.948324521918,0.673759262505,0.214524085779,0.179214576812,0.320423672059,0.530942593229,0.061297259956,0.464682956851,0.12240385053,0.939502497088,0.296986715227,0.383283899992,0.595545026056,0.721023519912,0.25426899608,0.658906907702,0.493669252439,0.697839556361,0.849441216004,0.277684661463,0.729442247812,0.76451119034,0.978528211418,0.0147812205921,0.793361146861,0.304890977663,0.161207370366,0.376298246467,0.0659491835338,0.0514195024969,0.85585316143,0.573331078123,0.32600770014,0.300949043268,0.309689166469,0.563968383317,0.799673272599,0.284420087175,0.927107088048;0.0300107147445,0.509656124753,0.861341945793,0.848823692114,0.922396383465,0.101608984274,0.758681774702,0.0121061109075,0.254554712467,0.50832641899,0.301893234256,0.712068685789,0.46199805446,0.630911619771,0.759727456411,0.128843599548,0.581069675138,0.611654149694,0.382728837669,0.497064386973,0.541843406857,0.44477399654,0.12882215551,0.583980022316,0.0180103204828,0.423257663974,0.192476062915,0.752619358742,0.121187311003,0.571972554447,0.190849017157,0.551747837628,0.51826830853,0.773749035402,0.828717969168,0.528687214857,0.235061897669,0.762167208554,0.787925561036,0.0261036874773,0.431570773332,0.483895891535,0.987823124244,0.833948052975,0.444189151886,0.52135038848,0.705311056523,0.714795440499,0.481867764316,0.858140918744,0.0243508751515,0.296019587838,0.760880033996,0.685329759091,0.105289567593,0.203859506084,0.736693672894,0.0642969144258,0.412770169951,0.158282221108,0.252719237998,0.0324682224873,0.0109547367923,0.855705798357;0.0118641548576,0.914018078994,0.129639906658,0.218531183227,0.923239417673,0.664237990536,0.146526398481,0.0433164112197,0.716394388401,0.233794693473,0.183594463016,0.852018316248,0.297410017208,0.083063131883,0.0384106828212,0.82626060619,0.530293171416,0.433423214584,0.730359354031,0.463661502796,0.80688758145,0.311382350467,0.121915878395,0.673290228006,0.732992959172,0.715400335379,0.877370899814,0.869405039625,0.415463162845,0.211175429456,0.401595324457,0.142233778511,0.614075702566,0.416130895741,0.201456065148,0.957042459728,0.351239189759,0.406706998467,0.294891166406,0.27644122652,0.777793614921,0.322411191264,0.467393134788,0.351232602039,0.523033186678,0.373069096462,0.469426346565,0.554282822863,0.78041208865,0.737213173804,0.849635603887,0.494003004349,0.591273158358,0.5219166445,0.472650776543,0.977339346178,0.587400405676,0.293173557772,0.6993731942,0.540347502976,0.984522145272,0.763993515711,0.819472523268,0.782373570208;47 +0.364761725076,0.499297982007,0.012342474535,0.467150885823,0.765770427582,0.962729955671,0.372199382366,0.730549971218,0.829501106399,0.0233204439113,0.694112826783,0.476351597442,0.81075333158,0.944652703872,0.452573871237,0.497096986382,0.0453805418986,0.445911766198,0.541093791483,0.479127413956,0.569305660127,0.129142782028,0.635310107108,0.737993468314,0.20398506563,0.76692701545,0.96205480191,0.275773625626,0.782670922429,0.986048588327,0.601505466644,0.688187577127,0.170315682135,0.946560133333,0.541026736233,0.164137320541,0.261796287099,0.883666447308,0.207824005829,0.982493465604,0.474085466968,0.187534685724,0.656327149891,0.727319181967,0.194053500977,0.703395171949,0.210834757527,0.58146532255,0.700965248321,0.180957604981,0.576773596055,0.116727711658,0.83903377602,0.796266075744,0.611131692536,0.249567459224,0.508178724412,0.474574941404,0.0277799733821,0.227948022951,0.624826985942,0.141765514175,0.570792982986,0.161318550675;0.0139016434156,0.290078513355,0.936460942872,0.611436248158,0.032454857089,0.337371129672,0.279169649338,0.668298305439,0.132847688826,0.610704973378,0.339695199254,0.879938879343,0.662577816734,0.745706586632,0.877375337343,0.658440469731,0.248451691323,0.178540082734,0.914329360589,0.582306733105,0.126735631123,0.599989831525,0.136532025004,0.833238026336,0.362870234189,0.099129153647,0.249008618914,0.821075606028,0.906560054922,0.746772733966,0.188236133891,0.919698994889,0.941735646086,0.437683627648,0.787146470641,0.0547532498908,0.72945508979,0.956954943122,0.197643826589,0.99757974118,0.546835372759,0.873562396203,0.596409257044,0.84813196448,0.376773864012,0.564150642391,0.0821805767039,0.628863686783,0.210765497476,0.396858126914,0.363248734767,0.702918827944,0.636299491348,0.138176891921,0.0357466100942,0.154187741437,0.990393643128,0.965512085013,0.256052919704,0.6970477017,0.70054313382,0.533922897558,0.260555473384,0.577388253835;0.203739740613,0.208513543382,0.71876486937,0.642740806949,0.912448867628,0.768344019391,0.684095449571,0.705829461443,0.970174355287,0.478597138161,0.979950012694,0.915461894029,0.827884522964,0.598980691837,0.457791918137,0.131171577964,0.0698223188459,0.866547185171,0.259323036819,0.676390121042,0.501163701872,0.966152615539,0.142706449854,0.0540519952919,0.922563304064,0.0528107261281,0.0320786083649,0.408232401445,0.180558848728,0.121784425768,0.215593220487,0.745919046977,0.988488771404,0.412226414064,0.868712114258,0.424782905175,0.0113430405373,0.0989146429897,0.132245645759,0.402078863875,0.798583746422,0.26519515465,0.404562173628,0.662140792327,0.291714572019,0.727823117774,0.044143023432,0.470522506846,0.386688242002,0.926598556289,0.416032347236,0.122221063982,0.149537729143,0.991200859177,0.543941738756,0.899932787962,0.875393070042,0.865476670649,0.739035252766,0.760185540368,0.425834580404,0.00579356510467,0.596461992783,0.755456930177;55 +0.7666887275,0.916735913457,0.57147150496,0.577527855516,0.0520685269382,0.758067475551,0.271220995263,0.876974309817,0.216658502073,0.0156193287873,0.0564629958144,0.299300050485,0.80777869516,0.693635879009,0.804652652362,0.74847821935,0.871243780056,0.212165587354,0.0396426197957,0.608992962172,0.602210569652,0.734444720067,0.512454569733,0.8599354498,0.312979056421,0.998436224257,0.82590828255,0.0370594146893,0.190529749076,0.124742873837,0.240376270088,0.561663403288,0.370740400141,0.550252225753,0.142693082755,0.143820676901,0.201345412979,0.873353530868,0.434681012873,0.701707097099,0.164111956127,0.718404485802,0.336727050155,0.10775158897,0.360670803053,0.538175580632,0.0927658136527,0.548442352724,0.585131396595,0.223745800011,0.168134804435,0.870552633231,0.312294143728,0.350698971735,0.969300059166,0.496762947284,0.802576562169,0.938297197851,0.385761541239,0.0385101926426,0.726899054318,0.624114255549,0.957893061501,0.163420311215;0.985031965325,0.20789800783,0.955426672095,0.767304750198,0.973848227922,0.0151903380581,0.0860804085101,0.385371396027,0.587443507116,0.693699611697,0.29784264104,0.607000901433,0.531867787013,0.658093289445,0.602514898357,0.303870198863,0.910730950892,0.355328126054,0.172751030305,0.120997702147,0.90327397305,0.930048842362,0.975074323835,0.897530753529,0.555514889084,0.37262056009,0.734186091712,0.0306320059178,0.980372883251,0.210555079494,0.323507638201,0.243912624037,0.878790741124,0.631684599406,0.385468915574,0.912302498852,0.727412854452,0.918904946021,0.258077213837,0.833011491867,0.232963439294,0.209977280616,0.227516953345,0.191565925332,0.691363177704,0.849541742576,0.603253766773,0.566550999106,0.718506143522,0.769691600898,0.902554161302,0.903189672229,0.798393171096,0.0632662270333,0.10028867246,0.171975982516,0.819651151509,0.745267715712,0.826358646681,0.217499422709,0.217937849015,0.55991951033,0.0107201276914,0.665958149829;0.724042713808,0.457123162587,0.202216812613,0.583004770833,0.353790812834,0.105297840191,0.882178702892,0.462097694779,0.427835904279,0.748271951019,0.306164393861,0.377398278682,0.773015017776,0.87360902921,0.862183022576,0.0590282506434,0.707707157982,0.0697834502835,0.805778711666,0.597795420307,0.736893932663,0.512567389473,0.91874879446,0.594385302629,0.801747799143,0.636192242988,0.43427335824,0.571351274284,0.473999380155,0.426712191772,0.629838250599,0.192487254163,0.715190206169,0.180951158817,0.0136335286508,0.498519339328,0.533766070935,0.480283538203,0.737089860184,0.68273950089,0.163722252886,0.607003943641,0.210051813677,0.883897150603,0.771515439951,0.825281478318,0.507154557704,0.760769899192,0.114281055242,0.514640020399,0.0872324853694,0.44065804446,0.28344416997,0.111991365882,0.991555689463,0.25301856996,0.323090306329,0.520089176065,0.517477152721,0.228740969975,0.778411681225,0.323089217689,0.73041044591,0.452881123747;51 +0.524097378179,0.829500999229,0.780971373545,0.444725633457,0.383782623698,0.0716343048047,0.151587391068,0.203110603155,0.231772802832,0.152631332543,0.0234765371073,0.398554510232,0.566098986428,0.783315915265,0.00367711413417,0.58771359223,0.307275436925,0.935817441105,0.872804798918,0.392755961686,0.0955647761594,0.282987599996,0.99790849123,0.331910064175,0.482891493206,0.39730515595,0.00612673853185,0.498588092208,0.916864965853,0.276013574274,0.589066873315,0.654636987163,0.465266708452,0.105909340308,0.803600866375,0.190410498156,0.324407337137,0.467515533781,0.354005651189,0.604565518837,0.757835642248,0.567995735395,0.367572972287,0.336875272462,0.122362391108,0.0179293012508,0.16495803505,0.81818844851,0.701168391884,0.201875127065,0.382800349269,0.152594912272,0.256863543902,0.58639832417,0.235727513051,0.817393812777,0.99731703519,0.520754979436,0.693403062603,0.131011041111,0.319329761641,0.032177612993,0.00894606366265,0.108805729805;0.959156926243,0.236692647144,0.216436626615,0.675053720422,0.174354838131,0.174999328542,0.275065053963,0.551631301097,0.543861964618,0.168419464659,0.487761186233,0.296118047825,0.0916954687464,0.307018919091,0.0929126517946,0.538054728701,0.537637123773,0.0927113794249,0.25840898542,0.437195163064,0.473292403038,0.414583089339,0.134444630171,0.400001331729,0.339632134683,0.297931990849,0.0775356956898,0.843210034342,0.23334983048,0.16134923604,0.75555744391,0.447041913766,0.961785478017,0.0261981232797,0.659423799073,0.890991574852,0.0917499370433,0.340550979041,0.880820225501,0.201377077805,0.223254536768,0.429714840542,0.650052890743,0.4646290871,0.319401768643,0.309445171039,0.988922189992,0.368623790381,0.986187114577,0.636124825381,0.0463470995212,0.120652636305,0.396041472799,0.144918583343,0.902026952625,0.286452612195,0.240547148633,0.148762720481,0.389692488054,0.923868905759,0.0451330122776,0.927498168586,0.68856614096,0.51385109036;0.172626910843,0.237626717371,0.865912148163,0.532969906102,0.640108413086,0.522031858696,0.0921473223281,0.681567245621,0.416952920856,0.58288486334,0.663331132482,0.596675864986,0.15210701821,0.687557165122,0.974437611691,0.82724071415,0.178841077536,0.198065812993,0.556961783259,0.28191274076,0.0560115483561,0.172813588029,0.0174145964098,0.668208972924,0.481840831934,0.186288503137,0.57957814943,0.565431075154,0.777819806495,0.244631892048,0.709483908035,0.106428901534,0.481037860055,0.00879867405187,0.337753903784,0.831387423299,0.738388855796,0.531237296193,0.76698928948,0.413336089577,0.123683151634,0.10999958831,0.11549619363,0.0645670278324,0.148092708772,0.448397048553,0.375908010091,0.0235703424497,0.254642342842,0.708596281076,0.790371423609,0.819234904668,0.553871550564,0.14196753781,0.91870536572,0.220818809574,0.0429131935411,0.538295528429,0.99291125549,0.387251531799,0.753548626143,0.39584561367,0.563288185123,0.339227505692;66 +0.368436998547,0.776134600618,0.992781811269,0.817061933767,0.479438284461,0.337433103482,0.594482668492,0.992464140826,0.594607343822,0.250998319153,0.200448826793,0.42372435396,0.878709548394,0.00993980596591,0.129024611,0.132215402005,0.685546910844,0.164988212958,0.147475264106,0.0835269713421,0.145596929186,0.714312682162,0.622752659498,0.30415277792,0.235781714488,0.29860780845,0.308401966228,0.0840444399971,0.597475094751,0.362011353897,0.0393342702449,0.918324445031,0.439749430757,0.401244730595,0.00223968192582,0.235686241331,0.370975685096,0.594315446812,0.862350303268,0.167438177835,0.509471805449,0.184821485038,0.503166524461,0.882619984834,0.384828491044,0.515051545854,0.275341586627,0.902501533079,0.597246327981,0.974374804786,0.778099185919,0.513899042621,0.452736468512,0.811650472414,0.662810844494,0.715618255336,0.43810016659,0.689315266278,0.0569357933944,0.790217200033,0.62580528264,0.0603110805919,0.503351015819,0.216038914579;0.485290241324,0.061113192913,0.323804217264,0.719229615028,0.876322408161,0.76056171418,0.909704844398,0.778417829437,0.353976807439,0.346792445351,0.181272843563,0.643397770314,0.30143778962,0.29577967808,0.724887805538,0.281731204663,0.17512179778,0.654998003454,0.847480253963,0.926472189476,0.95175132099,0.954165741143,0.132638474702,0.313184896125,0.121117183168,0.275175301054,0.14447350747,0.128743963951,0.94680171982,0.118128772149,0.606544429521,0.00792548292417,0.641538704357,0.935976299967,0.0933722240281,0.977096016863,0.487553565907,0.159772228512,0.746649788412,0.094939086483,0.230138292475,0.414797493348,0.348583430145,0.955915917036,0.565809783097,0.550931046345,0.106266181088,0.977292345099,0.775506871725,0.830786082222,0.842515953235,0.540373837213,0.791974843798,0.892825563821,0.682165164917,0.425909173325,0.239832156968,0.832277522187,0.350779968489,0.131741147336,0.460193132294,0.856814409109,0.551051252865,0.124320183265;0.759940917063,0.917305496375,0.202809711184,0.998010202447,0.0424580641203,0.542482695773,0.0405630840156,0.123085023857,0.514102445966,0.368310544469,0.760522240141,0.294235083889,0.393933660558,0.155678446012,0.161100230042,0.0873414759982,0.274390224112,0.420536747896,0.796844139164,0.369390959639,0.444724278686,0.0227834974015,0.105682253884,0.0340299500897,0.307222161904,0.908534335106,0.374155571883,0.0510882714505,0.0312824882007,0.600921250288,0.261943306367,0.911403924196,0.879761743981,0.739292062316,0.0188811011859,0.345252639125,0.177859624535,0.300281721781,0.643040411848,0.100324139541,0.489849882973,0.0959407812992,0.4575257488,0.872154515394,0.679593889749,0.260503021851,0.793432037814,0.538348890023,0.635220936673,0.452995188944,0.732716202966,0.473005749104,0.610184193967,0.436374544929,0.624988312754,0.813413855747,0.571941763968,0.00349165757696,0.765996821616,0.458346239444,0.112050051551,0.273522545244,0.387568267925,0.61081432598;48 +0.26199912641,0.531744329059,0.4812244217,0.398123239237,0.472714938156,0.767098545016,0.242209581224,0.0269014170026,0.607964293135,0.579577199499,0.404895983468,0.0801231185498,0.98942491874,0.947277717127,0.334484534435,0.746245015462,0.972982912552,0.768247225591,0.220780441499,0.955394711961,0.342516582679,0.0880853612481,0.368109668963,0.716402110917,0.525647110651,0.792230705091,0.468595223223,0.293195288621,0.366617309157,0.138814073141,0.729781164047,0.519364349522,0.168755011432,0.201640286041,0.159937059114,0.286241709347,0.176146812214,0.558832651898,0.152770767203,0.719305988802,0.137440437473,0.853237431395,0.567236211613,0.294217589952,0.085000746283,0.429217252213,0.691209182721,0.0942590013699,0.151897713539,0.992366858371,0.165603852678,0.994562279108,0.601071217212,0.970180194969,0.187168016683,0.612402332833,0.0576667280023,0.0471164336254,0.915588448572,0.200295172481,0.715843130476,0.21300842108,0.260371221463,0.682382884622;0.629612910597,0.108141381677,0.115991686884,0.917171549067,0.593524860461,0.854055337406,0.359955828165,0.205386434616,0.10164922155,0.000200446452869,0.691038033706,0.189449140667,0.314893086691,0.667694524142,0.792627174259,0.407922220764,0.550926213245,0.301996487957,0.579677036621,0.384947893094,0.446837120943,0.222664211901,0.281800890003,0.51237247449,0.435445693155,0.555074789731,0.417873546668,0.264364919543,0.263123669484,0.170861054273,0.369877412375,0.807608404799,0.490836354543,0.519147722874,0.290133581829,0.287754160971,0.739013149595,0.414902148616,0.505289944204,0.538900324464,0.336400097108,0.512944516934,0.420548441103,0.56854684564,0.385024719884,0.665407943887,0.0393070986861,0.549609281014,0.446184258379,0.987840217494,0.289326609597,0.633852106635,0.598126036801,0.406270436936,0.806163332247,0.0698186332953,0.960832341752,0.207870970994,0.375522712356,0.279743566124,0.900528069429,0.474013511048,0.696867798069,0.399429828864;0.604288798733,0.722076965607,0.822590012234,0.610087487484,0.266865600364,0.693243976963,0.280222081332,0.995112287539,0.0691436321435,0.262235174649,0.697483086899,0.242311951557,0.998573251233,0.0115400269895,0.804072409195,0.901664661092,0.943262693092,0.806126311462,0.979905191655,0.344177311915,0.186305425941,0.297330174482,0.545449006594,0.0631508474878,0.675358307081,0.114892670035,0.178133243238,0.670114208179,0.534267279259,0.261239975928,0.504802000665,0.216836763322,0.592214163498,0.935545359067,0.58782479339,0.63333731381,0.728829536627,0.42282432481,0.981584415955,0.334727271915,0.541559699017,0.93616273191,0.274652534469,0.553715064876,0.427020105752,0.254554514896,0.304259566832,0.451165570398,0.163767967744,0.793425471155,0.106619375159,0.926169723119,0.138751694536,0.45476620733,0.245417049539,0.799906696448,0.462011227963,0.436897914126,0.560958219719,0.201401410968,0.63645423018,0.87487986681,0.729875694539,0.887201953948;81 +0.875632375039,0.753456913334,0.0813751764643,0.770355014485,0.400952826239,0.543677523837,0.0881260305833,0.219837310931,0.93553755088,0.387322159104,0.434950129333,0.346719773592,0.855975495607,0.727567566515,0.258653647941,0.173545991411,0.336021083378,0.370245784092,0.359615622261,0.354534781449,0.114451058642,0.0517365574214,0.711353169531,0.854984017831,0.17799330163,0.347344451422,0.535251458193,0.952893463175,0.228112699225,0.73405299476,0.725545246031,0.702214473063,0.0686039129688,0.341936252673,0.975154760526,0.437777155976,0.854531152642,0.80434018338,0.618587836385,0.0530648642355,0.350072062953,0.205692586062,0.111332419627,0.749007502899,0.177962475165,0.113650831061,0.149445931086,0.742920511248,0.140653579256,0.0360603357688,0.670963998055,0.700092235814,0.100337351835,0.304798035472,0.749559936823,0.891750273203,0.707319570161,0.588974072763,0.906272841772,0.783479124926,0.662243206896,0.376399036107,0.563151151117,0.251724152341;0.181113035417,0.157161220978,0.650545603417,0.775122215121,0.914479491201,0.649911135149,0.469727055439,0.237093806537,0.458725292634,0.326168647487,0.229172608387,0.134436583583,0.721920385399,0.907756651563,0.410088049002,0.293429844443,0.0123203121768,0.104404544941,0.0794690753326,0.963563090212,0.420287686444,0.817694150974,0.562734275373,0.398303069606,0.369593344612,0.907359650044,0.903099473073,0.213031250325,0.550240920385,0.579556979765,0.719649837117,0.0185400572482,0.0342158409315,0.426528839755,0.071122956701,0.0487335609798,0.541712905787,0.235934433842,0.693100045225,0.277966702806,0.297758906897,0.882625786563,0.979138145683,0.0114122572479,0.18114205224,0.818871366844,0.289647358205,0.148111591503,0.264643113172,0.572016774599,0.399027897139,0.106439821433,0.701413630818,0.774964655807,0.485972099453,0.522980343986,0.281621101701,0.572366966575,0.145449637712,0.575624167201,0.00426559865284,0.823190579565,0.64580354367,0.327253690416;0.78257490774,0.322973920584,0.304358579965,0.67853078411,0.619450253225,0.656458854947,0.309092402537,0.582116072517,0.421231217896,0.07625546977,0.880249148975,0.624333062043,0.104971134297,0.738025810488,0.886361283917,0.466626853841,0.667702137586,0.837124930579,0.478084312409,0.36378102212,0.609158529366,0.140226451948,0.228452906896,0.0868825115923,0.345900711484,0.0549592060892,0.336864476137,0.514761041663,0.541334817956,0.584409326623,0.0612003031247,0.273146217256,0.802705520549,0.202193813881,0.623372780107,0.0726324568612,0.780099595963,0.549387918286,0.0325554383735,0.756646245148,0.024116434174,0.782305042264,0.785496507874,0.490845129408,0.555495665596,0.394967925893,0.59158237569,0.662819561693,0.149034760264,0.638780068809,0.648635926652,0.721908381075,0.0100271201758,0.752352522885,0.52081843678,0.98638281806,0.0128010125897,0.740611897839,0.982279403972,0.946256722756,0.839514818473,0.42726412542,0.98365496094,0.379378671093;79 +0.743800479025,0.421697999859,0.946790852203,0.200418926953,0.32723747599,0.873027573352,0.571635382702,0.786182958186,0.69751897875,0.279127713731,0.651988948964,0.431139278259,0.755748367267,0.024529273636,0.0569807275037,0.698576803669,0.915572256241,0.551174361402,0.254127806873,0.366099197527,0.204757702349,0.499870144796,0.293997797322,0.466291766732,0.358293578873,0.0122074020302,0.630643602865,0.599892350431,0.90029499832,0.0814380402614,0.156226420285,0.0692662339556,0.202883080818,0.361912125778,0.0840658050645,0.105065240273,0.640485949943,0.470864425669,0.538923380481,0.637164683137,0.032516528243,0.519865519313,0.975246632393,0.278965062761,0.140727084777,0.707865044171,0.868029962963,0.350854792945,0.186703808264,0.167787152054,0.66288565814,0.975868596585,0.0719204378241,0.282144334278,0.694753356985,0.582611884864,0.175277961045,0.735879916946,0.936107842148,0.76956966744,0.924317913951,0.721159100565,0.233587413081,0.775367293555;0.844783077918,0.317609747067,0.0551840533737,0.875847651873,0.735729399496,0.844862711927,0.148660255584,0.504963311839,0.523213256825,0.458784428846,0.0808727650026,0.570100030789,0.685924125542,0.528224982574,0.602951295739,0.37856645528,0.742564437883,0.569013089353,0.0180430452113,0.231938449575,0.534872290013,0.137783970699,0.224602107259,0.243816177897,0.602417686899,0.91009020734,0.0539439880296,0.619292317266,0.185947637773,0.667565829295,0.732161855633,0.468879802846,0.109856051687,0.684425274882,0.901610429828,0.478584264171,0.00741053772838,0.521170296802,0.441045224275,0.164139412841,0.15397543022,0.371263724742,0.76951062736,0.476033424511,0.390767873172,0.975303355919,0.819774000323,0.465038115563,0.797206840745,0.401461922135,0.108094994455,0.629338368497,0.672743956235,0.0557371824527,0.0745331291037,0.585093914262,0.432827107091,0.609153752227,0.369174222877,0.317015390171,0.649989415851,0.0609862447554,0.442007785148,0.670249520265;0.325886805414,0.28756487297,0.739977672837,0.569198636406,0.866818737453,0.313873345361,0.690109566788,0.591053022894,0.524344614293,0.68821199205,0.108618552182,0.40006779725,0.0835616586381,0.240509561921,0.129512424572,0.234458823234,0.683455367686,0.69407427425,0.118281344906,0.50006777636,0.452949515909,0.248936793551,0.103486575301,0.379765725127,0.313643285012,0.074322652364,0.0517556786148,0.507748052385,0.162644841085,0.738718813426,0.35717098774,0.258400333822,0.352726488863,0.435240659894,0.712192435809,0.671283697633,0.685974460031,0.544140479634,0.560190200279,0.309752061618,0.565914780951,0.215802663529,0.423011215295,0.407133459847,0.434482100828,0.0672576550946,0.0423901052271,0.5002662281,0.042876730081,0.496634054254,0.411943633991,0.121632105131,0.582565460231,0.0830240753196,0.867276216467,0.71057371385,0.396350654834,0.304726340758,0.443263952788,0.194581405182,0.754943875973,0.177911229537,0.32975486541,0.207272754852;12 +0.676121156964,0.235732643092,0.207171884955,0.441733134887,0.0104606011759,0.538193597397,0.939830291654,0.324558087381,0.970312569157,0.704637216302,0.603324604903,0.588224630232,0.241098241129,0.416970586799,0.530241603031,0.834502334949,0.309989956744,0.93723220871,0.26628391966,0.453627626713,0.489629811473,0.347856067124,0.00885559441948,0.241771830897,0.72493343769,0.470671874345,0.924261708776,0.477817593208,0.306794783851,0.999075408898,0.390887031373,0.569027063685,0.499546000357,0.518232552035,0.94548421413,0.260683579831,0.0297319690681,0.563257278933,0.145072295019,0.75668905689,0.898732648908,0.970577290752,0.840204152469,0.674498927833,0.0993386980973,0.179487458403,0.158258132694,0.276987359524,0.452942569904,0.849219078743,0.34210412958,0.0480874862349,0.495438704248,0.749938977819,0.31923991094,0.76195268979,0.117793942101,0.20580194108,0.708742900901,0.493686866778,0.0542111183998,0.184122093121,0.541700775879,0.256389764893;0.443249212883,0.367658226228,0.664941017406,0.24200756313,0.967443372226,0.0609233119685,0.435118160982,0.779676100834,0.44992458517,0.0701942928105,0.922287788299,0.961596006424,0.0460605149768,0.0450093236524,0.935414278419,0.368359310926,0.822203916042,0.829573460354,0.368704484899,0.599276303723,0.350644844218,0.290276575784,0.693127114203,0.818544852716,0.732352313814,0.943760766963,0.386968711353,0.741018551748,0.320845494727,0.418424264016,0.532602597934,0.511817326021,0.601207199371,0.434801751228,0.523608151612,0.916092682252,0.862651177461,0.0923565945852,0.828768956572,0.707689161868,0.546073104715,0.36706418334,0.731782469245,0.152583955923,0.974970713413,0.293007187992,0.250660315955,0.981478828225,0.701156361644,0.0279992845674,0.248027850048,0.521480047733,0.548820352165,0.606081192948,0.800194538539,0.653519080876,0.0382517008805,0.830911944345,0.469903088511,0.272719958781,0.186733693921,0.762489149072,0.830647596331,0.912128235923;0.533102793018,0.339158507767,0.33128123828,0.886977077265,0.59374497748,0.216000660831,0.283691128408,0.591502329188,0.834806001634,0.0189620786758,0.453062051257,0.976512895095,0.00761455728311,0.666597434376,0.45338029649,0.326804182031,0.673700754522,0.345136373951,0.248980541094,0.383807745606,0.583196375795,0.17493241045,0.830325373712,0.29685027529,0.144072328637,0.194727074077,0.898517176605,0.647902418943,0.117740997618,0.89591131797,0.541893164038,0.960147654989,0.457321347625,0.724496408216,0.697127045459,0.223239391886,0.869453201303,0.980562413347,0.435962944748,0.222287234522,0.905637848758,0.740861786754,0.322344380867,0.192829401094,0.0716423891782,0.487625525576,0.402962709471,0.288796864972,0.852058679188,0.750600558675,0.181067837997,0.0517350957201,0.827114017611,0.664463066342,0.362578796295,0.490015591011,0.373343856088,0.666982808812,0.784732107107,0.616598879065,0.774770807065,0.281985157746,0.909188935879,0.358001932426;82 +0.0569614953969,0.499753543528,0.178876851618,0.530671379827,0.572306911631,0.998956765802,0.133649130802,0.475330680567,0.056063017624,0.764982835175,0.810443838805,0.988134248252,0.573837771309,0.358638539756,0.380480546926,0.950301778407,0.761034116413,0.944852723622,0.873261402606,0.408612280182,0.74741036382,0.657617089633,0.857054067895,0.443187970432,0.820488931952,0.514923227479,0.224820285344,0.64089495877,0.833736233967,0.570338443062,0.331386108728,0.994785599829,0.10010733832,0.396743607871,0.473659121732,0.966677908749,0.24301865502,0.619405900391,0.752768335663,0.21414331331,0.159498659075,0.226230135021,0.179518758719,0.0457773743233,0.566599164254,0.0554052856642,0.00202689143952,0.568547226855,0.778636167007,0.967624444914,0.924218130918,0.336309467951,0.701734273568,0.160799015758,0.755998995874,0.744686889538,0.311415279833,0.367241841949,0.975718841457,0.186600186473,0.402480148135,0.396289096944,0.513015175802,0.65356689634;0.729526186417,0.824208252833,0.81006642648,0.620616364741,0.253141805595,0.376266058895,0.522217317832,0.668219806357,0.016596582837,0.496068786002,0.807826819421,0.633029909187,0.0499237978665,0.34180035,0.928916139816,0.16976372768,0.944358203981,0.693568704152,0.215264401771,0.616190003566,0.451729398517,0.957359531439,0.342815676608,0.828736904874,0.774162803292,0.741102339382,0.201554287327,0.844765328288,0.771056670277,0.969009390358,0.512368297513,0.38760995971,0.629446316742,0.253054072653,0.627439929794,0.680120338158,0.43856757353,0.396741789044,0.527161645659,0.0652463434399,0.960469279515,0.250246971968,0.0998716438914,0.981813361274,0.321928881683,0.222021848831,0.122847922383,0.631666825286,0.92677772726,0.320864179088,0.493062502569,0.724767503647,0.15998169343,0.395484277016,0.569054217193,0.171736878628,0.656383532672,0.415788297081,0.0999440820382,0.663188759897,0.220611815959,0.911687354847,0.0286116252318,0.870536467927;0.585529316283,0.932451472247,0.435603618985,0.829984085398,0.573842321343,0.907297473963,0.943502776609,0.213164549833,0.563363608991,0.441173986158,0.471761527889,0.0736809421232,0.0979152283961,0.635623088882,0.0697575644515,0.76688829735,0.669439181081,0.976426781709,0.695796810836,0.423411329185,0.607742509693,0.8017476278,0.0127002748874,0.611734083934,0.0807991175996,0.220297896965,0.171239564685,0.118336593342,0.58645514226,0.719936570081,0.030697377347,0.986511913616,0.334757718577,0.315302723777,0.669808148456,0.135245716561,0.631770218294,0.311228304349,0.0373816022333,0.33168027827,0.534288792783,0.788759827775,0.450629043111,0.948407680989,0.817001828466,0.538079439713,0.105825136176,0.91336686228,0.545804200798,0.772873372465,0.0191988862794,0.372889960693,0.146293918965,0.462620808512,0.577488680058,0.778117204979,0.563402556301,0.330438831633,0.703433084529,0.87075855809,0.242102109395,0.55729900213,0.838028817237,0.726947757582;2 +0.418417063292,0.973810041371,0.113969765602,0.204834063322,0.426122656975,0.567690825038,0.322592726675,0.657320671973,0.568492692582,0.985073525648,0.714791498666,0.262944559592,0.476010920794,0.0198923022896,0.280925874845,0.216853403839,0.39170891416,0.420526450001,0.491526696708,0.453466479273,0.840947831747,0.840407869121,0.163805740454,0.376959439358,0.599495622236,0.71594423265,0.619905463133,0.274205245674,0.40673922072,0.841789223944,0.307782017746,0.58344498864,0.403760447398,0.261399415787,0.871870138793,0.751582148637,0.789894987619,0.454684550126,0.623482545344,0.649636183967,0.193581821004,0.693318871894,0.128407548915,0.207282194628,0.155214712026,0.428701553287,0.649896787255,0.953498674569,0.684095370378,0.0536689596344,0.309403697192,0.400156304834,0.0311915440354,0.550174386506,0.322558566832,0.807974028762,0.0645319248714,0.598393377485,0.0458020413833,0.711492716174,0.709957883696,0.491033439634,0.748735973407,0.294434583668;0.0771281398463,0.679921764594,0.140376493782,0.928758837693,0.960410986568,0.667945572079,0.166289979973,0.633596555566,0.349004017556,0.310126231076,0.583218923093,0.694524173778,0.766466741651,0.473139889587,0.477518690051,0.228982200477,0.786091956058,0.242251464053,0.557927890636,0.401084497701,0.940553979788,0.298133613305,0.672732116559,0.231588970233,0.643378033846,0.633398938108,0.160127632927,0.452931955506,0.590083497425,0.318930292145,0.582241037363,0.567482332382,0.255659787308,0.718720531837,0.550146682148,0.165608058517,0.409868877047,0.988986055729,0.906986912424,0.200502139475,0.923050196456,0.0893452916612,0.934125205265,0.843098271108,0.183609414751,0.533738573037,0.690424184603,0.395119053586,0.609996636545,0.133104209351,0.528897658696,0.629601649867,0.600349111693,0.555400291416,0.75010382832,0.672694878474,0.328850113258,0.286397515712,0.663508129891,0.279088532968,0.425453090726,0.941067227416,0.426055855114,0.343802563924;0.816619453842,0.812347704954,0.160825461208,0.00546962421108,0.797289266998,0.0961160120522,0.933899946937,0.855285788201,0.618067273736,0.424820797202,0.515607338213,0.979102490813,0.207105969182,0.488357649651,0.377534417155,0.448835309319,0.0850473838609,0.587505491316,0.296785216069,0.622015599834,0.146874938741,0.193035608765,0.720410700779,0.636178434618,0.845269477698,0.44879774729,0.364295444982,0.0326200947731,0.688182010907,0.458904299373,0.290696544583,0.61375034929,0.822468162879,0.338059489142,0.923254879048,0.856872919985,0.313134094777,0.0526037074648,0.368916145413,0.293141133725,0.0833015741543,0.232019721997,0.729291297917,0.943062419698,0.500131646563,0.374188187156,0.533032518207,0.314847192538,0.482099392057,0.685652644497,0.0467228260015,0.495717711518,0.255522289277,0.591860484642,0.52178771125,0.710075598801,0.01688842823,0.653197958038,0.182032354368,0.864231267508,0.0590240208889,0.939918939398,0.639668021862,0.514928684737;53 +0.608869813899,0.843682023032,0.320514552771,0.506305804981,0.128542009158,0.344352668098,0.256919988202,0.271672575386,0.46570684992,0.309308941894,0.873271159276,0.145557572943,0.0749045748306,0.694122796767,0.910666830509,0.802768341772,0.860791188578,0.668302185803,0.750332604228,0.47908814535,0.123735977409,0.136224431019,0.378746812527,0.093136782411,0.610492411228,0.769611571957,0.185665145051,0.163736054629,0.874428155225,0.965467072537,0.30995648165,0.0373593017339,0.21365373853,0.590638857193,0.906010278117,0.49840662307,0.352874563365,0.297354270269,0.367516338461,0.553690135886,0.28313573737,0.821769803393,0.229432445357,0.594288277294,0.887686692207,0.146091550826,0.205751141513,0.755948567703,0.298463797933,0.523324117603,0.0549985469456,0.519118313192,0.349666531054,0.592788555021,0.452982498081,0.465149028181,0.573638954986,0.456184498289,0.271388613878,0.154788130871,0.555291854031,0.818508401409,0.42538930079,0.752803937263;0.832231714542,0.143201229721,0.69966467133,0.60164706479,0.0214869337124,0.00961967136653,0.216773795039,0.749458569956,0.830578812141,0.483476318243,0.901332458521,0.734596578965,0.348986937217,0.0468575552784,0.803862678521,0.813466008956,0.961512249918,0.211219871315,0.224956420722,0.19214897775,0.277729102516,0.342795598423,0.222995263276,0.446839856462,0.0643067516015,0.0749677508433,0.453637280984,0.780905850007,0.507847258619,0.310758411996,0.381110525889,0.938336293513,0.991251720057,0.614744619445,0.480111496106,0.509324911652,0.758710092619,0.794715020655,0.350247344102,0.218683947237,0.29949638417,0.0459905471379,0.47752931554,0.472398830518,0.497696034211,0.719038023435,0.261386391513,0.352013722464,0.0264489762435,0.762499888407,0.559749053802,0.97690171346,0.925901011689,0.728588571614,0.261275793861,0.0637465740743,0.0609640623201,0.583412883431,0.135941625329,0.0783476454836,0.0619243278886,0.237399289195,0.10525961353,0.641901892689;0.828249044555,0.551476808689,0.139463542641,0.688959570254,0.356884617869,0.927107132529,0.721004089352,0.405146237684,0.369300096952,0.0505239023961,0.86812826643,0.215422313948,0.916193356299,0.746479485864,0.86439851341,0.573684434712,0.0724661076615,0.328669122274,0.480230381159,0.836427161854,0.0347555869614,0.468728159586,0.170370676224,0.546187176319,0.997406854804,0.979954254588,0.120129644008,0.983027225072,0.319441746354,0.282438039526,0.597586866492,0.56331285189,0.683876647077,0.103115233959,0.86165794893,0.136559329957,0.72158624048,0.427233982984,0.178655853604,0.79179083531,0.382010615395,0.791561427694,0.97361924246,0.69731532062,0.633585468962,0.44219902937,0.040450111693,0.359335004606,0.390324376082,0.724495849319,0.633029629626,0.326794669868,0.544205882832,0.0838690779295,0.111517678971,0.0627532298907,0.621555910395,0.388457275421,0.893941652681,0.356700519781,0.304822686244,0.629602957264,0.745818745383,0.00259490588041;36 +0.863073960645,0.133136581685,0.0546740473746,0.235858587945,0.0474773462579,0.801689759239,0.723349447425,0.630164582265,0.954339381291,0.469613787285,0.641081535676,0.0423252914421,0.0221935725536,0.29442064812,0.30687036787,0.235560350748,0.272611987134,0.845478387924,0.571163572247,0.0748309174736,0.217110886927,0.70272220001,0.357706289544,0.11827966699,0.262183748241,0.694819008781,0.947814810825,0.744700092371,0.720014971001,0.294173325856,0.551480935274,0.527156038851,0.41734537632,0.378429311723,0.259940651766,0.687642744935,0.68827380811,0.714445949576,0.727030259942,0.194858024105,0.408212659468,0.236184215698,0.965286270191,0.0617589450204,0.537316259995,0.448132363704,0.126782100836,0.367121298659,0.520497754717,0.41877141675,0.395273439484,0.223539716749,0.759349461389,0.577859825389,0.215684710988,0.323122883548,0.274182989102,0.732944800654,0.169287270757,0.202652737082,0.754743562702,0.455077252095,0.681232053285,0.87091861403;0.197473551681,0.397327789026,0.745434735353,0.474528512112,0.122063243261,0.238439546587,0.398156277627,0.694422354748,0.447840005713,0.703393886636,0.16986697872,0.579324260875,0.535232288169,0.0197746579904,0.340284498865,0.981094024786,0.780386232245,0.18882378513,0.750046001544,0.666919888975,0.993386465687,0.562308003207,0.190393037846,0.887670532363,0.373486935303,0.338161843256,0.780696948293,0.30893064117,0.82073223153,0.759607072476,0.39639894486,0.286080339685,0.199115118366,0.39693989937,0.834631892678,0.48932038353,0.357161511861,0.516443904429,0.561935636339,0.00257906759974,0.561996440417,0.289252682787,0.488347472636,0.109634542081,0.842443457954,0.281226318758,0.701467770286,0.224029971812,0.0726938327975,0.82815928798,0.320090596876,0.90504122989,0.52291154572,0.607979758891,0.0316487067285,0.302054924712,0.24096730439,0.0018077788963,0.965371471152,0.889863710432,0.975445173803,0.421497679991,0.866762414727,0.134024536182;0.268922486943,0.425766813961,0.373952399268,0.677508213215,0.246457017647,0.680143596206,0.719854378089,0.622363547558,0.163448479505,0.50140542397,0.645387751792,0.582632957287,0.847614351235,0.385210511649,0.00353473847683,0.597650589166,0.523868629733,0.907500249594,0.87250561828,0.561224872238,0.0667155716566,0.435246388042,0.359985841318,0.945431707948,0.134030918754,0.356942906118,0.0577269370794,0.131533709032,0.0544734182064,0.395788283177,0.99803934116,0.68926418305,0.747316268089,0.295125837932,0.0220791475839,0.779901323382,0.489167823204,0.159504787962,0.640093567453,0.752962064746,0.712730892236,0.575236776419,0.402939032662,0.676317571965,0.0312608652567,0.648962483022,0.260315314149,0.909398489029,0.207069636261,0.429439536195,0.536697309356,0.521146082204,0.529936004923,0.682290114416,0.973481045639,0.0683312690112,0.376138639776,0.833392879416,0.376545102808,0.731070913677,0.828673285446,0.289129281247,0.478595761071,0.0853261021139;60 +0.223818591265,0.609978499956,0.557421999457,0.587336844639,0.462334387632,0.630868971111,0.867758562464,0.862865176809,0.210914403297,0.645855158886,0.60887376092,0.398293732411,0.767005456734,0.910104127965,0.658214101456,0.721684692405,0.0696095019297,0.539471093599,0.745752985473,0.0973626022388,0.946948775916,0.0713225882168,0.818202514809,0.632415677511,0.185269360143,0.758930093804,0.501709027016,0.645088998888,0.747722322488,0.851829874327,0.997623507482,0.272747195047,0.349994323483,0.127946290933,0.823873949195,0.221486394011,0.592166980446,0.532478855364,0.204984802638,0.93022481857,0.845343433869,0.537588746595,0.215484413454,0.474382949206,0.629789366365,0.17286938249,0.946152613158,0.616558372383,0.156251114541,0.610542747635,0.631930745791,0.887641678252,0.795992876422,0.152435004058,0.976937439513,0.168817882485,0.979319540825,0.527976650887,0.543160771273,0.0962170133049,0.94395599257,0.354648913453,0.770599832541,0.49208951327;0.296778308539,0.691533105395,0.622372137182,0.861005765086,0.156893758056,0.331596224831,0.918984245518,0.982339382828,0.39099549761,0.482940222313,0.482487898091,0.402317850654,0.0841124373032,0.270590290013,0.287349292482,0.301487170043,0.0225766832201,0.882217282452,0.578346073912,0.361356117544,0.69446956586,0.238293107949,0.368632134099,0.75573615424,0.745524309503,0.647257057131,0.339803552439,0.226802374976,0.451803896075,0.401718081532,0.250260552345,0.677972747702,0.567391526408,0.737891594209,0.216396900741,0.301201487306,0.795670828562,0.456301614002,0.444190817144,0.911890429989,0.48538608709,0.149670064888,0.463388798746,0.412928068582,0.333241003425,0.407819047555,0.307563840838,0.952763704143,0.0123015532993,0.393238646281,0.00390011692798,0.559118728053,0.830014085828,0.00617507127714,0.385280127077,0.576743655372,0.119490446601,0.354994888331,0.956245390731,0.453416100648,0.212144510549,0.516100428996,0.905210181042,0.844365654279;0.84658528082,0.0402771100451,0.136533962308,0.65843157087,0.0840992403257,0.184370931086,0.6805480098,0.795757518557,0.231823610528,0.563583037815,0.844563568513,0.182823909574,0.83017627474,0.490625168095,0.651118273675,0.902317677043,0.300660197666,0.527873360016,0.512261288176,0.392425141785,0.794156860281,0.528995543296,0.157362192768,0.321146779909,0.383318056007,0.893364801595,0.751739228295,0.102387019968,0.48514789545,0.109709315405,0.144009410974,0.0929512119986,0.151965806985,0.178138771869,0.421704321885,0.222053450386,0.840094637151,0.0123269201242,0.973642362317,0.894534660517,0.284049096368,0.379366277194,0.42588213139,0.112651227142,0.395509237146,0.461422236167,0.0931568274212,0.671230631684,0.483287369737,0.513152690335,0.970739067478,0.919299780813,0.057955313367,0.444355450251,0.609170719379,0.484901711071,0.769603834519,0.10224991428,0.393902885118,0.125222613148,0.231568794634,0.0683946982348,0.94874138476,0.85200428702;31 +0.206159641544,0.48136368475,0.411657065143,0.675164333899,0.466152936411,0.602398012924,0.131529839019,0.785340638821,0.182465304456,0.579130020216,0.41481953216,0.121464878449,0.271867723795,0.605064413923,0.26042539029,0.654797943467,0.283867271564,0.528614822053,0.363696038959,0.942715300566,0.348002791187,0.814498951055,0.607777373676,0.498620258438,0.407464876242,0.562860958915,0.303441009794,0.225149318916,0.121534673944,0.0320677933987,0.111896853036,0.845451463694,0.192305304638,0.273318794217,0.657384278926,0.729679720744,0.933301057684,0.0859261945286,0.0956196857227,0.216273785381,0.749983486874,0.342312218813,0.315589501158,0.282057170606,0.437754136121,0.974786062499,0.396870105624,0.709030652622,0.152143941765,0.824910296837,0.477884232504,0.353725872285,0.312443838179,0.586667782517,0.837267670721,0.832319794297,0.102245352412,0.00508654302244,0.168646327429,0.428618963252,0.652300872119,0.853684439153,0.302072872878,0.775151666118;0.407852838391,0.712507755696,0.896359201684,0.502471060866,0.50539499327,0.420493502499,0.258711674918,0.702017253546,0.252395101354,0.895302417326,0.555071713935,0.288048195905,0.149740726878,0.107619463004,0.904691517534,0.416930248403,0.183947847502,0.67447529707,0.814778650997,0.347610626919,0.819985384612,0.386011870348,0.989157398815,0.375973035702,0.0631266824695,0.611792999079,0.358527245381,0.672277222648,0.254931088699,0.911086308937,0.71144586487,0.606054661843,0.861111509407,0.938682899638,0.381196080044,0.405875801358,0.0424960896767,0.457170078602,0.417839039383,0.893317102614,0.274787209572,0.613512513202,0.696651098596,0.636047883815,0.168656755161,0.11980009821,0.580040995123,0.160162518689,0.894712967209,0.772239778361,0.371476230345,0.902583919958,0.831988939263,0.302016024776,0.572293441785,0.210444356425,0.226928411474,0.849302937517,0.56485872324,0.548548420695,0.238709343726,0.04923171307,0.291582361758,0.498948818627;0.811355262535,0.602612047405,0.863227031535,0.858471873278,0.86815578082,0.840046211935,0.949379408349,0.866483887072,0.259544962942,0.66823719998,0.336785090953,0.722392343033,0.30765231641,0.277913618941,0.934131406962,0.450646653792,0.73220288967,0.470083386887,0.56777473654,0.105855723723,0.899660698894,0.363384770765,0.977109622722,0.84916569661,0.229460924093,0.658530171218,0.205281875184,0.891183056461,0.3610280861,0.131841844275,0.972958439337,0.253370101457,0.728852042426,0.799419689972,0.297634544809,0.876628645577,0.497820739466,0.647740003669,0.0632891540463,0.775514100447,0.995397317788,0.119946076551,0.741059381906,0.379172305594,0.74186992517,0.181171113639,0.178150155687,0.373560976211,0.242816324305,0.217237450307,0.0358333623839,0.64217532825,0.564710398593,0.304955406397,0.806163235938,0.135650090923,0.629257342389,0.356685130015,0.250291166368,0.883568539109,0.206744264742,0.95014252737,0.676753257694,0.541118533203;73 +0.564116367466,0.772257481052,0.428914494673,0.4844709632,0.268399433585,0.628384188482,0.583395358432,0.669699577282,0.904426397078,0.897308970534,0.415842667951,0.905434041922,0.729955012538,0.962338512306,0.207881108223,0.149553751081,0.546058985297,0.655564910982,0.300722198817,0.439657929349,0.0592777496167,0.83770604675,0.0761203425613,0.85675208463,0.472427002944,0.183135518289,0.464709363735,0.698603925653,0.313370869572,0.333227601344,0.653534544576,0.234222731511,0.33965082499,0.891673912198,0.767607162103,0.408106173411,0.437310007962,0.778219436326,0.426802860845,0.369848256544,0.404446512456,0.551254003874,0.409079005767,0.897785508841,0.0774493235194,0.597714375235,0.0642456910253,0.0888668727821,0.0298120008526,0.213361655832,0.544607735018,0.3554806457,0.758503884618,0.21026186796,0.0426829766901,0.47455262032,0.310601783577,0.735015020484,0.909889370246,0.750451713794,0.439986445294,0.0932849703459,0.0698568702273,0.835127245967;0.085245398914,0.624559485693,0.242055680519,0.969059660486,0.766023420649,0.0499696868158,0.989997066157,0.444460095741,0.560019679215,0.781505996905,0.807293995695,0.536349640609,0.653438806243,0.409425329395,0.326140504937,0.139203702008,0.43146878027,0.425757185921,0.64368773852,0.344923461123,0.644668262577,0.974693891706,0.551520333666,0.906967492809,0.704841646461,0.130815520347,0.168143388597,0.208860458439,0.953846504267,0.451854950284,0.4478037931,0.880267207248,0.847634648101,0.575794003197,0.305641366077,0.140851178676,0.911455362423,0.0483375863543,0.283483028887,0.0396662867801,0.471588338471,0.00382263316402,0.556525464509,0.148436197727,0.129581642749,0.666686350117,0.79660453535,0.0971530750694,0.101715878931,0.663026031258,0.548925738703,0.808757555097,0.0522252113066,0.0911208193383,0.153697072734,0.312430872537,0.290885605533,0.780798420892,0.531520142665,0.778095621285,0.105933807593,0.790026097279,0.187714343378,0.801972600063;0.260216773139,0.99330078557,0.0400725844434,0.997573037643,0.26051559709,0.304963311628,0.724121915452,0.6286721574,0.466531237825,0.280699087288,0.10452273665,0.465371246056,0.77669126511,0.569068325039,0.587756094704,0.10854035623,0.0060617990585,0.805613789724,0.67732013682,0.206506846112,0.854512214849,0.256814063729,0.462915622633,0.644588202979,0.0117716296572,0.856466647652,0.210376987489,0.588666539943,0.535278538412,0.707868868417,0.683180813459,0.390783389211,0.505078727897,0.902129837422,0.219910731058,0.144612659235,0.809117589375,0.16461508384,0.450823246428,0.823493766065,0.828381162816,0.416994974633,0.0983254441442,0.603120349827,0.0459351746887,0.77414972816,0.245119251032,0.680472394832,0.14292888508,0.350511816314,0.301491382253,0.846325067912,0.923927584997,0.87093713284,0.0173937194252,0.860784136546,0.342194014834,0.165002533651,0.243604942493,0.882956028597,0.112664671204,0.750587238018,0.263107521681,0.203545294727;68 +0.196115784612,0.550016574759,0.140125020467,0.878943740087,0.0590409704688,0.821763504677,0.205703089842,0.0709068936596,0.875646298241,0.696814899622,0.125787662876,0.928501861643,0.710839714883,0.746392573451,0.682100040995,0.842729203512,0.581469442544,0.731755715278,0.606488506737,0.935266616971,0.13289829018,0.0253228644308,0.129013595102,0.932384199863,0.572709375958,0.164712669354,0.565948448307,0.58178060692,0.734437847847,0.267343541183,0.858104480851,0.654405875047,0.708302710285,0.158935581304,0.0823470252298,0.556391704193,0.0333431263864,0.577463547857,0.294244983548,0.423681531553,0.805469493287,0.921180634795,0.315716828434,0.0414020709569,0.756530512725,0.476363284546,0.569210125762,0.378112320917,0.978039008029,0.586045521056,0.09405570181,0.383641686262,0.60443329071,0.715799062144,0.281433528848,0.737354400239,0.22593346982,0.723607848754,0.857017120691,0.402277867107,0.562532336115,0.188831157924,0.0372773688194,0.0704147950694;0.740323679217,0.346708387036,0.349649170692,0.826678217982,0.0600827416159,0.819350316372,0.60085131072,0.0246858250107,0.165519238469,0.18460190481,0.834280415629,0.872903596951,0.551366921797,0.800164098502,0.663978142958,0.265749882755,0.50121207572,0.952037732378,0.519737271005,0.276167728339,0.957290039999,0.106782940407,0.430797763002,0.877782881737,0.385972588607,0.397316965803,0.811438920582,0.0401310418489,0.160786064907,0.197498008851,0.340185097242,0.569461673051,0.422862470558,0.865506451,0.851050339706,0.910265670766,0.0219907469413,0.876307289839,0.289720934018,0.773843197912,0.0268786782227,0.303175808499,0.83496510733,0.381797011786,0.352097817632,0.0564351991195,0.0653225064163,0.768293749493,0.258537463904,0.680338066264,0.202738803616,0.563370902246,0.307825245086,0.0224211611598,0.485000919716,0.736775276816,0.982297107456,0.478442559837,0.704027792134,0.130813206137,0.152654663318,0.534347051178,0.233795772712,0.434269520421;0.804308928476,0.157421582928,0.707876624058,0.234170627108,0.923734194245,0.353642984339,0.0192007929092,0.612549549671,0.242525981766,0.633576242169,0.0163458854045,0.794596080369,0.63304618367,0.0588705520989,0.937202800006,0.514580856143,0.729169703084,0.589529956564,0.659340486439,0.934837514664,0.640131795586,0.281771611136,0.404430717982,0.195427915372,0.0111948516231,0.732221049927,0.278436680305,0.647609874986,0.664798876324,0.0935013042128,0.221552166931,0.744860244516,0.544391935099,0.373327004068,0.119541392635,0.463088173194,0.771346042885,0.217242572245,0.62477147827,0.806443986823,0.835287304601,0.49925944194,0.279588415481,0.12094989455,0.27331249596,0.0271844248972,0.399081241616,0.0810555686099,0.31502388869,0.997611383754,0.543073083194,0.673280658608,0.187538521276,0.805187978324,0.681301468252,0.486532453495,0.414665322022,0.551935085681,0.0739029245255,0.260325996,0.367991808843,0.105841540373,0.494699185738,0.0175482910836;31 +0.689074578813,0.0834204277473,0.41723504192,0.963360220519,0.572596903554,0.591390694785,0.640949469715,0.593552832854,0.107700102381,0.395097532036,0.929344797224,0.765706873044,0.48124757289,0.150694497879,0.850396092729,0.93548542207,0.471301797211,0.9481735775,0.733820818397,0.713388327065,0.403897786057,0.668770333909,0.221124011702,0.184739186593,0.604353636407,0.320110611825,0.107314893296,0.518993904671,0.748077469198,0.779115440867,0.712878312544,0.930308456458,0.801074156917,0.0808880420977,0.322200742499,0.349374801553,0.632034247319,0.189184144143,0.96241019875,0.586478655463,0.906016454015,0.05044993497,0.185593602934,0.382210763585,0.726119992052,0.692141292216,0.293819577033,0.67027574255,0.165845087445,0.0412428198673,0.401274996298,0.366399892949,0.348689175147,0.733577091752,0.254828995925,0.92433318754,0.161757202187,0.810036553218,0.596695143544,0.50266668556,0.0142087577079,0.930729645446,0.620204419314,0.818103589061;0.998213261694,0.649745385653,0.202266196442,0.425692230129,0.335005269163,0.274256469565,0.18657147151,0.478991593291,0.471508607988,0.277751655291,0.479449174238,0.108213224868,0.281619141529,0.417588754015,0.481613468179,0.27750365496,0.335557446655,0.668500068455,0.413241648742,0.556093409704,0.686405061157,0.283165066171,0.804046096764,0.0719730199423,0.0868907239296,0.783643922726,0.194203300327,0.236944362965,0.881886272843,0.271213409967,0.536550286039,0.199339024925,0.675078549343,0.0543923246303,0.544739336094,0.196020383566,0.260806183825,0.370317067418,0.828157101088,0.202904272598,0.685110974516,0.874646089796,0.56425138252,0.746406307426,0.785391819318,0.303452830408,0.792532310659,0.742065173987,0.200531565837,0.989603139414,0.125929026827,0.755260517732,0.925293522408,0.852305100708,0.414053050559,0.637486081441,0.80908593928,0.742885322014,0.884306697892,0.0258895809202,0.0109466579182,0.25942482539,0.34741362954,0.938203982495;0.541164177336,0.0029139944141,0.490522733679,0.819143123439,0.33726676849,0.361176273663,0.624231239729,0.453547013741,0.915993279716,0.223757133389,0.387914722163,0.0562323997345,0.969512638004,0.90069602048,0.957174779942,0.0379652278763,0.482306845682,0.843487000073,0.690404039924,0.779243934296,0.681749265462,0.471315060646,0.15669515493,0.838503405509,0.539174022221,0.433791018733,0.949296419528,0.0208380095858,0.0358525439169,0.28528385101,0.93906605529,0.504243070519,0.74465551526,0.0353284499637,0.25654788021,0.304017824668,0.0571586484434,0.601448989778,0.464995941371,0.938723333575,0.0419707568435,0.745199900417,0.434708694218,0.871622118734,0.145416774726,0.387659660472,0.951355294043,0.703864405122,0.091850504838,0.0553202263014,0.312697055484,0.308440009123,0.0897879831188,0.192222422835,0.249365525505,0.0915600448938,0.816804014921,0.389370091546,0.955270624179,0.682462340309,0.204580270889,0.891877215598,0.0860554979795,0.549125792202;80 +0.238960956552,0.33284146703,0.0764101207933,0.607227857049,0.324604002413,0.715321631786,0.553530518487,0.104880400896,0.336096253308,0.377351327133,0.844571757762,0.247421691715,0.810664684343,0.493795693113,0.685461585676,0.99496544686,0.238931115491,0.0308431146211,0.446929317216,0.875914404142,0.193486394268,0.570585251685,0.728033542887,0.431794609198,0.00714976524545,0.620774970846,0.558018788478,0.263539397621,0.175849005958,0.072384067038,0.10692642509,0.655782836928,0.523805425042,0.118932962899,0.904541936526,0.0318308877291,0.0864678589332,0.924492887284,0.0371679290145,0.0668243024618,0.569406367656,0.583548772225,0.431675286909,0.147075576794,0.135445212583,0.840560586958,0.574431843601,0.360747935501,0.287423094465,0.125542625124,0.0230710422653,0.834776121169,0.827356561156,0.870226511937,0.685662685485,0.459446610539,0.103537525358,0.100270347267,0.175459550963,0.327170761504,0.403805691449,0.9695369811,0.603394904646,0.167687524181;0.0122183166538,0.469011722273,0.922027195831,0.867060211065,0.146164383454,0.151939032968,0.754144192349,0.331135949759,0.748240457064,0.391452537923,0.199772264376,0.295159074122,0.0245056000287,0.25807406411,0.197542264713,0.044989946522,0.59561299146,0.596256870569,0.490207503807,0.471187092978,0.92008486379,0.51127235749,0.491825140618,0.633624293405,0.936301537355,0.299884667029,0.912085911627,0.486961589886,0.643478777497,0.647832385159,0.714418828095,0.479033006865,0.746340736721,0.810477208421,0.756512519388,0.307204332293,0.897283936749,0.488223683073,0.711839555733,0.126400406216,0.773305067464,0.652282991917,0.976519425407,0.197180019557,0.984753848576,0.122104473011,0.848941093989,0.491423227121,0.0928804213098,0.706804540259,0.0153790506922,0.757484313037,0.901198804259,0.543284935269,0.514702821755,0.365558189593,0.188090037402,0.271139683683,0.167299548937,0.585410058065,0.405192144936,0.563679977768,0.625716483936,0.0750186954015;0.970674825705,0.152269464776,0.696901663159,0.270595134422,0.724948966519,0.354290123866,0.91971906154,0.510726020377,0.900007744417,0.863763573429,0.615382235792,0.00454261578741,0.753356424047,0.236123754756,0.654499603233,0.47444295384,0.8375802814,0.0306947249801,0.51823916209,0.139547371632,0.91438103933,0.737144666283,0.0662244423377,0.652468187835,0.499057893761,0.198681289023,0.21782636257,0.124246896423,0.526092965276,0.415400660633,0.413723751712,0.28837277948,0.397417091581,0.690379285294,0.220247579297,0.419932290839,0.729452581347,0.168946954242,0.74992877697,0.824039514478,0.801356265856,0.0921425143883,0.357533504502,0.233875638894,0.94325746522,0.63682662125,0.355301476384,0.176007518078,0.633741894525,0.940484856385,0.879158516898,0.614696447758,0.164709559286,0.0303146630366,0.248028125913,0.743864691644,0.988651539589,0.6454699287,0.463514672459,0.999991381888,0.790400536103,0.11387170282,0.896941883783,0.99497233076;70 +0.247742221536,0.912415290414,0.740834947796,0.624388245986,0.82410166965,0.0743773132128,0.457935480766,0.523971844138,0.820270020684,0.0146998374369,0.627523570059,0.535594989064,0.727376816625,0.00892377832137,0.995504159446,0.664648547112,0.348988155876,0.887739729305,0.220076640959,0.928801683015,0.788207805464,0.132145688408,0.991011649524,0.160790936663,0.522069399925,0.71690832462,0.163887897395,0.907915011504,0.526245061597,0.189866549436,0.712357118981,0.29962988418,0.504344477735,0.425808620954,0.200265472462,0.887331872354,0.752553993274,0.265560142821,0.521920837113,0.42758169095,0.833972044414,0.377316441706,0.374025924423,0.793581440885,0.0327993509623,0.44948419821,0.603210926827,0.790885935444,0.1753618522,0.0758919499268,0.167941209248,0.75595725372,0.407137133852,0.781816333602,0.128445796352,0.434423932579,0.576669274003,0.816212610689,0.232270271806,0.399055490994,0.888641951958,0.691583276328,0.852174799888,0.176563144989;0.238401653753,0.495357007606,0.61478543384,0.938921163554,0.210403046691,0.508530101656,0.647044667414,0.991623529808,0.0814998375291,0.721708789704,0.0175512645253,0.648178486416,0.315963312503,0.317523910002,0.28701361265,0.877731010294,0.683757498091,0.79273572349,0.0595785424737,0.537378175146,0.460884238622,0.77770204528,0.806828334041,0.670907841308,0.758186615445,0.0343571756201,0.751359726386,0.585153908752,0.50369079193,0.53656868742,0.87232807681,0.470281968823,0.684465954868,0.456826639596,0.0225440081753,0.532580695689,0.637220168246,0.627385454184,0.425398843179,0.186370068802,0.716219256396,0.548317072808,0.456625872215,0.804695338123,0.771567059672,0.948225723004,0.933963804322,0.963299704177,0.625467108235,0.572083444493,0.566384465216,0.505804757588,0.352352304512,0.198049433053,0.247371145439,0.796588797584,0.812318582947,0.771760540111,0.0433513045035,0.523151371271,0.553559806795,0.805223071971,0.961513970308,0.184704500697;0.124299198071,0.46787146366,0.972896539148,0.803037007823,0.321286516778,0.798921690751,0.0951989851755,0.0587077047066,0.774090191632,0.35757645932,0.910333660567,0.0843131365531,0.299295190426,0.970775918145,0.563554161354,0.522791338844,0.661113937463,0.89281755594,0.568717708957,0.480343653321,0.427727814624,0.0156154903292,0.201062115704,0.288142833623,0.0797433924698,0.407001037218,0.422993934787,0.59678205874,0.528909592551,0.222978905924,0.199608484645,0.613133624578,0.758528891977,0.659711938455,0.191795039118,0.526559399886,0.704218919668,0.259186019461,0.47837296168,0.579213309213,0.730030218745,0.201126430201,0.318111252408,0.666119289334,0.309320622379,0.611756601439,0.5345838806,0.318111968768,0.07147456861,0.450798273061,0.627209769187,0.247577232901,0.341385343034,0.114146701637,0.920258949592,0.568719228962,0.754589408968,0.722977624324,0.678436194844,0.342374614047,0.822557344816,0.0697246451476,0.430729807764,0.157693820887;2 +0.241509034253,0.361768849602,0.762526287901,0.123275098051,0.457652881909,0.346023337935,0.356373117509,0.449697011812,0.882047763926,0.254995437018,0.707569960714,0.537142283566,0.563021779498,0.275825127798,0.838471579276,0.104238848483,0.632885482449,0.565219279533,0.177639504173,0.517898483891,0.375941624196,0.318373314199,0.73817483639,0.554242106265,0.560045008959,0.54096805006,0.652393565891,0.161846563289,0.407355728367,0.598400597994,0.85149487242,0.585311332494,0.281332858154,0.57176119644,0.516096365422,0.73718209527,0.581499914925,0.0358448481081,0.166088058919,0.737329574536,0.517638274488,0.746264996419,0.943424774687,0.0926985073075,0.597849377328,0.477335816217,0.00114402029988,0.501549399244,0.153599828699,0.220053147665,0.232251653766,0.845024506983,0.319178601617,0.617108271973,0.175285329484,0.811718427332,0.258416052821,0.757036156706,0.590033527708,0.762378846557,0.960185095098,0.608062906213,0.0678198079848,0.602752158158;0.168548501412,0.503328361682,0.828886857219,0.649918452988,0.205703087155,0.000328066907174,0.634795891377,0.816795676945,0.922203017691,0.112085534577,0.112684751149,0.710507882072,0.962575068498,0.54735076338,0.355081305597,0.267554624032,0.360520426318,0.120315462944,0.68834153682,0.836309808381,0.198414873105,0.627328781475,0.598588615281,0.977788389146,0.453089600975,0.164851283369,0.695854813369,0.147348668502,0.846173450923,0.279940582495,0.379914615041,0.708311107406,0.561331789702,0.640865587694,0.382505901112,0.529189086162,0.76607237413,0.434419565774,0.569785186443,0.192109696967,0.945775245774,0.103497264633,0.794870083364,0.061677257899,0.662432208993,0.15784916243,0.565058093416,0.723927572109,0.921849608874,0.533937888326,0.932478774714,0.511421007178,0.140090926017,0.246971112919,0.0469016050624,0.578361919109,0.166053841127,0.728100968293,0.281470603067,0.105524543952,0.719513951682,0.987817348324,0.28053097282,0.26463411549;0.994982296298,0.381522301209,0.850317897237,0.241280925261,0.56201596227,0.809772967241,0.0715418417724,0.774788221756,0.466353925911,0.994054022765,0.408528450229,0.446334512956,0.102986680859,0.239986698426,0.502075503431,0.032879064284,0.793047268037,0.93381161122,0.128125126263,0.444374754771,0.374092436755,0.673939081901,0.968499915363,0.237781721068,0.597513812021,0.964866137057,0.25599467373,0.82255311915,0.0562296440496,0.161002267778,0.10434074312,0.093143632569,0.85747106518,0.758136096775,0.944018568955,0.919583868004,0.776241547686,0.0158366527768,0.737784629491,0.817360870937,0.0692428455216,0.456176862381,0.779267187458,0.642163770083,0.674304546782,0.658882398918,0.271944610863,0.697818403563,0.469884118789,0.457815601033,0.652756178954,0.10191367522,0.804900357268,0.826822469245,0.734785905899,0.230048530395,0.714625994884,0.355802066726,0.893960181032,0.233349966281,0.986149202416,0.941602126346,0.356023505582,0.92386742995;73 +0.445317168522,0.667553302477,0.910516132988,0.532638406257,0.174254542713,0.563025674441,0.801713958443,0.0418292801945,0.571494878512,0.105577422558,0.622616257031,0.365953687606,0.477306100084,0.276242861439,0.142475359651,0.701663829243,0.578040059246,0.436540176003,0.0351742022216,0.846597278047,0.527765225958,0.211727477359,0.0100646278205,0.380308061497,0.802259224709,0.426593180672,0.901326822308,0.432581767162,0.351191944565,0.726974540527,0.805446585577,0.579125484421,0.0388121952846,0.568336033557,0.821973590373,0.273912712281,0.237952027903,0.364940287069,0.744290063518,0.573532685373,0.186825419503,0.471484650119,0.486060200529,0.20282390445,0.417063859443,0.171573039959,0.464046392516,0.0921151515237,0.948341779476,0.0279254678636,0.288615140535,0.461891369408,0.55020264542,0.605473557114,0.701834967028,0.112864630057,0.492018577362,0.742512689865,0.237800289024,0.356187341117,0.35999559177,0.680951202697,0.177131252832,0.229732767082;0.673564066033,0.131305872047,0.00769981749187,0.824399983121,0.854146891628,0.994857803115,0.387641082897,0.212152649801,0.442246676508,0.123756826403,0.524680457557,0.163261588572,0.726782384026,0.261897276099,0.597272185261,0.833524480478,0.706300482493,0.703286674597,0.971121221313,0.549961424577,0.066464585669,0.610980423193,0.276554620743,0.538787031688,0.721472778486,0.989781202971,0.430097787064,0.845157788231,0.724960759427,0.123493262206,0.294759434559,0.100902288373,0.304125919218,0.781686268109,0.459855624869,0.533327473677,0.115776683528,0.987428579856,0.887330214524,0.386940800225,0.18871766342,0.0277477705802,0.249370176905,0.0119940409656,0.46736389304,0.702204512162,0.0181522598164,0.884257110131,0.611164459241,0.338592714628,0.476938003842,0.63206065015,0.602537031439,0.979571481314,0.482553101453,0.161998599655,0.986051030707,0.758493553661,0.918969073495,0.499998738494,0.207937132099,0.266787862326,0.996968282436,0.56911507851;0.203604516455,0.0435570362739,0.612314051365,0.300791637152,0.871345840125,0.538134865598,0.16102922573,0.655358657848,0.203966296475,0.0346576749246,0.276080897906,0.99019312935,0.65638526281,0.433801476387,0.175507016633,0.626603688788,0.398880895212,0.57876173247,0.689183819998,0.266497260677,0.723962602409,0.503412176303,0.415967613179,0.256917520986,0.233972290008,0.973308994855,0.979939981698,0.601504256866,0.227228222789,0.750686035292,0.0285447877589,0.154977375666,0.729430804318,0.372153185853,0.735221817693,0.352982361312,0.244780346852,0.791308398388,0.924590755399,0.262392756733,0.661663227576,0.150875694721,0.643476372276,0.726036807321,0.785831041294,0.400537714387,0.482402643789,0.286729533164,0.182683271496,0.374956596968,0.7910299287,0.0204692188113,0.404517467837,0.510650652634,0.193793750608,0.180799672053,0.0966706875708,0.713922843269,0.999896625833,0.475269922546,0.0894025162985,0.439517993697,0.902251762623,0.574795630903;48 +0.784484687686,0.281577177957,0.415906282348,0.829119516355,0.412259802384,0.597289293442,0.446265268958,0.23866762927,0.0142865278626,0.00351186401272,0.722022693005,0.299396694449,0.0304364867406,0.00626946911383,0.756060838713,0.339250227383,0.849842417334,0.495484606884,0.485560790451,0.176828713939,0.889074079916,0.178375925994,0.816973546179,0.669975795835,0.486712661808,0.327673440471,0.6336820244,0.915053202226,0.517803958574,0.424737820093,0.544401893628,0.619218840638,0.704406292643,0.989801513404,0.963056380096,0.390600467575,0.989055531518,0.401476962015,0.566501419704,0.722772728232,0.555207673917,0.08715183076,0.201056160423,0.817659008295,0.242835968538,0.0392502815184,0.421384531593,0.311579147002,0.831296081434,0.0955457616421,0.24027121058,0.770881985597,0.599331013527,0.749401470261,0.554399441468,0.260389086322,0.856431140927,0.624273582291,0.663517815283,0.665448168004,0.144028937958,0.725709585712,0.110728353654,0.184806376355;0.901919744131,0.119611382171,0.505998360341,0.813400728772,0.387872066114,0.745230996211,0.613739516647,0.896923834093,0.786906125542,0.00143948849489,0.218209226613,0.929422390573,0.221791336348,0.909675318313,0.419045500486,0.214712673456,0.0699890484295,0.210584319373,0.0293991872301,0.0922952843769,0.605508190257,0.981229167588,0.17323332118,0.439784241489,0.116056310072,0.113352237434,0.216853447391,0.0826129956122,0.379149821305,0.904225021409,0.745489713537,0.111338912586,0.522664214061,0.858202507571,0.170811228553,0.483021191763,0.17920040541,0.0775362395922,0.559638168488,0.436311813525,0.987587436224,0.201579632796,0.910278795236,0.927561712215,0.439080828828,0.000426723580859,0.00770843687247,0.899039645122,0.387008235879,0.933531111117,0.281118953499,0.772109506083,0.524458503808,0.828366035107,0.979048152535,0.475091534739,0.705224771844,0.056071885841,0.119608469386,0.792721042406,0.59529658225,0.777788913787,0.148933748509,0.625329427479;0.297447437629,0.966286221958,0.68000644178,0.768437856263,0.200310226897,0.255797452237,0.672629118139,0.47973603859,0.466071804433,0.945377782468,0.500241681643,0.581876710108,0.962437400497,0.979954707609,0.549496018095,0.339040994217,0.791947247036,0.51026937118,0.547532445108,0.68954050757,0.627689448717,0.64160247956,0.505522371187,0.768298572948,0.434064189669,0.171024613991,0.844126863377,0.70968579269,0.178084264003,0.373824170704,0.690364621778,0.359595830388,0.889288408029,0.575634961341,0.537886939485,0.567601119748,0.553749080607,0.0104614500812,0.0108289449262,0.360807627096,0.259553607619,0.619255917033,0.351901658471,0.271080267234,0.977771983146,0.807124862504,0.444601534798,0.849079367848,0.449994724858,0.361881748427,0.346987450128,0.576854355879,0.700130941973,0.572784288695,0.120532077611,0.777246263673,0.992354533284,0.281486869564,0.323269212542,0.672712977122,0.0198938741259,0.144590753872,0.706122708016,0.290388913108;63 +0.762657876528,0.00103947144573,0.961949162025,0.113552555535,0.214321505074,0.969525031332,0.844964659257,0.829029401119,0.965576679851,0.401259521791,0.703471718861,0.553063640246,0.416663029402,0.891265934907,0.658901824198,0.593596596516,0.690632179808,0.941261997266,0.724338862831,0.327115875409,0.345581634496,0.841106047606,0.544614801093,0.524991466761,0.18078205995,0.700002558573,0.682336248778,0.0720255498472,0.795803187129,0.851569358382,0.842907692957,0.521104232515,0.986747026866,0.222962004497,0.86933184896,0.39767188374,0.683295070348,0.636277996666,0.186448267576,0.689215382869,0.64166018534,0.40383401787,0.464682295714,0.45448823156,0.0531226438655,0.768753469794,0.783052185995,0.340194053743,0.807925492751,0.544583991778,0.820318450168,0.790560279277,0.290057113645,0.825630450837,0.940395248674,0.360797516276,0.0364701283283,0.920942648722,0.986568905226,0.39182885944,0.423811970419,0.757328353389,0.55751445998,0.0769933584349;0.0937855090269,0.755496663454,0.985549459262,0.784355466881,0.532662223928,0.6535029613,0.19152281347,0.997610575281,0.420255476005,0.00818074916064,0.0953985007788,0.540953913283,0.343106715148,0.342883899606,0.996455586148,0.0236225831841,0.883880089898,0.607478599966,0.113384659077,0.361392255813,0.0918759461809,0.706662628867,0.574460767604,0.961398198878,0.466883677226,0.759063636909,0.384473896646,0.152518033954,0.596568230415,0.943008835674,0.427349565528,0.349985137563,0.558052514052,0.448860912914,0.536337903339,0.822062689701,0.555329206648,0.776593611205,0.156992890469,0.599464246864,0.307154868061,0.385690297174,0.277507336225,0.920573635929,0.807938463609,0.533435531187,0.328185408252,0.81532079397,0.838238102975,0.828320016459,0.0954331878246,0.663643078765,0.133486213284,0.860886474718,0.683364798761,0.187265405837,0.251516215405,0.367643611053,0.350381163464,0.744992281494,0.702791540834,0.483964301717,0.765364766975,0.752309334919;0.121465596671,0.296585037077,0.392009855156,0.94191021277,0.899719012624,0.826250130817,0.356751904954,0.973319478014,0.929523765544,0.894579425838,0.82280473671,0.42773128518,0.505243145157,0.0581285610946,0.826464018936,0.158140348448,0.173036180741,0.565231838512,0.0518761935304,0.824430246497,0.0158447209052,0.972037557014,0.099413364449,0.761430789046,0.853714607096,0.514089791391,0.543600565441,0.512565660854,0.258179095324,0.555904330625,0.792489684754,0.930051879379,0.751299681827,0.437007989163,0.0312120177451,0.913069883016,0.444137159783,0.666688192825,0.818386334368,0.0959140897525,0.69967787154,0.657971291733,0.573821012929,0.518548603226,0.133925499874,0.243689115161,0.654865068998,0.323298905764,0.292596867803,0.612171680757,0.992750153827,0.449075444755,0.789559058343,0.567349342995,0.554016295548,0.756164865471,0.37901088897,0.213867597885,0.246775040795,0.126634385634,0.19635138898,0.900870620886,0.523604267249,0.15854925328;91 +0.127497725407,0.711624634214,0.283499946563,0.959925324934,0.146908201507,0.761690302296,0.740943969984,0.965020099698,0.639952803916,0.285391343694,0.942064723102,0.888246408715,0.0701008637998,0.185530948178,0.874206816793,0.997510054014,0.372362167789,0.133593990873,0.12887895186,0.235136799117,0.588548567371,0.139255316031,0.799911064624,0.393731394039,0.20819200269,0.686841130295,0.561766294377,0.932706681229,0.748114240932,0.990890037588,0.565186719136,0.591729257983,0.152831319537,0.296279988016,0.457969406759,0.895235919132,0.86054097065,0.632942219249,0.908601543618,0.0871017694841,0.846556618704,0.678740933568,0.929879202343,0.289249644403,0.941283678207,0.0169487919042,0.826513136283,0.651979862653,0.549439207736,0.636275431048,0.130288509441,0.976776635103,0.27400955723,0.0455741110784,0.921097979361,0.404436935622,0.6615709849,0.329142912114,0.177634745262,0.488139476704,0.237488679266,0.911117068161,0.937059321052,0.153672729229;0.66418177897,0.783137427741,0.680311920838,0.191608272097,0.451050180527,0.153789276144,0.643674094629,0.0947859242183,0.108681962619,0.593780332771,0.325143050878,0.923429001075,0.429884227015,0.158442559074,0.403195029406,0.28320215141,0.444022551381,0.0921786002992,0.347678308144,0.39844488209,0.692351397581,0.13263761756,0.368771556008,0.729215016362,0.682542279542,0.443081550928,0.030520546793,0.35821229627,0.939839151207,0.446122448161,0.131473508377,0.657747432014,0.86097588672,0.0263315432832,0.510007858199,0.46674901634,0.386117957599,0.108416204411,0.105483410119,0.399976076665,0.0252307582317,0.287831086408,0.71599466025,0.717459409715,0.929716492634,0.910888306674,0.0971426172405,0.372691492156,0.418257701699,0.63398131519,0.224313962927,0.58683175526,0.835479287486,0.0611627481379,0.60980316722,0.816977834777,0.806332308762,0.419871280363,0.743274300827,0.927823930181,0.163564687357,0.584066800893,0.207997203526,0.427407831989;0.208891875843,0.421691656019,0.391565250821,0.966392146877,0.386984301547,0.0239169602191,0.000867333258929,0.967421411292,0.810134094572,0.914081269888,0.376160220365,0.501339404572,0.91610198043,0.21795402845,0.907966004585,0.636675317258,0.486032241325,0.228619470435,0.674958296183,0.456764687675,0.704190916435,0.321073140161,0.748892027465,0.816097013777,0.996833831034,0.876845800674,0.405459458686,0.697867265654,0.909202137156,0.31907525736,0.273130884142,0.8264696272,0.877925096258,0.361038212429,0.466011772907,0.592180304896,0.980027605577,0.027246116355,0.652414947258,0.043193309243,0.49680286618,0.288824301534,0.132270908686,0.999760283933,0.192333172997,0.343095704823,0.374959606806,0.471737183886,0.0496625087179,0.835931900128,0.123601681948,0.588648962341,0.283993705585,0.18279979171,0.539538959153,0.416219640117,0.908847301244,0.686380697259,0.658309988475,0.487465957056,0.553258314753,0.748475938505,0.381508742025,0.312102288401;14 +0.0620988141584,0.152386286479,0.351221378715,0.878385207099,0.42259973708,0.932559496313,0.733906454425,0.0626453504793,0.511740833276,0.180594176771,0.560511073635,0.705676029128,0.772167454123,0.515690148092,0.51800382102,0.462698539982,0.136369142113,0.653017500768,0.133493641624,0.621164422371,0.19149431982,0.764853345439,0.91322521736,0.538203773335,0.0401307824165,0.327027556879,0.395037081655,0.620458662502,0.0118148723888,0.166580106331,0.785160991332,0.231496307271,0.209920556742,0.462473370099,0.785763674414,0.427697199644,0.965300219663,0.227517896618,0.387048316105,0.198138683409,0.539815588589,0.675138976058,0.480387335409,0.135612107056,0.667377139694,0.134864901504,0.89693858479,0.0983292980694,0.411630460995,0.846396081175,0.133408339598,0.0799125142137,0.795871699241,0.43693542892,0.315700828843,0.916008131238,0.754970496333,0.615425961595,0.797189345379,0.254257666879,0.140449546937,0.768642413085,0.820671040221,0.806942424537;0.792586348804,0.880821349365,0.280999218334,0.29902836026,0.560083944393,0.0282136144187,0.559436017413,0.659554967037,0.731748561055,0.989903144462,0.557632542933,0.435063011521,0.949793841978,0.551019164813,0.878932017432,0.592966184537,0.949308588161,0.571944688502,0.219554587806,0.529732233709,0.497028244921,0.248363668693,0.384798830466,0.595284360897,0.625959239779,0.574023194822,0.621669045889,0.51904315745,0.176436265995,0.718579348729,0.0998954167065,0.569137121246,0.335443798168,0.392721549918,0.709806619881,0.324771080505,0.731396316252,0.759071153741,0.874676884278,0.855899434143,0.783370243404,0.836951293612,0.19433085135,0.119419774615,0.281090989279,0.478898887962,0.478722810895,0.528497419204,0.265384177568,0.732975670706,0.710861225188,0.241576469701,0.735646447845,0.892197748914,0.506965455268,0.945442767987,0.230647365065,0.422299357594,0.747764486156,0.533640236293,0.961184020169,0.296019035296,0.631382083419,0.278499155566;0.540505516873,0.266109669159,0.843549352924,0.00834810617196,0.898696316061,0.698978751353,0.79507574359,0.13860633253,0.272523631911,0.0629234905114,0.370927706282,0.300533136286,0.876999986353,0.976942344909,0.0194190099203,0.10067989039,0.405183770136,0.248138368052,0.468323550116,0.284844867982,0.180782024356,0.506452853218,0.666688600738,0.195503949725,0.479457851816,0.953051189597,0.952885887186,0.94251440364,0.247526227866,0.610090854519,0.592314721469,0.520439978639,0.455636269239,0.816391499295,0.602378765794,0.95470549606,0.554235612205,0.770078613633,0.904640744362,0.368599722989,0.131413304618,0.592706063244,0.955697649174,0.0912364374512,0.613752005962,0.08031673617,0.0840384278261,0.630860817204,0.455850546826,0.971185480156,0.419953034217,0.356606146659,0.242624982698,0.59878199684,0.114671391927,0.511899324338,0.923062841671,0.796237575622,0.63838635465,0.46879970147,0.556810662108,0.693192614315,0.105326861362,0.428830607142;94 +0.883757487322,0.81947363378,0.143713708477,0.45707976974,0.559223419148,0.211371662987,0.924124893425,0.685396660225,0.0407334871334,0.174201950973,0.303313368042,0.319068222121,0.340929307937,0.575518927657,0.741089076231,0.309378695761,0.00657424125781,0.940071661946,0.0460220652796,0.415949651454,0.427697930636,0.858050382872,0.593373875842,0.337236667849,0.949959055438,0.526240263987,0.916900481163,0.424123430998,0.839287710619,0.618635404147,0.500865014516,0.537950028154,0.877422417159,0.314653402294,0.410087134002,0.612530872735,0.321729984679,0.557069488094,0.351723940418,0.521157236561,0.354586362213,0.517529657494,0.586614787253,0.753208478867,0.330256021768,0.14972856118,0.418797255835,0.880392037007,0.825825638378,0.787496615907,0.474578207907,0.507853771543,0.79267280654,0.631062403612,0.829062098151,0.726042117901,0.910136932058,0.839551432678,0.273043657249,0.750988582931,0.645087820884,0.201538325644,0.612737233432,0.121172955591;0.150964086167,0.749780189745,0.585891530084,0.653681515642,0.868147020905,0.726590575437,0.480783230727,0.710055623057,0.834615832233,0.711875300446,0.530976676102,0.396812275221,0.0669470853966,0.956399910513,0.754419474343,0.323203645417,0.163799556535,0.489456155,0.872751835776,0.646802282254,0.00758172341095,0.0454442441696,0.242930951283,0.528496377438,0.043332519898,0.353081258425,0.0219655480584,0.255126454893,0.216412435213,0.118074118313,0.545503713857,0.0278176879544,0.0335715315963,0.152323921972,0.0936000379478,0.287195571269,0.710604685341,0.633318608243,0.988545530184,0.718546837653,0.496145042215,0.0549000213359,0.222595171252,0.485866749461,0.936247033163,0.00103088638565,0.434101829284,0.0754241922682,0.709788837615,0.831502749256,0.033842113274,0.341448235345,0.772858402913,0.165382486386,0.576715265253,0.80295905598,0.467495732066,0.923894511308,0.302818248545,0.949226464186,0.479770916121,0.282812885378,0.761899162631,0.985109842246;0.943420849321,0.561486802942,0.714594098585,0.973804498527,0.56291224912,0.171575811029,0.35268914542,0.181880869953,0.663227097535,0.0733836251061,0.63025660318,0.860666981287,0.0917449198035,0.647367594748,0.799021383229,0.318256284289,0.540012135022,0.872708023288,0.222820463327,0.890489476483,0.758006694657,0.635850134264,0.123791809697,0.0616376401249,0.889049020555,0.190946777866,0.86740714086,0.613373076854,0.0493680643899,0.326493715175,0.413330168262,0.848249914731,0.966123255388,0.955605783685,0.681703242755,0.514104492313,0.151349489498,0.842454281755,0.807843625646,0.652383674107,0.722630304122,0.746963358965,0.539105365323,0.331196064835,0.176082693584,0.745139693412,0.596992449511,0.335785054317,0.121291069194,0.134807492293,0.982213475554,0.144917829639,0.900213078557,0.351759032995,0.0883191362854,0.235517291107,0.11136688903,0.441808831627,0.604777251937,0.48385291337,0.282060578101,0.474576448855,0.103209987383,0.253594473789;59 +0.60914634549,0.623590858141,0.685160116661,0.628834349581,0.160720705577,0.401479304886,0.3289230874,0.46670794174,0.33513775954,0.041498558408,0.777661627313,0.924995514948,0.76715194207,0.116492743994,0.242491010387,0.327388020518,0.0304285510363,0.50203221212,0.322560956382,0.122081163685,0.395183183457,0.577573547668,0.885603779966,0.971590184052,0.922103936108,0.31743018517,0.133606212267,0.0921846579368,0.138826126527,0.0115829316246,0.135715481278,0.240754159114,0.781546649112,0.150146711947,0.661680632203,0.658144854097,0.283364371508,0.931031752752,0.577720256305,0.333590968067,0.282416885566,0.20239519458,0.940112652177,0.294980725453,0.00789641323138,0.000696802819207,0.587108642808,0.726459270944,0.598001032383,0.864386547253,0.586914698268,0.459571425432,0.322435522015,0.329028268981,0.739052516425,0.318584424633,0.0213917470489,0.892571016659,0.551356128265,0.0757099549396,0.318236424832,0.513418327659,0.999996998626,0.740994381505;0.0141314044902,0.186409241205,0.844663244446,0.0509404836346,0.421172444916,0.931790188834,0.691330555824,0.186263358476,0.850489308871,0.876453442654,0.632610270284,0.453685123184,0.451603886092,0.309435195752,0.366206470084,0.072224401499,0.0431467417349,0.199809144259,0.931466869729,0.0400883488065,0.429575425549,0.0803301924417,0.454141290876,0.546612279062,0.230549876078,0.753486897389,0.265387365765,0.0885505760709,0.806610958689,0.991607535237,0.9107650447,0.0926323852368,0.0487095422441,0.366256171533,0.00973584940621,0.0364864179459,0.571335611964,0.130494985167,0.670163775018,0.8948539228,0.864696182831,0.050453988866,0.830955405242,0.955703267871,0.360557298077,0.984549801769,0.00786819801301,0.889979562709,0.6500517012,0.656735020158,0.147465830634,0.20894612164,0.135300514682,0.862800256956,0.829636182807,0.979747894553,0.218437611317,0.868963459249,0.281223444774,0.69545256526,0.180119704534,0.771553706544,0.603369706909,0.102759727447;0.468080824442,0.907677982553,0.753553187854,0.809867582959,0.712678984456,0.415024453925,0.777487870873,0.790650280818,0.484353028063,0.309198650783,0.583786842009,0.0139469795446,0.411619307734,0.0479185372414,0.0427049974957,0.953448894529,0.198523860994,0.0355835952412,0.527507791708,0.109543511442,0.967383281481,0.874308509012,0.981257119778,0.140111214185,0.258326206159,0.877236740112,0.0493320594657,0.327542169753,0.0897549465697,0.704702245853,0.30666417649,0.178110575936,0.468113017134,0.114108744791,0.119892717219,0.837781823836,0.793508220095,0.975379548867,0.964934425859,0.376273481406,0.0314986971528,0.16432403003,0.51305094841,0.658546386059,0.00651999200476,0.560539746468,0.206399491428,0.706145526521,0.242775929675,0.148717007794,0.414161471257,0.417901094761,0.35403031924,0.456585283882,0.0368864080289,0.656820979501,0.486857382636,0.495447311597,0.730714518242,0.917356707889,0.960049622083,0.906765377484,0.371315847134,0.592148600205;49 +0.771326136835,0.272008874247,0.321305876118,0.167968412651,0.542855701772,0.0036183138387,0.136999121768,0.899339354251,0.259012227448,0.187506503228,0.319047418759,0.312100277228,0.818618852008,0.974185650859,0.637308737202,0.00971409911045,0.79602664964,0.810497374092,0.887708905738,0.241936689616,0.726723303384,0.635709362299,0.380835404298,0.300275682743,0.0648036904247,0.518574202807,0.450516114162,0.934605824495,0.628577793421,0.728773520344,0.120021872751,0.987922695626,0.80046632217,0.681688883988,0.206831999513,0.650301061918,0.585664769444,0.989123173217,0.0456994245852,0.0105957408098,0.201329043264,0.232869919328,0.863158509851,0.783765151791,0.964656342525,0.404343160688,0.594956791948,0.336841159724,0.697171291302,0.591333677511,0.401761808141,0.111737738641,0.060445110555,0.948582583483,0.668207581054,0.915384792314,0.785445012705,0.790419438379,0.690827142151,0.0477954818147,0.240382305541,0.235850340768,0.508230390172,0.528415352053;0.117883266592,0.693207795945,0.283960830328,0.0438213581672,0.054695865396,0.514016879112,0.0753068004359,0.761743284988,0.986447832516,0.795338856945,0.208312936849,0.826747411339,0.44733983289,0.659876209216,0.267389778492,0.509845695981,0.114983142136,0.914804094737,0.520980398488,0.292043984869,0.450061652586,0.551141117941,0.1594547129,0.956709221902,0.836497653359,0.300024475395,0.402173544933,0.798162903755,0.547708118463,0.65228123607,0.46593894887,0.521626481846,0.95111072154,0.300509680362,0.773825617979,0.378081559993,0.42051805902,0.225874884038,0.693178830812,0.221126209001,0.872229336596,0.396752810812,0.931600112529,0.0156223337668,0.345748695974,0.876201173117,0.788585277401,0.512170378862,0.372925984089,0.432411093918,0.306322033201,0.188326765781,0.940970581338,0.128854501298,0.9115762909,0.790910048649,0.886696552073,0.950398631874,0.866685268908,0.306644960086,0.607490323686,0.529587264042,0.952425740924,0.625667531063;0.22292719611,0.0226388578149,0.503533797556,0.477313438424,0.433512737417,0.187348540055,0.482208471,0.893146815463,0.756534599615,0.0519719835604,0.300408253924,0.115782159638,0.0489442339008,0.147994561333,0.762858600071,0.796868636634,0.258864579703,0.157429603828,0.347518265127,0.131800488181,0.655463932234,0.65152669251,0.281125381049,0.0458851784184,0.097218042254,0.408035781503,0.0880214495967,0.757018146829,0.159378296748,0.430747699957,0.572793952784,0.804510298767,0.586811034123,0.916047788346,0.676332855307,0.562932311893,0.0764727395909,0.456261602417,0.50715361017,0.331207924648,0.514807689076,0.343426660094,0.0846936552504,0.547177480628,0.826955574234,0.0878169396541,0.82921927014,0.3581879736,0.429723669878,0.105878447259,0.78539127008,0.224151153679,0.69279879342,0.304591336602,0.0858126425919,0.699121706283,0.24458862419,0.104759469924,0.473949106733,0.85639509361,0.390222967848,0.98492506398,0.742518297416,0.0353561995272;28 +0.298616300316,0.906496278222,0.655793527408,0.597783013144,0.411277023014,0.429685069235,0.718507447609,0.390439150891,0.48941193087,0.668888690655,0.478770735995,0.729339090048,0.700938245195,0.691849816131,0.947218970136,0.84765011813,0.427488769479,0.801123797702,0.947974376442,0.607497754444,0.964650239252,0.989037856306,0.0230651798373,0.431102899134,0.0219263199173,0.242382710389,0.24831224706,0.651405766212,0.993092719753,0.164366410777,0.523355142081,0.657676789545,0.576314312046,0.801559021107,0.936821129169,0.349407278922,0.851971397986,0.327938983825,0.319707881573,0.455478883326,0.588849527052,0.94714351362,0.478033793428,0.163452390865,0.0647661996919,0.108615470056,0.0387943516157,0.837335900389,0.590313616065,0.0487794001904,0.860705493628,0.0386801612501,0.379117282177,0.141488258161,0.23062735858,0.897377976441,0.26696047863,0.665078570307,0.358996566416,0.788295978626,0.627729888694,0.60924017265,0.792814859041,0.594096232906;0.0997741309977,0.750698002771,0.673439157589,0.0385706133915,0.754048349094,0.131291333942,0.892386539154,0.992068606825,0.0697857405401,0.882809536309,0.269087507338,0.925363476254,0.134395169815,0.446702657901,0.677924846631,0.736143579111,0.533905150283,0.819224324674,0.625619470152,0.0355618943049,0.310447464082,0.468491079819,0.107483740452,0.531914877358,0.0689663058284,0.112053350181,0.314042557718,0.856186023828,0.89979706719,0.47844750565,0.353247626631,0.518250376868,0.805352851139,0.77931914938,0.817555840781,0.971962142823,0.661831441408,0.83939448177,0.0032503057206,0.0619013541757,0.138946047509,0.282704966292,0.981348883054,0.182889920025,0.788615777771,0.921560830437,0.378957396341,0.194309772271,0.35017220816,0.691621663389,0.58373004738,0.121928785804,0.833362110754,0.61213312985,0.409215733597,0.722469731634,0.433671058355,0.258512486872,0.837667510736,0.271855363233,0.714308920715,0.168483351679,0.964414338384,0.65944918782;0.34797628179,0.969032233572,0.827315860168,0.724206755073,0.490874092839,0.178855430544,0.846609123962,0.91408034068,0.385103767659,0.411597868058,0.570859392483,0.122877276347,0.708500071815,0.0416430939886,0.328556359107,0.373028574244,0.669090092476,0.961184823994,0.383370105141,0.648544456802,0.798245958873,0.916492916209,0.455486840117,0.536835177767,0.835599547478,0.132547796795,0.567739980189,0.891965969091,0.111096167545,0.416926351366,0.0204459461448,0.0420656022347,0.380876069172,0.822088871043,0.982198964268,0.0383667468474,0.424798596596,0.235496984785,0.435097320735,0.714259865067,0.12900746417,0.30074155432,0.665156733963,0.474657755528,0.0304613947315,0.607364551567,0.219874288705,0.542780110387,0.83942328508,0.352658780115,0.719141956496,0.13534931265,0.640984176697,0.738789299638,0.242329214161,0.0377639443582,0.23021249958,0.906359712997,0.0564745731395,0.266373033815,0.855967192245,0.982595910767,0.217209251506,0.388648900313;30 +0.434880109969,0.626534128858,0.0506489954036,0.157090463075,0.898668737295,0.871632773817,0.882323921087,0.280166030987,0.739192091427,0.925162081926,0.499105151653,0.597066519828,0.419923545151,0.75737860506,0.535197649027,0.529321234675,0.744194190497,0.075857926659,0.783248653335,0.117937687107,0.901431579607,0.46069426524,0.820577007166,0.453549375986,0.0288005869699,0.0918432969793,0.755923343903,0.396521843872,0.803881877236,0.450417922837,0.937335938467,0.363983569576,0.24212743651,0.231163693486,0.379265718283,0.823275983342,0.420970565257,0.302510539043,0.532870360103,0.488366565683,0.372934325931,0.929771364485,0.38550054128,0.274885443242,0.115698833614,0.394357150818,0.306672835383,0.296125958466,0.54065621001,0.312145790163,0.552633686099,0.851695749621,0.295896506189,0.673030315582,0.95541087884,0.565556129076,0.549024499153,0.687896933532,0.942546457306,0.95567605202,0.977998384895,0.712114668054,0.604832526017,0.512317002815;0.477507287465,0.929088264707,0.784422972469,0.733525386548,0.468418421974,0.0532670132606,0.518242611842,0.806270601273,0.314833924915,0.603663331458,0.0703449882007,0.524665835699,0.190832260152,0.69179710017,0.733754696366,0.684161992261,0.425894693081,0.253035869661,0.288381144893,0.936274407198,0.779504071414,0.219420773784,0.404220006629,0.191131453631,0.402971429593,0.650144603987,0.00962581263006,0.186250358538,0.204636295501,0.329464186863,0.97380115947,0.587383130658,0.69614072184,0.0158897689507,0.605864590633,0.930527964652,0.402588375818,0.747439793193,0.146881968993,0.600119814123,0.251117735863,0.286346137444,0.585429231657,0.640543919271,0.946341490619,0.918194424721,0.262319906345,0.429671593538,0.0993214962357,0.791414993134,0.797887545542,0.953102330574,0.251360125206,0.281142848048,0.686491104526,0.96481469929,0.632114719567,0.216801080161,0.62953006751,0.464082494114,0.0103612812861,0.570655029469,0.693848127458,0.414705598888;0.270619336156,0.369250441242,0.615558865389,0.925452758519,0.0154449198416,0.237557942131,0.90916241732,0.0653412415089,0.706509247969,0.654272363649,0.178541091223,0.150527301934,0.312250033218,0.61525498357,0.501055802332,0.702163516066,0.066876483829,0.851694137243,0.565540630712,0.563246843403,0.208123756039,0.395888369068,0.749547775355,0.2475932734,0.0742748849986,0.19866206944,0.523521483853,0.623953076668,0.22944786411,0.52603447411,0.209953997062,0.459466234112,0.366296251539,0.76379882004,0.69045953645,0.971385466321,0.380524206907,0.179742407287,0.951587612791,0.267202555617,0.11217364436,0.546468676544,0.137349678559,0.10403540977,0.635967229962,0.232592895485,0.636250576422,0.251716470781,0.670943402827,0.748258673664,0.26494409194,0.371276993697,0.645204700176,0.91801535004,0.0975531826245,0.0214515947562,0.929126491473,0.940581765535,0.598555133705,0.300839814203,0.847049194059,0.874998606288,0.114210062042,0.400941893004;32 +0.442895684079,0.305270819224,0.764645617436,0.298735207509,0.486121993252,0.24076757752,0.69171999871,0.175914727591,0.493789041819,0.826126033167,0.716227307032,0.0244027925651,0.874389862767,0.763878089852,0.452022219819,0.141228259664,0.188078236262,0.159036197075,0.129547187984,0.549950641062,0.363447845986,0.304860291727,0.733369411254,0.828605423403,0.622928945925,0.532356823613,0.929283362285,0.480836477991,0.649152212178,0.0385002511382,0.0614817934473,0.880442350455,0.845678693802,0.702341430975,0.646392410966,0.979647617498,0.760404639211,0.82022686413,0.33512217759,0.96180236638,0.928791254724,0.338589862822,0.144019350076,0.926746198237,0.211372695706,0.329468876037,0.646141403207,0.0261622096108,0.401772178929,0.467070381694,0.479534426599,0.30252026814,0.0650077978731,0.861334969096,0.732763852826,0.111872080101,0.0591731545941,0.0235170971073,0.0846225172146,0.723315745382,0.773597180861,0.343717029099,0.777680669935,0.371860541104;0.0829530754101,0.743570898497,0.519506763889,0.442544117891,0.0431730874304,0.270927871199,0.888351199934,0.851285868649,0.286835574429,0.578646073681,0.305368302751,0.929721088512,0.206883545569,0.0532913702565,0.176231135577,0.85410340096,0.202470814735,0.537603220341,0.206449291964,0.834681421954,0.718541982535,0.761542314575,0.732322005441,0.779110428549,0.885107529427,0.344936657975,0.883042500615,0.182153056719,0.357976971483,0.782361775856,0.170484613006,0.837428004294,0.341062879833,0.0126639724976,0.772166384444,0.377280584387,0.145751624323,0.138669080609,0.684717450222,0.573450081345,0.0819790355819,0.0804057979228,0.759277246377,0.384012710626,0.373512145912,0.31643669879,0.860113116489,0.335843779096,0.0337238806653,0.697247918272,0.327682990036,0.602962793094,0.583363082609,0.307701894704,0.590964935948,0.498620548692,0.556968913578,0.905621386593,0.301410239103,0.555183025775,0.898083857755,0.859249292398,0.690886417931,0.580630067527;0.220586487045,0.0317275220926,0.585537486287,0.819412802909,0.749965497833,0.841229652809,0.593740460598,0.905317355761,0.26115679522,0.913100899708,0.311136948881,0.570745087222,0.422803354292,0.36491797127,0.209270297548,0.493334663832,0.449924375498,0.848548334372,0.0448810277331,0.355856235578,0.534720053456,0.812345763383,0.557863593428,0.36897405209,0.0276399735411,0.465721338195,0.82249557762,0.617878791158,0.133606006863,0.00922055372687,0.0181200299723,0.843517921904,0.98195428916,0.595757165703,0.445625227541,0.227124605108,0.752176215808,0.639461718708,0.129777635507,0.183856503172,0.833305467187,0.622247806882,0.806667527429,0.419684930943,0.621467055481,0.671154413279,0.367698882017,0.649381058914,0.3435985784,0.957424395871,0.874406811994,0.139107364072,0.697262366594,0.607491995131,0.706787104867,0.885677311095,0.884525049903,0.743832353814,0.120442852913,0.456116466015,0.899191071354,0.0817327557008,0.0486416750715,0.390985018556;30 +0.906008453539,0.211214902784,0.473436343834,0.302695426444,0.317444718988,0.904755354459,0.679451529611,0.846758004296,0.61219701415,0.845431744779,0.239637322585,0.70315188826,0.178821069945,0.785131132264,0.0140518674241,0.900963838482,0.660882934678,0.667323364217,0.00794074815066,0.795852163336,0.450047781889,0.418621254106,0.136179766977,0.621920284919,0.775228852755,0.783958221977,0.0884404934674,0.956954138924,0.521113848413,0.153977386885,0.720085393302,0.783736020224,0.153660958036,0.454118541804,0.998350033228,0.290370916729,0.813752445309,0.0284917386232,0.594244409976,0.0786018349146,0.12857565968,0.394546233123,0.34841797614,0.662063462344,0.240259382743,0.83555149696,0.878386008192,0.00566787632744,0.913220935589,0.554630238705,0.755469776976,0.928129426682,0.923996244155,0.310018651033,0.0503540490215,0.763414192548,0.258293228165,0.475260513402,0.626092176391,0.251658781744,0.888201460186,0.417515214658,0.832152837031,0.37172667798;0.482183735591,0.886803459247,0.873430436352,0.183779748339,0.421693305553,0.393124245645,0.585894769689,0.985852496979,0.534107205368,0.706231855996,0.700399225128,0.410963626251,0.204239565077,0.5228542859,0.613311946063,0.70779574259,0.768183653035,0.920672240812,0.323748876631,0.998213448469,0.775079466456,0.261201853217,0.720973985822,0.212188380298,0.288446564504,0.585224900768,0.0663004215402,0.368421381695,0.93684366365,0.0275751246261,0.683589549755,0.817567277867,0.895576393512,0.308666890246,0.221968406984,0.992874761967,0.0905376306577,0.392216359625,0.87720893566,0.0302559583115,0.103168242176,0.464812352516,0.185015055925,0.314928245854,0.61006558083,0.148706391348,0.498993773361,0.00832605824639,0.113812221223,4.08625025794e-05,0.78416225524,0.621211736698,0.111155057995,0.628382437612,0.486492712592,0.286794274824,0.0981408912479,0.895933703368,0.0686609193847,0.738174929843,0.776163853657,0.574562666324,0.42190030371,0.107243512565;0.350615592286,0.2337792697,0.89491012575,0.902354649438,0.81127945928,0.682720381032,0.440779583473,0.293228730118,0.508649904383,0.336331488167,0.165179528405,0.25038070879,0.0874656993037,0.50042655095,0.388834602788,0.417442274399,0.480705447587,0.378512795367,0.249457320049,0.740305303257,0.825272332454,0.442641970241,0.918685818763,0.540574408458,0.676143091503,0.172909719477,0.959264443907,0.0150811307679,0.575311429258,0.281225855631,0.0230719414752,0.676990324811,0.070182166852,0.276403286216,0.251437527134,0.0838779455593,0.463500894153,0.502528463166,0.85508295098,0.795866525141,0.317807110924,0.470062040867,0.943871063314,0.508765637634,0.992217074516,0.224176766239,0.240551097761,0.233306461036,0.195639121518,0.507921076288,0.57461028245,0.940120891072,0.031921593948,0.807886141779,0.71379617638,0.0642272241156,0.904563935919,0.66846331928,0.398980966669,0.128014063105,0.649141714404,0.818633181343,0.600571142944,0.12461144879;50 +0.731055077179,0.14476763831,0.309819275191,0.322394964487,0.112566124266,0.471928465264,0.837468361318,0.702044379963,0.939647227083,0.0593697394375,0.576033685839,0.300374116123,0.279270997514,0.392398994961,0.671195931991,0.161502887196,0.314604145411,0.902148728687,0.347579652078,0.308530870098,0.748636275709,0.294662894943,0.107763531688,0.403114130136,0.954251361058,0.0792953056676,0.92765510224,0.854189463962,0.861458872529,0.746284521494,0.638583814695,0.236072732622,0.101374992683,0.293355794912,0.0965440267169,0.565032924302,0.387696048892,0.452066926794,0.722980229738,0.748973168926,0.236614688203,0.323393459654,0.386869130777,0.120189074648,0.414375638422,0.124054070037,0.923770776565,0.666275049882,0.0622442949213,0.584258149168,0.357464191659,0.803469512608,0.760468697748,0.136893409943,0.72315182532,0.967264046937,0.34641774612,0.143118052621,0.807388082627,0.412787660081,0.449672216813,0.64750215619,0.12124680836,0.00662373162843;0.71835050181,0.668696292242,0.458594769031,0.0568753735728,0.328414595826,0.0861334570633,0.579079942742,0.303554567244,0.280915725329,0.804981435464,0.739939097178,0.514944257014,0.0611201806279,0.310557992213,0.248896861231,0.244825444798,0.412360726215,0.47646509407,0.740871869684,0.024833578544,0.764338781125,0.0824220373099,0.720551079682,0.35959477134,0.997760479812,0.526737433807,0.890612217305,0.993360687766,0.377087594561,0.424966879403,0.970276573692,0.882183198338,0.484411081195,0.342036723785,0.853631954539,0.435572053928,0.885001606797,0.900978197196,0.640360340551,0.409046641242,0.2034837795,0.939989589713,0.72782337164,0.0260762937741,0.593452023619,0.347935553395,0.00565911731446,0.197324598436,0.749098504921,0.883109279963,0.588915196751,0.162417213693,0.324131463445,0.202998599588,0.452575568848,0.91982625252,0.740774924354,0.234565869975,0.257615529434,0.900363061521,0.225748682413,0.959072508516,0.229097510926,0.258251308397;0.312358579639,0.43939277069,0.765400219012,0.192033224468,0.798289424009,0.278379115726,0.745059987212,0.474023586665,0.197053287247,0.0170633048237,0.357066702346,0.477893015185,0.395563075173,0.310621905273,0.101356864783,0.716334731886,0.527108170218,0.34729772342,0.608086500903,0.84478116007,0.934878169869,0.711603039276,0.310461049625,0.704712854984,0.842479551621,0.166557216191,0.848192728503,0.572871700785,0.858354910885,0.615798127444,0.087347795491,0.618724873481,0.303731811206,0.365062710982,0.518091476843,0.345549164126,0.075600931622,0.896199288227,0.872569709964,0.426068125349,0.491345133061,0.0583128611767,0.687321749057,0.646519814674,0.594081484215,0.280954397412,0.625735366475,0.66254444638,0.989580171959,0.285651176236,0.613360042838,0.5525573116,0.392953294153,0.174729096881,0.907590441776,0.29381881724,0.619569159813,0.894658772855,0.920139642333,0.461778555424,0.929562164863,0.930790965763,0.81219821202,0.0464802582324;51 +0.24486576533,0.527277337806,0.719635454,0.444493216433,0.596445161217,0.468954935266,0.607998255741,0.227046095608,0.829541471869,0.358596297801,0.973104043448,0.904246790558,0.747460293605,0.549352618287,0.0287106974163,0.999045650629,0.330438551049,0.90000871122,0.760342522179,0.595729587357,0.0230734791666,0.644800498442,0.749152237351,0.579720527813,0.310461097136,0.637712979749,0.427214501938,0.617046252022,0.778186282096,0.930986835363,0.668620108948,0.61557824575,0.882088266503,0.453020078687,0.512110950245,0.87280861379,0.825973307731,0.960122493777,0.248678965018,0.859412370057,0.638514129183,0.891328794141,0.36453355792,0.208095434246,0.401996265451,0.50060520052,0.168441849041,0.759902727157,0.107544344913,0.229119466175,0.0503186451649,0.540040054986,0.263024274856,0.0683570387756,0.789076629388,0.416179534572,0.140160652116,0.20317552016,0.198411123394,0.00605494244936,0.922108377608,0.654559844318,0.630705944458,0.715619458131;0.503356530823,0.540250211354,0.295811388789,0.769698121212,0.0229790534417,0.713048926522,0.581995796484,0.21687419116,0.452925763878,0.505721917828,0.583868009499,0.168148316479,0.824432766395,0.639289705047,0.42577912725,0.0345342574946,0.712396747046,0.408056142865,0.887080991992,0.404915473217,0.40296958291,0.581972424538,0.246086294779,0.624671330165,0.641861908121,0.614009055757,0.861150140324,0.172628206405,0.747142864378,0.681890572869,0.116572338454,0.766102895761,0.4979042156,0.982589613719,0.569697256564,0.723681682143,0.527961530326,0.231099468159,0.899099841761,0.172444515696,0.38888825166,0.0361409087762,0.216054858043,0.11318222431,0.0113924594618,0.665037301041,0.754463267104,0.259116945809,0.183859346618,0.498906694021,0.236490504371,0.61880857847,0.306220377001,0.141457074344,0.310221200971,0.551707776033,0.088570124921,0.627559314876,0.33603111489,0.724007754664,0.741756796485,0.915255262394,0.0134414850966,0.958235812676;0.129294042889,0.851424311042,0.716873993835,0.702671478841,0.263203568303,0.379753728756,0.774297185464,0.937119193328,0.27836222709,0.737097501086,0.921960454157,0.586705828884,0.0519459431487,0.340423321423,0.0701773923266,0.811585434018,0.813466245071,0.103221942519,0.719292419838,0.445823761478,0.791127173752,0.613597432378,0.692300175511,0.807155155676,0.733459745733,0.137119812508,0.475492141405,0.470236131098,0.417756090591,0.593478657772,0.696325173816,0.646985692231,0.954304131186,0.781737438184,0.335049192914,0.443861298454,0.930901467582,0.876125849818,0.496779143148,0.23249166026,0.717841377698,0.503647953317,0.239481874428,0.105540609974,0.907008105813,0.254083200627,0.160366609782,0.87716442113,0.00777712644983,0.334759279522,0.43265035216,0.520357778433,0.449495240963,0.546344207739,0.126851449137,0.950655041897,0.796804058175,0.0222065303511,0.995060069939,0.290842767754,0.769207923074,0.873534176641,0.245618988092,0.28758023423;30 +0.269980763804,0.859463515084,0.821508343452,0.239943452465,0.583693466723,0.440080504106,0.780644430468,0.411049376596,0.236023887099,0.991355348387,0.748137728214,0.158327225854,0.0828956065598,0.0601599889519,0.369671202791,0.04632684491,0.438139870267,0.192124505185,0.30108533684,0.580579349958,0.203832108569,0.320970734266,0.67991654994,0.306508890744,0.83852523263,0.724724314134,0.303636583669,0.0734729947344,0.354234453505,0.746675324748,0.235592365992,0.940396924377,0.300903714295,0.583497301747,0.638898896125,0.62977106,0.421775801753,0.31592504954,0.772428956165,0.781586230972,0.0824257060871,0.375080588484,0.80029563355,0.549972702503,0.425790901661,0.302659834722,0.46739598889,0.0619403398607,0.497546514662,0.891686135287,0.437785570205,0.674973161584,0.22565974863,0.338229788803,0.0654234419626,0.945629354014,0.502615469768,0.989324758971,0.629141401878,0.204484674303,0.997806068732,0.886096800825,0.923556755007,0.939461133063;0.628859660784,0.85933209471,0.577873340474,0.712209022162,0.00268304198064,0.437252084388,0.00561578046644,0.209317180581,0.378797107333,0.859611839411,0.0584708635838,0.0619233534007,0.525104122661,0.333933110602,0.104279782993,0.375561177087,0.340732034543,0.930221269866,0.618300407855,0.869108271899,0.676364968637,0.626645348862,0.230338023748,0.39303702232,0.510500685501,0.0573079057577,0.640402213339,0.0546533704026,0.486690283303,0.126466158713,0.976666033339,0.618080604126,0.387514220105,0.288491618607,0.0750007440757,0.394827510868,0.75911042931,0.682600636086,0.326660334954,0.578996491377,0.878312855385,0.209976313788,0.521761962739,0.321110605408,0.913390688506,0.968560136453,0.10962333201,0.555795054536,0.903560490489,0.932695942249,0.390366842274,0.904001185295,0.663144777489,0.69623449351,0.554660794861,0.0924817796346,0.837049690929,0.476343462667,0.970459644297,0.0571208359846,0.670878031127,0.953984560295,0.246849625766,0.520954930071;0.741509281063,0.171940782313,0.833979811327,0.0181704284939,0.335766491447,0.44650639466,0.172763723237,0.701080094798,0.0584471142436,0.671729689545,0.553939137263,0.541282278354,0.383788685769,0.554419726665,0.704248685522,0.92778960386,0.090479503997,0.507170916914,0.711486464634,0.664244657458,0.55960329378,0.534906818154,0.280658177948,0.125128812112,0.862823335805,0.496321759906,0.978679593279,0.756803146504,0.983427777022,0.615005587158,0.826639543607,0.774587394739,0.0169718498909,0.281082795917,0.225321289297,0.984275735874,0.299175945264,0.417487878405,0.972051271782,0.584464491678,0.343618692232,0.118526090784,0.836898240986,0.367753570839,0.707567649535,0.406423337056,0.247388837744,0.0466258785161,0.570629664885,0.886710233463,0.51498922282,0.640390890707,0.502372754473,0.254096986107,0.013717526402,0.48393917278,0.908329941949,0.901091007819,0.683200400067,0.418399490538,0.811908986557,0.338684896338,0.0958107059845,0.121889140605;0 +0.543114689522,0.561951876601,0.683464844642,0.128635380333,0.0531285693617,0.905437720065,0.0378491148561,0.824374764233,0.687463973889,0.653553939992,0.571521861812,0.447890077287,0.0278642382447,0.654367969612,0.493619168537,0.336162809108,0.435455626461,0.37760965015,0.287735655797,0.382145528853,0.703684261637,0.883539016034,0.976327335768,0.413698437255,0.679674539977,0.888954138482,0.900018615149,0.580460851268,0.285996116479,0.936158796176,0.624173475013,0.0133331057261,0.525820774159,0.501279501887,0.221341159055,0.897896845351,0.758576526538,0.43202610222,0.263989726065,0.664207141441,0.245524072269,0.314955535148,0.725799956859,0.438759765208,0.221707772237,0.781870650693,0.355188023093,0.82010534499,0.701169007395,0.579887990322,0.241360727693,0.466122350167,0.45816810592,0.0293332828781,0.223296246511,0.398231113846,0.472800139618,0.568553720123,0.761854947904,0.228912227592,0.63188719694,0.96665031962,0.842633805812,0.403319849906;0.160713297309,0.902425347943,0.303250881847,0.70719714172,0.82353903484,0.577506655859,0.347237017186,0.895101900718,0.185001182245,0.852565155644,0.787198863645,0.0478439384148,0.861443252509,0.678472290049,0.743270931868,0.625442776141,0.160566968413,0.367054910928,0.434551716033,0.776522702605,0.668019343137,0.384588482156,0.597558629691,0.823582694382,0.156432985705,0.052115650185,0.555036523603,0.0888590473782,0.534786891603,0.700891836252,0.185833304617,0.166773118065,0.278082453845,0.0465099302359,0.70132747855,0.784946508298,0.309401342497,0.417405200573,0.445119804996,0.221578116707,0.957396395016,0.715124095011,0.764035773894,0.184617725877,0.222116491742,0.529199397197,0.489075550751,0.467756174492,0.515747059319,0.882837427353,0.489333290212,0.868892225598,0.835729363738,0.203310141057,0.383976932422,0.00687306761586,0.819412229323,0.438817226076,0.419255526238,0.626704871779,0.757207120019,0.803802791466,0.844755268117,0.0196178417348;0.996336792196,0.304693727051,0.485196086336,0.764075278497,0.0454370473513,0.8914095281,0.452629210711,0.209275688504,0.794060406021,0.726270887629,0.294758730241,0.879268011259,0.957203947658,0.963697074299,0.393397920159,0.945382925944,0.155027182333,0.662725834162,0.122820075092,0.545256830317,0.960625050477,0.870156230437,0.0495349376912,0.1688783481,0.0761333957802,0.110424602894,0.919061003627,0.477463980789,0.509390107322,0.958613936968,0.853832179147,0.799753059036,0.0565794410458,0.90557237632,0.222615129489,0.666573434442,0.820157131701,0.402281108367,0.592224640613,0.500119458378,0.490261705363,0.593272380366,0.448711216571,0.574180588687,0.218997926384,0.587160270663,0.282986337681,0.330521633552,0.785540931447,0.922245228793,0.527460788056,0.0861458190313,0.122911131739,0.306269779388,0.149402360378,0.725666605325,0.248882655739,0.465544437949,0.476888971171,0.178869827042,0.717690786017,0.423931035394,0.991735596173,0.78065779165;11 +0.10122525944,0.625834160292,0.855473966979,0.262605658647,0.288519095023,0.537622317009,0.348202759466,0.482472646745,0.0969109172171,0.521461234886,0.591418503744,0.192266215436,0.828328596794,0.41133240735,0.132879829562,0.44787324457,0.36228629913,0.286673075545,0.31107161944,0.71607586993,0.307439462313,0.424851534255,0.0969739933741,0.948944617525,0.248247672914,0.728457706312,0.152646422519,0.160748771638,0.79625542772,0.484851825471,0.399657874013,0.0957120643985,0.338128645728,0.22184802811,0.341443418059,0.908392982485,0.251935876982,0.711183689955,0.509293927205,0.0815653092022,0.653853199674,0.671405771026,0.431603128367,0.292637970837,0.977104983204,0.589701799005,0.466826009597,0.190571894633,0.127776915134,0.300419967385,0.323932230522,0.62178128846,0.832239772026,0.0251679299921,0.21750642198,0.621507866416,0.865011423381,0.31387361081,0.681990765255,0.861771247502,0.0160881917522,0.612890890621,0.0355363461851,0.665602574569;0.587599076679,0.336984547066,0.0810378844882,0.997028759825,0.0865485252061,0.472043591348,0.0931710277214,0.0610974551045,0.60536445546,0.812480377152,0.379906946541,0.560195421033,0.55137292544,0.450968491299,0.879444047388,0.0971604027823,0.257078464126,0.85016639571,0.550250344362,0.573122573732,0.206734636159,0.558125728511,0.773292946023,0.597801414155,0.48780624751,0.642917691066,0.406077074076,0.569689433808,0.0231715639438,0.844478802714,0.411498285518,0.924578071358,0.725684010129,0.506986136684,0.583735530499,0.425210696969,0.664106098073,0.674158633853,0.599664588109,0.710288606374,0.210029569038,0.774691981361,0.453454484177,0.695317199487,0.0587219375051,0.783699114168,0.0764505251387,0.0708887692492,0.962183570886,0.235805400504,0.8084011601,0.276167607177,0.51194816704,0.60118324237,0.960954611844,0.922515954668,0.12733562981,0.410685746703,0.757691267979,0.853884957993,0.276403704012,0.261358202893,0.995536546412,0.728594739315;0.232537223975,0.376787082512,0.846287285158,0.364540860472,0.683874824775,0.711849250527,0.969361990665,0.714169099761,0.00421666659845,0.0567299171865,0.404466736766,0.752212269757,0.779334610337,0.0815749508201,0.879164834488,0.218133710311,0.725372699851,0.800014210214,0.570429723342,0.333664247462,0.692414844113,0.884933988149,0.333340021657,0.371677731176,0.539592526391,0.237701167241,0.632321312048,0.647671113449,0.118528019344,0.710112897403,0.383380300634,0.829005076031,0.712936840679,0.594141928655,0.119489448093,0.539115036717,0.102697504012,0.812535948457,0.924855915848,0.737398027094,0.377012578151,0.824243319097,0.30795419824,0.148328168091,0.62265819209,0.218685694645,0.687146419829,0.428560690655,0.871557729999,0.55393121414,0.947823899009,0.307110788227,0.00404434477421,0.865662600943,0.882304600477,0.8173104981,0.797282826394,0.481540816886,0.113440858485,0.829577940288,0.492992065302,0.0229910310224,0.135690209147,0.238665755533;72 +0.635964074085,0.860779506668,0.0804825540054,0.457104207264,0.632008937292,0.701288805267,0.81495847446,0.909268848479,0.467451140457,0.976887530272,0.316093700921,0.0254258294675,0.451927657328,0.535637628441,0.673438672775,0.347415311738,0.378351133462,0.0872533644583,0.663638844016,0.922580166252,0.763300954442,0.313920848402,0.502255186693,0.0226366046731,0.534491652863,0.187975697583,0.798949102946,0.670589819823,0.554251057374,0.815107760887,0.134778240872,0.975862925907,0.0446650638008,0.777095831299,0.720831789383,0.11575207168,0.251063954751,0.202423704346,0.294347438938,0.350355791957,0.425165918095,0.683918877351,0.0330088367823,0.00169714384898,0.608770090183,0.227593644901,0.148809967499,0.220389647507,0.942432913818,0.792399200319,0.755080877193,0.713825568869,0.128664269064,0.543984579005,0.175327893225,0.793680735356,0.0886370195157,0.105308919032,0.232604314733,0.426397147081,0.0694766895299,0.799806882526,0.493622331024,0.386753073589;0.923974379668,0.898161963052,0.324591827564,0.541675918827,0.487415313567,0.619486015611,0.696019379368,0.861690989682,0.812095353822,0.952454616628,0.165039647277,0.179601461246,0.0298679022027,0.832986821152,0.651518231155,0.547372288211,0.949224970503,0.160093396636,0.544806863151,0.965639074629,0.637959408399,0.590058091205,0.657105081716,0.914223070662,0.554662431461,0.470126249308,0.523151626746,0.712971625289,0.125823685184,0.688560114366,0.46838894042,0.498176262365,0.619918143163,0.285800245425,0.0906882826746,0.177589516545,0.129210633657,0.0134920863031,0.0402552467004,0.383250736912,0.762747381564,0.373151346535,0.991451039668,0.125855677656,0.668675012235,0.107610970065,0.350594606405,0.607785926133,0.48935761275,0.399741552611,0.459200918316,0.774273957451,0.141225361381,0.148053322847,0.493321045103,0.662617377501,0.468063759546,0.385837813821,0.437494360871,0.467971694415,0.764753265327,0.953359999381,0.441759906346,0.0679316659966;0.296043739095,0.137895285533,0.370232532984,0.757088100885,0.507209115348,0.219702684245,0.186385581163,0.565206171282,0.4336033069,0.335430742296,0.691315633607,0.981501946851,0.749650818456,0.782360052165,0.161150142039,0.263230939405,0.519312744112,0.163972696234,0.940007053653,0.202065831135,0.766758956961,0.738929642234,0.558108968344,0.397236189824,0.230467621943,0.600101425876,0.630806424344,0.632409601062,0.414983416975,0.835134869119,0.92918046187,0.542569600489,0.228965518275,0.501926462983,0.631264776973,0.816697652553,0.534383068001,0.608937674085,0.197647003212,0.0399706525376,0.947824922379,0.124062840726,0.0422125182909,0.139118450517,0.17833784502,0.0462414682934,0.12337239716,0.924544183505,0.752573688755,0.16254686573,0.331150678958,0.930418326177,0.28038422233,0.299686696472,0.783084155147,0.401482176027,0.725866825236,0.43262120202,0.676223033276,0.882418640184,0.334287958464,0.199650634616,0.655192856507,0.0221652127204;72 +0.589662542651,0.314473710052,0.807815249098,0.349370364594,0.167608112224,0.975017910347,0.508378926474,0.187550324613,0.638663957949,0.145238781369,0.641916472819,0.244572015256,0.135069681683,0.321169303364,0.628069105608,0.837301128157,0.432097561923,0.608029183143,0.839996902129,0.713541165709,0.775012358181,0.88280254831,0.940004136614,0.748143288931,0.163522128694,0.419209402053,0.758878091979,0.0403087078867,0.232549505772,0.334686473503,0.462740669609,0.245551211823,0.405058828239,0.388053958909,0.293702042756,0.829337777821,0.943332185376,0.279249332503,0.79315518499,0.43501962676,0.328904873108,0.758054426107,0.933389493865,0.21941319586,0.57913673506,0.469148188818,0.556552360192,0.909301734305,0.326147410687,0.88300155438,0.551925356549,0.966693786642,0.378094255102,0.815991526678,0.813874002112,0.821160760085,0.711255909043,0.562790502717,0.0503459748662,0.682346169921,0.756291116005,0.485135863658,0.993330851486,0.908399450007;0.511239609229,0.706114051122,0.964973108327,0.726285631938,0.681331568189,0.191817107966,0.623572930844,0.455900076641,0.80364719645,0.177582320034,0.826099523307,0.0776735292962,0.425356418359,0.0848330363876,0.85454934226,0.642606064503,0.286741637528,0.0876279023976,0.428479494939,0.370695444635,0.279181730307,0.965074798007,0.963114940012,0.945937169085,0.183223817303,0.537674077777,0.211407086102,0.845662825175,0.648708592463,0.997559890789,0.102752310889,0.291499776437,0.0240393488515,0.538054848347,0.43669594328,0.614473371269,0.455132073923,0.263341149147,0.883104723008,0.377446737047,0.345770812318,0.534899733136,0.911001264065,0.493797919048,0.556407960608,0.02748495696,0.224139597133,0.942966461134,0.494293513408,0.0267917340684,0.0152611982677,0.00627406568579,0.584633899117,0.518163031072,0.208151883789,0.186584797248,0.697126829912,0.393629878641,0.329839408497,0.251048199965,0.281014783641,0.597759788663,0.385768452612,0.91099946427;0.0789368551541,0.634324825135,0.92255132937,0.682283076943,0.353291100541,0.720638159566,0.217988056039,0.477461475784,0.771559945175,0.574818662784,0.982681350018,0.484043543292,0.742774819302,0.181188708515,0.732937186332,0.00862674464666,0.201585733197,0.899276507106,0.345938580474,0.763323082321,0.529329181734,0.627189161966,0.887787480723,0.00997342784437,0.845144444737,0.735480239964,0.410951684174,0.525292776912,0.51031830208,0.526497767345,0.496015412189,0.721145872312,0.638611606168,0.10097783366,0.109893565282,0.427522844846,0.32483115644,0.447599391371,0.777265130856,0.474045326189,0.466889349101,0.224742922146,0.695242238773,0.768447276838,0.846103368499,0.998667637544,0.800539494144,0.67863201113,0.299356754947,0.266932134062,0.0755406297791,0.264309264735,0.313037689396,0.491387730474,0.241994026792,0.00914770122144,0.537377434071,0.185466447191,0.578964289132,0.539717910298,0.140016089807,0.212355007962,0.870316106395,0.495532805783;9 +0.725658450782,0.681200369184,0.632020963116,0.897955212083,0.385355323001,0.373604945955,0.0303119771565,0.676293322925,0.328281520743,0.701433715043,0.618594098026,0.969600744818,0.943809334498,0.263324184451,0.120274214243,0.905852003531,0.544843574461,0.238584834175,0.355560496746,0.538886111311,0.444101544587,0.137180954372,0.525392147747,0.485815055129,0.556833095334,0.512821874864,0.342266772521,0.0311872299364,0.264960307525,0.512770275264,0.0307657119873,0.366587014311,0.376780428734,0.8835947715,0.329453737083,0.863432184482,0.421144939755,0.759962181548,0.0677088218002,0.663554311829,0.301623105044,0.750233998618,0.727409360099,0.479327815551,0.00748081298174,0.867502312946,0.547011077451,0.863952140179,0.9751499103,0.417382715114,0.380579283151,0.358499501991,0.690965972788,0.0865833736773,0.801155926738,0.766103365397,0.775265697909,0.20255635703,0.606404672345,0.340789662315,0.872539688118,0.56845582328,0.29037429981,0.890522772959;0.125685593117,0.670310435706,0.557281454112,0.945245865803,0.406993280546,0.324079770928,0.431777995774,0.487029754176,0.273832933193,0.150184468235,0.870836801985,0.1925204622,0.0795533534703,0.691468292964,0.192664736928,0.930859970425,0.817699684915,0.0684314416199,0.00317030798007,0.970309484548,0.412213028765,0.601940766276,0.330037508503,0.339309612887,0.202316469376,0.796296461246,0.548464056587,0.0444955945242,0.213897633432,0.290321500832,0.313414053177,0.582374803729,0.733437754399,0.958441055933,0.024818469094,0.346149633992,0.835037508716,0.349590765966,0.923833047766,0.207332794245,0.682825650328,0.342891085206,0.911607946725,0.281723537547,0.924566781852,0.00186715266513,0.300259262429,0.654187500579,0.241158456511,0.730436427629,0.485979287282,0.455675564982,0.798903821792,0.23633484994,0.604688445147,0.0429386611473,0.0165748001869,0.2806643926,0.528859860381,0.775943548621,0.97812540847,0.151027635574,0.0218995951017,0.553332215486;0.450235713636,0.214977694802,0.0132294677239,0.255201293375,0.280377066983,0.607454473933,0.533971278022,0.440304783702,0.673105984271,0.296124301945,0.828248211703,0.0880281040359,0.976522674191,0.828139674248,0.0235090106734,0.155792270221,0.721416285259,0.854058088327,0.947773152617,0.182687724,0.521349483179,0.323205111608,0.572807315612,0.917330061128,0.337839598725,0.823380173596,0.0692512778177,0.442186594356,0.0844191180458,0.571121222159,0.205862217765,0.0283677121335,0.685499431307,0.766880006553,0.841738182447,0.835105528773,0.568418525414,0.78186057428,0.572812152918,0.0976915559286,0.576837645059,0.267441265113,0.0533380153117,0.901816914766,0.491888304933,0.0565193189966,0.345032810425,0.408276090356,0.372055965271,0.942853376592,0.971301472423,0.210393609185,0.486909866555,0.951263193348,0.318141066942,0.0836284135424,0.520784506773,0.509216707099,0.426377216511,0.0303223631011,0.685517020391,0.465435746731,0.182783695344,0.819312021156;84 +0.779689502152,0.745655968486,0.791665053025,0.0635064160565,0.0224053730859,0.826083674244,0.585726856644,0.254692513836,0.508236416788,0.279134581945,0.0834954673251,0.669125775954,0.138619197711,0.28891795122,0.522087738255,0.901365241397,0.264759047228,0.27091661594,0.488297498911,0.670417629433,0.553323821353,0.692030685666,0.218277903909,0.913672792341,0.630671190769,0.327492826875,0.279629637145,0.943277184423,0.017869890036,0.96616886687,0.679172428238,0.235168420106,0.0773003288913,0.874743208536,0.810212586987,0.938497317587,0.225363675839,0.443546933601,0.0285095620096,0.525943375005,0.495469079162,0.997843558785,0.134887285486,0.932030669548,0.709605099086,0.195325358776,0.889307215621,0.579675882447,0.272390462403,0.0930038797746,0.153814757027,0.206497976237,0.647607637741,0.577851630645,0.981131391851,0.669792455071,0.72032035997,0.556555917119,0.596227635058,0.550928762997,0.669483568772,0.701996887855,0.0148356689655,0.955213139561;0.393939918346,0.877302713001,0.853309862013,0.282476046345,0.997552843711,0.365917946607,0.524122156319,0.718347448146,0.563160410082,0.268653479897,0.159137078858,0.2860399206,0.243774335495,0.384470967169,0.944060646654,0.763525641205,0.428806533319,0.928921454769,0.894382130394,0.912984730801,0.592650966757,0.907452662426,0.253685493874,0.766645749694,0.55488437822,0.457093632273,0.243141923161,0.495278534979,0.631141357689,0.633699036094,0.0390230979533,0.15347259289,0.666154327864,0.0220306461348,0.644349856907,0.700479032847,0.302538552825,0.77487568368,0.871527022556,0.654158385281,0.30442680464,0.345663136887,0.997020738332,0.401377820427,0.693137215795,0.0172030471241,0.842848772396,0.71815910744,0.602401139143,0.539515149907,0.663543985736,0.112495823008,0.233631446929,0.916334579164,0.356832079012,0.315206654139,0.234937601829,0.416124861453,0.767260014274,0.826965501845,0.922708661216,0.61955334416,0.195711887107,0.192285107523;0.0748596348015,0.708183332687,0.742259885863,0.0659291762714,0.0989056856795,0.999346041073,0.242325190837,0.655113411678,0.826505990884,0.22237242622,0.622289087572,0.914788969764,0.872367999432,0.889263394992,0.0276790270506,0.443861260463,0.361941980353,0.560323180302,0.29846282488,0.740628708484,0.271494615525,0.672910565055,0.7326221785,0.138323508558,0.0138223524762,0.12634557252,0.607221461959,0.479771962729,0.604480936486,0.894861240217,0.0481399848971,0.683578508765,0.762678723191,0.795565047529,0.506750647734,0.627033559917,0.163016792374,0.94643900799,0.0649683630366,0.09756118314,0.786367849632,0.928071798783,0.132063625183,0.130884590741,0.485847821257,0.271382998842,0.249804128135,0.222253701193,0.334978350045,0.94943932384,0.368343347306,0.681392593161,0.90324111254,0.844405620348,0.534213104455,0.0655150575327,0.219356297423,0.0758608500595,0.0887981971501,0.22606566091,0.568830278141,0.443951058003,0.390464608824,0.738431097182;98 +0.150870345945,0.337468581837,0.614034093974,0.580093708318,0.438909250929,0.736672611185,0.797967587744,0.74401590824,0.217582780168,0.549288142146,0.897295018821,0.638831586538,0.459734910988,0.849713899021,0.590556198205,0.585289792803,0.41382286849,0.987128277447,0.519033975526,0.762802848595,0.522531827611,0.954287647006,0.362456558687,0.0370556143475,0.0153705303432,0.0657901920036,0.490522633823,0.934458400657,0.209083095965,0.444538608656,0.074470975313,0.557333235985,0.0620121513285,0.265802061509,0.421926406635,0.619981625582,0.964503956731,0.199082050009,0.755430450917,0.0848191408691,0.135044549927,0.30623643455,0.621926824164,0.737597922519,0.113507404335,0.803387207884,0.761271446245,0.713913791898,0.907216716217,0.214572977219,0.115817783815,0.153997908125,0.098952543778,0.181502718157,0.117715639486,0.00624383145411,0.228215458896,0.354291635012,0.667195331495,0.537555595559,0.000942388080892,0.693279943973,0.863804055801,0.198213651852;0.122193889584,0.872412542834,0.0854997530148,0.052642312753,0.283704852603,0.104980163356,0.50819488508,0.0306550494161,0.753704418716,0.434299052485,0.0253644693859,0.985952087396,0.731051067162,0.866997383328,0.082787756348,0.903397201212,0.669046889088,0.769730457694,0.0105779323151,0.557718520637,0.703206643433,0.339134501787,0.293114200678,0.246571253443,0.894849194614,0.267232652906,0.0188022918941,0.493710604498,0.939274278308,0.617810805635,0.0432903162835,0.627532278237,0.613529937074,0.0145992703746,0.665991367361,0.443372370274,0.0557511676259,0.0349074122738,0.465238768215,0.577115671319,0.802221876115,0.412185046538,0.455228207441,0.56227722427,0.0802113807373,0.891742405643,0.334983772937,0.160463282847,0.351035678062,0.540442663642,0.294287611977,0.551791838788,0.969036680781,0.618593046245,0.452455168736,0.810643533768,0.692419485966,0.292608761013,0.681598382494,0.544658731194,0.431755618027,0.0123503804021,0.226606121599,0.637813940401;0.63714961703,0.708939153481,0.0900616582778,0.0573879434093,0.379884199985,0.13775254715,0.692302799443,0.446355501383,0.619921387351,0.397989968828,0.047639017195,0.86356477844,0.627435986214,0.0692706749234,0.61161699258,0.890426317775,0.280887127168,0.133449799606,0.423866397041,0.2852774828,0.0172481093426,0.83790275818,0.897909098212,0.273116392246,0.178858192776,0.600675085281,0.623317103158,0.804771811808,0.366140818685,0.447631550539,0.34370741199,0.307382804341,0.775358508707,0.671483318252,0.0759988016721,0.528233285736,0.492027407188,0.242160216896,0.891872675777,0.706825678399,0.296436904411,0.373625322518,0.636679142489,0.00824429460279,0.486646264726,0.466807589942,0.779779247373,0.205939928592,0.804539071182,0.930261341385,0.366073792041,0.670564354983,0.119651009836,0.0279188074183,0.222868818002,0.91705403045,0.947017631458,0.566127740072,0.751280331034,0.474738359073,0.506142349889,0.0182152220078,0.510264605706,0.588391810278;88 +0.816275529891,0.734427564218,0.333019474248,0.490967339703,0.228147312471,0.448259025618,0.875406374693,0.955609643834,0.437147100318,0.372839791142,0.0559841865092,0.0451414266021,0.323503171603,0.797585559226,0.60935721855,0.490215522676,0.63530639961,0.75782604854,0.863003039812,0.565922145454,0.666234098942,0.569013611256,0.437728274196,0.121653584097,0.0142950449659,0.485710664576,0.748049612649,0.705203340236,0.189810741476,0.921364585987,0.875998113904,0.495195995047,0.356750022386,0.0263429391712,0.747162050442,0.802857657349,0.921213655787,0.16718804477,0.355174756235,0.869894921137,0.320992690336,0.29037321218,0.87243366816,0.542028232058,0.645036494892,0.653556219468,0.591337033154,0.0187105952966,0.909992061852,0.361776175682,0.316803393854,0.118511263757,0.529629659624,0.929813464341,0.910686936931,0.0664032840864,0.161776108128,0.782818255856,0.103639135717,0.814184983531,0.0245929189312,0.0529348221199,0.919294196199,0.0774617920239;0.802157282097,0.706259437101,0.221038518309,0.922121426157,0.953668248722,0.61945916943,0.318264066037,0.929725008036,0.135906688535,0.185022297413,0.0707159345542,0.750002102019,0.993066415029,0.279157627429,0.0535728301628,0.165168203221,0.340057283969,0.228123069066,0.0351673277464,0.691633852602,0.877178881851,0.427850522238,0.0665039325032,0.443229985647,0.0333887789869,0.458299286313,0.916226822782,0.24817720738,0.0492205811356,0.43267377371,0.0682613246078,0.320487358825,0.373499528641,0.217288318234,0.901792521624,0.227957068796,0.0586469515827,0.307474293682,0.398104096733,0.315332791397,0.485653848005,0.0568097085888,0.193855254301,0.119458785933,0.22594172328,0.285606738808,0.59508645183,0.332773899644,0.764395802185,0.878837595737,0.508086710629,0.12580138661,0.718560892458,0.670307883269,0.552576585399,0.242098440537,0.637912563977,0.948695863736,0.717849484931,0.988661315765,0.665596206333,0.537514829141,0.624564858702,0.648798905959;0.694438783101,0.97601774836,0.193962140025,0.149977726812,0.0056385284697,0.764459287239,0.773426208379,0.709200841967,0.369877174338,0.613503140987,0.584526837741,0.610835956249,0.318212595611,0.920084654601,0.085860535606,0.511946175835,0.99322295789,0.0639822878366,0.447850473222,0.0813448299048,0.568039257987,0.868692648332,0.788595044978,0.475102374235,0.242713570686,0.00287407883554,0.276872034312,0.0530638513781,0.655997690548,0.555577865896,0.422621985059,0.399655312452,0.921028334854,0.439902943586,0.71642732358,0.486974541522,0.151208615723,0.41907328793,0.208865355367,0.217320978668,0.237740037912,0.825653415263,0.226880657289,0.223383684573,0.180477325699,0.203752958447,0.5698462409,0.716227170909,0.0816449639705,0.983579203249,0.542555928937,0.725630854248,0.309532309974,0.336025109932,0.772048073785,0.620213033786,0.651968372925,0.578486098342,0.0631985562714,0.802869200087,0.927115610498,0.742840465303,0.236514215123,0.937101053156;42 +0.964622775394,0.92965046042,0.600431903956,0.745237287019,0.351399499431,0.698253211511,0.764900210392,0.612568512444,0.569147231815,0.613587911724,0.306604454698,0.19876362718,0.654747404378,0.835714252355,0.868143202826,0.489368253202,0.822104871579,0.658852780016,0.930246504482,0.671909586853,0.582478973721,0.918039179622,0.669512136884,0.233084019366,0.775759965548,0.355243675086,0.744407453431,0.367465848107,0.395772537992,0.079011932759,0.0597397055016,0.59050020803,0.144783759371,0.763885374532,0.550926336075,0.460429273592,0.911326338185,0.542581849829,0.896972074576,0.796730197284,0.908591449634,0.211506413684,0.188330489989,0.0954924038577,0.723577805424,0.521643777945,0.797358289832,0.281105194734,0.936432495467,0.97156596609,0.1839843728,0.757524620394,0.206780771363,0.95730958313,0.75802381994,0.0244462049486,0.433827135256,0.998121033206,0.0903754581662,0.788674339248,0.726735498966,0.439829788514,0.918461482028,0.510911347512;0.770442962022,0.400395540015,0.294881710205,0.636898570707,0.688406093691,0.0718329884338,0.862777238213,0.253844977207,0.842296728813,0.0146138942925,0.35443506835,0.4310295892,0.719731396401,0.246489208793,0.59150549124,0.736961842721,0.176538965634,0.983334011139,0.762810162115,0.713995901394,0.88131304393,0.530015800719,0.280265680451,0.074857345184,0.124054111753,0.0919944979576,0.367518454193,0.472810618315,0.304109756716,0.57683072887,0.883497429313,0.823425191692,0.723863449195,0.62854719487,0.193687980172,0.911755106616,0.447432292464,0.907962517744,0.643112624183,0.349580521917,0.817597569383,0.886761380362,0.389081808607,0.0163887767132,0.56058627617,0.53151185473,0.91269598583,0.847487048366,0.763372099581,0.0521985990921,0.816000951009,0.55724096671,0.189545094435,0.378342459997,0.209321380365,0.202391874572,0.759245665098,0.442201705179,0.954790586366,0.0642329367027,0.16404548483,0.76516990303,0.24303327384,0.134247485839;0.466604215783,0.789831940043,0.893990690642,0.434953580735,0.6967474493,0.560471696517,0.744895990657,0.154726009415,0.53079618653,0.433716154337,0.74936903485,0.498775518213,0.385597544069,0.0151765391751,0.788048013485,0.665523760945,0.0361239654443,0.594117013249,0.363531211821,0.717663663931,0.224374350538,0.510491346843,0.120906231281,0.718289004165,0.742018619089,0.274540265835,0.342942688646,0.10786700689,0.29605937903,0.133948713377,0.661372318525,0.446991059368,0.0941959295735,0.184488870105,0.457810133846,0.44674051297,0.172300390823,0.780318797089,0.889062707508,0.256358085763,0.476472789117,0.575331340227,0.00426200446293,0.704461060471,0.781821140861,0.321881471477,0.611071086379,0.520903240345,0.746583310593,0.281373182049,0.317028209639,0.60401526415,0.174941586351,0.828842152454,0.636001523847,0.226020231616,0.70772627638,0.40891602528,0.34410405657,0.402308645759,0.673390361912,0.730639229673,0.350722164272,0.800593020218;92 +0.643300282549,0.479755013599,0.278423955809,0.871186423144,0.66116274406,0.54329314543,0.173132086412,0.278073782594,0.00230653106865,0.230781498352,0.462490831721,0.948282434075,0.531061651151,0.130753565762,0.919463735304,0.0190741141144,0.203839063742,0.294158647382,0.231528040557,0.681420182942,0.173715307219,0.939517966964,0.793490139861,0.618975038503,0.18873204053,0.464708129671,0.537965698804,0.627972385722,0.577799732948,0.470553536519,0.41362795912,0.413962588261,0.709654467275,0.350246028712,0.728195308224,0.503100767685,0.0495991758205,0.430023948967,0.165734602489,0.243710958626,0.0553771827684,0.0393742968836,0.808201105141,0.348458210086,0.928809312963,0.662506094426,0.745694900824,0.444714976886,0.611332189671,0.249258561201,0.615513010774,0.282065830069,0.187860962742,0.639082997413,0.442893416111,0.856145825216,0.684275376837,0.248622705282,0.184097470934,0.00410099112951,0.835943692698,0.204017958977,0.702377981063,0.712181773639;0.390854050801,0.853338962452,0.134396503942,0.00210411624434,0.567376024693,0.0683700459277,0.241172438417,0.929482234483,0.321664619188,0.868387318475,0.431357323412,0.107362367917,0.405078776472,0.662654039741,0.57726896679,0.506979393866,0.761748170698,0.382386467743,0.260791044628,0.5821171265,0.52329373947,0.157638248664,0.143971026868,0.72149223789,0.798041986866,0.0370146223508,0.965805426876,0.880016491049,0.21409402807,0.20805424336,0.548381364219,0.546971835411,0.416743957624,0.0757063032223,0.653463031529,0.531621644782,0.650374262353,0.23042765516,0.986106155984,0.196142004429,0.994826147558,0.530956284811,0.475194237678,0.969694801783,0.830628205185,0.303512088387,0.798450691074,0.595613023802,0.329474075019,0.06681682018,0.517047517984,0.587301257689,0.18091544037,0.972673745265,0.481320340351,0.267081411196,0.662628244676,0.839143410774,0.731915055452,0.876811374397,0.578005229702,0.907571591479,0.617110754843,0.619113012967;0.333407237622,0.700552561292,0.5251608695,0.751383971318,0.435156012381,0.998747211593,0.219877593593,0.285942674009,0.443844375642,0.308138551749,0.19690210074,0.467424721267,0.429144829109,0.766658400811,0.228347252547,0.638564748164,0.0229089025464,0.798017833365,0.134519370697,0.893663860494,0.902826589251,0.273017371781,0.277807111947,0.874196209846,0.727563335957,0.02086916882,0.709995161175,0.0458637001616,0.661283661672,0.278412049236,0.228447012114,0.233059678287,0.190793246747,0.394813061241,0.197892417238,0.497626197722,0.312840450633,0.149027705488,0.504167216211,0.968035617844,0.864900529427,0.911508437488,0.317631551886,0.580110737971,0.3469767327,0.410054968513,0.244501616809,0.186945591048,0.896340685201,0.529274575181,0.3082094972,0.153962965614,0.21460740096,0.195807213577,0.702878185504,0.670293373101,0.0730974849711,0.764988717394,0.231075845734,0.431514270265,0.116117055561,0.177359329815,0.448365697605,0.23003814259;48 +0.556239997793,0.3727878661,0.801692637629,0.789513932892,0.573620539542,0.70332119855,0.758591269319,0.873072756252,0.587028502533,0.0809402091437,0.904098906964,0.495179144677,0.261810620583,0.0264902048859,0.0924030063382,0.35799575139,0.592650972749,0.0861950762177,0.998134150812,0.783055251146,0.840819323348,0.93365420827,0.658277381249,0.750781286849,0.0560852218843,0.753080374495,0.713094768945,0.409518717752,0.0428121487284,0.0144400565828,0.439048854613,0.884767242988,0.126358590706,0.147533661429,0.847037160306,0.828690278553,0.5116868684,0.356464374982,0.270463085889,0.869876212481,0.494983635058,0.21939669268,0.535837955482,0.00947582859792,0.771329770136,0.430966817807,0.861613271431,0.491266930657,0.521205287978,0.508335352303,0.00449107743878,0.120884170989,0.975341878748,0.326440108309,0.454490185269,0.62739577073,0.176141226241,0.471640606796,0.716977766041,0.753443882706,0.899287082716,0.885844719075,0.749588677251,0.505167740577;0.13231540748,0.370608525947,0.998328576094,0.58631199368,0.00938118983183,0.735124096941,0.605231940093,0.339360359078,0.843610247598,0.0300881591143,0.67746421096,0.0486253431883,0.202805390023,0.443687431268,0.615926511561,0.0614049181382,0.00793493039085,0.661720725008,0.437531922825,0.670665073316,0.0920952068248,0.988892772644,0.910582332609,0.0237923230331,0.6526467037,0.759098268377,0.769093654859,0.180270989259,0.229077127205,0.863871473164,0.298675607491,0.593521156512,0.739493879338,0.822995065354,0.759432862738,0.836443466329,0.340123456088,0.473634996643,0.653899749923,0.0630961639648,0.725173489244,0.506976992994,0.944982101152,0.261921889439,0.0166626999774,0.499527966504,0.80200645304,0.553561725114,0.765953573278,0.879549405284,0.486586278243,0.244547328967,0.897099409033,0.56675018552,0.829196619687,0.0631397624806,0.250338951374,0.861071860747,0.458963773536,0.616363248639,0.485120951494,0.00258970510252,0.388128552941,0.526106504577;0.576671963695,0.541230417685,0.505392760273,0.395175441064,0.344293566258,0.559323148677,0.998335853855,0.522471830302,0.360837054481,0.987638753069,0.250201737989,0.175042055034,0.373814717924,0.802738775385,0.605220959705,0.896015199262,0.842632221807,0.163465692127,0.695818647801,0.530910008204,0.580577422789,0.495366598515,0.357530236611,0.0988773964753,0.744468541204,0.823885381249,0.397848270573,0.40318378984,0.18699361849,0.0227349877694,0.887978479433,0.406817131503,0.863829251695,0.0346243963584,0.814547909307,0.465829719879,0.584689229269,0.754768346775,0.482424344399,0.434915643241,0.444448283803,0.12845457687,0.667605445121,0.515511560585,0.733378445324,0.638638791372,0.203191411951,0.398442262349,0.154865987326,0.897409140105,0.912064408044,0.422792794833,0.646888688092,0.734912290528,0.876579778764,0.0559800444403,0.392359143431,0.267626333385,0.163259765995,0.324209739972,0.733451785705,0.467662649804,0.297945871845,0.372188805831;43 +0.691537640247,0.100584008655,0.800241536586,0.775406666826,0.215407525341,0.997791338837,0.552544192528,0.981101265039,0.985335067822,0.866492595223,0.827076695254,0.760893016099,0.358946525849,0.239854749941,0.943351527773,0.77550762056,0.816832179666,0.381921719601,0.604047483596,0.440485327701,0.0591131467567,0.688372612547,0.00219087717299,0.318014010252,0.408611074745,0.599092833682,0.575987173524,0.247032224863,0.377897230365,0.0884955786223,0.220296490054,0.23212084067,0.248556485934,0.392806675705,0.0208437992921,0.115742549917,0.403063913542,0.550514256579,0.728523507173,0.522704213654,0.22355827197,0.446332579305,0.467002034958,0.714835970441,0.231387731544,0.172276412913,0.702403291616,0.351402566041,0.381801521101,0.150530487241,0.244930985572,0.486748679024,0.809416076052,0.208310215387,0.860152681232,0.90445149155,0.916776353229,0.553718847359,0.10417928454,0.909519264435,0.796321043288,0.0926031379673,0.0626327296836,0.519730850621;0.426414646949,0.0783742820715,0.262716642831,0.0760056287498,0.091529328445,0.982545915053,0.866034418401,0.14162482321,0.657730247845,0.469384769964,0.364264021992,0.252977805992,0.740728292922,0.842749176506,0.27917920699,0.632570889102,0.0993907504031,0.0068825769641,0.44636286641,0.857136163997,0.797659430835,0.27294759349,0.1732995932,0.488200703947,0.751702738175,0.680375759692,0.0800243103761,0.314548533478,0.040624923982,0.996859326148,0.37281260669,0.035569170125,0.413747658502,0.51256868544,0.334757639802,0.267903785556,0.299186816796,0.227185376102,0.509620878984,0.395150966877,0.966624809213,0.840975744623,0.910752131089,0.0800954731684,0.718221330243,0.477611747363,0.0930197937138,0.183349954787,0.694167468012,0.0989587438256,0.768314562056,0.109590627932,0.0645914129085,0.336275498488,0.564595025106,0.486915742855,0.245192504983,0.438506294351,0.121236140902,0.422555059015,0.0284887715075,0.149704424333,0.55819070112,0.762004970507;0.835170149188,0.638426524378,0.481228645092,0.351985489436,0.484763476574,0.185376783264,0.685203399524,0.111509947078,0.779326796906,0.613192447898,0.651319464393,0.486129479501,0.67899294558,0.454892436895,0.228154386655,0.104707676492,0.164410535145,0.552601017399,0.967116908505,0.450389155187,0.105642541681,0.0722734756001,0.111627217646,0.527687967076,0.480854417117,0.192101425646,0.813055972038,0.713402078807,0.623311634699,0.577030237274,0.251066291018,0.631926408132,0.0871642644612,0.466466672282,0.609599793005,0.354672723074,0.352834406639,0.765735017224,0.187729818588,0.364408394749,0.290533285326,0.43209695113,0.0873569147131,0.298832688666,0.761018344255,0.000307806740143,0.669309620777,0.0930391971018,0.150375966448,0.101864373085,0.226322750579,0.37947327979,0.118213243816,0.651804802805,0.37928370104,0.0810156441019,0.175713647784,0.168650100891,0.656030850283,0.414070975172,0.954762136882,0.0988439876581,0.0636732563046,0.832490122362;85 +0.430842610397,0.902060594139,0.16699962488,0.587743267617,0.396630657037,0.447143852905,0.386211417235,0.786799188043,0.053666526689,0.0227308142284,0.288609996248,0.992658860884,0.921364322064,0.408032217434,0.0868778921038,0.440987304665,0.199431186497,0.503217933549,0.951118603552,0.759981748768,0.263967536651,0.0486343985598,0.344104315703,0.812229817713,0.92624866347,0.333067101477,0.244987722193,0.944248139731,0.865133883205,0.325680173262,0.11268914844,0.109850839389,0.906916556826,0.91759081652,0.154608736218,0.714334265193,0.516718564927,0.277115779779,0.729623959284,0.287673622179,0.315072723448,0.597282199698,0.360862773773,0.906307490231,0.0927909950342,0.771803966448,0.992293360965,0.633752965081,0.56669138216,0.382658675807,0.116463138826,0.0509811151812,0.785463813864,0.279720019412,0.346358102645,0.0780183154617,0.782417237136,0.0153110392046,0.238316229512,0.773948428017,0.769447188849,0.156958505535,0.00508425845666,0.909901069842;0.758289342216,0.636802467214,0.62628796235,0.877682028271,0.0986064564128,0.746921017696,0.700724237637,0.789444372363,0.229160828198,0.059043509138,0.919473716458,0.756107251144,0.852711799559,0.853887563698,0.75690720319,0.145974946181,0.876219683052,0.750861701258,0.248176551235,0.170147615583,0.718402885723,0.480950064207,0.426701245213,0.778894592491,0.0288071177001,0.0510896664326,0.481196741769,0.683486651714,0.292014479237,0.499313246844,0.0169741312527,0.117317856187,0.300340036766,0.0647642601433,0.71819318318,0.0983018896551,0.470794492135,0.0857214625166,0.913197590659,0.762784918148,0.739930102571,0.352220128774,0.647742993469,0.433837107386,0.243996899159,0.367445181532,0.488585202719,0.659777934603,0.980763933981,0.571734328125,0.539170866116,0.231975102337,0.0784248198565,0.206756270805,0.35712251228,0.921931693831,0.193613328116,0.217075983692,0.584581615143,0.0545431886404,0.244918439873,0.341691553935,0.332009423298,0.110755116154;0.225249999369,0.318863426403,0.185249267473,0.401370059956,0.312807202697,0.483990454139,0.115689978139,0.437924855466,0.119523965829,0.303978236382,0.727698488749,0.288182864627,0.793227377635,0.919700852594,0.654639078511,0.252015191551,0.69295788108,0.56188725208,0.250402440771,0.492213673152,0.952949266142,0.447734157914,0.25968080532,0.172821513345,0.591363155091,0.155735826964,0.0412470620046,0.0252471176237,0.547578752053,0.377635324026,0.276494549961,0.0751352841015,0.691620983378,0.232107905558,0.431330608503,0.035681592363,0.726115248638,0.753806359685,0.23760474706,0.590516332188,0.317475920088,0.466920223335,0.302826414596,0.600212179265,0.434892978477,0.992792904622,0.70570986904,0.949383233208,0.602153207873,0.114454541648,0.592990178213,0.856082349823,0.261432132115,0.236927642975,0.123629257495,0.646752006595,8.35106835105e-05,0.80201698031,0.609365072063,0.334205165553,0.894166523885,0.471418426706,0.589394082722,0.18015843645;42 +0.271168766085,0.293580315818,0.405729122512,0.717489569771,0.316954589805,0.462560840554,0.605704705271,0.158331279791,0.875262650633,0.547932228232,0.822511660091,0.406660524154,0.316080774467,0.976975651902,0.424928447841,0.0221860055153,0.711259626662,0.0638540660874,0.673983230942,0.909001328501,0.550043121351,0.144237218054,0.754834071004,0.198568710727,0.843873658585,0.215576182152,0.527951943223,0.215756230019,0.598606207858,0.707320102966,0.0436392284556,0.139854995201,0.00893851568088,0.0437243112456,0.525097436476,0.535911853444,0.601131563635,0.192047586862,0.584605284583,0.441575429454,0.182566565103,0.0126449505514,0.697404888987,0.125539140924,0.773493541812,0.773505200075,0.850942457888,0.788162512474,0.39531830398,0.265593999043,0.885940359202,0.711960180107,0.789136909242,0.523792725014,0.921889858107,0.941669248421,0.796771284789,0.454413621014,0.22451308359,0.0577624464997,0.026589670797,0.17019282172,0.412780900401,0.0156601404562;0.43694880799,0.544914686986,0.674375750921,0.572068434207,0.94961700922,0.425439800436,0.0715691945715,0.271488115764,0.553076774614,0.494781158922,0.33867071432,0.973141577009,0.16903582163,0.297854030758,0.841907825459,0.262294336484,0.302711721995,0.158504107587,0.762257976723,0.17952025016,0.791638876359,0.63098482325,0.680992029355,0.0585920616287,0.0116236820205,0.0815175343115,0.353336974421,0.521872627337,0.517029847235,0.739918201407,0.58697109701,0.455787729156,0.9081916232,0.0487564671364,0.884359916821,0.893542316501,0.559575746029,0.132134509811,0.534027863769,0.836784683479,0.913207920185,0.622415815094,0.241572792742,0.913104710139,0.897327495087,0.987555324626,0.612870643545,0.818170168815,0.924252310519,0.0887303889698,0.0237741992798,0.186042581532,0.626807657073,0.165539085094,0.539066863776,0.342093736146,0.968453296936,0.792956999702,0.968405011754,0.330483974134,0.776573930459,0.631646746407,0.530307305222,0.584947202735;0.936551569805,0.889232625173,0.186249993976,0.609934603958,0.474085517184,0.438850539084,0.287663484767,0.147764047612,0.527188829446,0.952373777193,0.166017608736,0.25484698669,0.331687963583,0.626084867874,0.696612683879,0.376440332189,0.968475778377,0.401376175698,0.358984130116,0.0962966508865,0.447872872664,0.376886530441,0.768492589122,0.797232559689,0.317855986227,0.0803667691682,0.332722963226,0.623106372495,0.446415938087,0.225148696463,0.0681545975917,0.6992876729,0.676352696346,0.3065401414,0.732613657981,0.579811293237,0.0546121652656,0.609027200104,0.500136948882,0.677738978695,0.795218591653,0.498860753984,0.976456214878,0.0312043409239,0.180258856653,0.27491261761,0.00851222123199,0.789787452737,0.489250934906,0.0978001253871,0.755393496405,0.00319202730234,0.628140387319,0.70264756282,0.595253005019,0.569795156756,0.899090051658,0.292973795735,0.402970221958,0.526182461894,0.220180168151,0.917098964628,0.366528447896,0.327148414371;64 +0.995591286921,0.498363838111,0.838432461976,0.741959527893,0.584414349225,0.804004599559,0.681354822094,0.297503399174,0.582004587358,0.0877443637728,0.249969073522,0.721036426788,0.182344188465,0.516012572082,0.0522075426767,0.457257394491,0.741744917525,0.480812512542,0.165074067144,0.834788248038,0.138687371448,0.411907899419,0.875302266664,0.121848601184,0.249059103751,0.177660035161,0.480364875564,0.00586400388481,0.240124026241,0.126546253289,0.566562887462,0.101921775577,0.2738864195,0.69601807479,0.791242536745,0.556795083332,0.740520119517,0.52411339348,0.615682127624,0.856700864219,0.71585391022,0.609353869163,0.36150933,0.897637384502,0.177075152909,0.798868553224,0.618343122838,0.375744291202,0.847132810497,0.159250904181,0.323870893804,0.0629846168829,0.340523260857,0.156363582762,0.278351680014,0.555756042386,0.111862642695,0.87702747826,0.923870272488,0.342651868568,0.286982832274,0.0445433864633,0.302959327923,0.491372165662;0.176368546702,0.0365521035491,0.22215904147,0.0718496328614,0.709188554895,0.0157401272233,0.26515789836,0.517195998118,0.753307410627,0.505896215507,0.211480963738,0.576801340791,0.702217310007,0.987155021311,0.13478783689,0.427402147144,0.291440949784,0.224483569684,0.524451752897,0.0638529146706,0.569493240588,0.935276825896,0.10305849073,0.811163409317,0.675940422298,0.295914425781,0.67944517473,0.194576205087,0.809637374891,0.295556141921,0.403055261066,0.905252965381,0.58036326188,0.0559347445681,0.43969862606,0.576959033093,0.536426228164,0.838396575863,0.532831798602,0.184423486403,0.911270391478,0.178956449216,0.415439695398,0.721563291405,0.112628388823,0.879341446751,0.650501632604,0.727376452624,0.261462195387,0.752228917709,0.980598167278,0.0943582465788,0.903450143917,0.286097661609,0.0956891899046,0.807478288399,0.922398911171,0.977286494133,0.128037010766,0.600229827472,0.849004883661,0.651877133784,0.187535897365,0.125555179102;0.581808578734,0.0812603721389,0.991519861173,0.960211694458,0.0394723891633,0.0236663097699,0.215595922194,0.117449217626,0.0703104575103,0.296489072824,0.668690371694,0.438210949962,0.186351193763,0.910472558838,0.153613888398,0.0716081350601,0.667043302605,0.471454750069,0.653521338132,0.0152199299656,0.194713109027,0.805518599393,0.939037373249,0.0657526204634,0.41409707492,0.0974503782798,0.729057781227,0.0762137104591,0.987232572959,0.0337972593854,0.413975317237,0.029663860372,0.65243527235,0.815488723254,0.322435005212,0.920641796876,0.968632613992,0.747943924171,0.809546445649,0.278490210227,0.117444110904,0.547614149901,0.0808128159025,0.415200546795,0.83863487265,0.496984248552,0.0758427323367,0.00409039292549,0.386351408506,0.63736140106,0.0343890339651,0.717427389572,0.817666077513,0.731929674862,0.296400023219,0.510653004054,0.891414453882,0.296841699797,0.880041587403,0.828252169807,0.39527117612,0.680020157559,0.455822465773,0.393748062782;32 +0.00407929976744,0.233791472643,0.775924299721,0.15411078189,0.274224182142,0.790885629651,0.0309348428975,0.364792208731,0.737990897354,0.0150614444795,0.213255764986,0.210191217549,0.456977541353,0.144824299442,0.559849621143,0.253983960928,0.740999249605,0.78135516953,0.160741330313,0.662461566723,0.258209111343,0.393570762906,0.0521094893777,0.059262476981,0.367559659858,0.962170884618,0.00377239495265,0.0343178006928,0.256408710448,0.503569765197,0.941965579796,0.873496856173,0.673884064155,0.280238225688,0.426005888679,0.689081593287,0.0453698961135,0.176241634532,0.262936241176,0.678258453441,0.0633701906325,0.656348086279,0.38915597789,0.0297211694848,0.654461458217,0.0509797116942,0.0958467870005,0.571716647809,0.652934703368,0.829007848156,0.896675095623,0.0677211667735,0.493457669749,0.00768420881237,0.28587152337,0.751978073233,0.562406549783,0.737469295801,0.349600614318,0.958381482051,0.255001546341,0.0216673106685,0.500783792188,0.101619732115;0.127304025943,0.663614032165,0.896769315672,0.639592853616,0.331092815738,0.0818451173386,0.591247749582,0.299701586415,0.496524905875,0.579169364196,0.029567550663,0.998496701698,0.321713217948,0.861073999758,0.0843638571736,0.812467471114,0.523736290599,0.525590437721,0.080862490825,0.170067953351,0.714449628514,0.614944554906,0.498833193275,0.26965990536,0.232423972048,0.868682303015,0.669335378867,0.290358134255,0.276892822847,0.764061844974,0.720190642792,0.128554832809,0.897449728909,0.201719933751,0.686720725318,0.410440610898,0.0292202352604,0.491300063492,0.902024799391,0.3517361437,0.558126543818,0.0383498812465,0.55272445276,0.0560894543241,0.224566077215,0.754909241558,0.67856340966,0.0997031608168,0.222070292466,0.290417583178,0.110480762873,0.182468014742,0.0735816220564,0.504323707994,0.823057212579,0.943446479443,0.574069287263,0.436311380559,0.306214584866,0.260936266712,0.500579495568,0.261986758138,0.354710166277,0.0549402319072;0.676983131763,0.494433092263,0.749061714556,0.556395473585,0.299434156739,0.154362930152,0.738169255723,0.396078910252,0.460786737488,0.362708301073,0.336662342614,0.759191148795,0.289776216255,0.552918841909,0.881003724203,0.307846114997,0.281043697325,0.926065683128,0.858181168796,0.885862668059,0.83287513783,0.599892168382,0.485340435184,0.55882062072,0.790407515593,0.90534117912,0.196373455755,0.236830057967,0.45643063415,0.575701108844,0.0546022199311,0.0729476115133,0.244497030399,0.628012317757,0.574373571253,0.757418586618,0.614599148936,0.0310361922113,0.457111629817,0.198438103225,0.550334968795,0.270734641429,0.500235821522,0.274023185039,0.387488175329,0.76913382942,0.0235934102307,0.878265318752,0.175796121259,0.23633278691,0.627446470735,0.431657041353,0.925013756911,0.98515509937,0.70713825406,0.938437235747,0.311840928058,0.928334461441,0.930455208402,0.0916918227241,0.0784638399734,0.647293030587,0.0574364258495,0.276667140899;93 +0.829275190063,0.758820808305,0.0471609010625,0.367320301118,0.461979252685,0.931296820744,0.124697911577,0.1503907865,0.048868967735,0.948384060323,0.655444323287,0.773814041025,0.975012467113,0.605091578195,0.220275286909,0.271147790283,0.861874386232,0.692087851011,0.656955302127,0.406519966394,0.047225839708,0.908944447344,0.670648549368,0.345882999509,0.40523301718,0.656088831408,0.704619917518,0.433830001686,0.800094153402,0.640066084781,0.0544331946015,0.568907449774,0.0442981928306,0.642170043544,0.915318031376,0.472011202225,0.526958563319,0.373563919636,0.252587683519,0.269778282275,0.644164125876,0.626479872682,0.653248566858,0.647365583675,0.69110744407,0.62978785689,0.560739036682,0.710958276538,0.595718757358,0.0755521844755,0.538141245965,0.229349120057,0.888382828863,0.999963437163,0.809786394023,0.161890766196,0.633816376734,0.42399379176,0.223770052642,0.716259115111,0.834809488933,0.520529459181,0.976822933906,0.500828906898;0.228293919098,0.518406405976,0.592122839292,0.798663278945,0.630163577867,0.887149584004,0.989210295062,0.654837653236,0.85858346239,0.154555229433,0.71314979979,0.644254273284,0.647435753662,0.102590110787,0.828300326329,0.436860753344,0.744932607435,0.120127492226,0.420745500449,0.784650852635,0.450454081766,0.837461828824,0.459786678943,0.267919992612,0.0539513026017,0.310502333564,0.322685623851,0.510183948394,0.744421488384,0.0250825425275,0.835258099254,0.026381269749,0.225761567761,0.406381138367,0.818581290743,0.606977547702,0.0429368960281,0.77503785059,0.811646048134,0.154520426533,0.585222773692,0.272606344098,0.472425355918,0.0219555658635,0.523194500467,0.154306526105,0.897856415639,0.643827400316,0.238166699538,0.823714921979,0.189345273511,0.313418235494,0.314633695212,0.271199930475,0.498162746023,0.75005177235,0.648850554532,0.0910164315496,0.936025449091,0.182594142177,0.853658098726,0.38624547973,0.528391746605,0.416666009444;0.190766529497,0.713212307543,0.662153146955,0.137385262603,0.0676850120147,0.707532417635,0.301004319204,0.363184917775,0.783760544707,0.259427941021,0.606303040864,0.0279634019524,0.316202547558,0.930868680979,0.217045881792,0.445451471418,0.195904558813,0.612713539463,0.693002189797,0.895088398837,0.222158592148,0.176376309551,0.523527142492,0.0299071226644,0.00281073357092,0.705738608934,0.69320402239,0.98742183529,0.328474592968,0.350404282801,0.803444629292,0.368472856661,0.373853313726,0.588883937878,0.952040295154,0.0515050942414,0.696357730818,0.708195437907,0.292741107316,0.993396604606,0.408895711214,0.385062137638,0.826852946525,0.386609996713,0.204701448808,0.49612921472,0.111554572153,0.980518433586,0.800995184291,0.200316669549,0.495587506545,0.896577984076,0.182010363242,0.799518744972,0.0481397545062,0.123002875842,0.916697603258,0.999180275708,0.342780776484,0.393907313909,0.921293952746,0.0239866806057,0.982067988385,0.422480892149;81 +0.547418102161,0.36768084529,0.87057050263,0.231088002354,0.917340178302,0.782900656859,0.515360849888,0.998756111841,0.92939127009,0.932707695768,0.545135127498,0.451648198679,0.928587467687,0.982131761744,0.270317910629,0.0259422964725,0.648676123577,0.962339257934,0.25716359482,0.886837297378,0.556600874848,0.0874390136139,0.258540024181,0.517372575905,0.235402617855,0.275270738722,0.685180036838,0.247083263179,0.18741457211,0.924692324502,0.881708571446,0.282780863917,0.567457853371,0.281907671373,0.681489481219,0.809954737086,0.0386064143031,0.533911923924,0.908988878479,0.254628943512,0.330721505941,0.055349719599,0.607071090144,0.775294072683,0.508751446287,0.512160294496,0.294369355056,0.822336068243,0.0350062893536,0.0683797946606,0.114329991842,0.25525006444,0.897374255187,0.0149251552971,0.633151837098,0.353438532386,0.932948145433,0.62261826098,0.902245869175,0.104486555541,0.729947981376,0.514792166178,0.437927986172,0.874476741261;0.159664128986,0.990716110039,0.245287880075,0.213731833616,0.192813336935,0.43497903656,0.840467083703,0.580987273346,0.386913507492,0.706023462491,0.452285814426,0.024413989394,0.983117682585,0.187501827779,0.907335330415,0.0720766881636,0.300919977705,0.665301855655,0.290945736985,0.354915489877,0.302917417858,0.159527054105,0.3481948812,0.536023188168,0.910692760385,0.095470249355,0.337335261519,0.163192402853,0.161459531557,0.966023447473,0.52048577847,0.516735193526,0.0866332687117,0.777543289368,0.00685189306937,0.223617719219,0.722287455834,0.900969559565,0.170131332235,0.816275074257,0.189852404948,0.384651616536,0.0106991546225,0.293854446486,0.145560734934,0.445370990386,0.251386038637,0.49053243417,0.325455041021,0.946011752775,0.665392198398,0.512503642115,0.308036523476,0.958570172936,0.585333290207,0.36570756458,0.37021264666,0.415071219478,0.875530467804,0.266681938035,0.100959221269,0.898680785541,0.570303473403,0.650472082401;0.278297623742,0.9390814816,0.505066597867,0.585852868299,0.222909099716,0.88222915643,0.941400256643,0.391587890748,0.00919788339538,0.410005172772,0.359002720648,0.0581983058068,0.109307422939,0.108959448812,0.153541474604,0.372372466789,0.877904742667,0.427310384672,0.52304226491,0.821702665804,0.587575154868,0.887637304766,0.809922823921,0.174950847569,0.113224540258,0.430580433216,0.419263280272,0.0771419122634,0.724448489923,0.934507414892,0.0589281321979,0.818854083902,0.596944529917,0.233653754965,0.824426944279,0.161174466067,0.305436141747,0.716339769627,0.337738388898,0.735472447351,0.645514839825,0.269972477845,0.00498971203641,0.347642758321,0.50070806586,0.367614114995,0.592549298544,0.526268023589,0.767156923431,0.532976487567,0.624879055877,0.254408901514,0.64319958262,0.992210972628,0.263125893833,0.936760890838,0.291067034248,0.200062219731,0.7322953288,0.553470687393,0.847138649598,0.591276400736,0.30441073885,0.00401269340692;2 +0.356544414624,0.804888398059,0.875441852659,0.157751947947,0.413106957408,0.260912560134,0.558083564445,0.943956686257,0.00737665105535,0.459231139597,0.562408160566,0.351636251696,0.78394086399,0.538807304974,0.00657095477892,0.347755421139,0.590218320737,0.274344322523,0.0336857645894,0.821255529488,0.0261269799496,0.2199188311,0.461816930485,0.955385543255,0.555473790286,0.236462725479,0.417040988737,0.999998212432,0.367975861113,0.651834499428,0.234461764672,0.348638914859,0.571525262504,0.703281237539,0.830409770672,0.445582975491,0.213216129464,0.128657293386,0.860044532598,0.508842235577,0.0327444255139,0.484724358598,0.619664729985,0.251607192115,0.549188381622,0.21557223775,0.73180658764,0.745462016543,0.76228056122,0.782039422265,0.138715623793,0.693683633059,0.396340617395,0.109635298368,0.412988086873,0.77050540735,0.936277650851,0.530213680638,0.384024926851,0.468408563552,0.528408114198,0.428171123602,0.532244489799,0.16070848562;0.330625891928,0.166980989836,0.872900832233,0.852947498791,0.142257120335,0.538753457933,0.782930464965,0.5089526244,0.591911596694,0.830010888887,0.202632074138,0.396914596118,0.587572918788,0.73052370419,0.447488048651,0.540216363142,0.312999669284,0.138084937547,0.888579097175,0.784250527597,0.121515877189,0.850832886885,0.774259919389,0.0850369927831,0.15121239226,0.0935920838036,0.774023705264,0.0306741439616,0.580564932282,0.91362617668,0.315413409112,0.372033462218,0.125635486585,0.523467222574,0.810449584199,0.667736726497,0.497492446942,0.168233562179,0.203247969557,0.754428597919,0.949747168475,0.81513983347,0.795737797782,0.672859243371,0.84790796745,0.578129581806,0.751234896299,0.0321018593294,0.282778441232,0.597535539909,0.127068194994,0.934111739582,0.799608863021,0.97589119786,0.330717888077,0.740639785986,0.552924141242,0.903697787097,0.969991456067,0.786961811628,0.325418792087,0.315068363176,0.355758599571,0.715936805217;0.633184133543,0.557571013111,0.957070023841,0.61729946932,0.874301484163,0.493587268257,0.319472759619,0.709074132394,0.583565249586,0.508483736089,0.14218893898,0.716492392562,0.498105771629,0.00992999037802,0.316952440301,0.278166705153,0.774377571515,0.266921858572,0.669059851777,0.264099501359,0.0754128098162,0.920759843081,0.182019809643,0.513905072967,0.795753966204,0.520486850964,0.939129415873,0.554302160251,0.261939706386,0.486260706084,0.392177864918,0.780992149891,0.436903608929,0.969936940972,0.384361970439,0.425766242764,0.406991199459,0.115064570456,0.107197738408,0.908545322419,0.723363522472,0.197991342989,0.645888893282,0.356888712084,0.744736347021,0.805943820402,0.807262391385,0.317777107396,0.868424495025,0.837643973334,0.08056160091,0.698811851343,0.90918353129,0.835818980985,0.154829988107,0.861621375199,0.64651918149,0.477574943529,0.530819508475,0.942802190622,0.010882496994,0.503772814034,0.0619778480878,0.6355721677;99 +0.588086467633,0.638968700069,0.289572813056,0.764390521545,0.0884537537156,0.595246592282,0.350900440929,0.155749286368,0.60595733336,0.994410547006,0.570525710478,0.223292672067,0.65593599878,0.213901813107,0.123936785648,0.104596047099,0.932248219484,0.457591362031,0.191221489739,0.785599497645,0.651379854414,0.183135037021,0.43058421925,0.718426601443,0.735869912437,0.574654695732,0.212946736257,0.258763569062,0.782068303594,0.779765386323,0.40655511288,0.401031609892,0.61481217452,0.047084585532,0.248745611834,0.801786066164,0.54607240996,0.811073402324,0.94381894542,0.282236649517,0.309509270302,0.757867023799,0.724870337725,0.26552813698,0.717165651915,0.811706172429,0.638855936416,0.968499467399,0.679730345433,0.125404935065,0.183018547807,0.741361720901,0.391416762632,0.194662006046,0.220460138245,0.12751207858,0.982907247224,0.658680459029,0.836100912596,0.180367775915,0.743258832336,0.638378574733,0.166219601994,0.51140249101;0.11112100794,0.620371171273,0.661872513347,0.269825473299,0.18409066737,0.970484791339,0.0431681691618,0.751777674982,0.631207203033,0.232497083626,0.406616631654,0.0675185954944,0.440357820985,0.19337888029,0.695050297553,0.72726033742,0.167339892585,0.181749600795,0.197023790908,0.849850021523,0.628287336873,0.605450776367,0.647809346988,0.270196894157,0.208817747744,0.258037768819,0.0519903977006,0.189327595303,0.677208227021,0.865794429108,0.543308670883,0.946355941726,0.694111777127,0.612341247423,0.40048296502,0.698238667057,0.491485542676,0.26040310246,0.313640723914,0.954638860767,0.0440384546054,0.657326994455,0.887158868067,0.504828823287,0.296190069347,0.4608682787,0.239233215606,0.172797526329,0.222402329014,0.890958787662,0.785549326017,0.931050846115,0.245509214052,0.716526257891,0.63779446893,0.733946426825,0.919400248593,0.424248189449,0.193295453336,0.58940037153,0.359558739972,0.820094601134,0.797491163212,0.964380461075;0.812268258187,0.763517507693,0.124029920033,0.981500216749,0.0859613907046,0.356247590622,0.35826551982,0.336193157773,0.500258328193,0.807191971348,0.171316418896,0.676215029336,0.294869671735,0.833367851996,0.574572170306,0.974105691609,0.816871408138,0.568811067597,0.813052709284,0.725236885914,0.639199579589,0.242125660917,0.402425312677,0.465691072922,0.36914515062,0.229758041513,0.00417053606017,0.979373558416,0.757378183884,0.394970793305,0.600427259372,0.71740627186,0.983051323677,0.724420775658,0.219133656955,0.362154305585,0.180655185599,0.434938296531,0.131254569686,0.0188620635207,0.493617471936,0.688180831167,0.122167246549,0.914687525238,0.450966322279,0.781332951249,0.332929737795,0.0149210392551,0.554205392902,0.237820514289,0.599222623315,0.410918935883,0.132915778292,0.0445955612454,0.289405869336,0.919337001515,0.622812908623,0.755547663714,0.564443708631,0.259561770448,0.868485338521,0.478733154363,0.943495774838,0.0915758499514;57 +0.883655193855,0.66643312292,0.722521181731,0.894251650003,0.785276719931,0.514937915268,0.0764027809176,0.770202297476,0.6124864801,0.822260761675,0.140307363507,0.451736313998,0.389835524872,0.823745098928,0.583085841546,0.264107564671,0.818549353632,0.0746421105123,0.546245848699,0.457424221153,0.401164767372,0.656362235622,0.462067488306,0.974362805606,0.0329574536393,0.840313035933,0.174563786725,0.224476732303,0.477991239831,0.255155410237,0.766818050449,0.98114318312,0.172645731171,0.653809593278,0.113420826825,0.583198897215,0.646469662655,0.764129593596,0.00352966851284,0.21532480846,0.10632445032,0.867200550647,0.0651964094867,0.236794594959,0.964439946432,0.558847876211,0.786308038226,0.0592790473374,0.5107354211,0.739781173999,0.45366873098,0.93927182522,0.819569333071,0.861941630417,0.966175546178,0.401846938078,0.751618243017,0.340417980238,0.710218691525,0.748262220513,0.148955259408,0.221187811798,0.89547147768,0.181583798032;0.198183406677,0.415464051045,0.437974683264,0.715772199539,0.257054099883,0.405254809188,0.424950899489,0.252301997552,0.321354736776,0.698098104468,0.642048591778,0.534451587497,0.282168853697,0.996562474103,0.539768926338,0.858761461584,0.475082671739,0.397778730512,0.227545372378,0.745873700872,0.713096195446,0.282536010465,0.214754393034,0.854221488895,0.794806219624,0.532691817022,0.846991269099,0.472884313978,0.743175463091,0.466806837183,0.384020940247,0.378201762306,0.856122078593,0.496188563467,0.205233888838,0.973336159421,0.0428142303685,0.892007128882,0.163300697818,0.308775011187,0.531577135619,0.229600501094,0.995157402864,0.532463745417,0.193677936588,0.144024437938,0.729667233656,0.80310687522,0.511377683286,0.618807597857,0.349663333589,0.0779507101408,0.385079949849,0.913883248677,0.232548134793,0.7913636564,0.894832978023,0.449024275595,0.042444855823,0.181442541947,0.0422738174579,0.593642323697,0.253035505064,0.434486755424;0.466750912695,0.318419575918,0.827707508358,0.485759424388,0.916055017863,0.385246297363,0.564377598923,0.329054088105,0.750576536057,0.593891006068,0.253644336379,0.664415977407,0.518397438954,0.317175832631,0.81245754598,0.00637282198575,0.192800317668,0.388471549126,0.482872223255,0.973710470234,0.902498211176,0.218593820235,0.358641875624,0.349657090694,0.726362211221,0.367804532769,0.806943167469,0.401423693497,0.785406837482,0.186697671817,0.154908523845,0.430816790543,0.976637237266,0.842358177333,0.507478353496,0.735262980674,0.694721121165,0.618834898902,0.126910498361,0.68616883024,0.734577462485,0.474116092307,0.915724227765,0.90710288442,0.397905782757,0.582771065466,0.620640409469,0.329157674867,0.500078062339,0.0857592833795,0.768738717417,0.811940685719,0.243469441049,0.331347325911,0.629836839656,0.752654591352,0.954004350505,0.67680584973,0.283122002794,0.549474920598,0.189321707796,0.916686529586,0.430687198588,0.280562309426;10 +0.0775362642757,0.868653633123,0.922295866235,0.708144128782,0.114660133677,0.112710778071,0.433590978084,0.943104938238,0.133213799894,0.454707967465,0.547402231173,0.271938916052,0.366334394089,0.727387022336,0.405847143348,0.138388596135,0.795724857218,0.350518021422,0.410922602302,0.532270254851,0.63830233114,0.48040460005,0.553318778267,0.224864700905,0.564561882924,0.912482839578,0.60263587431,0.467740537287,0.957732039521,0.0675099020349,0.181511464446,0.802298568128,0.525381260471,0.751672008502,0.53973558726,0.113904262552,0.972096138782,0.00483539836087,0.221487899071,0.569831757215,0.796831868048,0.438685481683,0.270265092598,0.186859642756,0.388657015803,0.827720745097,0.385136916678,0.543628339406,0.978977491595,0.297958062309,0.0323239860672,0.12708752113,0.676167632129,0.589602578424,0.105691371477,0.560188176528,0.623699369437,0.515457336019,0.268793441514,0.923358880108,0.306132222122,0.79592891898,0.992326573549,0.582911421132;0.0850104389673,0.0520213891578,0.855938961282,0.748409109219,0.257553842191,0.740915931174,0.541237550653,0.358551626742,0.746797978956,0.394908288719,0.88897947782,0.598744801842,0.991182916467,0.817373399135,0.446975985858,0.106501600174,0.957081994628,0.0863641293753,0.907557078206,0.710721387752,0.769862395808,0.75490262024,0.190474582591,0.895945584312,0.53835062682,0.880037469861,0.0374620141226,0.313686611569,0.916324703154,0.0500816474111,0.44413438612,0.835849662645,0.541965313118,0.30345610366,0.534646430938,0.894185007651,0.663073595174,0.650923402823,0.778693200094,0.97575649309,0.379081696994,0.255844257281,0.590645938343,0.740116319599,0.391619634964,0.859380982036,0.549956882622,0.178535758372,0.839089177195,0.311731014591,0.477960448776,0.712898441515,0.24067873394,0.26488317084,0.985914488856,0.733082231693,0.73766613835,0.278891439134,0.728489913355,0.315407189009,0.00332841330229,0.240623252619,0.920861424857,0.654850511853;0.269601681243,0.736972327332,0.612534063456,0.579152431925,0.565029031642,0.867656710772,0.551440649555,0.230983837515,0.147922754198,0.103752209044,0.146143032085,0.584066651777,0.281858897283,0.241991691947,0.602589198928,0.0669487986936,0.076926617232,0.601755575023,0.388486851935,0.0212138560229,0.065475559211,0.931248502226,0.141259092946,0.828708148784,0.764246003779,0.211738577272,0.688778804613,0.725302867319,0.434739514004,0.845376025443,0.359855336853,0.901287179732,0.0242838306807,0.621924199417,0.840111991742,0.743835759067,0.0761367425726,0.451001873123,0.81674586416,0.577504114607,0.364873680073,0.117853155523,0.0926011049584,0.36392437178,0.66502087413,0.8907465576,0.991589776064,0.287955091281,0.817419113217,0.279289820826,0.372972592063,0.170581482653,0.75055296796,0.11348040686,0.296802223616,0.204175612981,0.292341674729,0.825495213453,0.0535885078716,0.797652606512,0.555494047636,0.975114342072,0.886557746192,0.826623970794;68 +0.568670218526,0.301522427229,0.909764745582,0.140274356449,0.831129811617,0.129772768595,0.920128594242,0.297340056134,0.290815305332,0.316447756721,0.983104093144,0.230129061206,0.199710913538,0.408309916026,0.271585368786,0.559245764614,0.837856964391,0.139915653777,0.998213779764,0.888761610787,0.816424430232,0.752880405579,0.386585999907,0.107955766139,0.398548545825,0.367931325839,0.905841375569,0.75813531282,0.888106051134,0.460926245564,0.617333481638,0.301186127153,0.191878809368,0.246825545491,0.205400729497,0.775547445127,0.152278216748,0.438416975507,0.0447997568587,0.130542419288,0.267501455663,0.91760456074,0.156832367127,0.220863342181,0.97523042684,0.849524060119,0.951821913237,0.0114070672194,0.412952925875,0.124526279318,0.308094639239,0.675810885021,0.79710174179,0.800046589716,0.797435779144,0.568836279317,0.731599488972,0.725398628963,0.665202457399,0.708413015439,0.89465822931,0.130342985571,0.845810103556,0.628797590039;0.577067080498,0.66698209814,0.578033625429,0.711785667523,0.711811257231,0.806755697079,0.321976874196,0.571314115578,0.249344378043,0.565277175009,0.676350499921,0.46504669321,0.846895315444,0.472604225447,0.0868544373891,0.854452524417,0.73386942838,0.752675278314,0.689585023794,0.977865647202,0.822394086498,0.173040385579,0.981515196689,0.695265395925,0.571823341089,0.19657871054,0.403665509457,0.821934388998,0.456397134745,0.56959364517,0.84064986061,0.73896896988,0.461156536552,0.190107829027,0.281260670444,0.0211615555563,0.0963696895194,0.759500974592,0.434362625092,0.701271574405,0.303395753359,0.417648828428,0.670924447058,0.592952079955,0.465209150128,0.478026952958,0.626595925112,0.305922356017,0.170341343962,0.821078969372,0.603751396978,0.125348787583,0.886942104356,0.698018838213,0.121611692504,0.32612734383,0.222287742122,0.905586505782,0.466163362506,0.334055018177,0.155281171918,0.102770965574,0.578560344296,0.071785138207;0.191047247741,0.205289260023,0.756129345306,0.0256418437406,0.38783071249,0.985789098144,0.783385624849,0.655979191144,0.935091511945,0.789023463244,0.685871265105,0.626226359354,0.256674674654,0.11639065151,0.0136838215774,0.896627214859,0.496211048629,0.725907796909,0.45791730416,0.154747374746,0.757839942511,0.870905088904,0.95374722277,0.543053405062,0.432983532366,0.0566278634412,0.555596087991,0.638103861583,0.223883950747,0.974621932371,0.713539286116,0.0137520479252,0.654200109886,0.0458655390388,0.401184069696,0.265776475842,0.0344505672047,0.653175718166,0.268075888067,0.0941940245617,0.984623228225,0.124791860693,0.901728950504,0.648532492787,0.900949130272,0.148587619203,0.974720908408,0.0942532392153,0.861739743119,0.45462510711,0.425189408383,0.746071104513,0.822795315465,0.823370562452,0.856429189039,0.761934600442,0.947699073272,0.75613756425,0.890004770309,0.519982634033,0.292152177759,0.87746622373,0.127258893851,0.717652614253;38 +0.695740336587,0.615815118452,0.339256846532,0.39010673059,0.290902060372,0.403658854393,0.326805047751,0.329910324805,0.276106602018,0.106458055144,0.883811055815,0.0773305912815,0.0883308448409,0.567069582558,0.106904074411,0.408401093818,0.924438941293,0.298711561251,0.540380548469,0.757625033702,0.668727866003,0.208025146315,0.359200407826,0.639689846153,0.123251026261,0.216774281245,0.137487500328,0.0235418779,0.48515993736,0.933040245465,0.659345740277,0.663373141346,0.674102737366,0.853402327729,0.345724926664,0.0489833924138,0.553120909555,0.572088050733,0.742777074105,0.790534188517,0.692931489059,0.514960510528,0.736096437664,0.103755612234,0.188993965398,0.696174749922,0.604813401247,0.496136987067,0.306757441075,0.210128971514,0.428082960316,0.312730642226,0.00922966325159,0.772446605552,0.11928680303,0.226691911099,0.378253787089,0.253222006809,0.836146630538,0.947301804394,0.983639532479,0.356406791505,0.479108871567,0.496724780518;0.467848196332,0.766130203873,0.0323383472478,0.835775381169,0.663527952372,0.107548118691,0.00522790578651,0.329671040509,0.900912621219,0.0900242146578,0.813555047682,0.249642684701,0.429960528168,0.431790520204,0.264185854093,0.688254223142,0.194735895216,0.689374416475,0.547589336604,0.516399181613,0.925675460542,0.938619408542,0.877180894483,0.123144044952,0.379978296849,0.998768203647,0.689482721428,0.62736304808,0.958746779896,0.432766713115,0.746404582784,0.491484155858,0.550807611432,0.125863096665,0.238366465802,0.523109678712,0.900735794477,0.415550627892,0.481615353893,0.702606863422,0.18980968891,0.94347743707,0.537124746717,0.497911979076,0.498792541493,0.99514850033,0.162925443097,0.485991540208,0.0187087998778,0.494449081724,0.11267101943,0.28331922974,0.0258619976116,0.930875360779,0.522985582731,0.349101809115,0.115663214572,0.791320609711,0.820218023253,0.0780786547999,0.506315507154,0.355514701028,0.244494620367,0.356612185858;0.25740429566,0.983295720097,0.339400836024,0.093316464158,0.447061797963,0.10768147618,0.313654632791,0.903484979856,0.0846349125226,0.443323219985,0.992891792225,0.328517565458,0.559671399141,0.979538938554,0.120372350692,0.475033813544,0.798953225721,0.58257535911,0.978668846034,0.375843095309,0.11058897962,0.331924003742,0.586685430702,0.0675820815223,0.157529040537,0.139633999611,0.688525951623,0.689390601332,0.0826274612307,0.349700764108,0.248131207142,0.955019937555,0.367830205447,0.290483012622,0.640048490952,0.129482540555,0.852183887613,0.452643771686,0.650116163212,0.255028539392,0.668543589478,0.180975448498,0.155548943034,0.335832251222,0.162917085608,0.882324926326,0.0390240105704,0.954001439862,0.416747259019,0.929384769433,0.345251588057,0.980973555147,0.900201407222,0.52822466995,0.553913212664,0.290936720506,0.0688130325174,0.83456126755,0.839945632478,0.0361675746816,0.00315542305362,0.492244563008,0.35622539584,0.819617951811;71 +0.921745651769,0.744853902724,0.914155734083,0.0188528536744,0.0197844735589,0.263394727841,0.406717563689,0.415980201542,0.25402081282,0.640502900236,0.481483861452,0.44909883775,0.598542446793,0.0386802200171,0.0946789713422,0.646207500943,0.800941459339,0.0164206570287,0.18842990762,0.383828210114,0.475263900481,0.793760299178,0.520765440966,0.682636656191,0.843716600723,0.578947233715,0.490131917708,0.766872375571,0.0618989512143,0.0343089508949,0.507018886302,0.757562700939,0.825009488284,0.845398072531,0.441618130394,0.333451507947,0.327815979387,0.587963230543,0.820533690634,0.51324662811,0.794979534617,0.581307637227,0.957273224413,0.485094478874,0.824947531905,0.914615487861,0.556027998787,0.427922161488,0.82759448994,0.157595434167,0.708936764768,0.456574850439,0.24112741665,0.107683534626,0.368350501923,0.899180942741,0.724048450445,0.730356301681,0.409800572184,0.0691960193722,0.266914903087,0.0843761616219,0.894289692867,0.86540975393;0.662215664868,0.825825290187,0.131788310083,0.907761650778,0.646061380383,0.141683949825,0.245310428385,0.959376399901,0.346857588063,0.339021080541,0.503069908391,0.269143668895,0.95387329497,0.00105127564903,0.389710782651,0.0184494945717,0.807744179306,0.65383781694,0.527840518735,0.530856685841,0.525874134127,0.883705541469,0.0700039335496,0.561458343698,0.349722487419,0.26583486471,0.149287299131,0.358458243813,0.179563653947,0.830330396874,0.28484482865,0.288507789286,0.233887131478,0.973642346601,0.540510154889,0.407784452076,0.422610537391,0.162936991884,0.0590667205519,0.462754918357,0.47603785554,0.842403885806,0.465312458236,0.491849408273,0.761272519665,0.817461303556,0.944428882863,0.777219353943,0.0827509887088,0.68425768004,0.515266847406,0.686936494522,0.633273895202,0.565626676725,0.630855719244,0.526969520568,0.351874109088,0.103440250278,0.220643495694,0.313580948837,0.915321089726,0.533997028793,0.315599717335,0.797125315398;0.737126784101,0.0917259764461,0.995847853677,0.871914739657,0.487158270308,0.677928222175,0.756098904555,0.612234838464,0.298449450915,0.368576058288,0.892928159483,0.505593656496,0.757953386433,0.854309018059,0.453209871795,0.706694100101,0.0344044643212,0.414580207487,0.822037768192,0.337165340989,0.0197309366918,0.307585995721,0.318372987811,0.905460388956,0.0475566580905,0.365341530914,0.121107971439,0.125827763097,0.46165219847,0.544838605959,0.86590437197,0.612769450549,0.963939467288,0.728645968362,0.489092433671,0.688999548995,0.999916888623,0.248124170794,0.554008758422,0.400756425926,0.504919631241,0.743936683556,0.0287674299429,0.179505792352,0.557519831516,0.928820785911,0.794663438226,0.431481244662,0.0232612717871,0.500511062843,0.4744402126,0.703039240584,0.728483376199,0.883408062883,0.921606864928,0.0439724048734,0.557153141984,0.183422085027,0.503558483564,0.923585693879,0.969322383616,0.233389383047,0.219308606225,0.171574761671;90 +0.212931353336,0.126775629025,0.888865992474,0.0888395870331,0.712330137679,0.964618887362,0.597775829948,0.952156091237,0.199444846227,0.866567018508,0.377671151173,0.680102481856,0.834204661918,0.210467682276,0.529032454078,0.430593981854,0.090859832497,0.0674167748256,0.533036695005,0.583691066958,0.0516964983645,0.426407736956,0.514041589089,0.495029245406,0.996523690493,0.579327091044,0.560666769871,0.131916271685,0.90967563481,0.925140427697,0.178349075484,0.861960908519,0.245821821508,0.644624209409,0.178715138099,0.62939605364,0.243063929481,0.0583430952326,0.625985136559,0.871342886509,0.0399572507252,0.096338372546,0.891026862438,0.348516611792,0.582114483186,0.48348660922,0.124607721737,0.423772321729,0.58189494983,0.0388698889777,0.0825190342699,0.236269982405,0.934942994037,0.893869583405,0.566344453416,0.533994291885,0.425559229082,0.757875451981,0.319584981006,0.135509620548,0.337897030156,0.83391297082,0.789150596801,0.0499414662525;0.495874591994,0.721754897024,0.882541668088,0.146862161319,0.315247531748,0.66180772219,0.632061102598,0.436635181365,0.719644502067,0.767307818974,0.783214878003,0.235636785054,0.909367086631,0.419695216072,0.652685982988,0.530030351371,0.169825471583,0.310462487599,0.538140900275,0.559378667413,0.722584522691,0.669626269012,0.36656422324,0.0273591909221,0.229868765332,0.720370298828,0.0902909566972,0.623599922816,0.895213363683,0.643457394635,0.446760070717,0.830702867632,0.808368267636,0.672616945224,0.782761726887,0.658411523338,0.91736732884,0.226567393824,0.997496114997,0.523324024031,0.516198634059,0.955272302553,0.238272765189,0.668744736351,0.126443458386,0.125472332125,0.395095574951,0.687602993042,0.381452522417,0.319585334773,0.591986442344,0.404711556799,0.465587456051,0.122732949472,0.327031802875,0.68198377422,0.506446885861,0.427579846887,0.83258531314,0.551483257018,0.681280056989,0.214275477684,0.375773009874,0.0393263447304;0.0127800275124,0.571788348882,0.689654718278,0.743741137174,0.747910904019,0.806412025461,0.06022802063,0.0219711425081,0.64014051581,0.430629869746,0.0956586629833,0.414367607814,0.345848292912,0.914219876054,0.327928506658,0.256762829289,0.957380387556,0.606792907634,0.18701165972,0.495926019898,0.653156307435,0.397830483036,0.816614509979,0.33609747608,0.276186242026,0.0689461829082,0.739015925064,0.182673821827,0.253740749944,0.286913352266,0.953064637159,0.933187984172,0.711922441562,0.408635808826,0.0442620901845,0.295604953893,0.767397010386,0.201840414912,0.100542489314,0.941484162264,0.126382336545,0.336094323504,0.96690021859,0.0643464343313,0.353553404531,0.422739981871,0.612486845867,0.0249440286663,0.303536070369,0.214236714827,0.708396438792,0.247560097226,0.828375405386,0.347815492622,0.923486135513,0.67767913634,0.549126661517,0.242104316567,0.527636702478,0.0675265615862,0.0751828569759,0.818730071528,0.206549523625,0.384225695869;74 +0.276370548485,0.271032403751,0.414176813274,0.432676087746,0.327656069632,0.565516274482,0.451256881297,0.320350064313,0.891191811512,0.150352539238,0.997704450052,0.926936680678,0.135006119585,0.951642155026,0.587290476062,0.987955131623,0.0464406357519,0.043043285715,0.0586163565801,0.998348391677,0.649202995584,0.647111805338,0.25856033842,0.564692001781,0.489999411207,0.8733255993,0.561865273381,0.00802604036433,0.29400250148,0.450141626451,0.411436463787,0.788961290806,0.286623425309,0.67971282909,0.275588137967,0.615186259996,0.773458752211,0.520927131739,0.587491940932,0.962856400373,0.863120087904,0.198078921101,0.637390556917,0.102846501603,0.0873926785889,0.403316527852,0.650105442338,0.824170348487,0.716844776718,0.311428009764,0.569399802307,0.584021070046,0.0278407708407,0.0836823927812,0.116512750791,0.535756951904,0.000260737727853,0.0516808217671,0.315786025575,0.373330955421,0.33225560847,0.213746052599,0.784999569133,0.0730519046486;0.180316894306,0.985301124274,0.802408423709,0.466139691644,0.508833337813,0.224578897043,0.542887766803,0.667704148659,0.184063286325,0.44339522233,0.428206236998,0.337082066543,0.245261019466,0.0863245364642,0.259910232904,0.240152011435,0.318325577598,0.502650372727,0.964061686289,0.326818005138,0.663182997966,0.52915848713,0.88826442299,0.87042831812,0.901751976265,0.557955202055,0.706506014396,0.487881381413,0.414879634177,0.768085234853,0.548927220471,0.885996633011,0.985055932473,0.584215660659,0.293312828945,0.34007683633,0.0405261928474,0.447409507464,0.837875092148,0.100322882217,0.0208240680858,0.893634637331,0.00487913306728,0.673686922127,0.216739391122,0.793832095532,0.828614027804,0.446087762794,0.239089495276,0.671608588894,0.110717978258,0.976385038651,0.511739944938,0.788232986509,0.995805068459,0.65016513937,0.938251300783,0.756139816028,0.239817780407,0.439726105831,0.117984418187,0.16798080345,0.323158637265,0.900652478326;0.184117038193,0.0338067042786,0.543557603457,0.229314324351,0.832382702424,0.928786750435,0.973951650917,0.502161152192,0.870530707151,0.833787170464,0.703407323853,0.605898050922,0.770258281435,0.993294471543,0.420289621019,0.0709886239405,0.17613685437,0.672655137428,0.935669124992,0.519460439961,0.475777479089,0.269140593899,0.119369267143,0.520954024112,0.736995166736,0.973401124823,0.837663615817,0.655837287066,0.68389750498,0.881727984635,0.560540276517,0.886128301525,0.884721004749,0.37715778628,0.583062419977,0.194735311068,0.0166915684986,0.328244159835,0.000505003774521,0.735682361381,0.682150207769,0.184042176582,0.932712866875,0.44266983526,0.605074479219,0.224021863083,0.873034672498,0.00125656971155,0.0757760517734,0.387809248251,0.798738807419,0.0619499361415,0.0902743020719,0.365212055129,0.386876643828,0.0306506902996,0.622053026387,0.603072249288,0.914332181955,0.672829527516,0.646271051494,0.927276085468,0.561066863153,0.187756376261;90 +0.452067587932,0.299817034892,0.517848779637,0.0758794042197,0.492572324786,0.197731821158,0.91179566044,0.553941208723,0.599648669539,0.352954548546,0.807106601945,0.813289121202,0.650506771887,0.906379123584,0.985070379503,0.250181129937,0.863517806731,0.0306624439743,0.77468319294,0.943635246917,0.243912659107,0.702124791852,0.286488724305,0.821155560587,0.729592434786,0.79012143087,0.718065938267,0.949583556875,0.724356862306,0.702251440995,0.468011309972,0.262575645802,0.3828730966,0.970240844446,0.920626830674,0.573216202432,0.874229038468,0.111743753999,0.0337586737979,0.126639541572,0.19164622744,0.106117932379,0.60769999425,0.769413266039,0.973769170382,0.243070390095,0.279698432122,0.650978330674,0.329841091813,0.40308516484,0.42047794591,0.63886618129,0.232573152628,0.964660307938,0.858939873975,0.0115232210313,0.0556859660214,0.851781297541,0.920065507133,0.259092986139,0.25866785481,0.226347473852,0.453541077342,0.744938814148;0.316551701608,0.726993737639,0.431030657373,0.653202636373,0.485213581536,0.109566018398,0.00798558682871,0.172843001277,0.145941997257,0.626242689724,0.0594261489887,0.382538397998,0.76557001795,0.805404362656,0.20655580055,0.90580784349,0.817350057988,0.657521901558,0.110285995632,0.829088194648,0.156385383763,0.732548049202,0.699579907357,0.578854109991,0.458551103208,0.12989503547,0.236781638996,0.33334432838,0.890992243082,0.365379862365,0.659586502166,0.191796820508,0.471523194331,0.0160515106053,0.709911352718,0.406492076677,0.954378911709,0.000422327558966,0.453894189285,0.686520315384,0.508740354765,0.815150929839,0.635225650945,0.424852388488,0.271316017946,0.408505306027,0.201592329533,0.585830104775,0.0809046117783,0.87146272486,0.39783698635,0.690115247377,0.11611530103,0.647168808669,0.839963120138,0.0334459934311,0.874053253641,0.979645287566,0.159326083703,0.921036346332,0.186266667564,0.684969553175,0.49332061729,0.845549551487;0.0920332821559,0.487477633679,0.0921902199065,0.620680364433,0.684187727179,0.600786469025,0.175410074416,0.00615409658718,0.0632479701605,0.366245341287,0.476389572249,0.0961685805802,0.172432947949,0.304846652864,0.0534112311052,0.521118373566,0.578588491076,0.211526764343,0.191518954058,0.719902588204,0.357179360155,0.240256827705,0.0961459845222,0.294345675327,0.226237352759,0.0402140187853,0.733881565703,0.249522513765,0.240037431576,0.772639352817,0.451007067886,0.116199527195,0.444773202425,0.422828890103,0.352709728419,0.730196258105,0.989240129399,0.80776513838,0.175519718325,0.880451532507,0.881040606731,0.0638692148808,0.826895414212,0.771245944027,0.479353842587,0.989307983829,0.672346280836,0.0935534104452,0.698399621412,0.00579449183499,0.137300386623,0.458456491642,0.663995860257,0.870284212869,0.588553310533,0.912002825037,0.242184177735,0.0351670632584,0.848649069896,0.954825169971,0.326007527197,0.609553333323,0.575011116832,0.165435569307;14 +0.492763056736,0.832200549807,0.00263931657948,0.640912930114,0.178074704103,0.968890800672,0.659030913509,0.150486600588,0.695681274772,0.457886213785,0.954914540212,0.25279656045,0.940969828066,0.775785899083,0.764478091178,0.355303575363,0.719038161433,0.337423079148,0.592923656726,0.621420432911,0.531230567151,0.833837192032,0.0806351387655,0.890198954718,0.199955686521,0.619828113714,0.520765738592,0.175757806351,0.359973627462,0.728949091036,0.885937729436,0.314940235749,0.318794632108,0.86604805735,0.638280994664,0.35322597016,0.977569396965,0.994310298037,0.613997658138,0.542772894747,0.781467665337,0.833530822672,0.845350725082,0.649579342862,0.751432933386,0.0298509552098,0.324635837112,0.668392419416,0.478659861905,0.74246142992,0.189624317706,0.574768872636,0.0714144554658,0.694499503168,0.829045038899,0.570500812427,0.872975310267,0.317366872381,0.560690025992,0.30577569149,0.930883183603,0.138147828429,0.0269505427141,0.83756968804;0.365144519741,0.425640078579,0.677660742159,0.0917647259305,0.504850297447,0.839407678528,0.159258090298,0.176819176676,0.342804518401,0.544331670101,0.361923420637,0.398016327029,0.034223877815,0.911288705786,0.720251082516,0.344369528389,0.543888572676,0.635387291329,0.496388747945,0.950633128277,0.778020156482,0.955883868541,0.490191633528,0.592789481998,0.375585112882,0.645908940476,0.428865997754,0.117461283358,0.139878891654,0.94942909713,0.776100765665,0.726337169362,0.739528968166,0.69238129839,0.854088519323,0.275145627808,0.340379206425,0.832716949924,0.979970445857,0.208763670232,0.727497488101,0.918083620885,0.211685649229,0.34294310885,0.22294597969,0.0770382450151,0.666139668647,0.604171843262,0.560909203304,0.0251165657727,0.853069658853,0.376728206131,0.404671700292,0.50037067396,0.00406115263064,0.791079587547,0.944992955628,0.931394331304,0.381907901709,0.686737741753,0.70335590566,0.871914144898,0.541756257484,0.208407388463;0.465341130816,0.37793181733,0.663973507203,0.772536641227,0.655002266372,0.830889603285,0.787568677177,0.899633847159,0.74139474372,0.600208100257,0.711286827901,0.211571321326,0.134242796944,0.853505414711,0.393174062056,0.27865275147,0.590385997123,0.767646355588,0.106957272708,0.117081569026,0.0269278743854,0.891336433632,0.937533053382,0.192239713066,0.124154706591,0.975067500484,0.169132817952,0.35196666085,0.696393648652,0.0326062556259,0.782149379351,0.910164828744,0.342515109735,0.24574588669,0.886733933846,0.99671891399,0.580728548974,0.765939199576,0.674327986785,0.941365368582,0.338152357623,0.970383170747,0.692448560659,0.799793218386,0.609369862976,0.19157730016,0.0562414871194,0.970826172302,0.800979131987,0.615465933926,0.271699014445,0.706005897629,0.318534832853,0.611138061212,0.813526426033,0.931338774832,0.632092832566,0.870119580627,0.0740719759762,0.900351384895,0.791819130082,0.1343537818,0.0506378435264,0.0544348002513;39 +0.496666107527,0.812511626435,0.827509071948,0.805991494575,0.891063068093,0.775884511836,0.388982669618,0.26117064675,0.925007249345,0.256653213355,0.125064736932,0.277520576505,0.702540573305,0.121534255273,0.430698207113,0.351037333692,0.973302057957,0.995003654388,0.0739584696246,0.171522898477,0.619513083567,0.504098394852,0.511354990387,0.578653110786,0.76999427144,0.839967809452,0.214027607434,0.268862712107,0.362303665726,0.647582631188,0.737266626409,0.860575400039,0.163465032881,0.897484886705,0.723455711641,0.618875960696,0.767444822606,0.619087669885,0.631462700149,0.945592080783,0.423889827913,0.662446253839,0.480526835158,0.134564492874,0.434065555327,0.571977021189,0.526720880387,0.441213122908,0.736187937053,0.395996300287,0.9275017357,0.651712032283,0.271461845125,0.543694619285,0.454212651582,0.00616695656872,0.763305211853,0.663996198985,0.611562602975,0.735861178431,0.105436311503,0.488250826029,0.623503256989,0.618226643526;0.34939042789,0.68339812895,0.927068028025,0.0262914468888,0.159932734873,0.563048604255,0.85570690054,0.526746680793,0.763012071798,0.106777655423,0.671187409203,0.0489810018519,0.287025152276,0.11060674693,0.176505668901,0.309457310314,0.7528846094,0.753891853513,0.882642639303,0.934167116931,0.52488467381,0.245371914305,0.0991119753963,0.15331995878,0.875212116394,0.049315692331,0.842307647945,0.535015232449,0.963373321257,0.383185675331,0.630967133361,0.870893209682,0.408019715072,0.785312455642,0.34107766443,0.384831910695,0.609392673634,0.851397180089,0.109231042892,0.364404981215,0.968639580144,0.1467696277,0.921078491567,0.131527088125,0.333113079882,0.407988899839,0.945259174008,0.0854830434627,0.369060417453,0.500290542118,0.837255282843,0.23636672272,0.0774023275559,0.00378387892504,0.0462408491751,0.14440026618,0.786965245706,0.159384210796,0.183569137923,0.453873581749,0.718973108081,0.848385052085,0.977654959896,0.0829430835244;0.812677457469,0.91620766379,0.325870859598,0.59430533602,0.704468343813,0.557852959339,0.00510705865285,0.971861791735,0.685137733786,0.720528390329,0.089164097608,0.824539826532,0.0509604095576,0.456089341672,0.88677613499,0.153498609809,0.753250078156,0.00851108648753,0.223601669095,0.173927988195,0.101489142442,0.245910379952,0.23452051215,0.226836181107,0.623882176494,0.501324490326,0.706510301228,0.177975688141,0.0360986868592,0.317648020355,0.72492571198,0.145502596505,0.637438089624,0.978434021551,0.782483810604,0.0532034191507,0.916672342612,0.564899125674,0.724346471555,0.761581097834,0.771291043534,0.837126050218,0.14710146119,0.995519458797,0.32813133387,0.67468956731,0.766202275373,0.713169163284,0.940824779444,0.109855152333,0.309118781226,0.413211411072,0.368173775443,0.537251073735,0.454086955575,0.916515418742,0.523033440166,0.140996062279,0.0225872878264,0.674530110726,0.74788703274,0.378820761025,0.259447106863,0.370637365094;67 +0.124687392835,0.726827952932,0.994300753288,0.535136366296,0.804938849491,0.456999689862,0.432636540066,0.986184312521,0.569794975306,0.0017111045375,0.897973746715,0.557346769467,0.8396732091,0.959699413701,0.723656927469,0.948959683786,0.463013328648,0.587960992212,0.136673323676,0.919959247988,0.118039542442,0.0777563374258,0.250953539524,0.680530513907,0.52844485234,0.608174001622,0.686476208032,0.134775500261,0.847517025359,0.341733167374,0.000216683059684,0.770628864644,0.952677463283,0.690308136408,0.767679418942,0.514130612561,0.162610723647,0.550269052849,0.998151904839,0.870996368673,0.92919939569,0.75700415982,0.613628976975,0.96058913013,0.184323701398,0.0556988378835,0.603347307378,0.901059840029,0.175870594693,0.535143333779,0.81521704794,0.886067205951,0.0572296772277,0.767126070576,0.67068604161,0.0852517757687,0.0166075088313,0.609239035696,0.302956177077,0.0803357192847,0.98382923602,0.291312524366,0.682594131741,0.113837296533;0.734086001585,0.146721103506,0.381899741512,0.313209811188,0.707205642626,0.82258920402,0.741557655605,0.614556413237,0.648469438756,0.929694890638,0.429171151346,0.26904298302,0.919498698291,0.1508950431,0.467046748168,0.908389549207,0.516903647812,0.40980477806,0.694001267364,0.979434084071,0.235790609935,0.00534559784927,0.0526781407978,0.262769625582,0.775099220094,0.385862016365,0.781796047782,0.413497367618,0.134321735747,0.815167078676,0.637112445212,0.739044018158,0.943720193402,0.937775138433,0.859474326994,0.281333513528,0.797486645056,0.151303422582,0.662122814897,0.637565448848,0.735701980555,0.66777885623,0.634054098695,0.387472929247,0.523835578599,0.849496084904,0.691234750411,0.570120830785,0.0760286320449,0.306056851929,0.09730981644,0.488425236848,0.602549859072,0.240215692907,0.42792323962,0.184930666181,0.845522872277,0.987715189996,0.452693425962,0.920459168951,0.657622656934,0.533302985978,0.635223762142,0.0989558985459;0.606206555932,0.11048541253,0.611682995228,0.922128194759,0.348191849308,0.258054393823,0.755692557017,0.89974538424,0.35527558888,0.0661300856704,0.546575489458,0.998088674139,0.829927290952,0.926629464417,0.106205984502,0.230749248899,0.0231865153338,0.873027625386,0.992484560331,0.754339623801,0.0363823428929,0.0124627631495,0.541738795357,0.875523186935,0.486464401355,0.594845431911,0.98187163536,0.84590693218,0.199104529796,0.551539824902,0.50299695084,0.279062671137,0.491421251194,0.684747176853,0.39526771395,0.124616953713,0.515891247762,0.857197614185,0.900850145918,0.106249391317,0.177170066739,0.699069050482,0.67743283468,0.349416441567,0.300546727408,0.650294956072,0.97977478803,0.727149975013,0.609760719495,0.402230443179,0.0913193667904,0.66616226858,0.194914793163,0.431475257699,0.0923888019452,0.104691325946,0.094402692838,0.286765728626,0.443106918674,0.225152610534,0.615010242586,0.534606785327,0.944670705392,0.47312300409;86 +0.45663219172,0.00722968966916,0.907740031821,0.521830974992,0.224409806971,0.271255517872,0.0254038304393,0.84924252807,0.0480409245755,0.292566687209,0.634730934113,0.861380430174,0.716746584691,0.156077787241,0.0854252400608,0.153725372419,0.808999240936,0.0223898231878,0.74458125966,0.850033976599,0.239378018618,0.538331769352,0.99298435833,0.00145275675628,0.901940650888,0.868293268117,0.225092717228,0.280810166728,0.593676254641,0.0279662849629,0.58686903236,0.669340701524,0.687540357552,0.756618457631,0.521925357114,0.27411141184,0.540875169846,0.199788249853,0.179218284573,0.390154139018,0.126305120428,0.525567460646,0.0809634694464,0.720387555295,0.536355911097,0.846482018317,0.190871660974,0.547129352164,0.769517007493,0.26530033717,0.586217683974,0.688599871113,0.809139394446,0.00482998483642,0.380601608174,0.949196647442,0.334748306208,0.87722124668,0.743295697787,0.484655158028,0.637232740647,0.851593446029,0.207757664279,0.245328812661;0.0673132911368,0.0968571815072,0.365088176894,0.325249976587,0.63406424172,0.131942958127,0.715844216606,0.748061542508,0.471636596032,0.98050326939,0.611266960438,0.215541744257,0.208165405648,0.438712840363,0.341124379802,0.697190884615,0.659023069559,0.0469876698402,0.165424883252,0.994386407947,0.00878054351504,0.513944039002,0.277723227109,0.511097604273,0.494436895186,0.885446923968,0.429091031001,0.440664279176,0.905621918514,0.98797727261,0.877132222747,0.679889435003,0.356439722857,0.556446473662,0.472213217933,0.7543814581,0.28404112059,0.744823828484,0.678017255641,0.435421808623,0.205726798693,0.445331457268,0.94764018994,0.579245742946,0.524716636848,0.026499440921,0.874698904846,0.947555131714,0.793292376793,0.241399852686,0.903462950039,0.660192023269,0.750592279895,0.0884717367828,0.113397978602,0.67009812289,0.340769564226,0.847821068071,0.730504055159,0.552664784362,0.602915884545,0.29648200552,0.00595789776582,0.531354557988;0.687511682006,0.766707663601,0.296673917052,0.454558540199,0.0759926399069,0.963603939626,0.514094547217,0.248440650033,0.734214748109,0.926633503514,0.30280620176,0.114903652114,0.507207934791,0.623370725148,0.378049660008,0.189493355217,0.174399328808,0.410128841451,0.8508948093,0.173822121971,0.912910051756,0.947393435025,0.696106884431,0.0674101288297,0.0712881954023,0.106299724376,0.964059340432,0.106601083998,0.369466766531,0.352521857069,0.529398072518,0.369632151934,0.574586087262,0.0681771088142,0.471401043275,0.409630500857,0.775395587616,0.848071848509,0.730633903239,0.528893456421,0.70631207149,0.728331988503,0.320505187141,0.947650160165,0.305927300537,0.207211851238,0.643127943771,0.643105843383,0.61527103063,0.764341142607,0.518945952403,0.218853236078,0.385740493688,0.791695023486,0.469754466038,0.0327168900213,0.220210554479,0.194764689714,0.126568827767,0.973686055351,0.571891076033,0.888557966262,0.906143880574,0.25919367042;58 +0.479102123704,0.996603586994,0.26123499374,0.171051857042,0.52019771572,0.630282369528,0.0204037631967,0.934546417185,0.0751699288568,0.9802422102,0.787439693264,0.952766172383,0.0737261835227,0.972203106316,0.86864422601,0.131953868478,0.539739586795,0.238607391045,0.399543161973,0.42654951194,0.755744388674,0.790312619026,0.427847611099,0.432557823674,0.260009832918,0.856216578935,0.579903800104,0.900183930033,0.754776422283,0.888325336181,0.776811020734,0.400885723382,0.666186162427,0.0546209269804,0.802959845049,0.034763113198,0.376506986725,0.879685466399,0.201291909911,0.135784691651,0.0228708589187,0.951397956529,0.497489887525,0.978799256929,0.78078364144,0.953728413595,0.218745097857,0.826777869898,0.299610235808,0.61638493483,0.644994958094,0.209367703051,0.824071814584,0.961083142971,0.803242820085,0.0915324744009,0.957118199067,0.281753779366,0.943111138826,0.387653680803,0.857257216463,0.896612485064,0.55806574849,0.976681427971;0.189994244978,0.011128964379,0.932318647131,0.647156544171,0.62700624866,0.0453889264565,0.238996267861,0.687463803422,0.367915501623,0.916101765731,0.449162548915,0.0291976731552,0.153313179197,0.202063761662,0.797457681483,0.333773916389,0.50068784892,0.262602116399,0.939840390233,0.113707110973,0.355367726263,0.509824165425,0.573456023951,0.310182514868,0.0265340791126,0.437061502988,0.167132268842,0.0236979223523,0.837580505774,0.507688554817,0.0591701874317,0.346397820009,0.578697682572,0.0496657969178,0.299107306112,0.951591411888,0.186567115759,0.743559184317,0.385637103432,0.880852883915,0.618202334507,0.00256615877705,0.326471285113,0.515216021262,0.080689135384,0.295805880513,0.585843676884,0.619304435611,0.497947661357,0.202513857494,0.181015091722,0.613146536184,0.131754441874,0.860869920039,0.0111256715915,0.828835930129,0.0830156449282,0.788350092079,0.964357698907,0.845326278338,0.260037376816,0.998407227239,0.767895506158,0.145223334383;0.858456970367,0.891986289682,0.124462749448,0.870877644633,0.785879540729,0.185618408458,0.618303071656,0.588228707681,0.302326124481,0.0268376885627,0.208531301369,0.847916875276,0.567417093494,0.462781527963,0.495416047395,0.0101682835445,0.401454968624,0.669190158016,0.346738610773,0.160201922261,0.0180695107773,0.681615657396,0.000423395899765,0.703874183404,0.903035523587,0.457280851198,0.529993631787,0.0064401555957,0.0898731734715,0.201812390009,0.985905886859,0.574410216901,0.0174527790587,0.682246583601,0.792735942805,0.869523026036,0.091692334202,0.706741480488,0.793586490306,0.800194693786,0.347736812111,0.0568835394754,0.158391964679,0.841094937142,0.354046324989,0.4197371532,0.974538146392,0.930770948894,0.905074210327,0.961962003955,0.926032521551,0.830701399333,0.210465156329,0.65868979395,0.469518703955,0.284509008223,0.576120906564,0.47976725608,0.911932553397,0.128046395616,0.680543274398,0.342065432238,0.65445840011,0.59093472014;56 +0.552637298125,0.798252924727,0.0632698760221,0.00616016432462,0.151775275675,0.880387096653,0.892193926795,0.482173251751,0.012684703709,0.928277013229,0.546506923726,0.164925962186,0.52524120847,0.229888641262,0.595025375782,0.861865933626,0.98760894229,0.720865565921,0.516562835582,0.453806164314,0.416328745642,0.369664145921,0.723145816186,0.746444895989,0.507702133244,0.264543577369,0.0602205460676,0.642564238164,0.381251490985,0.362985981102,0.231315112845,0.422339718444,0.304222958745,0.673360374758,0.0888005145533,0.659905773708,0.541967903187,0.632744583438,0.228162424059,0.223748654823,0.144502691505,0.106027620006,0.940339163297,0.779395898483,0.356466306142,0.597296500399,0.642723448915,0.824842913045,0.333824542018,0.415923303829,0.673178910787,0.430979039795,0.9526781682,0.805092431204,0.495088660807,0.0168209515999,0.978131702302,0.861097931754,0.145466415014,0.647182096357,0.581732671857,0.987787057651,0.436234700885,0.88488616073;0.746459172245,0.570040311342,0.458138941949,0.674545422657,0.293740287582,0.395651829091,0.408658024494,0.792341703321,0.343606253909,0.131622143468,0.859862228806,0.0719296629395,0.725920546361,0.571446850554,0.224269472526,0.952307389494,0.422588736649,0.36402907179,0.287071831587,0.041558562464,0.651895810837,0.749986533729,0.424202868952,0.414057753631,0.563681006517,0.869069711823,0.380942228456,0.677389604547,0.388868445485,0.259563251556,0.718499941759,0.570577390634,0.900124204971,0.54948104847,0.750966709788,0.00222398122619,0.577114820707,0.672226724217,0.594640506059,0.973539499339,0.0243861381045,0.44159508043,0.856323098019,0.590968898576,0.218838913064,0.224188376399,0.00639162326156,0.295864961714,0.976527301662,0.704180730432,0.0439166586521,0.355330379043,0.987679618158,0.808677444123,0.727734371243,0.453734754229,0.907309924085,0.0999685143461,0.269667793376,0.0926787789368,0.56352729809,0.0308713814095,0.772027290162,0.862061325098;0.485077890936,0.0749948566377,0.176745526391,0.13986503473,0.261419581702,0.195517432022,0.418238848301,0.200890735693,0.52156735832,0.687366971535,0.60293692318,0.850266786367,0.953362416442,0.875739007932,0.251776530736,0.4518300151,0.27886983109,0.51357651392,0.385839398193,0.934613899027,0.936218719052,0.403864563899,0.912279597807,0.552187767471,0.312599068743,0.3751564331,0.430697714912,0.275757021822,0.0133759895239,0.400978955168,0.97061636284,0.268918593116,0.525560053277,0.738205018486,0.650012476792,0.960829859637,0.989449965512,0.546239664077,0.464925279512,0.819744187439,0.559960255743,0.91132972525,0.469899745781,0.594209297889,0.785765993485,0.764086489795,0.732569446396,0.6618999165,0.0335191231095,0.238909999141,0.251953852825,0.880262920458,0.373644685398,0.48779121955,0.267857409933,0.0398681250921,0.111512063054,0.0506585334827,0.252450229708,0.273791686812,0.297043590681,0.482504783042,0.210461337598,0.923954231379;41 +0.0539522023192,0.041127582456,0.250873056829,0.989258650103,0.122308237593,0.829757744332,0.858376161102,0.717575146605,0.639699271353,0.794829939963,0.916422303458,0.508086400913,0.200735413862,0.745973647577,0.36363434799,0.102064897003,0.919677528604,0.897237228067,0.689637045782,0.0524860118193,0.694534784292,0.00434002847043,0.2427441862,0.744717088798,0.220558342303,0.943838945188,0.424149218452,0.981368467227,0.0548460497181,0.171416842613,0.865628416298,0.630942704046,0.0957944562642,0.387655739353,0.0229906489558,0.121756860867,0.2703528351,0.0745396990774,0.980817010263,0.536256484773,0.987130156176,0.0248563067994,0.422395916822,0.753870651706,0.843119051771,0.88086204224,0.933836684114,0.913488162863,0.267782218687,0.714933909283,0.856478622594,0.514542930081,0.203774528687,0.587010991679,0.145761147361,0.240209029291,0.556397468503,0.421933507887,0.295752294621,0.665833132949,0.720962006106,0.397622803846,0.971783836417,0.135683188852;0.13758578353,0.796581194041,0.339913781881,0.800392503235,0.622965257399,0.107968581493,0.913215120425,0.923352228738,0.608891082748,0.745114062413,0.645414062551,0.0897818032252,0.449943680159,0.673933301341,0.289788335117,0.458136720442,0.651214486732,0.513941196728,0.580204140239,0.726856077389,0.595440395754,0.128183376026,0.971631718667,0.536919074003,0.592426712596,0.86109803802,0.704437818643,0.401926534932,0.804556695579,0.115282751988,0.127231586409,0.907519651886,0.153557478511,0.321721287538,0.552769053376,0.245956263624,0.903087287395,0.474636903902,0.488718018345,0.475314581465,0.433838257086,0.706001336358,0.475825961856,0.758079977414,0.231065972201,0.970579683641,0.933568717647,0.201926396756,0.329388722301,0.802635295617,0.801089226529,0.302101936211,0.484153321195,0.677776581005,0.968717505622,0.941046564915,0.242813082552,0.621705580671,0.216957579198,0.0295510234624,0.932662145828,0.261023709745,0.384515135534,0.200318535295;0.325563686334,0.110295042163,0.219935955131,0.200184859142,0.433237009476,0.6893320834,0.432524115213,0.273764744722,0.432062681937,0.00124009988054,0.462160600858,0.812844336274,0.792985906235,0.904699012568,0.857779997134,0.593112670151,0.0319843687792,0.149181181321,0.12695601634,0.29688675517,0.324314941731,0.402538498306,0.76000076951,0.395262727009,0.0266162709172,0.0670168117783,0.562498964455,0.713307665497,0.678109564153,0.635380980425,0.726903077475,0.635425820481,0.423825385938,0.447328736155,0.908294181657,0.119172498863,0.965758901855,0.456787783959,0.334798686133,0.380728482016,0.090728039312,0.453403791374,0.0543154051898,0.379375362366,0.899704913384,0.181912616391,0.555469243163,0.979508148849,0.472433629586,0.764036470403,0.469829606095,0.0960230016652,0.872445687157,0.469051624945,0.426149760273,0.679308701871,0.734932542335,0.632207397531,0.974255107087,0.509704452043,0.823021646273,0.13187373382,0.546909460077,0.97563179147;49 +0.82137611289,0.508579550725,0.282604083168,0.897129973758,0.725463047967,0.21672895325,0.482085037245,0.993195102613,0.725549685912,0.830855064714,0.707288172928,0.768185300746,0.729153440601,0.715837801534,0.935601628104,0.772507369372,0.985448360058,0.713913425805,0.360940162678,0.5845925605,0.861793258412,0.769572143064,0.520595645206,0.722289582886,0.354998368791,0.954360101069,0.260023472832,0.393002594897,0.316490648091,0.329095093913,0.645946091757,0.649641910788,0.310274185033,0.688149179651,0.511843090647,0.378111600808,0.699307108562,0.367162826785,0.202143967951,0.382130894487,0.470853747702,0.789762016076,0.340284758571,0.257096020667,0.289833414737,0.88440038067,0.64710337956,0.151820918586,0.103739183095,0.334301882453,0.295472322436,0.265020499058,0.883928070259,0.466671513085,0.187729615988,0.308929694098,0.957798082357,0.614123200371,0.330008583201,0.684055983654,0.181191625625,0.15522934391,0.28660785942,0.431775432735;0.400167939154,0.814583452836,0.271961306711,0.36089974911,0.905600659549,0.667630778597,0.409897703519,0.47515181076,0.273958845274,0.374908287654,0.451707522635,0.692367565678,0.0652209493281,0.775427152384,0.993466789882,0.741734845341,0.408856617192,0.0317976176325,0.0114388515314,0.433616063235,0.374789599728,0.638120935477,0.0314374123764,0.719569719227,0.0140257568122,0.375606501077,0.0729410933422,0.304978900371,0.0103129287628,0.605802700671,0.337874291428,0.463788996538,0.727090795804,0.926556014539,0.206210038825,0.945769610872,0.272355279338,0.569105177934,0.684167241619,0.554597501638,0.055300392033,0.0168889304778,0.878425358944,0.820440111077,0.965515438848,0.555589167326,0.774406855612,0.127041140651,0.925692753026,0.281210424089,0.0599153288719,0.612636292901,0.669395697626,0.609101389659,0.268929573163,0.51366644161,0.771904047472,0.797855296836,0.849176893041,0.365404161277,0.502287856586,0.474253651999,0.616093155762,0.181918232483;0.0335640766742,0.418081631642,0.108882456478,0.602371592875,0.106834712075,0.113938927757,0.719152865965,0.615998271608,0.866149493047,0.643741773712,0.468801397785,0.308134869272,0.0905734990985,0.452624506439,0.717375017646,0.795071645138,0.951646882715,0.400516770368,0.12521107761,0.027775254434,0.986056502912,0.370770385147,0.542392023697,0.326204201847,0.450996196274,0.750043801837,0.0140057865607,0.435362630924,0.210455805549,0.505975265667,0.912148833249,0.658459804236,0.459525585303,0.563611738241,0.426629219118,0.928814810098,0.305393354694,0.217098079797,0.496291425053,0.558110683436,0.127933941674,0.412130654688,0.776180150248,0.822091138589,0.333893089911,0.947218584216,0.140454013436,0.428449605738,0.793468690581,0.580654191697,0.306472776055,0.601809005079,0.805281983493,0.33655528305,0.826136457601,0.172198199251,0.186519166502,0.155870257918,0.77526581258,0.456230321752,0.159010668773,0.267831280749,0.100885038287,0.581528265285;33 +0.0812809589596,0.323115952499,0.954494462867,0.790971968716,0.413199772417,0.494658327352,0.417538257404,0.465182000383,0.349153568154,0.724494463309,0.093291817444,0.32801027787,0.0581722770984,0.00174390441559,0.18645441579,0.927103583785,0.247131429246,0.491837135659,0.788438437608,0.286583680444,0.0882918035854,0.43523364992,0.573860698746,0.165529953429,0.211200607486,0.221083157115,0.210071091147,0.996054064589,0.911908112507,0.238785456628,0.412146034603,0.593809758243,0.253450778953,0.524488714354,0.991822212383,0.425128931687,0.159120703738,0.0837443526759,0.735905730304,0.606193729588,0.230862701394,0.436452887923,0.218719929793,0.283250922569,0.174781068497,0.596699737194,0.722138527437,0.0516395023064,0.234132314611,0.850554884401,0.759559668736,0.84785748397,0.331160267358,0.484302633872,0.809437274338,0.0960114360534,0.00822943904525,0.0779169839257,0.175056721689,0.902433810472,0.63626274768,0.883884468543,0.0872590825137,0.245129145126;0.509083949689,0.0703679263845,0.414166257842,0.136533784646,0.814093511842,0.438861858619,0.39478693504,0.952152197417,0.928573431298,0.705097509884,0.824892564385,0.685500222105,0.0914039061967,0.968794099394,0.310145019757,0.294492946044,0.190660882773,0.0441220062098,0.354129990077,0.721458113602,0.685944629863,0.547615088208,0.212431467365,0.162274077383,0.224103522198,0.93365315886,0.390983911627,0.159360285128,0.407559164095,0.995501225556,0.077256215588,0.442401082779,0.581385943437,0.287669623557,0.551764076386,0.94441449068,0.755418164484,0.468777834202,0.730354350375,0.362053839321,0.297632315228,0.365844349315,0.0711819783023,0.0425694430468,0.824331781403,0.599499511064,0.190886263553,0.636239671608,0.398422149284,0.810532405598,0.470440502823,0.122507892837,0.910623181039,0.0981189708438,0.537063583267,0.664206498308,0.938832814134,0.705190271213,0.140055371868,0.318100788826,0.534625984046,0.624090706481,0.299194879193,0.620428714214;0.278253958684,0.107223220637,0.112101671549,0.562489277135,0.0455415186728,0.950901204717,0.742523622294,0.780391370449,0.918027919044,0.849631775548,0.796991485016,0.611242221667,0.219120688627,0.469898427685,0.998350485533,0.166463726648,0.374079976449,0.691141841976,0.236171600076,0.0405608484951,0.715989791805,0.353017078373,0.590765243987,0.155750662654,0.675456809318,0.662701057307,0.602242726688,0.206825307201,0.289144019201,0.65341833492,0.676571153527,0.744610987749,0.801146543844,0.897591979478,0.587629070372,0.320599396751,0.823601953579,0.963214945623,0.494005013639,0.339077334914,0.567610375473,0.234406336988,0.85657894743,0.903673206945,0.157737856329,0.196859577174,0.0355952174485,0.0298458005006,0.710605428874,0.315766699342,0.342476628463,0.794073069433,0.975126208416,0.222246386081,0.667969347729,0.999059194909,0.200834525348,0.567014086119,0.137816633963,0.946200518946,0.421226791382,0.455980718541,0.97427230181,0.0683601587426;67 +0.606586939352,0.77396970676,0.509053990913,0.494550225194,0.581685423376,0.770287675986,0.426794982122,0.776329105738,0.0591804298342,0.617971756753,0.897595892997,0.607731078272,0.837065399815,0.582194023445,0.525084290175,0.96437748192,0.500488535915,0.69578563664,0.425206209044,0.175812093523,0.877976514278,0.300180315575,0.759762879709,0.0644023778766,0.896629083658,0.359824819842,0.423106285812,0.376098880569,0.737865867663,0.442823120402,0.328547900623,0.442960391729,0.888067308722,0.488705892233,0.0207889776467,0.203723378967,0.646611493824,0.493766032961,0.90726936132,0.843954422873,0.258388310314,0.751903756968,0.139554394008,0.473521949726,0.692803572866,0.453031257062,0.550735393795,0.756816036825,0.256527062792,0.346559065519,0.724493029473,0.858333341838,0.102888775458,0.792680499461,0.327795510026,0.470454091262,0.572430539565,0.244441172135,0.0947744589015,0.00875560544066,0.349680248505,0.336528554025,0.837057695633,0.768259591555;0.0827481021539,0.810843330943,0.591781826939,0.576083048333,0.908157597323,0.511233077591,0.232530700959,0.670858496811,0.0339177685948,0.162811597346,0.956610820981,0.383872458572,0.609138387984,0.454923689114,0.998658580321,0.355284666131,0.741939305428,0.879206447766,0.29154071773,0.793491064556,0.700288326927,0.195779323847,0.662723484326,0.0413068232232,0.185642197494,0.811985307294,0.474753207645,0.474310336035,0.763563121566,0.116368301575,0.172492083436,0.657524141461,0.930637958992,0.949049924017,0.659816876045,0.362337959751,0.118414862817,0.347945923057,0.0944766781175,0.594662626479,0.845511593882,0.957233521268,0.628155013177,0.739247475916,0.259612027356,0.594529134801,0.83137869144,0.750010971195,0.53979988923,0.92611245969,0.23283550123,0.306342548954,0.693339518171,0.782338372692,0.67980084931,0.905571255571,0.647275823786,0.769719947802,0.117239581233,0.593435958966,0.108074409882,0.566560016587,0.719119850817,0.606802934782;0.138175676091,0.344398150796,0.860782853471,0.637760841743,0.982930468477,0.810523449365,0.571558946513,0.0502440157363,0.899079639689,0.901288051611,0.10289031126,0.722809448242,0.960312106426,0.578716055892,0.94304383801,0.108237538326,0.975582792254,0.718912567799,0.44903817128,0.521761712076,0.732008909494,0.0342596516133,0.424157501199,0.943880342159,0.0030521236371,0.498214941282,0.224853727714,0.254537853775,0.0755986237727,0.102781743012,0.344928074933,0.855380714836,0.671519795947,0.816676033701,0.172691007417,0.060944167202,0.396616528752,0.561741567491,0.279874501012,0.875123733735,0.163773802891,0.0293256776092,0.360785897318,0.570047360316,0.645916196133,0.682336925689,0.0322205858104,0.57717057338,0.380979640132,0.988441304566,0.25612886677,0.355476153817,0.429878135446,0.399099786529,0.832545054449,0.827620170777,0.651418856133,0.411650747778,0.401726099034,0.113733468001,0.282570742516,0.428418897501,0.828516109147,0.805082852022;17 +0.173406990341,0.338882683298,0.942557564366,0.0761351973582,0.0194427362644,0.499502114284,0.929470956472,0.994467423525,0.484405624712,0.643733358253,0.755101541559,0.569001326435,0.196970355328,0.276952666969,0.176912369282,0.621643397014,0.641699182075,0.280392853801,0.617490690455,0.775263790993,0.036804934966,0.55245719091,0.90941260609,0.76576455443,0.660146607664,0.657257254091,0.0973125205651,0.548193336506,0.401718796329,0.42903406232,0.134717180849,0.51005521389,0.741742703166,0.371397076981,0.922894457481,0.0413717889224,0.471951137076,0.214563816312,0.514351284788,0.698751575735,0.279281391325,0.715244402811,0.418035998776,0.46431666285,0.32569711258,0.62027928768,0.711081101458,0.105740447131,0.865662487658,0.490373053494,0.671166319537,0.744995042634,0.433459340497,0.354873846501,0.46634649654,0.0829737054737,0.524097045578,0.217619665264,0.282797316607,0.00840435691762,0.969326491122,0.977852680875,0.198042889108,0.884169704386;0.248395158532,0.453670165462,0.0751063604239,0.292759468497,0.475923820981,0.125120453917,0.209109843209,0.325216214193,0.287900353719,0.393486039482,0.893889230573,0.0367254964383,0.25548951651,0.430805546369,0.335452095272,0.83117625232,0.459781151935,0.42312740491,0.232037725056,0.198498192983,0.150925074075,0.260991620501,0.756608497377,0.143934392584,0.503100835714,0.277904498442,0.0748841075863,0.556624357593,0.87067688755,0.0677339697024,0.130678627933,0.25372182592,0.907723253982,0.864137445024,0.605178413614,0.173699624769,0.266151043762,0.0705610925823,0.887193255063,0.185009857469,0.965495770671,0.201807325719,0.350425853082,0.970883456432,0.643732778009,0.98463226743,0.24839317334,0.683822959189,0.334771408014,0.0927537838711,0.779675707903,0.887381693736,0.59474488377,0.314198961647,0.563842256536,0.0278859636489,0.460707456918,0.497966067983,0.160630261796,0.836328349982,0.600852389727,0.830897494816,0.406665630021,0.725848920524;0.980447149335,0.990625426332,0.863663482105,0.688053717439,0.782351651298,0.279465656616,0.705686122559,0.269888445291,0.51183604309,0.383493129725,0.809102034424,0.11357500345,0.320688284958,0.861984375449,0.588031057506,0.236464402733,0.383214546614,0.490865723971,0.369489527719,0.462476535933,0.981961119939,0.403955737622,0.395408441415,0.580234990009,0.795542135245,0.653188270225,0.89693678487,0.230015157319,0.543282125629,0.633093513684,0.908652167429,0.510206311329,0.560825867159,0.327464658903,0.821432794296,0.180540193423,0.408776961557,0.565938044522,0.925876634768,0.60706852618,0.1870510274,0.554527129483,0.819287818294,0.550114205494,0.836857362069,0.26687556719,0.731990834339,0.633049066531,0.134487331738,0.14469570312,0.767830011901,0.905414293098,0.735803889339,0.972527923818,0.352846846264,0.483788617218,0.45677904393,0.278454730198,0.230930707393,0.162755925677,0.629784617099,0.832227979035,0.0779267350754,0.996947224202;28 +0.506035452683,0.330371500884,0.378238645435,0.931759078399,0.2381685541,0.361690873863,0.768256104855,0.790822632411,0.976818287288,0.628107493551,0.264554120296,0.808225312246,0.862242767672,0.504432162485,0.312060608224,0.308718811667,0.876883323715,0.0204950974104,0.901630117132,0.674374915104,0.338137824892,0.475055421879,0.27358142514,0.321635940706,0.196335567814,0.247289733283,0.451086534547,0.651392230705,0.724421557248,0.914560247867,0.329088503697,0.790875316406,0.156602255627,0.555788248139,0.925634031876,0.582158874291,0.697145676577,0.17367347133,0.615198597211,0.964297207529,0.149097452656,0.579482217033,0.615997423878,0.377788734008,0.959807781798,0.97215113589,0.218883035629,0.40990611605,0.0102739219845,0.194277692174,0.480860063858,0.982061483648,0.298247105174,0.232970341054,0.093543915528,0.510702984867,0.765087990603,0.682200271356,0.792169371243,0.262169828339,0.958937890211,0.0407692435906,0.319123098185,0.440344618883;0.791449456303,0.354432817629,0.488743359165,0.271337284515,0.342697668701,0.32686808566,0.791268451103,0.392779273014,0.516399390117,0.274774803564,0.507403908967,0.0316362363746,0.37910079987,0.378807777389,0.844126456214,0.242863935205,0.319841395241,0.052269385219,0.394906881043,0.797278766994,0.331836553377,0.514398271254,0.551731524049,0.804739857172,0.612261277284,0.910431923934,0.567017001906,0.389534226622,0.541814348613,0.515825251771,0.0223383992776,0.182859455153,0.754784038946,0.800126829949,0.42448817483,0.027150520854,0.0783366517535,0.202630864359,0.36991743139,0.897080824264,0.927027925841,0.139660209695,0.574111433955,0.526661485934,0.280012100485,0.511583023216,0.960939126219,0.613892385684,0.0940930527322,0.293803966484,0.279182718887,0.432639050233,0.574705549181,0.0956211844073,0.906536105156,0.739456917979,0.839603676246,0.796906291647,0.441165970542,0.75878731581,0.265213744699,0.412392488987,0.606856910754,0.148933364963;0.237585061741,0.926623520132,0.886096658123,0.0133460052867,0.918696684588,0.0512869669055,0.644628809569,0.0897245430223,0.222696145883,0.29100853345,0.276581155602,0.631581102276,0.637459880154,0.646107967403,0.723474626377,0.261296105066,0.163931633013,0.326091168526,0.195616874694,0.792428581421,0.31152270308,0.782722318932,0.368071639298,0.731001236167,0.555029156562,0.701354105183,0.26394612826,0.578724250306,0.988299563172,0.241352276626,0.906219263582,0.42347134172,0.571112265346,0.493530563649,0.900986010024,0.846731918475,0.850018523642,0.367290395971,0.659717091798,0.34473292508,0.777726550817,0.693927779582,0.239754528469,0.484752324275,0.990523688313,0.406212975828,0.997482731222,0.795885524622,0.810230723706,0.97587084623,0.568253793778,0.45636365799,0.491514747207,0.303607860277,0.971480337711,0.613560504997,0.878658847434,0.0790648794392,0.0604473631572,0.162700879646,0.610743999702,0.266048125819,0.198342319962,0.649678089794;26 +0.447627735505,0.194358756604,0.806055808851,0.870954688113,0.189566208988,0.797440939447,0.176466619499,0.0351283250454,0.632628621873,0.58023705452,0.529948200161,0.133979402163,0.79784588517,0.906118782579,0.0101825594111,0.912200799544,0.0463432302466,0.468010472609,0.575353003622,0.749210398966,0.511347226287,0.255540255029,0.597206717391,0.456995165678,0.0747084249194,0.214902494825,0.610981635486,0.532960668108,0.044075406874,0.529538063469,0.147417146263,0.105663968148,0.0630098006654,0.96979851672,0.971044846546,0.798068684464,0.0473522208828,0.642682513145,0.732752822991,0.816597280784,0.515569412141,0.00473811758968,0.0766502058525,0.632469910676,0.851553087319,0.456370427022,0.3791309679,0.392913357119,0.880024924503,0.662767095002,0.570430941909,0.213853599873,0.468776052665,0.585984611613,0.0380960630563,0.41040263631,0.699326345906,0.859258987283,0.867360258777,0.19428252395,0.043010815499,0.503972846691,0.962246064777,0.0616120876769;0.741857246493,0.144441431218,0.856141534047,0.410894437657,0.22524893794,0.513567458641,0.650399500129,0.878085236092,0.646707010055,0.173597032488,0.23074309608,0.136594203356,0.537653616765,0.0438777897763,0.925561322598,0.667580074226,0.991410516755,0.609525978072,0.894638760711,0.979534738835,0.115796366969,0.737249343937,0.800340121627,0.514610046056,0.960767323956,0.566802101933,0.548129685846,0.275245413042,0.90802615028,0.592299097716,0.917429726896,0.0777724689853,0.912293440947,0.167264585373,0.804243226106,0.158482021354,0.512185454698,0.390704654866,0.384505068698,0.0491177030894,0.697716940891,0.17664116371,0.17600790844,0.78268877029,0.477073241519,0.65617704029,0.414909344195,0.856769542715,0.095323532859,0.0136025903131,0.545297708227,0.995402920339,0.840392559129,0.841993377226,0.237120716435,0.420545784891,0.544287183902,0.136100711805,0.167163052184,0.225982395864,0.00583995661552,0.271866950048,0.089022798897,0.664873280059;0.899002467271,0.210882885187,0.606426303923,0.896098454267,0.0206419458749,0.9965647815,0.591528077226,0.111309462577,0.32359496725,0.87742022537,0.372315536356,0.346701511802,0.0431280973768,0.114962922775,0.989815293925,0.203800164634,0.947580984832,0.870340758607,0.159016773535,0.58306399934,0.738329987166,0.914572219175,0.789128203638,0.428133136557,0.639173063569,0.546669996202,0.928914334999,0.539936010671,0.662192378559,0.318799339125,0.877443157611,0.310994029136,0.933874334399,0.335868140295,0.322711198162,0.518633168998,0.0703231853573,0.449887720036,0.236163437256,0.822177525274,0.152887069202,0.136959224361,0.604103740785,0.48823401313,0.90788129904,0.0739780255657,0.0998764756963,0.319039423205,0.32623538656,0.250493320528,0.50230695718,0.159930768226,0.57578423532,0.0342951529286,0.91839650886,0.968432491098,0.329796325921,0.732701516843,0.107227858176,0.555938058718,0.384694733898,0.75129412221,0.12174732627,0.534157351245;43 +0.626388025629,0.923098199295,0.778892725218,0.534664221252,0.39068640905,0.295214251702,0.415846697382,0.363403535485,0.37109610761,0.194859722398,0.515989732274,0.838867952617,0.0887038057903,0.432195323698,0.0124744898802,0.491134846979,0.542702287158,0.147055715146,0.427823361017,0.463110039248,0.560778463481,0.113411644908,0.547591648093,0.0775456366202,0.731982440221,0.086138496096,0.865594253862,0.877940971657,0.84665399138,0.0556297960086,0.950565876579,0.800786934706,0.801250349965,0.852495431823,0.425946694924,0.212701759196,0.990651167501,0.667715750291,0.654827932068,0.979988941602,0.122249187286,0.0125434825702,0.661842030994,0.989639476686,0.539904736717,0.639480581958,0.420471315135,0.964161323042,0.88703477499,0.30929778991,0.719632073841,0.546758192612,0.56336810704,0.927498837312,0.426530516181,0.36689911197,0.943424994652,0.229555093698,0.430207415015,0.440037875536,0.343345356861,0.26852255254,0.998088899037,0.184715844591;0.703559359737,0.463903586966,0.130141438597,0.55942686509,0.890008496981,0.625766542475,0.156207127044,0.652196816589,0.946127048212,0.42181652514,0.493727425454,0.766488624085,0.525231261677,0.442280525251,0.550808774801,0.0426374633386,0.894222969922,0.716958730646,0.623011159832,0.0806560434702,0.371810490307,0.607938405799,0.0689635794515,0.0225662444946,0.986813526115,0.095198926564,0.156413541933,0.763537917773,0.384823480317,0.0897021664263,0.96027149905,0.374615813055,0.486063442723,0.102224045929,0.568296918948,0.408003826207,0.908673968084,0.813384247946,0.480090622131,0.435314982811,0.907150049522,0.0725848904411,0.835178181192,0.725567718981,0.292034254974,0.387132572091,0.14446195971,0.237846376639,0.0514798273093,0.798363607626,0.287732712157,0.366030731999,0.849605694072,0.835084882447,0.615125325896,0.617993336275,0.105928824401,0.859143070911,0.434264124321,0.724789392702,0.00329459180004,0.908037372034,0.454595311913,0.89697240066;0.021137090635,0.940712223552,0.2083273889,0.217976971668,0.0451661471649,0.215259032996,0.287921854293,0.81602428667,0.0366422382434,0.537114425874,0.409925544796,0.0313391679391,0.356859189095,0.360291832341,0.0442034343133,0.349768006463,0.505168098527,0.775779833687,0.0740693419036,0.160582592354,0.858991802754,0.125679112612,0.864348929603,0.972438682779,0.565828397561,0.0452610854573,0.49342806787,0.847026762756,0.1111185033,0.0583617760414,0.861505835797,0.84889115195,0.938806293658,0.442804582032,0.54209698022,0.294949556393,0.152965270099,0.995635371255,0.520089801536,0.00841485133984,0.646261853359,0.298035170654,0.865479185781,0.510835664211,0.605047063035,0.785144974491,0.752041120371,0.243306567977,0.178961755615,0.611725960162,0.889426509599,0.614397537151,0.560381889974,0.212608752268,0.485311404919,0.223231559274,0.178131171813,0.634953054136,0.301176308081,0.337812261693,0.232784344806,0.339079156345,0.190393370157,0.315864839715;42 +0.785263704538,0.412079793353,0.483311500789,0.57838516427,0.779311243528,0.182506195266,0.506679114795,0.0102887237499,0.0409772735257,0.61123930247,0.151296307146,0.507192168244,0.0403009026956,0.0144299048947,0.349013430771,0.164301518883,0.467202066419,0.0995239255148,0.255928971671,0.965773085783,0.821337950569,0.0721792212045,0.640598927911,0.602324744367,0.357642830266,0.957913269988,0.462524392233,0.29636028136,0.411057982329,0.703338506602,0.465522253709,0.792985095273,0.62299783537,0.460677336941,0.0984583808404,0.315626761113,0.453660827204,0.463321298067,0.28966153784,0.699509730935,0.0398686438955,0.834374482611,0.75088589702,0.49406017611,0.322046027658,0.00181225474919,0.527476907866,0.228273759945,0.95806777952,0.55143126868,0.428341854223,0.573842983999,0.560856845932,0.19741339964,0.459545603493,0.344339568072,0.958479049949,0.158101872908,0.098461200665,0.182525734464,0.487153685176,0.498562273755,0.778552212294,0.790623811046;0.522332136553,0.251493880027,0.715196816806,0.849270250635,0.58214067455,0.172543101221,0.256566535462,0.202866698193,0.778944342996,0.637371863002,0.269699696141,0.0491556933534,0.314946172358,0.153426083289,0.47823074781,0.102396104985,0.454122333657,0.412437309696,0.495570650022,0.401412355278,0.568427208446,0.717920036532,0.195254156552,0.142841022361,0.316601226588,0.626279184029,0.284546859434,0.519314446158,0.590010653827,0.0466498117351,0.0474524468889,0.391434730268,0.212927668223,0.38127351894,0.196019256255,0.801839671549,0.784600701567,0.923754901149,0.126761315745,0.311091269399,0.985672208901,0.490729284544,0.61126726024,0.540225349816,0.769671984682,0.16837644218,0.607065914369,0.302393358212,0.197590930434,0.434680043998,0.792864649862,0.23515473747,0.303708061411,0.754903527757,0.506458985103,0.923529001403,0.610881483133,0.472165418032,0.930374229112,0.623260606142,0.0148693777074,0.80428941064,0.528048903406,0.262985713704;0.823458147008,0.981778672989,0.859791446667,0.566460912385,0.228300529013,0.207712561042,0.519951224652,0.907003564766,0.406097204313,0.785215883702,0.658890696338,0.375846334713,0.549442512083,0.302088862189,0.688700548004,0.0339217089887,0.178032250887,0.458883067969,0.259451633038,0.828811014123,0.770850122973,0.0302486626553,0.271612819218,0.801733217783,0.787398217655,0.605004550792,0.738209747178,0.712057448234,0.720345981427,0.134599244282,0.672224336008,0.605265951488,0.262055400082,0.594663931488,0.554563428663,0.0518123599798,0.950485905992,0.909983378949,0.671336057124,0.95490380913,0.215903834504,0.14204857957,0.575889228384,0.960654861863,0.904786407982,0.806236910492,0.628995427911,0.628041273749,0.550693447216,0.719321558985,0.139148831356,0.251013348311,0.550221256654,0.721480838659,0.263097690963,0.920201117585,0.892748632249,0.0709027211735,0.641421403319,0.596744755681,0.67894573991,0.422530087267,0.782308382094,0.047081639296;89 +0.33402688004,0.223159681232,0.284718413494,0.928422488242,0.623617494854,0.770333290505,0.682660428119,0.366756172769,0.543440001936,0.833702408201,0.834604849462,0.305862253915,0.727223302797,0.981667256512,0.0020868096321,0.123205763568,0.0662582449376,0.535785569488,0.172739567384,0.552145528449,0.625082797074,0.60605076242,0.80939666279,0.531140112037,0.872256076614,0.288444241158,0.442158461142,0.0842551297436,0.79405128842,0.964580196597,0.799977745357,0.941793352352,0.718300655756,0.222455541186,0.784938323765,0.232190153472,0.794752196299,0.0402646105217,0.819479768367,0.424446624071,0.925409930775,0.720986047125,0.422581991797,0.618690219389,0.278632816022,0.323990664243,0.783296587273,0.318979379726,0.511045716064,0.766947483087,0.569091436577,0.191037032045,0.304097979076,0.921705520881,0.713052545115,0.820723781159,0.486265694881,0.482830208145,0.478607956828,0.04458678996,0.305229506333,0.489481425209,0.506926268236,0.201800186007;0.0221997672062,0.0504727167735,0.94707105647,0.0404908531505,0.854726542918,0.932492008798,0.82784724136,0.513723680853,0.176342882414,0.0319360409835,0.294993177366,0.746613847929,0.590901850418,0.899164022719,0.409415542073,0.640916772453,0.917189902146,0.674641985731,0.233910892581,0.5777659647,0.86770344461,0.140541217334,0.00902712704016,0.806315798673,0.982033782146,0.634417348126,0.790090720642,0.680963628015,0.885357272701,0.338667229175,0.897301327524,0.739812651843,0.351262886671,0.90300942094,0.391647635159,0.238209741775,0.331319597587,0.66205897034,0.700538297219,0.595966758943,0.92732416331,0.126148409077,0.241609578481,0.220542394726,0.820044404554,0.46117169323,0.722262490093,0.493940563693,0.293898386493,0.364717156095,0.848704772265,0.956435116102,0.464842980697,0.448145375108,0.454766138118,0.255296100573,0.689386800205,0.047799422176,0.259692876871,0.165844389893,0.986695081134,0.0766891696768,0.828305401488,0.353243190657;0.455362775351,0.901549258816,0.992108710112,0.0244381852644,0.163763631697,0.938440260494,0.435124319428,0.0885385633361,0.810803355879,0.0630847378123,0.570579913685,0.186058684653,0.027273028384,0.327331613636,0.903060401062,0.990165299695,0.80414559322,0.232123533741,0.0927499383962,0.265824720896,0.502165850582,0.702287253453,0.376301926923,0.508921265294,0.841773482236,0.676969850869,0.131987873748,0.354348546008,0.767835975408,0.804885640142,0.455216245032,0.227816111174,0.968288421788,0.215058531394,0.293816850179,0.27112400129,0.275970795862,0.581090261798,0.152952385269,0.875559202529,0.337116800504,0.760915110881,0.820436860212,0.0853925088221,0.444400052893,0.254194949673,0.379016096585,0.13651995028,0.0824698942858,0.493467213875,0.103110975807,0.0655737008013,0.075227043886,0.744682708401,0.632056059121,0.0414121802702,0.0643277341322,0.61745981829,0.874014365888,0.625229403946,0.194751505326,0.997700624177,0.615148879067,0.981088650993;25 +0.414301062433,0.742546168402,0.103605822906,0.74615886268,0.472192360298,0.412671148189,0.808412311434,0.81617036618,0.839811300366,0.909891913183,0.774873989231,0.400656618418,0.74939866074,0.27340528593,0.973817174542,0.233331932351,0.989646962331,0.586073387098,0.56119341212,0.569506827561,0.668544824213,0.499229515585,0.811655269637,0.196300745885,0.946903191617,0.629132905307,0.395692135778,0.0810546981826,0.993743128322,0.310388051573,0.168357228447,0.354134116648,0.788318409699,0.927384856062,0.67871393412,0.387778553241,0.971109914756,0.124248919297,0.546409839715,0.637713903254,0.21169381132,0.777977227976,0.454265771313,0.22010984775,0.587754631299,0.236730998817,0.358458263446,0.658352857455,0.283436896242,0.422987067578,0.445179352379,0.634020606817,0.440281928991,0.0820882254609,0.931667582877,0.980443863737,0.0484307754865,0.15405241416,0.644447357103,0.542290266289,0.252230885517,0.951030196933,0.19156832589,0.154547510574;0.486624265608,0.815462926725,0.638993596745,0.785822822399,0.786370406106,0.126018209364,0.369876771076,0.862828104148,0.243142508013,0.144328540537,0.772258558886,0.855991774508,0.463570006507,0.815973673151,0.674805724778,0.271520277008,0.797889649494,0.811990385183,0.573193634329,0.0851960446626,0.97947607698,0.939393227953,0.376789858046,0.700590736048,0.880819128743,0.241883179032,0.763564156702,0.0435753072434,0.039852236604,0.156589369674,0.474284731658,0.616718021106,0.642003929001,0.617573573407,0.633901412524,0.579639325395,0.571662376199,0.155869024946,0.880684076249,0.25887065403,0.464677685539,0.823893405866,0.603758752847,0.399950136925,0.258486636703,0.137810076293,0.115092421528,0.665848985815,0.0532743776398,0.986538941991,0.398398727063,0.89038617411,0.357094347124,0.265461892987,0.155143117085,0.877396445665,0.0401706006274,0.133233675583,0.556832605845,0.949319483499,0.445429588004,0.845130122143,0.758402572534,0.892379862983;0.498407922324,0.955830546748,0.450380561127,0.0561423040398,0.689489569344,0.430781598617,0.384036073955,0.362254129009,0.958728471043,0.880969098252,0.470124126507,0.661777602075,0.307621354162,0.775566280388,0.0766397136255,0.236250756764,0.357721789798,0.37128800918,0.699751838491,0.899760749,0.888015386292,0.664656764221,0.615732132835,0.496479612842,0.448407863881,0.875983107036,0.349768331249,0.976186954455,0.0169237877335,0.591807364385,0.259618751514,0.46166774818,0.410309302172,0.419230594244,0.870104626651,0.577825899384,0.235199012033,0.330272573616,0.740301972809,0.622196246517,0.872491650644,0.190266288149,0.505929603459,0.791210155228,0.84757031527,0.380869820049,0.772478447832,0.611591911753,0.288127953522,0.796633534456,0.444124604251,0.381296783889,0.934200304883,0.926179293105,0.676655278776,0.0435585711503,0.663592825592,0.898673876388,0.293277230571,0.0329542492262,0.194689189196,0.410720333301,0.308878035466,0.691798706351;39 +0.377842336195,0.8647990487,0.13018953557,0.477387696865,0.0618162427854,0.975781466655,0.191160820031,0.232840452398,0.143739707482,0.118477886205,0.391240641167,0.985079439829,0.646915886025,0.00644898126003,0.760653081177,0.599893808087,0.0664548858739,0.778238815872,0.644073187171,0.537986842243,0.468604299647,0.956870937232,0.504795607821,0.381004280268,0.876529515864,0.642704038952,0.27830893377,0.623443493021,0.990481608367,0.0998566240972,0.311102396909,0.32916366266,0.683130903718,0.0952450569528,0.21825591128,0.936487080081,0.519032254158,0.840701972883,0.865735735062,0.845816250831,0.0971088824274,0.624044672497,0.768469779414,0.420109714038,0.518491814234,0.90022510748,0.872534234257,0.336037251455,0.241215784499,0.051312585594,0.725315398012,0.413460281662,0.473378523982,0.740406559987,0.987700017025,0.368637971534,0.410439641497,0.75526781005,0.82618632547,0.566880424333,0.347259190091,0.841126124797,0.333925841684,0.648909570009;0.414665861329,0.317750540212,0.0298810162238,0.033426872735,0.0330995159014,0.825094825135,0.223690246036,0.861130612193,0.448755684555,0.468967252543,0.941997489141,0.229979681522,0.64974842124,0.493414417616,0.118886520364,0.946320422919,0.380907982758,0.733357367551,0.939614169549,0.190289650412,0.171541010023,0.820527108744,0.919716123299,0.814496904533,0.578238452878,0.1040914147,0.293376568727,0.416605792295,0.711582378098,0.771441624746,0.100583007665,0.395567517868,0.73081068347,0.0624722842381,0.950013612252,0.901465120072,0.0802680548202,0.877415562165,0.468980328168,0.271055570817,0.819327847098,0.416895791866,0.712618964388,0.648964003957,0.655146401784,0.224595014316,0.600148996068,0.38785577921,0.388329386985,0.809066936774,0.777217441115,0.981735198178,0.000792024076146,0.990366056503,0.377917774474,0.428789577235,0.436194207871,0.619870580367,0.775882372698,0.0797653278108,0.0914085843241,0.724907771221,0.854713055265,0.580920508637;0.869692592582,0.687603485225,0.302071451321,0.26910608246,0.478638687951,0.147337381274,0.236503697432,0.820215164261,0.0357954899913,0.33307045488,0.0483828115442,0.927211497741,0.451507502021,0.506766933103,0.796585929605,0.76142560547,0.216000897231,0.54153032174,0.94254830312,0.510266215157,0.107450383653,0.0419078240944,0.5663129196,0.314247270451,0.336400347553,0.911454060629,0.0524829279188,0.101510886736,0.730079152149,0.676420659164,0.980267164716,0.20133518708,0.940042657478,0.405654727452,0.12829209852,0.0689505730515,0.769676430161,0.404931649206,0.0363497924284,0.920515431639,0.309249155724,0.814449199263,0.854999977666,0.210572959128,0.379813533846,0.506145060211,0.0203505256053,0.87077676509,0.284459589557,0.638340995108,0.035886152691,0.230810541469,0.516615229708,0.345290653844,0.241122490084,0.043917370045,0.138060353805,0.924650758406,0.886237767902,0.0450173457644,0.279464454087,0.257286146721,0.894854192424,0.340691795691;97 +0.980577969086,0.883943253661,0.150376134011,0.654473965842,0.0921922639367,0.686912743955,0.0276248512836,0.149728728982,0.600035585429,0.204633674669,0.0408730985406,0.0174279029219,0.255525801232,0.602830816855,0.878092755091,0.397801205877,0.254213615781,0.745288180086,0.952514984587,0.175335962207,0.138498318252,0.186906522594,0.111123404314,0.180386794508,0.239448527925,0.236058871873,0.84870681404,0.103970251378,0.0497491682985,0.92452862424,0.0820358343984,0.253799968818,0.608094602089,0.16050171872,0.388537777184,0.4241123845,0.28448054748,0.488500485898,0.210336804847,0.233918068998,0.923974673684,0.978469449019,0.621042847536,0.305745927373,0.622288072549,0.711434282804,0.974609016089,0.860371433248,0.805407733411,0.437382044524,0.15343561222,0.870341111842,0.656754192139,0.0475298404219,0.837083042122,0.21447890472,0.375912086058,0.563364347228,0.513535740658,0.97821160071,0.647958855446,0.236361859085,0.111121548305,0.312248295423;0.134926161348,0.0707186403485,0.293300648248,0.025771444221,0.550349691466,0.32604892578,0.283069838946,0.788610508891,0.925808471012,0.115574891719,0.435913497544,0.600760790172,0.183940002508,0.948746205626,0.656551115694,0.609842246835,0.409554317798,0.434281479736,0.180163291223,0.296940937477,0.911871096912,0.541623005782,0.834114616579,0.00101001781535,0.370434210879,0.0625118021699,0.0135560565949,0.353268661652,0.211050590443,0.701808535986,0.534145351644,0.368381560142,0.654700008351,0.988420365754,0.927338097059,0.440418959332,0.365272800139,0.841668751575,0.0459764407177,0.243651823083,0.624542865406,0.407731053946,0.132851125465,0.211339556805,0.0120122469142,0.460753633255,0.965806459568,0.23423005091,0.850014258008,0.723789495253,0.983101404291,0.6053909365,0.477000039354,0.0837295101342,0.131249626492,0.243203181582,0.550173857625,0.323713241206,0.526866891352,0.931846714312,0.0261295921184,0.306112200866,0.652017445312,0.534759255681;0.506032885853,0.0567387636131,0.344979333155,0.562670105007,0.791903775838,0.035894426533,0.935367310499,0.712641859746,0.184709693079,0.940037644492,0.2929208633,0.579178085296,0.669848221367,0.499541889357,0.816708445655,0.503050898982,0.344181722032,0.028516378691,0.644286287605,0.400522982106,0.62953144761,0.274457483337,0.366993172498,0.411538853426,0.477230365913,0.746239282385,0.0916286732282,0.447199469136,0.276193657447,0.514470952686,0.683679827084,0.984336686651,0.845734974347,0.504248236214,0.793201120663,0.772529376269,0.211347420955,0.397914211341,0.517863620864,0.568914716097,0.275661678775,0.597535833846,0.608070441759,0.734034379183,0.380662259892,0.476418146539,0.67991939142,0.738066560335,0.500040887143,0.175057662395,0.368364240753,0.531111518142,0.284411157089,0.361851146862,0.794819522388,0.312160760567,0.185253749419,0.451934851838,0.907352115884,0.359745209193,0.285173526008,0.0455694359983,0.206178522175,0.78598184602;38 +0.0475816475967,0.722503867154,0.747865051567,0.793518124593,0.412921351019,0.826771407805,0.577230272893,0.542497677753,0.134225574466,0.985550759206,0.862238148262,0.205595600679,0.455528607979,0.332866550107,0.646195150157,0.410150841047,0.210578094433,0.737017248531,0.887101449623,0.0254645467987,0.742663668542,0.451505994167,0.521135534322,0.631451383591,0.22447133541,0.206830228323,0.608262302022,0.516951845291,0.56069199913,0.182196892052,0.614499046188,0.885106755551,0.616864981204,0.0184442062711,0.428116612704,0.331475916689,0.757493425108,0.856144200966,0.495885278435,0.0247559822052,0.723984339881,0.515210605207,0.277624058594,0.330941423859,0.308700258373,0.766025381969,0.407379488669,0.744243722587,0.913708576057,0.94486785822,0.998518432979,0.998509380399,0.971282622397,0.630554126973,0.174973598813,0.969154970348,0.0772208857001,0.20546411872,0.398445446346,0.062231576015,0.00850565559097,0.489426536532,0.445847198648,0.425232541605;0.973040147104,0.447691666554,0.416582671482,0.991495230838,0.170909624771,0.933824625405,0.310853842944,0.471123991558,0.0448694523652,0.928610809257,0.651181183209,0.270986161312,0.935485660258,0.420466032622,0.380833652419,0.416016207653,0.165179235143,0.868050781563,0.752658929285,0.401479960168,0.871395885215,0.21376323772,0.0659168915405,0.274299071278,0.508458974101,0.563466454951,0.43092472644,0.890073277789,0.182560127926,0.227778041703,0.067587159456,0.37235210218,0.52829188254,0.941343237135,0.553249930039,0.776244683821,0.700812814754,0.785028446529,0.295171907198,0.837992716303,0.487662651806,0.486670392622,0.157926670293,0.588422377971,0.276805289075,0.364671669794,0.726113817686,0.951088525609,0.571087399175,0.855520053066,0.0483058341875,0.521036162766,0.648413655592,0.831208926552,0.591526866067,0.188139396047,0.743547734916,0.41780673422,0.80865561488,0.60706302065,0.83407906084,0.357999594208,0.0218695263636,0.200943528372;0.750635018181,0.771970878195,0.95375080224,0.681780900781,0.44506526055,0.40173708149,0.468512054134,0.522649915114,0.631294965433,0.47527901761,0.637882134681,0.708246718201,0.0890434417984,0.630030262846,0.126266759679,0.549465119911,0.403680652058,0.512586218822,0.142421016569,0.92359431946,0.0029449729059,0.880710344769,0.708893927554,0.730482910146,0.281491048104,0.246982907153,0.893665082305,0.0674247159762,0.918585526641,0.0319921448186,0.354914546486,0.0613380467402,0.891719902659,0.856870320472,0.232999741677,0.774762388902,0.99992933379,0.598479304353,0.739606262944,0.566671378347,0.0675099465925,0.441013831764,0.707159289247,0.846505508445,0.915180381252,0.660118603132,0.61135694523,0.918251293769,0.976173369555,0.999538850819,0.712295675651,0.785438669581,0.480502517428,0.351175712128,0.468533452176,0.276831712949,0.37607890814,0.816768923346,0.058355141511,0.566559578223,0.907515352617,0.0839080647292,0.777963136961,0.49116935924;29 +0.618488986572,0.308888548973,0.912122540233,0.511042558288,0.61731299493,0.339509058173,0.673150053635,0.786323221029,0.705129874111,0.254840270433,0.104752550184,0.865008335513,0.976125162896,0.128206999561,0.534924545065,0.34450170962,0.673773122523,0.69454467658,0.498222234209,0.359743297885,0.858164524491,0.320125549339,0.39691308606,0.88503729437,0.504723269894,0.348918386536,0.0357762037334,0.254708793255,0.21783869055,0.874467495079,0.343277843275,0.399192653326,0.86815569624,0.277648857853,0.770198246274,0.569021713584,0.963676002927,0.685538129427,0.875118349497,0.860108791376,0.443481723379,0.533459943228,0.265709672023,0.282341963838,0.168612699902,0.778172823201,0.92270716034,0.522304355015,0.535585248167,0.957709196904,0.69321968989,0.57010891297,0.246211641993,0.476373336937,0.882878765772,0.640352321478,0.85385146371,0.0949674691833,0.921371284528,0.181933506835,0.0689808670131,0.318120462774,0.671149610062,0.512075524963;0.934170002346,0.570556156928,0.763729507238,0.216475306732,0.307863625649,0.479456690733,0.385130142317,0.269467483717,0.387907567306,0.710898024737,0.074386518901,0.560269448913,0.701377601903,0.00212261104438,0.127648768802,0.930311522786,0.564505570195,0.215444069202,0.815223365631,0.208338586125,0.121595411459,0.39612107021,0.933024052499,0.00641498531744,0.324342833404,0.661251047623,0.810390391315,0.985719066927,0.624333699832,0.531001573192,0.168997358637,0.182411928101,0.151050223476,0.931630537189,0.210184423432,0.0597472814713,0.960727239946,0.218370733376,0.837756366525,0.594390605297,0.693577660198,0.615164526993,0.44598133589,0.315547359388,0.593059426557,0.514514889674,0.806309908899,0.668188527219,0.417941562455,0.743448682036,0.636251332812,0.465979969604,0.0990375732927,0.813509765463,0.603374208514,0.554261600716,0.269746377609,0.0217202434693,0.214941243834,0.724801135524,0.953689317152,0.28855617571,0.583191175219,0.353457778581;0.176891590032,0.337210385248,0.65128350271,0.858643986057,0.233025704506,0.639147208421,0.669363995614,0.155952009483,0.16459884637,0.679088739196,0.888845053718,0.017750707343,0.373905348105,0.459379865865,0.331881562094,0.345545206575,0.235630349552,0.129494845376,0.369824705792,0.259409032034,0.14223655691,0.126520184862,0.443272024816,0.14476536557,0.442119437265,0.695951520637,0.307700454407,0.207444561506,0.826673308202,0.583315115826,0.442390914561,0.361134824514,0.830237609399,0.441449748102,0.780509180223,0.965997464781,0.33040640148,0.855803235521,0.389080435168,0.0275620447292,0.371227368647,0.360623096143,0.128108530796,0.125561670309,0.320551091252,0.633722469556,0.694616013342,0.459215448741,0.482803890499,0.42116853804,0.122315185354,0.400309864602,0.814249476533,0.98056066143,0.876588419229,0.185004899976,0.504069520492,0.399876414711,0.498814100256,0.998800160553,0.166182956892,0.563012764419,0.577842626009,0.171227547875;44 +0.762806617305,0.743562297982,0.911679070005,0.852587239911,0.869466262193,0.65977729512,0.6915227452,0.0714094763985,0.899932626398,0.114084372072,0.270671130973,0.268826123802,0.331575706695,0.668153766348,0.936146360984,0.671354448067,0.868296131041,0.318261335831,0.549757931448,0.816974520668,0.236708319097,0.0478826321467,0.603083237664,0.842806097137,0.535259157614,0.105778955956,0.289664311046,0.485907639488,0.451849803335,0.416734939799,0.463608372075,0.35122221791,0.892731910018,0.753507641416,0.119989260619,0.78004850689,0.260189093762,0.617827146859,0.600986846273,0.732046686968,0.461312835702,0.724627026253,0.584267982933,0.296629565363,0.849075631275,0.900020711688,0.902504056055,0.616911942717,0.888451094828,0.953236534235,0.531459972978,0.824948146926,0.319105123589,0.292801379587,0.11930621023,0.819521622704,0.958189550631,0.703777681849,0.675216475515,0.146290222474,0.914938100932,0.581364163328,0.972859903545,0.511244025842;0.656105523204,0.140070173431,0.232261252952,0.275551350479,0.953653874149,0.813400958722,0.96839837639,0.589467851082,0.449866719671,0.810583739815,0.290147432709,0.573100608727,0.761246728789,0.00440169300932,0.945167044334,0.426860008516,0.534037616518,0.230949021138,0.359314540641,0.540825048594,0.0944795837449,0.847821082634,0.438947425589,0.196960861616,0.826363362923,0.766111877338,0.701928140658,0.412613916557,0.0229208480932,0.533717600523,0.0497300572061,0.386376700176,0.489182294598,0.103248268438,0.0947230459191,0.428657328994,0.392870258279,0.903115048436,0.668923974063,0.355081396769,0.860939302749,0.258157152522,0.0814354592488,0.781345719212,0.241731935561,0.170881341629,0.612581749061,0.344797613931,0.60792702023,0.241127046262,0.926908487528,0.140479880743,0.798387658278,0.575095565777,0.704161552651,0.498195589117,0.632949079557,0.924951586719,0.914762770943,0.438509842352,0.47359292523,0.400403729253,0.750676897383,0.148199468577;0.447248631523,0.118215271836,0.822810868492,0.270659327896,0.538811962542,0.90687618041,0.504881262307,0.775974679902,0.551944741924,0.22627796909,0.850211926715,0.290396080942,0.780027972618,0.0806178704199,0.779583212458,0.200106294705,0.373044861437,0.402564139882,0.457303959752,0.612249105857,0.636241397294,0.871551351929,0.28249595273,0.81995704206,0.377166400626,0.360864256404,0.660745941832,0.0899434100773,0.78916931848,0.515987135131,0.0755783955494,0.988713489563,0.803705149919,0.636481568322,0.530517106747,0.540598676474,0.0780202307786,0.43657292164,0.0442627566603,0.0627886729669,0.72209781809,0.773124322966,0.892350472207,0.634157596706,0.693416215657,0.851581668158,0.912739863249,0.0311133001537,0.0167768292495,0.345456511143,0.105960424064,0.692043515104,0.97912015242,0.208130340019,0.844606639591,0.931570727515,0.434168660092,0.736701699288,0.633536053294,0.231569240805,0.386585170212,0.804174562245,0.747937551981,0.362671057329;93 +0.593465762738,0.424664311222,0.724387711087,0.836322754138,0.291777258012,0.201528326095,0.724826217228,0.18542462518,0.981777440232,0.723183929405,0.71622047162,0.929293947034,0.010267696686,0.979625068393,0.628201269626,0.330969004537,0.232595013519,0.896391397657,0.602772084235,0.483514272975,0.649677858524,0.633587975398,0.95244273762,0.828954607066,0.243736741937,0.597562302475,0.548450718031,0.302289613268,0.362200968426,0.81237689486,0.916419530123,0.792689322818,0.934830553698,0.44505444319,0.179193424915,0.449297039846,0.619431056785,0.711993370214,0.954739526593,0.470218211506,0.0655918610721,0.529363152077,0.799597620901,0.12930212182,0.837361668023,0.900799286341,0.908012134876,0.914039794371,0.825726353498,0.998365871044,0.432953386432,0.398700024726,0.499661991327,0.90995013519,0.138417766477,0.714442578091,0.375728139296,0.0520424064533,0.721477824182,0.358718711043,0.11648976174,0.431608134576,0.422207590417,0.739917603013;0.488181736154,0.363912515028,0.992157927254,0.969307933169,0.769566785379,0.654146088077,0.712332443718,0.533081304899,0.582946757062,0.783912566448,0.227969857169,0.349547950706,0.451102646994,0.0706592438186,0.939298396821,0.284549623728,0.133836593471,0.651312039648,0.337872216984,0.740488591843,0.208670867884,0.14623775138,0.953713656163,0.248752859135,0.00530429639752,0.905342893151,0.94230187108,0.570750616141,0.248296230663,0.0696114141283,0.863945046645,0.42093272737,0.684340784915,0.391700767807,0.265203742211,0.43815204209,0.676370916267,0.401379472192,0.256656424446,0.451038175127,0.0175798928516,0.224145199131,0.950535175896,0.795181412935,0.802504916195,0.682140566844,0.32622261621,0.104072714469,0.643116965333,0.26133326287,0.0493688869782,0.758509700635,0.2964155848,0.264098103969,0.496707084422,0.557266262416,0.304468898528,0.908629990429,0.358071260098,0.145070852433,0.426226824435,0.707218264425,0.340616572225,0.913728450423;0.551379896073,0.145131891372,0.146106666823,0.606843577867,0.0626038306207,0.442639006134,0.153175615551,0.505115631223,0.321186283037,0.533164646408,0.950732142333,0.933031763758,0.852359422025,0.238726453017,0.656073087007,0.685897760581,0.403824755673,0.289238820014,0.26323104161,0.531579671402,0.114306013438,0.278336941782,0.90687846275,0.276891420103,0.802064063945,0.836001510253,0.483389631003,0.97781779484,0.694803695183,0.719239214135,0.512345916763,0.235998699018,0.782396266479,0.972106861766,0.821686223533,0.539530560677,0.873664874307,0.15882447496,0.846149007142,0.337623117489,0.309073139235,0.645409420738,0.09132363057,0.821386124698,0.0621505499659,0.76426109543,0.752019681759,0.465573991468,0.968071620837,0.358656183625,0.409088735377,0.766025257131,0.499956588555,0.206302308045,0.952641319355,0.722555281136,0.749049222993,0.795383420444,0.314258204497,0.37067070254,0.36413263504,0.761945351497,0.240003905217,0.694268749921;51 +0.0516542811386,0.132549563818,0.276515473713,0.776810685608,0.141062259303,0.622922868341,0.981138931966,0.301496918743,0.473174185017,0.655788935834,0.615186707913,0.17126035762,0.870890171193,0.198346217102,0.846758150321,0.877288753361,0.267037933386,0.46063598259,0.868048393216,0.236597092722,0.367205006569,0.340212799091,0.356969759304,0.29063240974,0.137216358856,0.346047201973,0.718145022357,0.892231988551,0.939003146842,0.0165612067313,0.00988961797152,0.60504132457,0.559221560888,0.468775041116,0.524013178121,0.0384882473172,0.504671036328,0.214027357158,0.00716091234923,0.880553063117,0.488889476474,0.599831422615,0.270508998304,0.455208582132,0.832929703793,0.467588519217,0.545612419319,0.402595408783,0.0929744049742,0.649202082937,0.844187166837,0.0822674306914,0.888473537594,0.692812594339,0.39653232794,0.0316213815967,0.436527130989,0.564544532038,0.181823045683,0.163790834522,0.539378305493,0.991300867939,0.59140188756,0.950567032244;0.227002991216,0.597594986478,0.0482865278127,0.304889678182,0.0238168538482,0.519843355067,0.0378250394045,0.112037021805,0.510477404998,0.0542276001544,0.787432660771,0.645319735634,0.364021594547,0.500583910832,0.315068880076,0.980772148416,0.647563681221,0.279206046539,0.547300540157,0.895719690046,0.201545838388,0.151710891204,0.300508969426,0.303054670011,0.748992463713,0.886441243128,0.0257496622162,0.457683089926,0.930680587567,0.185958718162,0.0722684610607,0.200214194896,0.29751152546,0.0455449458354,0.683191732234,0.0110134331107,0.142789742844,0.290982887487,0.634894043114,0.670354176438,0.970649710226,0.252503695912,0.686997153675,0.663431175782,0.170701750958,0.180190654182,0.737238698272,0.805055264376,0.610143275943,0.225229238529,0.772789985751,0.725032792773,0.914270261189,0.931857318116,0.697343669208,0.743341791173,0.244209839163,0.664804878187,0.991970632045,0.182932573576,0.964485524056,0.0248761854311,0.86060217915,0.396357840256;0.495911637156,0.242151344143,0.398257258613,0.513324205606,0.726676679675,0.300848620843,0.309357838202,0.556531198945,0.0584915446409,0.874573485337,0.391901284631,0.485146002888,0.749489117696,0.850907134084,0.20312500799,0.93006123747,0.557623862347,0.981953112003,0.564459337418,0.673227269543,0.589526815292,0.978084419066,0.975895906504,0.145541426773,0.718727126914,0.836787312525,0.201037295492,0.15383343928,0.441275251643,0.628105628713,0.0110434771866,0.0353934511255,0.600209404966,0.410769352583,0.345088978183,0.261994145294,0.946417073404,0.832551834461,0.995821368308,0.23661075426,0.995509347273,0.260318232014,0.893774186554,0.255413163745,0.197975903907,0.856952622942,0.701295688902,0.934905282658,0.443379121494,0.846402096492,0.973413498169,0.942627867648,0.872684960508,0.902799595449,0.788762749758,0.488298835661,0.219116479892,0.714965718893,0.920974643749,0.710167117482,0.194087816742,0.758902513855,0.605224343129,0.321575621412;28 +0.450388437819,0.521183524349,0.91398859419,0.307885628109,0.999203684191,0.951049545485,0.787964969143,0.341794801643,0.588268899192,0.269383555619,0.59958319534,0.496663259413,0.768908589876,0.0843659829498,0.658740309885,0.141408839921,0.410588492695,0.727412496218,0.763992708475,0.775331193733,0.424404914377,0.937847821559,0.430597006779,0.209260616564,0.657635821118,0.765352162224,0.895760519235,0.618425654981,0.209284106669,0.399522862095,0.47094699119,0.359100983911,0.9298867625,0.635125570033,0.0397051679905,0.307440586038,0.579402418494,0.594604463583,0.911347515367,0.828120682991,0.866538600748,0.588913760036,0.0427076062493,0.422585102914,0.0886735609432,0.28447291264,0.533720867077,0.00104548074805,0.938027443905,0.266501865202,0.00908736500484,0.375835565259,0.47370380965,0.888169045831,0.848977769493,0.266343914844,0.495673092227,0.276847522851,0.0665080421325,0.453294234045,0.553434176427,0.472898167065,0.316271691062,0.502599289896;0.326126827102,0.00356318639436,0.376433532759,0.663921590907,0.314335091456,0.785252057199,0.702212596484,0.481123183994,0.456425706121,0.997575920565,0.0547928132906,0.0964632153509,0.30744699246,0.196512604012,0.170157617179,0.133515088494,0.0356375067509,0.367582439372,0.206466886742,0.486199830744,0.476291760463,0.350664283426,0.661967542398,0.499649477338,0.256158470054,0.835120480358,0.358618257031,0.930999533811,0.299855396395,0.384812956942,0.45400259967,0.979049130963,0.296010498583,0.353346295547,0.619718257606,0.870824899505,0.775285421072,0.702190458371,0.970358515591,0.945977456223,0.794817929823,0.854631667738,0.87912422536,0.935441403744,0.318645084252,0.875362153415,0.121609824549,0.156701814844,0.34896949491,0.281621377392,0.356042252139,0.799155204782,0.140515834056,0.0491021268368,0.349592786739,0.855774995932,0.572707685907,0.430354289866,0.346703125068,0.12437402325,0.875115552558,0.00889071581547,0.240173751662,0.455612484861;0.946944461474,0.143238997362,0.847553661635,0.707144321496,0.875193629593,0.499279135402,0.718995070178,0.279285312771,0.382877236635,0.403442542062,0.346729643411,0.552098781598,0.394292224915,0.881242871707,0.599411423254,0.325735818829,0.154551131709,0.17450350119,0.31000259722,0.0454113637555,0.525237462414,0.968594990475,0.499440457907,0.240688389824,0.806412675478,0.258806828496,0.624733326795,0.892901938968,0.278128052698,0.639458968856,0.679840962839,0.565354413187,0.189448380729,0.722891230758,0.985258901267,0.1632153158,0.807908559373,0.913390886371,0.176313911711,0.778539003326,0.703982665519,0.95369212523,0.257047989099,0.230253643652,0.710655905206,0.308597685795,0.645648744402,0.0431081686686,0.918542443567,0.866537657947,0.893504042169,0.205532487735,0.894884125527,0.428959104144,0.969177566392,0.62800024243,0.976881241816,0.554495342882,0.667500626087,0.945416183835,0.799989760524,0.211150974066,0.597277582184,0.926286190986;57 diff --git a/models/recall/youtube_dnn/data/train/samll_data.txt b/models/recall/youtube_dnn/data/train/samll_data.txt deleted file mode 100644 index c3c4cf5f84f66594e76603cce1f18d211ebd05a7..0000000000000000000000000000000000000000 --- a/models/recall/youtube_dnn/data/train/samll_data.txt +++ /dev/null @@ -1,100 +0,0 @@ -4764,174,1 -4764,2958,0 -4764,452,0 -4764,1946,0 -4764,3208,0 -2044,2237,1 -2044,1998,0 -2044,328,0 -2044,1542,0 -2044,1932,0 -4276,65,1 -4276,3247,0 -4276,942,0 -4276,3666,0 -4276,2222,0 -3933,682,1 -3933,2451,0 -3933,3695,0 -3933,1643,0 -3933,3568,0 -1151,1265,1 -1151,118,0 -1151,2532,0 -1151,2083,0 -1151,2350,0 -1757,876,1 -1757,201,0 -1757,3633,0 -1757,1068,0 -1757,2549,0 -3370,276,1 -3370,2435,0 -3370,606,0 -3370,910,0 -3370,2146,0 -5137,1018,1 -5137,2163,0 -5137,3167,0 -5137,2315,0 -5137,3595,0 -3933,2831,1 -3933,2881,0 -3933,2949,0 -3933,3660,0 -3933,417,0 -3102,999,1 -3102,1902,0 -3102,2161,0 -3102,3042,0 -3102,1113,0 -2022,336,1 -2022,1672,0 -2022,2656,0 -2022,3649,0 -2022,883,0 -2664,655,1 -2664,3660,0 -2664,1711,0 -2664,3386,0 -2664,1668,0 -25,701,1 -25,32,0 -25,2482,0 -25,3177,0 -25,2767,0 -1738,1643,1 -1738,2187,0 -1738,228,0 -1738,650,0 -1738,3101,0 -5411,1241,1 -5411,2546,0 -5411,3019,0 -5411,3618,0 -5411,1674,0 -638,579,1 -638,3512,0 -638,783,0 -638,2111,0 -638,1880,0 -3554,200,1 -3554,2893,0 -3554,2428,0 -3554,969,0 -3554,2741,0 -4283,1074,1 -4283,3056,0 -4283,2032,0 -4283,405,0 -4283,1505,0 -5111,200,1 -5111,3488,0 -5111,477,0 -5111,2790,0 -5111,40,0 -3964,515,1 -3964,1528,0 -3964,2173,0 -3964,1701,0 -3964,2832,0 diff --git a/models/recall/youtube_dnn/data_prepare.sh b/models/recall/youtube_dnn/data_prepare.sh new file mode 100644 index 0000000000000000000000000000000000000000..b69cae28ecc87fcd1586407ce51d3ca56219919d --- /dev/null +++ b/models/recall/youtube_dnn/data_prepare.sh @@ -0,0 +1 @@ +python generate_ramdom_data.py diff --git a/models/recall/youtube_dnn/generate_ramdom_data.py b/models/recall/youtube_dnn/generate_ramdom_data.py new file mode 100644 index 0000000000000000000000000000000000000000..cfdb53ede1c5281c910792fffdc1dce14d8ced59 --- /dev/null +++ b/models/recall/youtube_dnn/generate_ramdom_data.py @@ -0,0 +1,40 @@ +# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import paddle +import numpy as np + +# Build a random data set. +sample_size = 100 +batch_size = 32 +watch_vec_size = 64 +search_vec_size = 64 +other_feat_size = 64 +output_size = 100 + +watch_vecs = np.random.rand(batch_size * sample_size, watch_vec_size).tolist() +search_vecs = np.random.rand(batch_size * sample_size, + search_vec_size).tolist() +other_vecs = np.random.rand(batch_size * sample_size, other_feat_size).tolist() +labels = np.random.randint( + output_size, size=(batch_size * sample_size)).tolist() + +output_path = "./data/train/data.txt" +with open(output_path, 'w') as fout: + for i in range(batch_size * sample_size): + _str_ = ','.join(map(str, watch_vecs[i])) + ";" + ','.join( + map(str, search_vecs[i])) + ";" + ','.join( + map(str, other_vecs[i])) + ";" + str(labels[i]) + fout.write(_str_) + fout.write("\n") diff --git a/models/recall/youtube_dnn/infer.py b/models/recall/youtube_dnn/infer.py new file mode 100644 index 0000000000000000000000000000000000000000..6ff4915d86943d8ebfb2a56a9c5d2106a81aa33a --- /dev/null +++ b/models/recall/youtube_dnn/infer.py @@ -0,0 +1,126 @@ +# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import os +import copy +import numpy as np +import argparse +import paddle.fluid as fluid +import pandas as pd +from paddle.fluid.incubate.fleet.utils import utils + + +def parse_args(): + parser = argparse.ArgumentParser("PaddlePaddle Youtube DNN infer example") + parser.add_argument( + '--use_gpu', type=int, default='0', help='whether use gpu') + parser.add_argument( + "--batch_size", type=int, default=32, help="batch_size") + parser.add_argument( + "--test_epoch", type=int, default=19, help="test_epoch") + parser.add_argument( + '--inference_model_dir', + type=str, + default='./inference_youtubednn', + help='inference_model_dir') + parser.add_argument( + '--increment_model_dir', + type=str, + default='./increment_youtubednn', + help='persistable_model_dir') + parser.add_argument( + '--watch_vec_size', type=int, default=64, help='watch_vec_size') + parser.add_argument( + '--search_vec_size', type=int, default=64, help='search_vec_size') + parser.add_argument( + '--other_feat_size', type=int, default=64, help='other_feat_size') + parser.add_argument('--topk', type=int, default=5, help='topk') + args = parser.parse_args() + return args + + +def infer(args): + video_save_path = os.path.join(args.increment_model_dir, + str(args.test_epoch), "l4_weight") + video_vec, = utils.load_var("l4_weight", [32, 100], 'float32', + video_save_path) + + place = fluid.CUDAPlace(0) if args.use_gpu else fluid.CPUPlace() + exe = fluid.Executor(place) + cur_model_path = os.path.join(args.inference_model_dir, + str(args.test_epoch)) + + user_vec = None + with fluid.scope_guard(fluid.Scope()): + infer_program, feed_target_names, fetch_vars = fluid.io.load_inference_model( + cur_model_path, exe) + # Build a random data set. + sample_size = 100 + watch_vecs = [] + search_vecs = [] + other_feats = [] + + for i in range(sample_size): + watch_vec = np.random.rand(1, args.watch_vec_size) + search_vec = np.random.rand(1, args.search_vec_size) + other_feat = np.random.rand(1, args.other_feat_size) + watch_vecs.append(watch_vec) + search_vecs.append(search_vec) + other_feats.append(other_feat) + + for i in range(sample_size): + l3 = exe.run(infer_program, + feed={ + "watch_vec": watch_vecs[i].astype('float32'), + "search_vec": search_vecs[i].astype('float32'), + "other_feat": other_feats[i].astype('float32'), + }, + return_numpy=True, + fetch_list=fetch_vars) + if user_vec is not None: + user_vec = np.concatenate([user_vec, l3[0]], axis=0) + else: + user_vec = l3[0] + + # get topk result + user_video_sim_list = [] + for i in range(user_vec.shape[0]): + for j in range(video_vec.shape[1]): + user_video_sim = cos_sim(user_vec[i], video_vec[:, j]) + user_video_sim_list.append(user_video_sim) + + tmp_list = copy.deepcopy(user_video_sim_list) + tmp_list.sort() + max_sim_index = [ + user_video_sim_list.index(one) + for one in tmp_list[::-1][:args.topk] + ] + + print("user:{0}, top K videos:{1}".format(i, max_sim_index)) + user_video_sim_list = [] + + +def cos_sim(vector_a, vector_b): + vector_a = np.mat(vector_a) + vector_b = np.mat(vector_b) + num = float(vector_a * vector_b.T) + denom = np.linalg.norm(vector_a) * np.linalg.norm(vector_b) + cos = num / (denom + 1e-4) + sim = 0.5 + 0.5 * cos + return sim + + +if __name__ == "__main__": + args = parse_args() + infer(args) diff --git a/models/recall/youtube_dnn/random_reader.py b/models/recall/youtube_dnn/reader.py similarity index 75% rename from models/recall/youtube_dnn/random_reader.py rename to models/recall/youtube_dnn/reader.py index a81269ca2efdb3cf0b928ec27e9d19ff80d77aeb..3ba78a8e9289c95d99f82e07cbc7316a37ee8ace 100644 --- a/models/recall/youtube_dnn/random_reader.py +++ b/models/recall/youtube_dnn/reader.py @@ -39,13 +39,17 @@ class Reader(ReaderBase): """ This function needs to be implemented by the user, based on data format """ - + features = line.rstrip().split(";") + watch_vec = features[0].split(',') + search_vec = features[1].split(',') + other_feat = features[2].split(',') + label = features[3] + assert (len(watch_vec) == self.watch_vec_size) + assert (len(search_vec) == self.search_vec_size) + assert (len(other_feat) == self.other_feat_size) feature_name = ["watch_vec", "search_vec", "other_feat", "label"] yield list( - zip(feature_name, [ - np.random.rand(self.watch_vec_size).tolist() - ] + [np.random.rand(self.search_vec_size).tolist()] + [ - np.random.rand(self.other_feat_size).tolist() - ] + [[np.random.randint(self.output_size)]])) + zip(feature_name, [watch_vec] + [search_vec] + [other_feat] + + [label])) return reader