模型优化部分初步完成

This commit is contained in:
haotian 2025-03-18 11:39:35 +08:00
parent a9bc70165e
commit 8d8108bdc4
129 changed files with 2132 additions and 21 deletions

Binary file not shown.

Binary file not shown.

160
api/optimize_api.py Normal file
View File

@ -0,0 +1,160 @@
from fastapi import APIRouter, Query, Path, Body, HTTPException, BackgroundTasks
from typing import Dict, List, Optional, Any, Union
from pydantic import BaseModel, Field
from function.optimize_manager import OptimizeManager
import logging
from datetime import datetime
# 创建路由
router = APIRouter()
# 初始化优化管理器
optimize_manager = OptimizeManager()
# 初始化日志
logger = logging.getLogger(__name__)
# 请求体模型定义
class OptimizationRequest(BaseModel):
run_id: str = Field(..., description="已训练模型的运行ID")
method: str = Field(..., description="优化方法名称,如 'GridSearchCV'")
parameters: Dict = Field(..., description="优化方法参数")
data_path: Optional[str] = Field(None, description="数据集路径")
output_dir: Optional[str] = Field(None, description="输出目录路径")
experiment_name: str = Field(..., description="实验名称")
class Config:
json_schema_extra = {
"example": {
"run_id": "bd3697dc238c4d1587e0f4f319d04448",
"method": "GridSearchCV",
"parameters": {
"max_depth": [3, 5, 7],
"n_estimators": [50, 100, 200],
"min_samples_split": [2, 5, 10]
},
"data_path": "dataset/dataset_processed/test_optimize/train.csv",
"output_dir": None,
"experiment_name": "测试模型优化方法"
}
}
# API接口实现
@router.get("/methods", summary="获取优化方法列表")
async def get_optimize_methods():
"""获取所有可用的模型优化方法列表"""
try:
methods = optimize_manager.get_optimize_methods()
return methods
except Exception as e:
logger.error(f"Error getting optimization methods: {str(e)}")
raise HTTPException(status_code=500, detail=f"获取优化方法失败: {str(e)}")
@router.get("/method/{method_name}", summary="获取优化方法详情")
async def get_optimize_method_details(
method_name: str = Path(..., description="优化方法名称")
):
"""获取特定优化方法的详细信息"""
try:
method_details = optimize_manager.get_optimize_method_details(method_name)
return method_details
except Exception as e:
logger.error(f"Error getting method details for {method_name}: {str(e)}")
raise HTTPException(status_code=500, detail=f"获取方法详情失败: {str(e)}")
@router.post("/model", summary="执行模型优化")
async def optimize_model(
request: OptimizationRequest = Body(..., description="优化请求参数")
):
"""启动模型优化任务"""
try:
# 执行优化任务
result = optimize_manager.run_optimization(
run_id=request.run_id,
method=request.method,
parameters=request.parameters,
data_path=request.data_path,
output_dir=request.output_dir,
experiment_name=request.experiment_name
)
return {
"status": "success",
"message": "优化任务已执行",
"run_id": result['optimization'].get("run_id"),
"optimized_model_id": result['optimization'].get("optimized_model_id")
# "best_params": result.get("best_params"),
# "best_score": result.get("best_score"),
# "optimized_model_id": result.get("optimized_model_id")
}
except Exception as e:
logger.error(f"Error starting optimization task: {str(e)}")
raise HTTPException(status_code=500, detail=f"启动优化任务失败: {str(e)}")
@router.get("/tasks", summary="获取优化任务列表")
async def get_optimization_tasks(
experiment_name: Optional[str] = None,
page: int = Query(1, description="页码", ge=1),
page_size: int = Query(10, description="每页任务数量", ge=1, le=100),
status: Optional[str] = Query(None, description="任务状态过滤")
):
"""获取优化任务列表"""
try:
result = optimize_manager.get_optimization_tasks(experiment_name,page, page_size, status)
return result
except Exception as e:
logger.error(f"Error getting optimization tasks: {str(e)}")
raise HTTPException(status_code=500, detail=f"获取优化任务列表失败: {str(e)}")
@router.get("/task/{task_id}", summary="获取优化任务详情")
async def get_optimization_task(
task_id: str = Path(..., description="任务ID")
):
"""获取特定优化任务的详细信息"""
try:
result = optimize_manager.get_optimization_task(task_id)
if result["status"] == "error":
raise HTTPException(status_code=404, detail=result["message"])
return result
except HTTPException:
raise
except Exception as e:
logger.error(f"Error getting optimization task {task_id}: {str(e)}")
raise HTTPException(status_code=500, detail=f"获取优化任务详情失败: {str(e)}")
@router.post("/task/{task_id}/cancel", summary="取消优化任务")
async def cancel_optimization_task(
task_id: str = Path(..., description="任务ID")
):
"""取消正在运行的优化任务"""
try:
result = optimize_manager.cancel_optimization_task(task_id)
if result["status"] == "error":
raise HTTPException(status_code=400, detail=result["message"])
return result
except HTTPException:
raise
except Exception as e:
logger.error(f"Error cancelling optimization task {task_id}: {str(e)}")
raise HTTPException(status_code=500, detail=f"取消优化任务失败: {str(e)}")
@router.delete("/task/{task_id}", summary="删除优化任务")
async def delete_optimization_task(
task_id: str = Path(..., description="任务ID")
):
"""删除优化任务及其相关资源"""
try:
result = optimize_manager.delete_optimization_task(task_id)
if result["status"] == "error":
if "任务不存在" in result["message"]:
raise HTTPException(status_code=404, detail=result["message"])
elif "任务正在运行中" in result.get("details", {}).get("reason", ""):
raise HTTPException(status_code=400, detail="无法删除正在运行的任务")
else:
raise HTTPException(status_code=400, detail=result["message"])
return result
except HTTPException:
raise
except Exception as e:
logger.error(f"Error deleting optimization task {task_id}: {str(e)}")
raise HTTPException(status_code=500, detail=f"删除优化任务失败: {str(e)}")

View File

@ -0,0 +1,115 @@
mean radius,mean texture,mean perimeter,mean area,mean smoothness,mean compactness,mean concavity,mean concave points,mean symmetry,mean fractal dimension,radius error,texture error,perimeter error,area error,smoothness error,compactness error,concavity error,concave points error,symmetry error,fractal dimension error,worst radius,worst texture,worst perimeter,worst area,worst smoothness,worst compactness,worst concavity,worst concave points,worst symmetry,worst fractal dimension,target
-0.47069438129826874,-0.16048583674764855,-0.4481095638166051,-0.4919987619381755,0.23411429264902614,0.027650508220062278,-0.109847407247326,-0.2762315193200893,0.4139489672882012,0.132176007141058,-0.032742956280379557,-0.313615560517347,-0.18269561437513346,-0.22105291677960198,-0.029327492518870325,-0.35591234681238415,-0.16192949486347422,-0.23133321923244882,-0.3296118612888136,-0.07901816784708755,-0.2690395121166662,-0.16890535824213107,-0.33393536861644807,-0.35629924756098336,0.4485028006664865,-0.10474068382658099,-0.02441211836939911,-0.19956318388669517,0.18320441384152739,0.1969579439945135,1
1.3668774678159665,0.47014935452295303,1.3028858483309051,1.3512641419628648,-0.4462273324092394,-0.027308782071111273,0.241064035052989,0.7890599508367083,-0.8383246182705409,-1.1606788933112455,1.3845938185960949,-0.7608513311939894,1.2969508809315666,1.2257795091255954,-0.8656947357725882,-0.5006662539420059,-0.305167833962178,0.3088249671314266,-0.8090827353888098,-0.7931567017244454,1.7790067095794786,0.1470115971768269,1.7466054451373043,1.7322768445276626,-0.5728734677231926,-0.13145855192107514,-0.016736080725724137,0.9789754537344919,-0.56582800923423,-1.000577871412205,0
0.37850806520120006,0.04429607038081246,0.40082046310318303,0.26737663590409844,0.9137442632877749,0.34034991849742907,0.7256859195893812,0.8241397668031307,0.43585462767698346,-0.6857815340442261,0.2494972672880959,-0.7818977204023019,0.1128376601976668,0.175417890927388,-0.2670037956037252,-0.594560680188247,-0.12479362917121771,-0.14049580651059593,-0.7957640999971434,-0.5045509277051531,0.6193445415816617,0.052562198134045834,0.5253860698487741,0.48415881962829505,0.9745334968328441,-0.09456244836201186,0.512910516687852,0.5602440256391089,-0.10314275437533868,-0.2081316816706005,0
-0.49057537502902565,-0.3745760123819493,-0.432457287725896,-0.5321006087905202,0.6433155838713087,0.5165986770173993,-0.14299253095655062,-0.5398460187148223,-0.002258580098669168,1.1656093650683939,-0.8246036346809361,0.4411515007462763,-0.32773958330282255,-0.5479983220252108,0.9863803553065894,0.41759887893046,0.5542622006300445,-0.020460653985290372,0.16075607813163753,0.8359718286832771,-0.7018419998158516,-0.4506251174559445,-0.5257561680520122,-0.6412568980344869,0.5537089398997576,0.05493038502384811,-0.1529857489009556,-0.6228625911976643,-0.5577391061772564,0.5344402723530018,1
-0.7348275837211808,-1.1285457613549204,-0.7133744533538896,-0.716682868415852,0.2476357266198491,0.14514968056670913,-0.26904444082042056,-0.5927236824877384,0.02329802368824315,0.7119760666640774,-0.4575469756411158,0.9999694211049207,-0.6128772150514541,-0.4285290386817615,1.7030760798962636,0.8742164160922399,0.7837087993714866,0.5099649524441009,-0.2593863292236625,0.6494939170299207,-0.8302331684156101,-0.976610563849365,-0.8483367981587142,-0.7432158352797873,0.09343208075419482,-0.2701370101258303,-0.44371567465514694,-0.6916868113791599,-0.9249753049638587,-0.14440349158648552,1
1.8383410334310561,2.336457189943702,1.9825241522696002,1.735217994804464,1.5257670640724068,3.272143783340377,3.2969440012746944,2.6588657298116782,2.1371942512057704,1.0436954161222336,1.157935429336501,0.6860879268775003,1.4385296355845332,1.0095027033675648,-0.17299998428545157,2.01771639287682,1.3022846381454973,0.7857213839211542,0.32663362800966655,0.9040570702605678,1.9612393359791354,2.2379258794342634,2.3036006236225606,1.6531707725269984,1.430426766843689,3.9048479494971406,3.197604682563189,2.289985488607673,1.9190830098680665,2.219635281446862,0
2.2388010500077287,0.6074463149840804,2.2749745739644323,2.352388261964664,0.7073644816278408,1.7257030634232173,1.9585840818037257,2.6098571633880003,0.04520368407702644,-0.1981257382595843,2.17573265499264,-0.937931295567378,2.3241393980815843,1.9771378933205843,-1.021034367241792,0.1526824620214223,0.1281944558572799,0.47265672936191144,-0.649259110688811,0.0004146139930845462,2.3588377935783873,0.019993439843431684,2.613373343207944,2.3668833332441017,-0.1301309651165084,0.8539218689925288,0.9758715370720017,1.9580456656084237,-0.25844969306923216,0.09942610525708531,0
0.9777780190854404,-0.986594666640873,0.9486501262780098,0.8538305948369708,0.1501390711460184,0.2152701543864822,0.1249305523596827,0.7895758304832735,-0.2651265047640616,-0.1853673017419629,0.7042577298153069,-0.7154927337622812,0.8855804434608852,0.4568197572188642,-0.47134541382394396,0.27116828561786954,0.07215908708950007,0.2828714206394686,-0.15646960119714812,-0.02001095848010252,0.7746564390813695,-1.0026655704818563,0.8232444540654887,0.6089706221182318,-0.3010909413705743,0.171343953149858,-0.1117270465662024,0.4719297608044463,-0.23418298389831127,-0.2635474991350485,0
-0.2236020306445774,-0.7981022293976306,-0.225682482527578,-0.38363845235843524,0.814112644555393,0.9316360761128133,0.3528032778606028,0.5404059611923614,0.476015005056419,0.8820885535656954,-0.43011697948868083,-0.36441718964086023,-0.6589150618442019,-0.6023425448352143,-0.0823296414536417,0.5740895893408617,0.2621488285329196,0.3299122236561424,0.09658447124451688,0.3056634470646037,-0.15307329531688477,-0.4050288558490844,-0.3157660071792285,-0.46704774836191315,0.9306976054856475,1.4302644521737586,1.0248062770504298,0.85564001491367,1.0131258674870212,0.978320970243229,1
-0.06455408079852291,-0.6212451277866864,-0.12353078593558005,-0.15781670483530214,-1.9983456213758481,-0.969386823579469,-0.835650286652736,-0.916438160707298,0.005043306697590916,-1.0543585889977336,-0.9011188871061494,-1.1623656356594698,-0.7297044391706851,-0.5788007155207593,-1.2443767558348533,-0.6890140018288111,-0.7291135292668136,-1.1296503471853445,-0.8938376878812336,-0.6429909189123104,-0.23383548201673252,-0.6313817259688536,-0.1805383007448398,-0.28422482640482266,-1.6889352614228161,-0.3413846583778145,-0.6418533963325084,-0.7976639291807551,-0.3587520909757048,-0.38601645573147775,1
-0.260523876144554,1.3870138023481093,-0.32412706109809203,-0.3327290155742529,-0.6013679958639486,-0.9909915101077236,-0.7668490450138906,-0.7284000295343427,-0.7032397125397152,-0.9863135942370859,-0.7101916770451219,0.2415736720467607,-0.7683168268033121,-0.500694646299904,-0.4243435081648073,-0.9722621876716385,-0.5568296380730948,-0.8670328986198447,-0.8563033517774461,-0.7439840272519579,-0.3974306807164248,1.3927666017928222,-0.47571595950360396,-0.43540531956164746,-0.15204891079010668,-0.9412644110708606,-0.6389748822161301,-0.8307056455068271,-0.7389305346534653,-0.8903003946579543,1
0.7534068041240426,-0.11394449421845299,0.7138659849173696,0.6581563350184371,-0.5487055688196892,-0.23729117394221586,-0.057493177752073195,0.43439269382324663,0.2971187785480267,-1.0571937971127605,0.6995657567892326,0.31596177183476193,0.6251943422459887,0.5941104253704523,-0.30600537689534935,-0.04348982138590299,-0.18679726206811031,0.6883955845763118,0.04452071471345668,-0.11419554266202105,0.7829397402813537,0.10141533556996735,0.6981439326944681,0.6669817415853855,-0.682463196091184,-0.26950087040929466,-0.19376469888297917,0.4993376360979623,-0.14682283088299591,-0.6464707978143834,0
0.23934110908590245,0.10945394992168675,0.1454412216231884,0.10042781248334401,-0.8646801310852444,-0.9631328353739218,-0.870427556605218,-0.7616742667377875,-1.082937825945281,-1.4371116845263765,-0.7982564015345184,-0.27551433867471237,-0.782177683902204,-0.5213762533612009,-1.1357056831761398,-0.9777952520754349,-0.7833584187958598,-0.8701148822657647,-0.15768038623275413,-0.8604854406175438,-0.05988615681705996,0.02325031567249304,-0.14777387848100138,-0.17312474306166764,-1.2216446596617017,-0.9816592830708696,-0.9340225791448886,-0.8689244049438967,-0.4121388511517311,-1.2798735914330228,1
0.6057194221241351,0.6027921807311609,0.6397236244876939,0.4889322295067693,1.4332519895351954,0.4540587949619259,1.1437664572852841,0.796798145535184,0.20949613699289657,0.3575750522857043,0.5970641922196073,0.4357084690544715,0.04699858897793073,0.3824539786367539,1.173054590548551,0.6752496557133005,0.8785378849784987,0.010359182473909882,2.382546618468742,0.9048135729447596,0.30250827068225794,-0.07608439711388038,0.19178467952605355,0.16632820145673788,0.4485028006664865,-0.2714092895589013,0.29846121501768114,-0.15083807225377796,-0.2665385961262058,-0.2447061211971358,0
-0.5076162267982459,-1.633519327796694,-0.5366684943298292,-0.5301097369609712,-0.4504972589263418,-0.782146207001264,-0.7434967987642096,-0.579052871853765,-0.44767367467058394,-0.6687702853540639,-1.0415171568863757,-1.30842031938957,-1.0369204361554085,-0.6904593919421231,-1.1200383812897612,-0.9115102583087433,-0.7679735601519249,-0.9823639708434829,-1.1202544895395652,-0.9187361473003368,-0.5506717529161363,-1.0433765183451242,-0.5969443218798071,-0.5549433839182066,-0.13889814338594675,-0.2981271576533955,-0.446594188771525,-0.11581689826761869,0.33851135253542086,-0.4447572222437928,1
1.4123197392005535,1.629028783499927,1.5294319496438036,1.3569523471901477,1.7890791992937018,1.4167939490280008,1.3170250584925953,2.5273164199375944,-0.6484755615677585,1.3385570600850396,0.4108289551846542,3.071950151785349,1.4528855232940996,0.5888300150569294,0.1680138418797748,1.957355690289951,-0.3499298149305228,1.0760766852999342,1.2129282740732965,2.4946039637744923,0.840922848681244,1.1468724766986849,1.0138738199641864,0.7337824246081686,0.2994607700860177,0.17452465173253587,-0.13907293067179471,1.0581537601379827,-0.9540953559689637,0.4479915971084628,0
0.19389883770131544,-1.068042016066966,0.11084145342267289,0.07340883765375,-0.828385755689876,-1.02680980619404,-0.6859950311171454,-0.6063944931217119,-0.5572019766144973,-1.3208681518102698,-0.674821418848561,-1.0770914724878586,-0.5886207151283934,-0.4316092780313164,-0.11099747043722843,-0.7549636583589091,-0.566113604496159,-0.20051338277324884,-0.5741904384812357,-0.7625183430146649,-0.13650669291691594,-1.3185825259008148,-0.16564538153400407,-0.21162303143532413,-0.809587280998054,-0.9743436763307105,-0.7776233121550101,-0.5337869964937374,-0.9168864019068851,-1.2482865754782875,1
-1.126767174413243,0.06989380877186999,-1.121981239721881,-0.9760650267799545,0.2803718299176319,-0.5552969984545926,-1.0517841141733055,-0.9739587412992994,-0.0752774480612781,0.07263663672549282,-0.5813428793290787,1.5841881560253213,-0.60297660283796,-0.5178559798188525,1.9564196848674975,-0.1820958791779733,-0.9191032707102331,-0.7646785996421854,0.6269083168399674,-0.5737709233087317,-1.1636360417149825,-0.4555104311995368,-1.1730024369549334,-0.9374651898591959,-0.25725505002337773,-0.854113269905487,-1.2576155410610637,-1.4052051648536925,-1.033366605927305,-0.9157916706916004,1
-2.029648303985755,-1.3635795411273588,-1.9845040327204433,-1.4544430863944506,1.468834710511046,-0.5431680516317129,-1.1148728439607505,-1.261819584082589,0.4322036842788534,2.1806138702480538,-0.6535270797302234,0.528240007815156,-0.6500045108520571,-0.6711418908784862,1.0497162565493976,-0.8181188379173927,-1.0575006844597676,-1.9134474512424755,0.7322466149376937,0.1154030219902864,-1.7269005233139223,-0.999408694652795,-1.693361034181534,-1.2224228403326993,1.141109883952192,-0.8528409904724158,-1.3058306525103973,-1.7450628184932908,0.050546403707160244,0.5471859103698246,1
1.8241403236233726,0.3654313338322628,1.8877866917205708,1.8575144071910474,0.5863832303099479,1.318246256092103,1.5028386308018853,2.148144879712294,1.1514395337105507,-0.04077168787558776,1.0590430747869328,-0.4114086965801099,0.9108270046052953,1.0438253704054619,-0.821026258053976,0.03810890618523515,0.27043808426779825,0.39155189657454265,-0.1286215453782088,-0.41830962170725183,1.6630404927796971,-0.032116573421551185,1.5768261661337764,1.6320758199934882,-0.244104282619219,0.3768170815908483,0.8209115271403122,1.5256102998662826,0.2851245923593946,-0.4575028602606163,0
-0.09295550041388966,-0.8143916992828492,-0.06339309358706488,-0.2013314748240166,0.3088380066983123,0.44837335113870114,-0.13696614482760072,0.0456773801364926,-0.5462491464201062,0.405773590241162,-0.4564642126350985,-1.081990201010483,-0.4500121441394753,-0.3737447816789643,-0.7746910460921319,-0.26984245608666285,-0.47426865095370313,-0.42014526996144314,-1.0100730512994145,-0.2515007798428902,0.06229253588271004,-0.7844548899347408,0.09051282889237038,-0.11985998791455385,0.38274896364569166,0.6357259462208269,0.027401135725407144,0.36077559989185376,-0.5043523460012301,1.0559031146934559,0
-0.5757796338751264,-0.3652677438761104,-0.5725039685375061,-0.5935332252451762,0.46540197899205593,-0.1281306525362987,-0.5143685761530916,-0.4039117318449356,0.45776028806576674,-0.1683560530518017,-0.4369744785267894,0.7895055290217947,-0.4935748378788496,-0.39860671357180005,0.3683552979162376,-0.5124030572227859,-0.44641675168451084,-0.6947662337794737,-0.047498947992603284,-0.7553315675148398,-0.5610258794161167,0.019993439843431684,-0.5638820412317518,-0.5644361125582863,0.47480433547480394,-0.4896052123306031,-0.5367876310847065,-0.7909642263312291,0.2398267352403428,-0.7279320494871218,1
2.125195371546261,0.6958748657895529,2.1596420132960485,2.1390805659415535,1.447485077925535,1.9777577395861858,2.4130740356953684,2.767200455590336,1.2792225526451164,0.4624777525417013,0.7905178492946748,-0.5369612942710779,0.6395502299555557,0.894433761952051,-0.6086843154662445,0.6584827938836145,0.5068476578265384,0.17581304136014203,-0.011175396924421953,0.08816892535937021,2.0627097756789445,0.49875418671546096,1.9282990595095002,2.1102280774197246,0.7816555749051799,2.0193298296856996,2.0778626912920966,1.942819068223137,1.5000778315168324,0.928446734525226,0
-1.1636890199132202,0.46316815314357423,-1.1854141480894926,-0.988579078279977,-1.081023074618416,-1.2360341388887146,-1.0838620653388622,-1.1287484292511383,-0.6630793351602797,0.22573787493694955,-0.7942862705124554,0.22524457697134553,-0.8326708061910242,-0.6322648699451758,-0.4390107695052471,-1.1055587392176418,-0.9887330188832141,-1.3413339607603767,-0.737646418288053,-0.523463494809956,-1.068378077915162,0.5313229450060757,-1.1122393265747235,-0.8864857212365457,-0.8665739397494092,-1.1662034148378395,-1.2465812369482807,-1.352368871926748,-0.8926196927359642,-0.1848570383355322,1
-0.7177867319519606,1.2101567007371652,-0.7306743374541474,-0.676012201040779,-1.5386168663678563,-0.8994558645538034,-0.8670377144076835,-0.9231445961126434,0.45045840126950565,-0.5695380013281196,-0.5557174881866724,1.0326276112557506,-0.4480320216967765,-0.48683356922690707,-0.30633872374399573,-0.117822908830844,-0.5283145983451123,-0.7783042115504634,1.380016608986932,-0.5991137632291678,-0.7929583130156803,0.9677443061003068,-0.7705957598781517,-0.7103428675817335,-1.6183594763538303,-0.7516947755432596,-0.9585379243693757,-1.0119021543917384,0.5552939544623142,-0.9141291961676669,1
-0.16963933337538054,-1.9430192556158457,-0.16719239818861145,-0.27214962990368924,2.3299365581266325,0.006803880868237755,-0.2514674812776499,0.42923389735759615,2.159099911594554,0.5120938945546739,0.017785984000421726,-0.36804587743539685,-0.10596586972055369,-0.16912888202996293,2.1197596407042143,0.16274257911923382,-0.6722160779026063,-0.5770020165722143,0.6269083168399674,0.8961137920765505,-0.45334296381631944,-2.1474574243969475,-0.4736309508140872,-0.4835721278464963,0.5580925290344779,-0.7402442606456193,-0.8961701185145162,-0.6172287501651083,-0.3086008920224685,-0.6669746502762289,1
-0.24064288241379767,-1.2960945944600246,-0.2545156226946737,-0.32163701538105116,-0.9059560874172311,-0.3523266539654652,-0.47745696111327307,-0.5230799302014587,-0.7105415993359753,-0.9721375536619515,-0.8007828485485584,-1.2447368485954518,-0.6306983170357435,-0.551738612663956,-0.9233637405884086,-0.2653712929320801,-0.11982007573029047,-0.5398560031555995,-0.7182738577183562,-0.4470567237065523,-0.4202097590163818,-1.3527797221059594,-0.31785101586874526,-0.45157811650400537,-0.6912303743606236,0.0905542091498402,0.06913959041289025,-0.3483270403409458,-0.2665385961262058,-0.5954882457470911,1
-1.0898453289132666,1.9362016441926189,-1.0832624514974947,-0.9484772314276323,-0.4312825895993819,-0.5261117201620383,-0.36170012755302605,-0.5555803479350558,-0.7981642408911065,-0.2165545910072604,-0.6686857618144637,1.8545253967183017,-0.7074280616903231,-0.569339980375698,1.6697413950316278,0.10517635350397883,0.535362697554521,0.8781808932987547,-0.25575397411684453,0.4323776466667829,-1.1242903610150565,1.5035003799809108,-1.1226643700223087,-0.9193586889345994,0.2643920570082607,-0.5296820144723443,-0.3463259470510201,-0.3553312751381777,-1.0916067079375154,-0.06183392356445786,1
-0.38833026441370516,-0.10463622571261402,-0.41598120763041224,-0.4501904535176457,0.02844616540860876,-0.47039437069443485,-0.777395220739553,-0.8024287588164253,-0.19210763680145262,-0.1371687637865042,-0.6636328677863836,0.12364131872431922,-0.6589150618442019,-0.5077351933846007,-0.4776790039482248,-0.5040196263079432,-0.5505298037145872,-0.29183742449182587,-0.175842161766845,-0.6286173679126602,-0.5216801987161909,0.050933760219514866,-0.5790728188268044,-0.5289262757935437,-0.11259660857762929,-0.44761999103925526,-0.7037414498346382,-0.479428043828264,-0.25359635123504853,-0.6409292160679385,1
0.8726927665085827,1.2171379021165447,0.9156979660870429,0.7807371576663847,0.7642968351892016,1.4907047187299236,1.0094282664941079,0.7872543720737306,0.4212508540844623,0.2937828696975963,0.6696093136227577,-0.3190585922091522,0.4153013633199131,0.6409740669029654,-0.4070094720351966,1.7147950891538277,0.3523359309283997,-0.08534452021518521,-0.6383620453683566,0.9471777232595182,1.460099613380079,1.3260006472970636,1.320667955707402,1.4070629929693768,1.145493473086911,3.086136134315857,1.8442232955127378,1.1464680249726453,0.6669208166485496,2.768251874344896,0
-0.8512734041441845,0.7331079398129096,-0.8435354861082098,-0.7863633824500682,-0.049835820738263065,-0.42453179052042095,-0.5092210380012802,-0.6796494029339468,0.7972980240918982,0.38592713343597296,-0.451772239609024,0.4538519080271548,-0.4316960115445112,-0.494754184697191,-1.1820408951379842,0.28122840271568106,0.08475875580651562,-0.25242047575716464,1.038575228946025,0.35105360811613046,-0.8799329756155165,0.42058916681798725,-0.8775269198119524,-0.7804835847556557,-1.0375339160034758,-0.48387995488178304,-0.5554979728411643,-0.7685811281748575,0.43396040860770985,-0.200927625400222,1
-0.5871402017212729,-1.524147172853084,-0.6231679148311174,-0.5867073789724365,-0.23130769771510146,-0.9841689775198538,-0.8672888138297232,-0.755483710979007,-0.8091170710854976,-0.5284274836602286,-0.8047529795706213,-0.8860410601055038,-0.8391062041297953,-0.5959620490397078,-0.5043467518399337,-0.8768587438607256,-0.7809047990983355,-0.895906219092148,-0.7134307175759319,-0.47845158510052505,-0.6480005420159529,-1.1834221789947654,-0.6904718545238555,-0.6113723819453472,-0.21341915867618116,-0.8337567989763486,-0.8915165206930383,-0.6753943521769031,-0.6256858918558346,-0.2751848208025826,1
-1.2454851084054763,-0.03947834617173973,-1.2373138003902657,-1.038635284280067,0.792763011969882,-0.3981892341394791,-1.0027067321356695,-0.754451951685877,2.6519772703421642,1.0621242688699097,1.0514637337448127,0.961868199262286,0.8618189741484992,0.07002970175333244,2.0097551806509153,-0.37044362706477857,-0.8578622493409495,-0.20700176939623835,1.2662028156399627,0.1626844397522934,-1.0476698249152006,-0.4082857316781457,-1.0565398087261977,-0.8783993227653667,0.3257623048943364,-0.7574200329920798,-1.2058022869662572,-1.046314264482486,0.4776404851153671,-0.21367326341704546,1
-0.12703720395233015,-0.6887300744540209,-0.1733709282244174,-0.22579075730133333,-0.2555039479786794,-0.6024861821873587,-0.894909750254077,-0.776892716311456,-0.6594283917621496,-0.1768616773968823,-0.7235457541193336,-1.3367240841869559,-0.7391100207735044,-0.5079552104809976,-1.0710363945387462,-1.0199918543468112,-0.8228152760938823,-1.089908979119534,-1.211063367210019,-0.7935349530665415,-0.08680688571700945,-0.891931792293768,-0.1686239653761715,-0.18841858364846278,-0.2616386391580969,-0.622558413086538,-0.727249315118393,-0.4197397820779402,-0.153293953328575,-0.3394671690613419,1
-1.1210868904901699,-0.4094820192788458,-1.1059170616287846,-0.9720832831208565,0.6931313932375001,-0.36616123393531247,-0.8929009548777604,-0.7678648224965678,0.3591848163162445,0.890594177910777,-0.5719589332769299,0.00026593371007337146,-0.6064418171126829,-0.5563589716882882,0.2860186263005864,-0.6415078933113676,-0.7745386506939488,-0.6767609609006778,0.7056093441543608,-0.012824182980277442,-1.055953126115185,-0.46202418285765956,-1.052071932962947,-0.8877162601343337,0.3608310179720934,-0.7014397379369494,-0.9905374062964459,-0.8961800142635598,0.24953341890871095,0.22300337820280466,1
-0.7405078676442541,-0.12557982985075208,-0.7673336156665983,-0.699333842472639,-0.07972530635797694,-0.9402015452869148,-0.7337039213046659,-0.6742326666450139,0.39569425029754896,-0.5284274836602286,-0.28971870970845437,-0.467653357395428,-0.3381352261269916,-0.3711045765222031,0.42902442436987515,-0.9364928824349753,-0.6102124450057136,-0.5070896507095024,1.4090754498414768,-0.5329197783623574,-0.7101253010158362,-0.5222763856952961,-0.7580857077410497,-0.6581328600612952,-0.32739247617889233,-1.0627670969291552,-0.8704074171729319,-0.7833509276385857,0.6555963523687869,-0.752869167346123,1
0.537556015047254,0.9192733099296918,0.4420106633418918,0.40645325371116653,-1.0176858312814026,-0.7135418515343508,-0.700684347306461,-0.40468555131478307,-1.0354755617695854,-0.8261243357380614,-0.09265584261332961,-0.054164383207976445,-0.19804156330604922,0.0038045557379028138,-1.0040336779608279,-0.9059213043655148,-0.6924418618957103,-0.6821138798646442,-0.7194846427539621,-0.2847868979473433,0.604848764481689,1.3357712747842483,0.4926216475849352,0.4736113433615398,-0.6254765373398288,-0.6308282294015006,-0.6058719698777817,-0.22620972931094682,0.07643089348947567,0.03181880795045893,0
-0.6780247444904469,-1.2262825806662314,-0.7302624354517607,-0.647286764643,-1.2973660181515883,-1.1549218070107066,-0.8330137427213203,-0.549131852352993,1.0565150053591594,-0.23640104781244947,0.5656640650451092,0.09279747247075786,0.42124173064800957,-0.055160026096433085,0.33102045086784493,-0.6180342867498073,-0.5555033571555142,1.0809429752671766,1.0494722942664794,-0.6770335397009557,-0.6127965119160192,-1.207848747712726,-0.6720046347024191,-0.6097902605053337,-1.2610969618741783,-1.0767621706929378,-0.9827174429469521,-0.48277789525302706,0.32395132703286816,-0.9457162121224022,1
1.170907672469935,0.1606494267038018,1.13812504737607,1.0952949067351319,-0.12313622594851477,0.08829524233446058,0.30007239923229057,0.646935108208041,-0.06432461786688697,-0.7623321531499545,0.14988307073451626,-0.8049398878976097,0.1554102927156918,0.2986274649095823,-0.909029826096615,-0.6515680104091791,-0.3101413874031051,-0.2280890259209542,-0.8296660809941128,-0.6112178061762416,1.3689833001802503,0.3228828919461442,1.368325297182076,1.2752195396349364,0.5186402268220005,0.02121498004746253,0.5095522502187443,1.196715796344091,0.26247566379986914,-0.014730478719676948,0
0.13993614043211808,1.1007845457935554,0.10713433540118895,0.02221499060820344,-0.4711352370923351,-0.346451695348133,-0.7254176403773597,-0.49909152663618456,-0.46227744826310513,-0.5865492500182818,-0.11936399676175319,-0.19205451940036933,-0.2906122875022196,-0.14470698432992082,-0.7243556719465315,-0.4078896184844103,-0.6858104573078074,-0.5174710693062855,0.03725600449982024,-0.3411463479196559,-0.03296542791711084,0.5590063895530976,-0.12990237542799823,-0.1351538285013488,-0.9147934202313256,-0.4940581903463522,-0.8649862155870864,-0.6874233641112798,-0.6127436469646772,-0.6364959506707828,1
-1.0330424896825325,8.179497807621169e-05,-1.0115915030821416,-0.9066689230071024,0.25119399871743475,-0.3517581095831429,-0.7388514594564772,-0.9520338563202855,1.480024439542291,0.2852772453525167,-0.18108148810473185,0.5754129491441325,-0.2792265834567013,-0.37858515779969343,0.18468118431209302,-0.1837725653609418,-0.10257842380174281,-0.5161733919816878,0.7939966517536023,-0.13008209903005546,-0.9793325900153296,-0.38548760087471623,-0.9841602213615361,-0.83990103439171,-0.45890015022048203,-0.6721773109763128,-0.9226524483851951,-1.2573549042425591,-0.12093834110068048,-0.46692354922957185,1
0.27058267066280584,1.5010400915446385,0.2484167222199604,0.1755121214834789,0.4298192580162052,-0.12604598980111628,0.4356660871336646,0.42846007788774887,-0.6010132973920619,0.2611779763747869,0.895906781880346,0.5246113200206194,0.647470719726351,0.5067636381009322,1.1597207166026966,-0.06528674176449477,0.5711722823291969,0.918733309692439,0.079633480746032,0.40552180137796284,0.4640326440819541,1.2282943724252204,0.41517846768858957,0.29782007224895285,1.4742626581908855,-0.11873575759036366,0.6270915766375179,0.578515942501453,-0.3991966062605729,0.5782187681499157,0
-0.714946589990424,-0.760869155374274,-0.680010391160536,-0.7016091245635522,0.8852780865070935,0.23611678173830672,-0.22384654485329583,-0.10186419878110736,0.27156217476111333,0.057042992092844566,-0.5759290642989928,-0.8762436030602548,-0.5935710212351405,-0.5378775355909591,-0.3856752737218293,-0.3033761797460349,-0.1851394109211345,0.20176658785209978,-0.2497000489388141,-0.685733320569165,-0.751541807015758,-0.9782390017638953,-0.754511407130449,-0.7117491977506342,0.4002833201845696,-0.2370577448659804,-0.20144073652665428,-0.06252380741911535,-0.18403178494507497,-0.5361933210601318,1
-0.6496233248750801,-0.08136555444801583,-0.6779508811486001,-0.6452958928134509,-0.5444356423025878,-0.6697639340955194,-0.7797806652489291,-0.9025094102500422,-1.0172208447789333,-0.3157868750332047,-0.6603845787683321,-0.6380202493489238,-0.7039628474156002,-0.5108154327341556,-0.5080135671750435,-0.458749099367791,-0.379439565346691,-0.8190188376097224,-0.5306021771994179,-0.33017705899887023,-0.6148673372160153,-0.11191003123355645,-0.65651599872315,-0.5876405603451479,-0.19150121300258288,-0.4215382626612968,-0.6001149416450253,-0.6924481412484244,-0.5917124990165454,-0.22253979421135678,1
-0.6354226150673965,-0.4490421604286626,-0.6495296429838912,-0.6236807129497757,1.8602446412454032,-0.6110143479221961,-0.3704886073244114,0.647966867501171,0.7425338731199415,-0.5737908135006604,0.8518744196356478,1.9524999671707919,0.5717310362931205,0.18707879703641714,2.3797701826483753,-0.5917662032166328,-0.6374012038161158,1.1847571612350083,0.755251530614209,-0.29991695163118565,-0.8012416142156645,-1.0889727799519844,-0.8280824280319778,-0.7175503096973496,0.15480232864026927,-1.0851592149512073,-0.9626637946028511,-0.38289141640554664,-1.1013133916058835,-1.3086898165145355,1
-0.7916304229519143,0.4585140188906548,-0.8027571878718878,-0.7348851251431574,-0.6241409372884931,-0.7313562421804553,-0.4704261772961648,-0.7719918596690881,-1.1851642410929335,0.3533222401131635,-0.6163522165236339,-0.4186660721691832,-0.62822316398237,-0.5264366465783268,0.6907017005572677,-0.5537613164026779,-0.24747461404742224,-0.8696282532690406,-0.5887198589085086,-0.49849890623161613,-0.6749212709159025,0.5655201412112203,-0.693152579981806,-0.6372136987988972,1.6452226344449512,-0.22051811223605555,0.19099668800623104,-0.48460508693926135,-0.11608499926649685,0.24239891431536084,1
-1.3724394540861664,-1.2542073861837486,-1.318458494860522,-1.12936215765523,2.899260093740244,0.3441402143795788,-0.6965412068428078,-0.637347271915614,1.407005571579682,2.007666175231408,-0.18541254012880046,-0.1575819853522713,-0.23665395093867655,-0.45559114153856495,2.8064541489157167,-0.004367143783302539,-0.32904089047862856,0.6494652648383753,2.3522769925785907,0.040131004913170676,-1.1802026441149513,-1.276243140123016,-1.1741938704918,-0.9738539829795013,2.307144593787619,-0.28349594417307733,-0.8262702007218007,-0.6393073163737738,1.262264081641808,0.3255226405120328,1
-1.3360856369784968,1.999032456607033,-1.3472916350276183,-1.09096677237107,-1.0767531481013144,-1.0353379719288773,-1.1148728439607505,-1.261819584082589,-0.25417367456967044,-0.31295166691817783,0.47759934055571285,3.1027939980389103,0.37223370019121343,-0.24701493415442152,1.516401844654302,-0.7957630221444781,-1.0575006844597676,-1.9134474512424755,1.1499674522217818,-0.17812001947625483,-1.19676924651492,1.394395039707354,-1.2141068939768398,-0.9668223321349979,-1.098904163889551,-1.1621321206520119,-1.3058306525103973,-1.7450628184932908,-0.688779335700229,-0.7899977650473032,1
-0.6979057382212037,0.16995769520964074,-0.6903079412202132,-0.6788563036544204,0.3728869044548434,-0.18593266473908465,-0.5875640576776295,-0.7054433852621986,0.17298670301159208,0.2569251642022461,-0.7163273340792192,-0.6211468511043282,-0.7292094085600103,-0.5499784758927817,-0.5966838289149756,-0.458749099367791,-0.44741146237269624,-1.054060643027517,-0.7328032781456287,-0.4251181458649808,-0.604513210716035,0.510153252117176,-0.6034972063325748,-0.5800815356873065,0.9920678533717232,0.26803719006326515,0.017326336318083727,-0.5086631108080144,0.49381829122931437,0.3077895789234094,1
-0.35140841891372804,-0.8353353034209873,-0.324950865102866,-0.3933084012448162,-1.2938077460540036,-0.1618642858874329,0.2850064339099158,-0.38740358315485446,-1.385966127990108,-0.4887345700498505,-0.4109881663823774,0.31233308404022525,-0.2569502059763395,-0.375064884257345,-0.20766805654467302,0.7898232115494875,1.5708565239555665,0.9641520160533653,-0.21337649787063234,-0.037410520216521206,-0.4906178192162492,-0.9749821259348339,-0.45099371361361673,-0.5009754636866424,-1.4513447303210112,-0.14354520653525113,0.29846121501768114,-0.19651786440963795,-1.4588429067241178,-0.7024407734534757,1
0.8698526245470467,0.6470064561338972,0.8086034454663997,0.777608644791379,0.0640288863844595,-0.27273044044031736,0.02273308758957297,0.42175364248240316,0.20219425019663548,-0.9919840104671396,0.054599926205005436,-0.8682604899122743,-0.023295757737877662,0.1118329500687198,-0.8493607401889166,-0.7499335998100033,-0.37844485465850547,-0.3116270036919439,-1.1020927140054744,-0.8396816168022606,1.0997760111807569,0.594832023672773,0.9900451492268488,0.9763743787435386,1.0271365664494803,0.01548972259864229,0.5599262472553617,1.2758941027475814,0.5099960973432616,-0.45694870208597127,0
1.2788330670083286,1.354434862577672,1.352314088617356,1.2318118321899227,0.7144810258230102,1.598728151371196,1.7966249545881956,1.9469518175519298,1.3558923640058553,-0.11732230698131613,1.535819718436493,0.45203756412988627,1.340513574670941,1.4226948104007096,-0.2643370208145543,0.4617516150819662,0.6653382274774189,-0.035059523887016705,-0.057185228277451726,0.28939863935447296,1.4248955832801449,1.3569409676731468,1.5857619176602782,1.387725953146992,0.7334360944232642,1.0905658435437622,1.6364905267807826,1.068812378307683,0.8788500767412585,0.7688491802276164,0
-0.28892529575992126,0.7563786110775069,-0.2038516764010623,-0.35690388779020543,0.27325528572246155,0.8330883831769157,-0.021962609533472437,0.05418939430481578,0.14012821242841766,1.4604710090311999,-0.7654125903519976,-0.5344212128149023,-0.6806964087138889,-0.5554789033027011,-0.5966838289149756,0.27563944877245244,-0.21995428500762498,-0.5664583883098563,0.5566827847748163,0.1524716535157001,-0.3560141747165025,0.5671485791257512,-0.2317699428301147,-0.42415467821044195,0.1109664372930727,1.1828061024414203,0.21114628682087788,-0.03054795291001331,1.98541201493525,1.3108158750299168,1
-0.05319351295237641,-1.4240832864153132,-0.06833591761571012,-0.17260603842623762,2.0239251577343165,-0.12869919691862125,0.15317923733913563,0.44445234693126484,0.6001470805928536,0.2512547479721923,0.5086385467282052,2.5730055800365585,0.6063831790403502,0.09687178751373905,0.9997142292524439,0.3907719000029624,0.52176831814932,2.714394307604782,-0.4107344586744191,0.6555459385034573,-0.3415183976165301,-1.6768388670975714,-0.37950770140160545,-0.3995439002546798,0.30822794835545725,-0.7497863563936529,-0.5578967346048128,-0.19956318388669517,-1.198380228289567,-0.6326168434482714,1
-0.6325824731058599,-1.0796773516992646,-0.5708563605279575,-0.6316442002679719,1.3407369149979829,0.4786957181959002,-0.649083416077327,-0.4872262947651887,0.6695150051573325,2.210383555455837,-0.03238203527837387,-1.0215725492314476,0.0767004256184132,-0.336781909484306,1.0430493195764707,1.2257616191213216,-0.13275131467670115,-0.11292016336289057,1.298894011601326,2.1288349159676043,-0.6459297167159569,-1.4928253827556006,-0.6255387267646115,-0.6521559568434672,0.43973562239704694,-0.01631726322813643,-0.8539039362390306,-0.8250718044742711,-0.2810986216287585,1.089152605172125,1
-0.271884443990701,-0.24891438755312104,-0.31671282505512416,-0.3344354771424378,-1.5443101017239922,-0.84146433755691,-0.5048267981155875,-0.5215322912617636,-1.305645373231238,-1.0359297362500586,-0.732207858167471,-0.9649650196366759,-0.8069292144359393,-0.5158758259512815,-0.3573407915868887,-0.5895306216393412,-0.5389248456857569,-0.5406670514834732,-1.163842750821383,-0.8029912366189429,-0.283535289216639,-0.2910382018319346,-0.362231915117036,-0.33924749426306233,-0.1827340347331433,-0.367466386755773,-0.4058152387895016,-0.15388339173083537,-1.0770466824349627,-0.8143807247316601,1
-1.101205896759413,-0.7236360813509174,-1.0482507812945925,-0.9405137441094361,0.6931313932375001,0.12809334909703463,-0.27042548764163826,-0.23908818476740687,-0.2505227311715394,1.416525283248281,-0.13524452085000485,0.4611092836162281,-0.62822316398237,-0.3884859271375483,1.1497203111433056,0.9597274114236383,0.270106514038403,0.5910697852314697,0.8048937170740569,1.4377697139581058,-1.0331740478152283,-0.8251658377980087,-1.0642841267158323,-0.861699152009671,0.34329666143321425,-0.11619119872422146,-0.3952606870294484,-0.2613831692709591,-0.473614514384731,0.7245165262560576,1
3.1504866196610037,1.3078935200484767,3.2758964397650563,3.4786528969666883,0.7073644816278408,3.073153249527507,3.0772320069900605,3.497170155479861,0.06345840106767868,0.7119760666640774,1.7761931057723046,0.46655231530803287,2.235528918770812,1.7527204549958733,0.37502223488916453,1.7578300345166882,0.8423967299744276,1.379408759924693,-1.1977447318183525,0.7936076783685185,2.843410913777475,1.293431889006449,3.1107968448498573,2.955784091471268,1.092890403470275,2.247703987921971,1.8010455837670656,2.6204026518683934,-0.8829130090675961,1.1722763313687967,0
-0.18384004318306366,0.35612306532642385,-0.14700920007164378,-0.27214962990368924,0.3728869044548434,0.4009946526118274,0.21972058417962467,0.14111511475102417,-0.33449442932854045,0.19738579378667892,-0.6935893109528587,-1.1347876084209911,-0.6539647557374548,-0.48001303923860705,-0.5580155944719976,-0.17259465747448458,-0.04654305503396286,0.13363852831071005,-0.8199798007092646,-0.22994045334341479,-0.15307329531688477,0.05581907396310719,0.001155313627355974,-0.2464297031156165,1.2550832014549027,1.0702093726146236,1.1073236817199363,1.693102871104436,-0.15167617271718045,1.2831079662976927,0
-0.805831132759598,-1.4543351590592906,-0.813054737931565,-0.75905999735911,0.14088756369229688,-0.5355874598674131,-0.7049530374811338,-0.5511953709392531,-0.15559820282014816,-0.013837210782830062,-0.775157457406152,-1.2474583644413544,-0.8425714184045183,-0.5977221858108821,-0.18966732671776948,-0.7968808129331238,-0.6324276503751887,-0.4780541205716246,-0.438582514493358,-0.36989344991895634,-0.8178082166156334,-1.5465638339351144,-0.8635275757537668,-0.743743209093125,0.1504187395055501,-0.6588183769290659,-0.6941464027800444,-0.41273554728070855,-0.27139193796039035,-0.20646920714666694,1
-0.3599288447983384,-0.30010986433523607,-0.3616101433153169,-0.4226026581653234,0.21205300564399834,-0.1683077888870876,-0.6266100178047844,-0.6646888931835608,-0.34179631612480055,-0.40084311848401366,-0.5041057848998539,-0.22108402175666256,-0.5386226234502479,-0.43974991059799706,-0.5826832612718283,-0.4956361953931001,-0.37081873938241716,-0.5867345965066985,-0.3707785524994194,-0.3581676583139786,-0.4202097590163818,-0.13959347578057826,-0.45814231483481815,-0.4543907768418068,-0.15204891079010668,-0.255505796645512,-0.47537932993530635,-0.5382027097354706,-0.19697402983623313,-0.2641016573096927,1
1.5798881149312178,0.4561869517641946,1.5665031298586416,1.5588836327586924,0.9422104400684553,1.05292554434161,1.3634784515699176,2.0372307557008114,0.939684816618985,-0.3980079103689868,1.2286759457296228,-0.7800833765050336,0.8509283007136554,1.1813360556534467,-0.29700501198189755,0.8149735042940163,0.21307643458243766,1.42482746628562,0.2370355353748186,0.29355940411752984,1.5118702458799815,-0.023974383848897503,1.3474752102869065,1.456284548880901,0.5274074050914401,1.0829321669453351,0.8549739441841201,1.9550003461313663,1.1522550000669673,0.2013912093916699,0
2.110994661738577,0.7214726041806104,2.060785532723147,2.3438559541237396,1.0418420588008372,0.2190604502686322,1.9472846078119446,2.3209645613115804,-0.3125887689397572,-0.9310270359940594,2.782079938362255,0.07102534570353793,2.3795828264771517,2.6041866180513953,1.0863844099004976,0.19180513962402293,0.6660013679362091,2.0671777419615798,-1.138416265073656,0.16797995854163825,1.9011854022792485,0.11769971471527413,1.7525626128216383,2.0153007910189276,0.3783653745109713,-0.2733177087085082,0.6645122601504337,1.6291511620862318,-1.3601582894290396,-0.7090906715492091,0
0.07745301727831133,1.791923482352112,0.011573070847384837,-0.024997112778245116,-1.8794993333165064,-0.9875802438137886,-0.678462048455958,-0.8137781110408561,-0.38195669350423606,-1.2003718069216227,-0.6268189255817999,-0.5545604300745808,-0.563869184594658,-0.4360096199592519,-0.5616824098071077,-0.4855760782952886,-0.40397576232193194,-0.8801718815313985,-0.7751807543918405,-0.7197759413578102,-0.1799940242168339,1.0263680710234124,-0.20436697148217692,-0.25662559684014646,-1.3443851554338517,-0.6887169436062378,-0.5996351892922958,-0.8980072059497941,-0.8990908151815433,-1.069847643242765,1
-0.5189767946443924,-0.06274901743633793,-0.5803301065828607,-0.5417705576769013,-0.9415388083930818,-1.1810748485975409,-1.0174964880938009,-1.0416679449109603,-0.99531518439015,-0.47455852947471516,-0.7982564015345184,0.5717842613495958,-0.8252453470309035,-0.5961820661361046,0.28001838302495224,-0.9527008488703385,-0.8252688957914064,-0.8555160123640384,-0.13951861069866325,-0.594952998466111,-0.604513210716035,0.4531579251086014,-0.6770682272341032,-0.5911563857673996,-0.4457493828163227,-1.0416472583401741,-1.132208276057523,-1.1385874446373232,-0.5609746674000455,-0.6581081194819176,1
-0.4280922518752189,1.0891492101612563,-0.43740011175454124,-0.4507592740403741,-1.233317120395057,-0.5505591286019051,-0.4321335154351287,-0.7366541038793832,-1.086588769343411,-0.36965582921871715,-0.578455511313033,-0.27369999477744383,-0.7034678168049254,-0.4802330563350038,-0.624018270503977,-0.14185541078672714,-0.05748487260400274,-0.5036832477324329,-0.8345092211365369,-0.1467251580822821,-0.42849306021636635,0.9172627307498543,-0.4941831793250404,-0.4510507426906677,-0.4238314371427244,0.5797456511656962,0.5704807990154147,0.05167567297053445,-0.12093834110068048,0.659680019822654,1
0.4693926079703736,0.8424800947565193,0.5655812640580182,0.3632228939838163,1.3620865475834938,1.3428831793260774,1.563102492091385,1.1831920008123953,1.0382602883685073,1.4902406942389834,0.529932885846543,-0.26281393139383386,0.3623330879777193,0.4024755344088606,0.5526961052176748,0.7982066424643303,0.9153421804413601,0.3412669002463739,-0.6771071665077504,0.8280285504992598,0.8119312944812992,0.7853592596728668,0.6862295973258001,0.6880766941188959,2.3290625394612174,1.5155071741895254,2.223227654169192,1.352027089674015,0.603827372804156,2.2861342624042003,0
1.719055071046515,1.0891492101612563,2.130808873128952,1.6783359425316344,2.2943538371507817,4.568424975035642,3.5982633077221924,2.875535181368993,3.9955244408541675,2.6399175848824257,1.9003499304622733,1.2122476570853147,2.8627327024956655,1.6735143002930342,1.1130521577922063,2.396088574833399,2.559930518241292,2.292649177110465,7.071917061370981,0.8291633045255481,1.4704537398800597,0.9840286852456136,1.8776631341926588,1.3051040557240763,1.3822072863617718,2.303684282977101,2.3791471688063406,2.073767805736603,4.107940177085129,0.8697059680129117,0
-0.65814375075969,-0.44206095904928294,-0.6878365292058906,-0.6427362004611737,0.3088380066983123,-0.9233347286113477,-0.819454373931183,-0.8612390385248392,-0.34179631612480055,-0.708463198964442,-0.7913989024964095,1.286635756873316,-0.9183111018377486,-0.5691199632793013,0.26335104059263376,-0.9334748473056318,-0.5415774075209182,-0.9012591380561144,1.313423432028599,-0.6834638125165886,-0.7660375841157309,0.13072721803152013,-0.8248059858055939,-0.6874900023370972,0.14165156123611056,-0.9813412132126017,-0.8835046564024525,-1.0894055350828473,0.4841116075609462,-1.0077819276825837,1
-0.3258471412598979,0.014044197736835462,-0.3068271769978343,-0.40070306804028405,-0.04058431328454152,0.1546254202720839,-0.22259104774309807,-0.5008971053991622,-0.18480575000519153,0.3689158847458118,-0.4936390758416879,-1.1801462058526995,-0.1985365939167241,-0.43314939770609384,-0.43801072895930787,0.39524306315754554,0.39908733327311535,-0.3220084222887271,0.8436388382134506,0.29393765545962564,-0.382934903616452,-0.6069551572508931,-0.2398121192039663,-0.4329442417660713,-0.15643249992482586,0.4518815681420459,0.3440376885270016,-0.2440248482517323,1.1247527296732565,0.4274877446466174,1
-0.10147592629850004,0.6982019329160123,-0.05515505353932359,-0.18767978227853763,1.6823310363661494,0.4237364279047269,0.6239906536633508,0.42149570265912073,0.08171311805833091,0.8466484521278581,0.7721108781923829,1.6241037217652248,1.0098331267402365,0.20600026732653984,2.253098380162758,0.4472203348295719,0.48927443566859546,1.4280716595971146,0.7685701660058755,0.19332279846207423,0.02501768048278026,1.3569409676731468,0.1292344188405432,-0.12952850782574615,1.811799021564298,0.3685472652758857,0.5215460590369866,0.8023469240651667,0.2899779341935791,0.5200321598122448,0
0.4693926079703736,-0.3257076027262936,0.4790818435567294,0.3586723298019898,0.05264241567218774,0.4711151264316007,0.13484897953024616,0.442130888521722,0.1109206652433743,-0.28034677359536736,0.36318738291989877,-0.42084328484590516,0.34550204721477934,0.3041278923195017,-0.4233434676188681,0.8457127509817739,-0.1320881742179109,0.1660804614256576,-0.05597444324184572,0.1320460810425129,0.8595602763812097,0.2610022511939773,0.870901795540163,0.7355403373192945,0.3169951266248968,1.9506267402998576,0.596387426062818,1.0109513082435937,1.4418377295066225,1.1556515861294627,0
-0.01911180941393591,-0.4909293687049387,-0.09140242974938714,-0.13022890948297972,-1.1322621928236418,-0.9614272022269543,-0.7782740687166916,-0.4232572185911244,-0.6229189577808452,-0.7311448638846579,-0.9195258582084413,0.8493788776316498,-0.8064341838252646,-0.6087230406307208,-0.5566822070774122,-0.7124876083903714,-0.6821631847844607,-0.42841796290575485,-0.40589131853199467,-0.8892325426168443,-0.2793936386166469,-0.05491470422498126,-0.32291460840042946,-0.34469702366755256,-1.1295892878325886,-0.8343929386928842,-0.8999601621010808,-0.5404866993432634,-0.6111258663532818,-0.989494707919316,1
0.6625222613548686,0.1909012993477788,0.7138659849173696,0.5062812554499824,0.13875260043374565,0.9714341828753871,1.1362334746240965,1.025074889140212,-0.06432461786688697,0.06129580426538339,-0.36623396213366766,0.1218269748270511,-0.1901210735352539,-0.19245069424802114,-0.13799856517758374,0.8641562989944283,0.7233630176215697,1.0274137856275132,-0.45069036484941843,0.2984766715647786,0.31493322248223427,0.45152948719407043,0.4836858960584339,0.17687567772349308,0.4002833201845696,1.3513831273233474,1.5064776391910373,1.3535497494125435,0.24791563829731642,0.623105580296118,0
-1.8172056852628111,1.442863413383144,-1.8119170937202536,-1.3540462641329065,-1.0945445085892398,-1.0529628477808743,-1.1148728439607505,-1.261819584082589,0.21314708039102662,1.4250309075933625,-0.09915242064943271,0.4447801885408129,-0.18517076742850694,-0.46637197926200696,1.8730829727059073,-0.8822800291856576,-1.0575006844597676,-1.9134474512424755,1.0022516778778432,1.1639157422805595,-1.4893768614043694,0.853753652083157,-1.4920087664510346,-1.1120259220739948,-0.2967073522358551,-1.086940406157507,-1.3058306525103973,-1.7450628184932908,0.2543867607428955,0.8552978554721546,1
-0.18668018514460027,-1.216974312160392,-0.19149461632944978,-0.30883855361966456,0.7642968351892016,0.21147985850433243,-0.3884422160002415,0.09649152532314856,-0.11908876883884369,0.5092586864396481,-0.8892084940399606,-1.167627232961548,-0.8732633162663501,-0.6049827499919757,-0.86369465468071,-0.6124453328065788,-0.6151859984466409,-0.4874622811749592,-0.431317804279722,-0.38124099018183816,-0.2980310663166118,-1.1980781202255417,-0.36699764926450335,-0.38741430254791115,0.3038443592207381,-0.027767778125776556,-0.4192483046659329,0.2876879324424778,0.5277916840686034,0.5161530525897334,1
-0.02763223529854629,0.4561869517641946,-0.08975482173983854,-0.14644029438073625,-0.40281641281870156,-0.6612357683606822,-0.9313191664498165,-0.7727656791389357,-1.07563593914902,-0.6304949758011997,-0.5279265710322316,0.5191682883288141,-0.5935710212351405,-0.40190697001775166,0.11601173349094265,-0.6510091150148564,-0.815388102955431,-0.2848624088721122,-0.9580092947683543,-0.3290423049725821,-0.19448980131680668,0.7495336255531913,-0.2678108073203374,-0.2902017296226506,-0.16081608905954503,-0.6550015386298524,-1.0068969615245282,-0.5325688687029143,-1.0916067079375154,-0.43090326787768085,1
-0.04751322902930266,-0.5211812413489156,-0.022202893348356092,-0.1492843969943777,0.9422104400684553,0.44647820319762643,0.1141332772119807,0.09133272885749824,0.3518829295199834,-0.21230177883471962,0.07156321329927436,-0.738534901257589,-0.15002359407060262,-0.10114359924335914,-0.23000229540397923,0.07331931602757571,-0.023333138976302556,0.2634062607705,0.009407948680880929,-0.4160401136546755,0.02501768048278026,-0.5874139022765243,0.024983984364693065,-0.09595237504324199,0.8254914662523765,0.45760682559086613,0.23369464739917342,0.34707166224509556,0.27056456685684277,-0.24248948849855798,0
-0.9591987986825787,-1.0052112036525513,-0.9765798328792389,-0.8520621528251862,-1.311599106541929,-1.0034994865188183,-0.8322604444552015,-1.0586919732476066,-1.5064472601284127,-0.8388827722556829,-0.551025515160598,0.04018149944997657,-0.5247617663513562,-0.4971743727575556,-0.16466631306929264,-0.4285687480743564,-0.38839196154036,-1.0031268080370495,-0.4640090002410853,-0.542754313256855,-0.8944287527154894,-0.8072530207381708,-0.8778247781961688,-0.7723971862844767,-1.085753396485392,-0.8394820564251687,-0.8378322324225861,-1.2253790497334573,-0.9718909426943055,-0.9008293999761992,1
-0.8115114166826712,-1.4729516960709685,-0.7747478517095662,-0.7638949718023005,1.9456431715874454,0.12809334909703463,-0.12303012690440397,0.16974643513538362,0.7534867033143325,0.8990998022558566,-0.5376714380863863,-0.41921037533836364,-0.523276674519332,-0.5345772791450074,-0.13533179038841278,-0.4308043296516478,-0.3608716325005627,-0.025326943952532575,0.06510406031875955,-0.02795423666411981,-0.7101253010158362,-0.838193341114254,-0.6651538918654345,-0.7110460326661838,1.2550832014549027,-0.07229755828326676,-0.22782711592678703,0.2618027168874904,0.7154542349903914,0.45464149520419633,1
0.5773180025087679,0.5236718984315283,0.5861763641773726,0.4405824850748642,0.3159545508934826,0.4559539429030006,0.19461064197566652,0.1859966440021822,1.2719206658488553,-0.5511091485804445,0.1011587354637436,0.08735444077895267,-0.010919992471010024,0.07354997529568078,-0.7213555503087141,-0.3329976356451467,-0.32174634543193525,-0.41609002832207487,-0.6286757650835082,-0.5378370458096062,0.6628318728815794,0.9775149335874909,0.6683580942727966,0.5175591611396866,0.3126115374901776,0.3259259042680024,0.129588386856831,0.2526667584563186,0.9370901787514684,-0.4297949515283923,0
-0.8171917006057445,-1.0494254790552875,-0.8480664081344678,-0.753371792131827,-0.946520389329701,-1.1325590613060224,-1.1026480685987534,-1.1859594820552006,-0.14099442922762595,-0.2817643776528803,-0.6885364169247785,-0.40052263319649994,-0.6618852455082501,-0.5559189374954947,-0.4746788823104077,-1.025804366447769,-1.0252156912235622,-1.436388824787173,-0.4288962342085096,-0.6675772561485541,-0.726691903415805,-0.5890423401910554,-0.7500435313671985,-0.6818646816614944,-0.6912303743606236,-0.9944456913732346,-1.279357917686773,-1.491235440080562,-0.1387339278260232,-0.5411807446319324,1
0.10017415297060484,0.5050553614198503,0.09395347132480242,-0.01902449728959795,-0.13665765991933873,-0.0923123564499821,0.3967456767175294,0.011887263286482829,0.9615904770077672,-0.9125981832463843,0.054960847207011124,1.8200528626702042,0.21530899660733138,-0.03227824807116842,0.7760384938107362,0.24322351590172628,0.7233630176215697,0.9430647595286498,0.4404474213566354,-0.20648887013345918,-0.01225717491714952,0.5818045203565276,0.03391973589119485,-0.1260126824034944,-0.07752789549987228,-0.3604688498738817,0.3008599767813296,0.12019536120432446,0.19291109750989555,-0.8581592205285746,0
1.9349058601233036,0.9937394579764051,1.9330959119831501,2.01678415355497,0.3088380066983123,1.0661915799291346,2.2900353188959732,2.1171921009183916,1.4362131187647253,-0.5411859201778499,2.1612958149124113,-0.7185771183876374,1.7355480019893574,2.146551057546102,-0.5860167297582918,0.7602017556503755,2.0983847589232467,1.1101407150706293,0.41986407575133255,0.45658573256093093,1.9281061311791976,0.21540598958711715,1.7287339420843015,1.985416274929788,-0.4939688632982391,0.4003542511026644,2.048118045422856,1.46013593110955,0.3643958423177363,-0.30233857136016157,0
1.080023129700761,1.207829633610706,0.9568881663257517,0.9784022893144673,-0.5558221130148595,-0.6456955552438676,-0.3993650408589633,-0.03815306243032551,-0.9989661277882811,-1.0912162944930839,0.05784821522305699,0.39216421552003167,-0.05002741071431177,0.12041361682819407,-0.5323478871262279,-0.7706127293999492,-0.5196937723808385,-0.5310966812145637,-0.7691268292138104,-0.3948580384972962,0.9631015413810148,1.4676747458612351,0.8292016217498227,0.7724565042529378,-0.03807559328739489,-0.4686126016849292,-0.30794575883264513,-0.015321355524726642,-0.6418636979697818,-0.24747691207035866,0
0.3387460777396863,-0.46998576456680063,0.4626057634612462,0.16612658285846182,2.6430645027141195,2.3511018839779507,1.9585840818037257,1.9417930210862797,2.1408451946039015,1.8659057694800587,0.916840199996678,-0.28640040205832235,0.5915322607201088,0.42073695340979295,1.0363823826035432,1.1402506237899233,0.5947137686162525,1.5367521355321887,-0.2061117876569963,1.8402291419483114,0.30250827068225794,-0.49133606531921237,0.3734782938982493,0.08476105166049736,1.9345395173364481,1.247056213811513,0.8189925177293934,1.6489457386871045,0.5779428830218397,1.9480977758710674,0
-0.4735345232598054,1.105438680046475,-0.329481787129124,-0.5090633776200244,1.5826994176337676,2.563358453378346,1.738872087519092,0.941760326219959,0.7972980240918982,2.783095594691288,-0.3882501432560169,0.6933453024665736,-0.4094196340641493,-0.36076377299155454,0.03600848981581628,2.6095866154647336,1.5098476017468596,0.40939495978776363,-0.3211363660395712,2.3773460477247146,-0.24418960851671317,2.443109056665133,-0.2862780271417735,-0.2974091717382667,2.3202953611917776,5.112877271198196,3.9954328451526617,1.6200152036550601,2.370443800447194,6.846856039728261,0
0.9862984449700508,0.9402169140678299,1.113410927232845,0.9260708012234642,-0.24696409494447563,1.820460460476965,1.566868983421979,1.3227374452082372,-0.42211707088367056,1.544109648424497,1.890244142406113,0.4502232202326181,1.4528855232940996,1.420494639436742,-0.09166335321573958,2.502278699754744,1.1278786974836497,1.835217920189705,-0.4615874301698733,2.8388126850819053,1.0977051858807612,0.5199238796043607,1.0823812483340303,0.9781322914546645,-0.5115032198371176,1.426447613874545,1.172090249338444,1.2941660196099256,-0.9702731620829109,2.1309699735037455,0
-0.5899803436828095,0.798265819353783,-0.5444946323751838,-0.5889826610633497,-1.9221985984875274,0.05607772733618655,-0.11763148933055297,-0.49367479034725165,-2.2220321661619793,0.5376107675899168,-1.0314113688302156,0.39397855941729976,-0.5386226234502479,-0.6773903764161546,-0.6663533202820648,1.1246015527488833,0.36990915308634237,0.7905876738883967,0.50340824320815,1.3477458945392438,-0.7660375841157309,0.4938688729718692,-0.5927743045007731,-0.6894237063193357,-1.945375225803916,0.42707211919715876,0.09120819863845589,-0.08231838401998794,-1.1482290293363309,0.5288986906065569,1
-0.3599288447983384,-1.3891772795184163,-0.37685051740363934,-0.42686881208578564,1.2126391194849206,-0.30324232229162407,-0.6377839420855458,-0.3848241849220292,-0.9807114107976288,0.2781892250649481,-0.6639937887883893,-0.3172442483118837,-0.6198076436008999,-0.5229163730359783,-0.37700825565702395,-0.2972283304084833,-0.42685410815019714,-0.2735077322818808,-1.0318671819403236,-0.26020056071109954,-0.46162626501630405,-0.7486292558150653,-0.4307393434868803,-0.4941196041132515,0.9789170859675644,-0.19825322215731045,-0.446594188771525,0.013609179507317987,-0.8392329325599384,0.08778878358955115,1
-0.6041810534904931,-0.846970639053286,-0.6186369928048595,-0.6017811228247364,0.0618939231259083,-0.6195425136570332,-0.5937159935175993,-0.7812776933072588,0.9761942506002894,-0.4419536361519057,-0.6426994496700517,0.0692110018062694,-0.7054479392476243,-0.5319370739882461,-0.3573407915868887,-0.41124299085034755,-0.39203923406370655,-0.773600131248796,-0.09956270452366349,-0.4493262317591286,-0.5382468011161596,-0.12656597246433285,-0.580264252363671,-0.549669645784829,0.23370693306522286,-0.34329307752742116,-0.21823206887219326,-0.5829689060482133,0.7736943370006013,-0.2607767082618256,1
-0.1895203271061369,-0.12557982985075208,-0.18655179230080454,-0.2951868610741853,0.792763011969882,0.17926234350605816,-0.5874385079666098,-0.44879326109609363,-0.3235415991341483,0.05279017992030378,-0.7412308832176141,-1.106846712403059,-0.7044578780262749,-0.5339172278558171,-0.8760284880806253,-0.6174753913554845,-0.55716120830249,-0.7181244256222359,-0.8478278565282036,-0.7594923322778964,-0.19034815071681455,-0.08422658668653404,-0.1596882138496697,-0.2826427049648094,1.316453449340977,0.36981954470895706,-0.03256790836580371,0.42777262838711483,0.9985658419844684,0.14985449914973334,1
0.2592221028166588,-0.5933203222691696,0.27848556839421795,0.09815253039243063,0.17575863024863086,0.6075657781889968,-0.1455035251769465,0.32244681051863405,-0.5243434860313229,0.8353076196677506,-0.11972491776375886,-0.6795687245963683,-0.278236522235352,-0.12094513791906893,-0.9726990741880699,-0.4073307230900875,-0.39568650658705323,-0.2848624088721122,-1.209852582174413,-0.211027886238612,0.10163821658263625,-0.8544777202595615,0.07264132583936767,-0.04163287226945265,-0.8271216375369325,-0.23324090656676705,-0.4154102858440954,-0.19499520467110926,-1.1708779578958566,0.08557215089097332,1
-0.8313924104134282,2.3457654584495415,-0.8773114503039507,-0.7647482025863929,-1.5564082268557817,-1.3031223760027677,-1.1148728439607505,-1.261819584082589,-2.744117072094633,-1.1025571269531924,-0.32869817792507255,4.860893234491917,-0.40842957284279996,-0.3856257048843903,0.18434783746344663,-0.9277741142835386,-1.0575006844597676,-1.9134474512424755,-0.07897935891836061,-0.7647878510672412,-0.9006412286154776,2.0555408330068223,-0.9552679580925149,-0.7752098466222781,-1.7402232542990361,-1.2679857694835313,-1.3058306525103973,-1.7450628184932908,-2.1593419114580334,-1.3796220628690292,1
-0.8257121264903544,0.13272462118628411,-0.8249998960007908,-0.7610508691886589,0.6433155838713087,-0.6926952241825263,-1.0520226586242432,-1.066223816087456,0.4687131182601579,-0.3568973927010958,-0.3882501432560169,1.359209512764049,-0.4490220829181259,-0.4558111586349617,1.9497527478945706,-0.8069409300309355,-0.9481819798281875,-1.107752042332755,2.6501301113376803,-0.6929200960689901,-0.8882162768155009,0.016736564014370327,-0.90403631600724,-0.7813625411112186,0.43973562239704694,-1.0023974378299292,-1.2417837134209837,-1.4371810193627945,0.6329474238092606,-1.0377064691133855,1
-1.2355446115400983,-0.5351436441076749,-1.2138353862542017,-1.0372132329732462,0.5223343325534168,-0.3847336837578469,-0.5707403964009776,-0.8032025782862727,-0.8310227314742799,1.1131580149403955,-0.007839407141984597,0.3758351204446165,-0.05893796170645662,-0.3843056023060096,2.2697657225950763,0.21471985079126021,-0.15496652004617606,-0.2540425724129122,1.485354907084658,0.3189022440379655,-1.0808030297151383,-0.6851201771483674,-1.0598162509525815,-0.9028343094500162,0.6282299551899919,-0.4946943300628878,-0.6821525939618022,-0.9328761139621006,-0.5949480602393346,0.040685338744771,1
1.7048543612388314,2.0851339402860454,1.6159313701450917,1.723841584349898,0.10245822503837819,-0.017833042365736514,0.6930429947242354,1.2636692256765407,-0.21766424058836595,-1.0586114011702743,1.3004992251287615,2.2609384297064072,1.1568572181106247,1.2915646209482317,-0.4240101613161609,-0.0697579049190775,0.2522017216510651,0.8084307371016176,-0.18916079715851145,-0.49055562804759906,1.536720149479935,2.0473986434341693,1.421939806341085,1.4949586285256702,-0.6912303743606236,-0.3948203945668026,0.2365731615155515,0.7338272358313767,-0.5318546163949409,-0.9739782790292705,0
-0.09011535845235304,1.0379537333791413,-0.016848167317324133,-0.16236726901712856,2.5576659723720776,1.373205546383277,0.8411916537275884,1.1050362343577922,1.6041565150787256,1.6178250594151975,0.5761307741032752,1.2938931324623892,0.5162876078975532,0.27244543043836605,0.5943644612984698,0.3130854401920844,-0.02565413058206861,0.18067933132738395,-0.06808229359790617,0.26897306688128575,0.6069195897816847,2.6336362926652264,0.6326150881667912,0.47888508149491743,3.955374108442208,1.6961708536856286,0.9230987782717359,1.320051235164913,2.477217320799246,1.3662316924943647,0
-0.8455931202211112,-1.4450268905534511,-0.8690734102562089,-0.7764090233023231,0.08395521013093608,-1.008426871165613,-0.8660333167195252,-0.8011390597000126,0.06710934446580873,-0.24774188027255695,-0.6499178697101662,-0.7898808335502826,-0.7113883065757208,-0.5468982365432269,0.6593670967845097,-0.9217939335642841,-0.6609426901031713,-0.5781374842312375,0.40412387028845365,-0.823038557750034,-0.8861454515155047,-1.527022578960746,-0.9236949693655431,-0.7731003513689271,0.0758977242153157,-1.0467999900441123,-0.9644388783079509,-0.9066863664594076,-0.06755158092465509,-0.8991669254522656,1
0.8925737602393397,1.426573943497926,0.8415556056573672,0.7790306960981997,-0.9287290288417756,0.1243030532148846,0.3967456767175294,0.2177232422659319,-1.2581831090555424,-1.2372295124169739,0.3783460650041391,0.8384928142480398,0.20639844561518653,0.39697510699894123,0.3560214645163221,0.9837599133795214,0.5811193892110514,0.9122449230694498,-0.5572394479827513,-0.02114571250639068,0.8512769751812247,1.5930644652801007,0.7606941933799789,0.7091716466524064,0.4923386920136831,1.0046869818114597,1.1102021958363146,0.9028424668080586,-0.6483348204153608,-0.2496935447689365,0
0.4466714722780801,0.23744264187697436,0.38022536298382864,0.3177172521655527,-0.027774533733235292,-0.3098753400853865,-0.2871235992072704,0.07663015893039471,-0.7068906559378453,-1.0359297362500586,-0.127304258805879,-0.12129510740690476,-0.2277433999465317,0.01414535926855125,-0.8050256093189506,-0.1591811680107358,-0.40961245622164943,-0.32914564757401565,-0.6141463446562357,-0.516276719310131,0.79536469208133,1.1631568558439922,0.6564437589041288,0.6828029559855183,0.3958997310498504,0.6389066448035048,0.08641067511115899,0.6013558385793826,0.8675256124614957,0.13101312121182068,0
-1.2466211651900914,-1.7033313415904874,-1.2657350385549746,-1.0420482074164368,-0.2747186173056393,-1.2000263280082906,-1.1148728439607505,-1.261819584082589,0.33362821252933117,0.2016386059592197,-0.7448400932376713,-1.3078760162203895,-0.8158397654280841,-0.6177437415829887,-0.3336731653329971,-1.1078502103343657,-1.0575006844597676,-1.9134474512424755,0.26972673133618197,-0.21745815905424487,-1.1698485176149709,-1.8852789201575029,-1.2132133188241896,-0.9452000057881498,-0.3931463131996872,-1.1592058779559482,-1.3058306525103973,-1.7450628184932908,0.33042244947844723,-0.13498280261752918,1
1.1141048332392014,-0.730617282730297,1.1628391675192957,0.9985954178713218,0.7215975700181805,2.0895714681096083,0.9993842896125248,1.523930507368601,1.2427131186638118,0.5574572243951058,2.076840300443072,-1.2089942738192658,1.7053511347382002,2.0783457576631017,0.29968584709508694,1.8394287620878265,0.48695344406282964,1.444292626154588,0.6499132325164823,1.2327574865420423,1.2675128604804415,-1.1020002832682299,1.2759891980748947,1.28225119047944,0.6764494356719076,1.9665302332132473,0.5105117549242036,1.4555679518939642,1.3755087244394388,1.4881464909161497,0
1.0970639814699807,0.3188899913030672,1.0639826869463944,0.9579247504962488,0.5152177883582464,0.4938569017244997,0.39297918538693577,1.0142414165623461,0.6585621749629403,-0.2987756263430425,0.1751475408749169,-0.6233240637810503,0.09650165004540151,0.20842045538690437,0.06334293140481768,0.12529658769960209,-0.22559097890734248,0.48725559926363776,-0.7751807543918405,-0.1735810033711022,0.9962347461809516,-0.04351563882326622,0.9185591370148372,0.8234359728755879,0.6939837922107868,0.7585009115121926,0.2778318638503047,1.2606675053622949,0.2576223219656846,0.060080874857327174,0
-0.9393178049518218,1.1449988211962918,-0.9506300067288525,-0.8341443063592449,-1.0276489931546398,-0.726239342739553,-0.9205218913021145,-1.0513406882840548,0.6001470805928536,0.06838382455295204,0.4129944811966883,1.2721210056951693,0.34550204721477934,-0.16142828365607576,0.40735687920786146,-0.3788270579796214,-0.6340855015221643,-0.9536528600367544,0.49856510306572605,-0.30937323518358706,-0.6707796203159103,0.9400608615532844,-0.6958333054397562,-0.6591876076879707,-0.5246539872412769,-0.5786647726455835,-1.0086720452296283,-1.2480666798375344,0.25600454135429,-0.4259158443058809,1
-0.6751846025289102,-0.402500817899467,-0.662298605057891,-0.6598008161430226,0.7785299235795423,-0.1366588182711361,-0.451719270354216,-0.1165667687082109,-0.7799095239004542,0.5631276406251595,0.11992662756804134,1.252163222825218,0.14006434378477578,-0.21291228421292127,-0.1513324391234382,-0.40956630466737903,-0.48156319600039643,0.22123174772106832,-0.26544025440169255,-0.5586408696248893,-0.5734508312160934,0.3749929052111271,-0.5582227319316343,-0.5770930840783927,0.1109664372930727,-0.43807789529122165,-0.6504889386816427,-0.2071764825793385,-0.6839259938660449,-0.35332112342745386,1
-0.5076162267982459,0.6819124630307937,-0.4991854121126044,-0.5414861474155371,0.34442072767416304,-0.053840853246160544,-0.44067089578447444,-0.5339134027793244,-0.9515038636125854,0.6822063814562939,-0.3979950103101714,0.7967629046108681,-0.45100220536082475,-0.41334785903038396,1.433065132492712,0.3505314316117163,-0.021343717599931637,-0.07236774696920618,-0.21216571283502633,0.587460696926167,-0.5568842288161245,0.4889835592282769,-0.5927743045007731,-0.5758625451806044,0.5624761181691971,-0.13018627248800396,-0.496008681102683,-0.49739542874290227,-1.0236599222589369,0.38093845797648074,1
2.5455363818536902,0.1257434198069045,2.4768065551341056,2.921208784692959,-0.2092464107100737,0.4388976114333264,0.9893403127309416,1.3253168434410625,-1.1194472599265857,-1.128073999988435,3.1971390906688364,-0.8557415170211229,3.350832884620927,3.077223375304463,-0.4293437108945025,0.45169149798415464,0.2608225476153388,1.5837929385488623,0.17770706863012198,-0.3396333425512718,3.007006112477167,-0.2942950776609959,3.1048396771655233,3.3425248879189593,-0.5465719329148746,0.6885255426932794,0.5143497737460412,1.702238829535608,0.011719669033686651,-0.6193170472568037,0
0.08881358512445783,-0.956342793996896,0.0824202152579639,-0.04206172846009397,0.2376725647466108,-0.04246996559971104,-0.04933244653578683,0.1651035183162983,-0.31989065573601827,-0.2817643776528803,-0.593975114399279,-0.8662647116252792,-0.369322154599498,-0.42104845740427116,-0.4450110127808815,-0.14017872460375844,-0.02499099012327823,0.5083428557883536,-0.7267493529675983,-0.47920808778471724,-0.08680688571700945,-0.9489271193023425,0.039876903575528796,-0.19984501627078094,-0.03369200415267572,0.12236119497661892,0.18284089800982642,0.6896701034140452,-0.33933872363896844,-0.3943288283511456,1
0.14561642435519184,-0.5677225838781113,0.09230586331525381,0.03160052923322018,-0.7081161587915008,-0.7080459225052335,-0.46301874434599716,-0.5419095373010825,-1.469937826147108,-1.3109449234076753,-0.666881156804435,-0.38256062861354345,-0.6905970209273831,-0.4478905431646778,-1.1687070211921295,-0.6454201610716277,-0.46067427154850216,-0.916831265951289,-0.9689063600888087,-0.9743390945884574,0.039513457582753035,-0.0386303250796739,-0.03756627632081685,-0.08716281148761264,-0.7964365135938952,-0.30067171651953783,-0.13667416890814627,-0.5531247751730514,-0.7211349479281235,-0.9966987641896937,1
0.5517567248549377,0.0838562115306284,0.4996769436760838,0.46305089572263214,-0.33307427970603454,-0.38094338787569715,0.11162228299158482,0.4503849628667626,-0.049720844274365794,-1.2599111773371898,1.2351725237657256,-0.36441718964086023,1.0707218918532255,0.8561507871790122,1.2597247711966046,-0.19271489167010766,0.1029951184232488,1.0209253990045233,-0.6105139895494175,-0.698593866200431,0.7249566318814625,-0.18193286155837707,0.641550839693293,0.6019389712737283,0.7728883966357404,-0.3165752094329272,0.051388753361891595,0.5693799840702808,-0.40566772870615203,-1.1125178226903905,0
-0.7405078676442541,-1.0145194721583908,-0.7455028095400825,-0.707012919529471,0.35153727186933337,-0.49768450104591405,-0.5714936946670963,-0.506313841688095,0.2606093445667222,-0.1584328246492072,-0.5376714380863863,-0.324501623900957,-0.584165439632321,-0.47781286827463926,-0.126331425474961,-0.7376379011349004,-0.3595453515829822,-0.2816182155606176,-0.4567442900274489,-0.3823757442081263,-0.749470981715762,-0.730716438755227,-0.7857865374732043,-0.6834468031015076,0.28631000268185897,-0.6111078981888978,-0.4403574081860391,-0.282091341714949,-0.38301880014662565,-0.3245048983459406,1
0.026330461970651087,1.9920512552276544,0.023930130918997358,-0.08813619080108599,-1.005587706149613,-0.008357302660361754,0.26994046858754084,-0.12482084305325147,-1.7145510338218473,-0.21371938289223355,-0.2518220044978536,2.0087446279861094,-0.3767476137596187,-0.22831348096069556,-0.244669556744419,0.16609595148517106,0.2190446987115503,-0.2735077322818808,-1.0524505275456264,-0.0778834138207994,-0.1075151387169704,2.4203109258617026,-0.141816710796667,-0.2049429631330459,-1.0638354508117938,-0.07420597743287345,0.1641305562533685,-0.4935887793965806,-1.6351809933661425,-0.3317089546163191,1
1.8752628789310328,2.7530022055800045,1.8012872712192813,2.173209797305251,-0.11886629943141334,0.18873808321143293,0.6013917056797882,0.968328128018058,-0.15559820282014816,-0.8587292290608719,2.7676430982820257,0.7260034926174035,2.4172051528884295,3.5062567132781757,-0.8300266229674275,-0.5979140525541843,-0.3469456828659665,-0.4081417547089127,-0.832087651065325,-0.5658276451247146,3.3590464134765052,3.4983368252810343,3.1793042732197017,4.485168150150775,0.3389130722984951,0.06447248077188172,0.34547694558519076,0.7810296877257652,-0.05299155542210237,-0.09785420491634887,0
1 mean radius mean texture mean perimeter mean area mean smoothness mean compactness mean concavity mean concave points mean symmetry mean fractal dimension radius error texture error perimeter error area error smoothness error compactness error concavity error concave points error symmetry error fractal dimension error worst radius worst texture worst perimeter worst area worst smoothness worst compactness worst concavity worst concave points worst symmetry worst fractal dimension target
2 -0.47069438129826874 -0.16048583674764855 -0.4481095638166051 -0.4919987619381755 0.23411429264902614 0.027650508220062278 -0.109847407247326 -0.2762315193200893 0.4139489672882012 0.132176007141058 -0.032742956280379557 -0.313615560517347 -0.18269561437513346 -0.22105291677960198 -0.029327492518870325 -0.35591234681238415 -0.16192949486347422 -0.23133321923244882 -0.3296118612888136 -0.07901816784708755 -0.2690395121166662 -0.16890535824213107 -0.33393536861644807 -0.35629924756098336 0.4485028006664865 -0.10474068382658099 -0.02441211836939911 -0.19956318388669517 0.18320441384152739 0.1969579439945135 1
3 1.3668774678159665 0.47014935452295303 1.3028858483309051 1.3512641419628648 -0.4462273324092394 -0.027308782071111273 0.241064035052989 0.7890599508367083 -0.8383246182705409 -1.1606788933112455 1.3845938185960949 -0.7608513311939894 1.2969508809315666 1.2257795091255954 -0.8656947357725882 -0.5006662539420059 -0.305167833962178 0.3088249671314266 -0.8090827353888098 -0.7931567017244454 1.7790067095794786 0.1470115971768269 1.7466054451373043 1.7322768445276626 -0.5728734677231926 -0.13145855192107514 -0.016736080725724137 0.9789754537344919 -0.56582800923423 -1.000577871412205 0
4 0.37850806520120006 0.04429607038081246 0.40082046310318303 0.26737663590409844 0.9137442632877749 0.34034991849742907 0.7256859195893812 0.8241397668031307 0.43585462767698346 -0.6857815340442261 0.2494972672880959 -0.7818977204023019 0.1128376601976668 0.175417890927388 -0.2670037956037252 -0.594560680188247 -0.12479362917121771 -0.14049580651059593 -0.7957640999971434 -0.5045509277051531 0.6193445415816617 0.052562198134045834 0.5253860698487741 0.48415881962829505 0.9745334968328441 -0.09456244836201186 0.512910516687852 0.5602440256391089 -0.10314275437533868 -0.2081316816706005 0
5 -0.49057537502902565 -0.3745760123819493 -0.432457287725896 -0.5321006087905202 0.6433155838713087 0.5165986770173993 -0.14299253095655062 -0.5398460187148223 -0.002258580098669168 1.1656093650683939 -0.8246036346809361 0.4411515007462763 -0.32773958330282255 -0.5479983220252108 0.9863803553065894 0.41759887893046 0.5542622006300445 -0.020460653985290372 0.16075607813163753 0.8359718286832771 -0.7018419998158516 -0.4506251174559445 -0.5257561680520122 -0.6412568980344869 0.5537089398997576 0.05493038502384811 -0.1529857489009556 -0.6228625911976643 -0.5577391061772564 0.5344402723530018 1
6 -0.7348275837211808 -1.1285457613549204 -0.7133744533538896 -0.716682868415852 0.2476357266198491 0.14514968056670913 -0.26904444082042056 -0.5927236824877384 0.02329802368824315 0.7119760666640774 -0.4575469756411158 0.9999694211049207 -0.6128772150514541 -0.4285290386817615 1.7030760798962636 0.8742164160922399 0.7837087993714866 0.5099649524441009 -0.2593863292236625 0.6494939170299207 -0.8302331684156101 -0.976610563849365 -0.8483367981587142 -0.7432158352797873 0.09343208075419482 -0.2701370101258303 -0.44371567465514694 -0.6916868113791599 -0.9249753049638587 -0.14440349158648552 1
7 1.8383410334310561 2.336457189943702 1.9825241522696002 1.735217994804464 1.5257670640724068 3.272143783340377 3.2969440012746944 2.6588657298116782 2.1371942512057704 1.0436954161222336 1.157935429336501 0.6860879268775003 1.4385296355845332 1.0095027033675648 -0.17299998428545157 2.01771639287682 1.3022846381454973 0.7857213839211542 0.32663362800966655 0.9040570702605678 1.9612393359791354 2.2379258794342634 2.3036006236225606 1.6531707725269984 1.430426766843689 3.9048479494971406 3.197604682563189 2.289985488607673 1.9190830098680665 2.219635281446862 0
8 2.2388010500077287 0.6074463149840804 2.2749745739644323 2.352388261964664 0.7073644816278408 1.7257030634232173 1.9585840818037257 2.6098571633880003 0.04520368407702644 -0.1981257382595843 2.17573265499264 -0.937931295567378 2.3241393980815843 1.9771378933205843 -1.021034367241792 0.1526824620214223 0.1281944558572799 0.47265672936191144 -0.649259110688811 0.0004146139930845462 2.3588377935783873 0.019993439843431684 2.613373343207944 2.3668833332441017 -0.1301309651165084 0.8539218689925288 0.9758715370720017 1.9580456656084237 -0.25844969306923216 0.09942610525708531 0
9 0.9777780190854404 -0.986594666640873 0.9486501262780098 0.8538305948369708 0.1501390711460184 0.2152701543864822 0.1249305523596827 0.7895758304832735 -0.2651265047640616 -0.1853673017419629 0.7042577298153069 -0.7154927337622812 0.8855804434608852 0.4568197572188642 -0.47134541382394396 0.27116828561786954 0.07215908708950007 0.2828714206394686 -0.15646960119714812 -0.02001095848010252 0.7746564390813695 -1.0026655704818563 0.8232444540654887 0.6089706221182318 -0.3010909413705743 0.171343953149858 -0.1117270465662024 0.4719297608044463 -0.23418298389831127 -0.2635474991350485 0
10 -0.2236020306445774 -0.7981022293976306 -0.225682482527578 -0.38363845235843524 0.814112644555393 0.9316360761128133 0.3528032778606028 0.5404059611923614 0.476015005056419 0.8820885535656954 -0.43011697948868083 -0.36441718964086023 -0.6589150618442019 -0.6023425448352143 -0.0823296414536417 0.5740895893408617 0.2621488285329196 0.3299122236561424 0.09658447124451688 0.3056634470646037 -0.15307329531688477 -0.4050288558490844 -0.3157660071792285 -0.46704774836191315 0.9306976054856475 1.4302644521737586 1.0248062770504298 0.85564001491367 1.0131258674870212 0.978320970243229 1
11 -0.06455408079852291 -0.6212451277866864 -0.12353078593558005 -0.15781670483530214 -1.9983456213758481 -0.969386823579469 -0.835650286652736 -0.916438160707298 0.005043306697590916 -1.0543585889977336 -0.9011188871061494 -1.1623656356594698 -0.7297044391706851 -0.5788007155207593 -1.2443767558348533 -0.6890140018288111 -0.7291135292668136 -1.1296503471853445 -0.8938376878812336 -0.6429909189123104 -0.23383548201673252 -0.6313817259688536 -0.1805383007448398 -0.28422482640482266 -1.6889352614228161 -0.3413846583778145 -0.6418533963325084 -0.7976639291807551 -0.3587520909757048 -0.38601645573147775 1
12 -0.260523876144554 1.3870138023481093 -0.32412706109809203 -0.3327290155742529 -0.6013679958639486 -0.9909915101077236 -0.7668490450138906 -0.7284000295343427 -0.7032397125397152 -0.9863135942370859 -0.7101916770451219 0.2415736720467607 -0.7683168268033121 -0.500694646299904 -0.4243435081648073 -0.9722621876716385 -0.5568296380730948 -0.8670328986198447 -0.8563033517774461 -0.7439840272519579 -0.3974306807164248 1.3927666017928222 -0.47571595950360396 -0.43540531956164746 -0.15204891079010668 -0.9412644110708606 -0.6389748822161301 -0.8307056455068271 -0.7389305346534653 -0.8903003946579543 1
13 0.7534068041240426 -0.11394449421845299 0.7138659849173696 0.6581563350184371 -0.5487055688196892 -0.23729117394221586 -0.057493177752073195 0.43439269382324663 0.2971187785480267 -1.0571937971127605 0.6995657567892326 0.31596177183476193 0.6251943422459887 0.5941104253704523 -0.30600537689534935 -0.04348982138590299 -0.18679726206811031 0.6883955845763118 0.04452071471345668 -0.11419554266202105 0.7829397402813537 0.10141533556996735 0.6981439326944681 0.6669817415853855 -0.682463196091184 -0.26950087040929466 -0.19376469888297917 0.4993376360979623 -0.14682283088299591 -0.6464707978143834 0
14 0.23934110908590245 0.10945394992168675 0.1454412216231884 0.10042781248334401 -0.8646801310852444 -0.9631328353739218 -0.870427556605218 -0.7616742667377875 -1.082937825945281 -1.4371116845263765 -0.7982564015345184 -0.27551433867471237 -0.782177683902204 -0.5213762533612009 -1.1357056831761398 -0.9777952520754349 -0.7833584187958598 -0.8701148822657647 -0.15768038623275413 -0.8604854406175438 -0.05988615681705996 0.02325031567249304 -0.14777387848100138 -0.17312474306166764 -1.2216446596617017 -0.9816592830708696 -0.9340225791448886 -0.8689244049438967 -0.4121388511517311 -1.2798735914330228 1
15 0.6057194221241351 0.6027921807311609 0.6397236244876939 0.4889322295067693 1.4332519895351954 0.4540587949619259 1.1437664572852841 0.796798145535184 0.20949613699289657 0.3575750522857043 0.5970641922196073 0.4357084690544715 0.04699858897793073 0.3824539786367539 1.173054590548551 0.6752496557133005 0.8785378849784987 0.010359182473909882 2.382546618468742 0.9048135729447596 0.30250827068225794 -0.07608439711388038 0.19178467952605355 0.16632820145673788 0.4485028006664865 -0.2714092895589013 0.29846121501768114 -0.15083807225377796 -0.2665385961262058 -0.2447061211971358 0
16 -0.5076162267982459 -1.633519327796694 -0.5366684943298292 -0.5301097369609712 -0.4504972589263418 -0.782146207001264 -0.7434967987642096 -0.579052871853765 -0.44767367467058394 -0.6687702853540639 -1.0415171568863757 -1.30842031938957 -1.0369204361554085 -0.6904593919421231 -1.1200383812897612 -0.9115102583087433 -0.7679735601519249 -0.9823639708434829 -1.1202544895395652 -0.9187361473003368 -0.5506717529161363 -1.0433765183451242 -0.5969443218798071 -0.5549433839182066 -0.13889814338594675 -0.2981271576533955 -0.446594188771525 -0.11581689826761869 0.33851135253542086 -0.4447572222437928 1
17 1.4123197392005535 1.629028783499927 1.5294319496438036 1.3569523471901477 1.7890791992937018 1.4167939490280008 1.3170250584925953 2.5273164199375944 -0.6484755615677585 1.3385570600850396 0.4108289551846542 3.071950151785349 1.4528855232940996 0.5888300150569294 0.1680138418797748 1.957355690289951 -0.3499298149305228 1.0760766852999342 1.2129282740732965 2.4946039637744923 0.840922848681244 1.1468724766986849 1.0138738199641864 0.7337824246081686 0.2994607700860177 0.17452465173253587 -0.13907293067179471 1.0581537601379827 -0.9540953559689637 0.4479915971084628 0
18 0.19389883770131544 -1.068042016066966 0.11084145342267289 0.07340883765375 -0.828385755689876 -1.02680980619404 -0.6859950311171454 -0.6063944931217119 -0.5572019766144973 -1.3208681518102698 -0.674821418848561 -1.0770914724878586 -0.5886207151283934 -0.4316092780313164 -0.11099747043722843 -0.7549636583589091 -0.566113604496159 -0.20051338277324884 -0.5741904384812357 -0.7625183430146649 -0.13650669291691594 -1.3185825259008148 -0.16564538153400407 -0.21162303143532413 -0.809587280998054 -0.9743436763307105 -0.7776233121550101 -0.5337869964937374 -0.9168864019068851 -1.2482865754782875 1
19 -1.126767174413243 0.06989380877186999 -1.121981239721881 -0.9760650267799545 0.2803718299176319 -0.5552969984545926 -1.0517841141733055 -0.9739587412992994 -0.0752774480612781 0.07263663672549282 -0.5813428793290787 1.5841881560253213 -0.60297660283796 -0.5178559798188525 1.9564196848674975 -0.1820958791779733 -0.9191032707102331 -0.7646785996421854 0.6269083168399674 -0.5737709233087317 -1.1636360417149825 -0.4555104311995368 -1.1730024369549334 -0.9374651898591959 -0.25725505002337773 -0.854113269905487 -1.2576155410610637 -1.4052051648536925 -1.033366605927305 -0.9157916706916004 1
20 -2.029648303985755 -1.3635795411273588 -1.9845040327204433 -1.4544430863944506 1.468834710511046 -0.5431680516317129 -1.1148728439607505 -1.261819584082589 0.4322036842788534 2.1806138702480538 -0.6535270797302234 0.528240007815156 -0.6500045108520571 -0.6711418908784862 1.0497162565493976 -0.8181188379173927 -1.0575006844597676 -1.9134474512424755 0.7322466149376937 0.1154030219902864 -1.7269005233139223 -0.999408694652795 -1.693361034181534 -1.2224228403326993 1.141109883952192 -0.8528409904724158 -1.3058306525103973 -1.7450628184932908 0.050546403707160244 0.5471859103698246 1
21 1.8241403236233726 0.3654313338322628 1.8877866917205708 1.8575144071910474 0.5863832303099479 1.318246256092103 1.5028386308018853 2.148144879712294 1.1514395337105507 -0.04077168787558776 1.0590430747869328 -0.4114086965801099 0.9108270046052953 1.0438253704054619 -0.821026258053976 0.03810890618523515 0.27043808426779825 0.39155189657454265 -0.1286215453782088 -0.41830962170725183 1.6630404927796971 -0.032116573421551185 1.5768261661337764 1.6320758199934882 -0.244104282619219 0.3768170815908483 0.8209115271403122 1.5256102998662826 0.2851245923593946 -0.4575028602606163 0
22 -0.09295550041388966 -0.8143916992828492 -0.06339309358706488 -0.2013314748240166 0.3088380066983123 0.44837335113870114 -0.13696614482760072 0.0456773801364926 -0.5462491464201062 0.405773590241162 -0.4564642126350985 -1.081990201010483 -0.4500121441394753 -0.3737447816789643 -0.7746910460921319 -0.26984245608666285 -0.47426865095370313 -0.42014526996144314 -1.0100730512994145 -0.2515007798428902 0.06229253588271004 -0.7844548899347408 0.09051282889237038 -0.11985998791455385 0.38274896364569166 0.6357259462208269 0.027401135725407144 0.36077559989185376 -0.5043523460012301 1.0559031146934559 0
23 -0.5757796338751264 -0.3652677438761104 -0.5725039685375061 -0.5935332252451762 0.46540197899205593 -0.1281306525362987 -0.5143685761530916 -0.4039117318449356 0.45776028806576674 -0.1683560530518017 -0.4369744785267894 0.7895055290217947 -0.4935748378788496 -0.39860671357180005 0.3683552979162376 -0.5124030572227859 -0.44641675168451084 -0.6947662337794737 -0.047498947992603284 -0.7553315675148398 -0.5610258794161167 0.019993439843431684 -0.5638820412317518 -0.5644361125582863 0.47480433547480394 -0.4896052123306031 -0.5367876310847065 -0.7909642263312291 0.2398267352403428 -0.7279320494871218 1
24 2.125195371546261 0.6958748657895529 2.1596420132960485 2.1390805659415535 1.447485077925535 1.9777577395861858 2.4130740356953684 2.767200455590336 1.2792225526451164 0.4624777525417013 0.7905178492946748 -0.5369612942710779 0.6395502299555557 0.894433761952051 -0.6086843154662445 0.6584827938836145 0.5068476578265384 0.17581304136014203 -0.011175396924421953 0.08816892535937021 2.0627097756789445 0.49875418671546096 1.9282990595095002 2.1102280774197246 0.7816555749051799 2.0193298296856996 2.0778626912920966 1.942819068223137 1.5000778315168324 0.928446734525226 0
25 -1.1636890199132202 0.46316815314357423 -1.1854141480894926 -0.988579078279977 -1.081023074618416 -1.2360341388887146 -1.0838620653388622 -1.1287484292511383 -0.6630793351602797 0.22573787493694955 -0.7942862705124554 0.22524457697134553 -0.8326708061910242 -0.6322648699451758 -0.4390107695052471 -1.1055587392176418 -0.9887330188832141 -1.3413339607603767 -0.737646418288053 -0.523463494809956 -1.068378077915162 0.5313229450060757 -1.1122393265747235 -0.8864857212365457 -0.8665739397494092 -1.1662034148378395 -1.2465812369482807 -1.352368871926748 -0.8926196927359642 -0.1848570383355322 1
26 -0.7177867319519606 1.2101567007371652 -0.7306743374541474 -0.676012201040779 -1.5386168663678563 -0.8994558645538034 -0.8670377144076835 -0.9231445961126434 0.45045840126950565 -0.5695380013281196 -0.5557174881866724 1.0326276112557506 -0.4480320216967765 -0.48683356922690707 -0.30633872374399573 -0.117822908830844 -0.5283145983451123 -0.7783042115504634 1.380016608986932 -0.5991137632291678 -0.7929583130156803 0.9677443061003068 -0.7705957598781517 -0.7103428675817335 -1.6183594763538303 -0.7516947755432596 -0.9585379243693757 -1.0119021543917384 0.5552939544623142 -0.9141291961676669 1
27 -0.16963933337538054 -1.9430192556158457 -0.16719239818861145 -0.27214962990368924 2.3299365581266325 0.006803880868237755 -0.2514674812776499 0.42923389735759615 2.159099911594554 0.5120938945546739 0.017785984000421726 -0.36804587743539685 -0.10596586972055369 -0.16912888202996293 2.1197596407042143 0.16274257911923382 -0.6722160779026063 -0.5770020165722143 0.6269083168399674 0.8961137920765505 -0.45334296381631944 -2.1474574243969475 -0.4736309508140872 -0.4835721278464963 0.5580925290344779 -0.7402442606456193 -0.8961701185145162 -0.6172287501651083 -0.3086008920224685 -0.6669746502762289 1
28 -0.24064288241379767 -1.2960945944600246 -0.2545156226946737 -0.32163701538105116 -0.9059560874172311 -0.3523266539654652 -0.47745696111327307 -0.5230799302014587 -0.7105415993359753 -0.9721375536619515 -0.8007828485485584 -1.2447368485954518 -0.6306983170357435 -0.551738612663956 -0.9233637405884086 -0.2653712929320801 -0.11982007573029047 -0.5398560031555995 -0.7182738577183562 -0.4470567237065523 -0.4202097590163818 -1.3527797221059594 -0.31785101586874526 -0.45157811650400537 -0.6912303743606236 0.0905542091498402 0.06913959041289025 -0.3483270403409458 -0.2665385961262058 -0.5954882457470911 1
29 -1.0898453289132666 1.9362016441926189 -1.0832624514974947 -0.9484772314276323 -0.4312825895993819 -0.5261117201620383 -0.36170012755302605 -0.5555803479350558 -0.7981642408911065 -0.2165545910072604 -0.6686857618144637 1.8545253967183017 -0.7074280616903231 -0.569339980375698 1.6697413950316278 0.10517635350397883 0.535362697554521 0.8781808932987547 -0.25575397411684453 0.4323776466667829 -1.1242903610150565 1.5035003799809108 -1.1226643700223087 -0.9193586889345994 0.2643920570082607 -0.5296820144723443 -0.3463259470510201 -0.3553312751381777 -1.0916067079375154 -0.06183392356445786 1
30 -0.38833026441370516 -0.10463622571261402 -0.41598120763041224 -0.4501904535176457 0.02844616540860876 -0.47039437069443485 -0.777395220739553 -0.8024287588164253 -0.19210763680145262 -0.1371687637865042 -0.6636328677863836 0.12364131872431922 -0.6589150618442019 -0.5077351933846007 -0.4776790039482248 -0.5040196263079432 -0.5505298037145872 -0.29183742449182587 -0.175842161766845 -0.6286173679126602 -0.5216801987161909 0.050933760219514866 -0.5790728188268044 -0.5289262757935437 -0.11259660857762929 -0.44761999103925526 -0.7037414498346382 -0.479428043828264 -0.25359635123504853 -0.6409292160679385 1
31 0.8726927665085827 1.2171379021165447 0.9156979660870429 0.7807371576663847 0.7642968351892016 1.4907047187299236 1.0094282664941079 0.7872543720737306 0.4212508540844623 0.2937828696975963 0.6696093136227577 -0.3190585922091522 0.4153013633199131 0.6409740669029654 -0.4070094720351966 1.7147950891538277 0.3523359309283997 -0.08534452021518521 -0.6383620453683566 0.9471777232595182 1.460099613380079 1.3260006472970636 1.320667955707402 1.4070629929693768 1.145493473086911 3.086136134315857 1.8442232955127378 1.1464680249726453 0.6669208166485496 2.768251874344896 0
32 -0.8512734041441845 0.7331079398129096 -0.8435354861082098 -0.7863633824500682 -0.049835820738263065 -0.42453179052042095 -0.5092210380012802 -0.6796494029339468 0.7972980240918982 0.38592713343597296 -0.451772239609024 0.4538519080271548 -0.4316960115445112 -0.494754184697191 -1.1820408951379842 0.28122840271568106 0.08475875580651562 -0.25242047575716464 1.038575228946025 0.35105360811613046 -0.8799329756155165 0.42058916681798725 -0.8775269198119524 -0.7804835847556557 -1.0375339160034758 -0.48387995488178304 -0.5554979728411643 -0.7685811281748575 0.43396040860770985 -0.200927625400222 1
33 -0.5871402017212729 -1.524147172853084 -0.6231679148311174 -0.5867073789724365 -0.23130769771510146 -0.9841689775198538 -0.8672888138297232 -0.755483710979007 -0.8091170710854976 -0.5284274836602286 -0.8047529795706213 -0.8860410601055038 -0.8391062041297953 -0.5959620490397078 -0.5043467518399337 -0.8768587438607256 -0.7809047990983355 -0.895906219092148 -0.7134307175759319 -0.47845158510052505 -0.6480005420159529 -1.1834221789947654 -0.6904718545238555 -0.6113723819453472 -0.21341915867618116 -0.8337567989763486 -0.8915165206930383 -0.6753943521769031 -0.6256858918558346 -0.2751848208025826 1
34 -1.2454851084054763 -0.03947834617173973 -1.2373138003902657 -1.038635284280067 0.792763011969882 -0.3981892341394791 -1.0027067321356695 -0.754451951685877 2.6519772703421642 1.0621242688699097 1.0514637337448127 0.961868199262286 0.8618189741484992 0.07002970175333244 2.0097551806509153 -0.37044362706477857 -0.8578622493409495 -0.20700176939623835 1.2662028156399627 0.1626844397522934 -1.0476698249152006 -0.4082857316781457 -1.0565398087261977 -0.8783993227653667 0.3257623048943364 -0.7574200329920798 -1.2058022869662572 -1.046314264482486 0.4776404851153671 -0.21367326341704546 1
35 -0.12703720395233015 -0.6887300744540209 -0.1733709282244174 -0.22579075730133333 -0.2555039479786794 -0.6024861821873587 -0.894909750254077 -0.776892716311456 -0.6594283917621496 -0.1768616773968823 -0.7235457541193336 -1.3367240841869559 -0.7391100207735044 -0.5079552104809976 -1.0710363945387462 -1.0199918543468112 -0.8228152760938823 -1.089908979119534 -1.211063367210019 -0.7935349530665415 -0.08680688571700945 -0.891931792293768 -0.1686239653761715 -0.18841858364846278 -0.2616386391580969 -0.622558413086538 -0.727249315118393 -0.4197397820779402 -0.153293953328575 -0.3394671690613419 1
36 -1.1210868904901699 -0.4094820192788458 -1.1059170616287846 -0.9720832831208565 0.6931313932375001 -0.36616123393531247 -0.8929009548777604 -0.7678648224965678 0.3591848163162445 0.890594177910777 -0.5719589332769299 0.00026593371007337146 -0.6064418171126829 -0.5563589716882882 0.2860186263005864 -0.6415078933113676 -0.7745386506939488 -0.6767609609006778 0.7056093441543608 -0.012824182980277442 -1.055953126115185 -0.46202418285765956 -1.052071932962947 -0.8877162601343337 0.3608310179720934 -0.7014397379369494 -0.9905374062964459 -0.8961800142635598 0.24953341890871095 0.22300337820280466 1
37 -0.7405078676442541 -0.12557982985075208 -0.7673336156665983 -0.699333842472639 -0.07972530635797694 -0.9402015452869148 -0.7337039213046659 -0.6742326666450139 0.39569425029754896 -0.5284274836602286 -0.28971870970845437 -0.467653357395428 -0.3381352261269916 -0.3711045765222031 0.42902442436987515 -0.9364928824349753 -0.6102124450057136 -0.5070896507095024 1.4090754498414768 -0.5329197783623574 -0.7101253010158362 -0.5222763856952961 -0.7580857077410497 -0.6581328600612952 -0.32739247617889233 -1.0627670969291552 -0.8704074171729319 -0.7833509276385857 0.6555963523687869 -0.752869167346123 1
38 0.537556015047254 0.9192733099296918 0.4420106633418918 0.40645325371116653 -1.0176858312814026 -0.7135418515343508 -0.700684347306461 -0.40468555131478307 -1.0354755617695854 -0.8261243357380614 -0.09265584261332961 -0.054164383207976445 -0.19804156330604922 0.0038045557379028138 -1.0040336779608279 -0.9059213043655148 -0.6924418618957103 -0.6821138798646442 -0.7194846427539621 -0.2847868979473433 0.604848764481689 1.3357712747842483 0.4926216475849352 0.4736113433615398 -0.6254765373398288 -0.6308282294015006 -0.6058719698777817 -0.22620972931094682 0.07643089348947567 0.03181880795045893 0
39 -0.6780247444904469 -1.2262825806662314 -0.7302624354517607 -0.647286764643 -1.2973660181515883 -1.1549218070107066 -0.8330137427213203 -0.549131852352993 1.0565150053591594 -0.23640104781244947 0.5656640650451092 0.09279747247075786 0.42124173064800957 -0.055160026096433085 0.33102045086784493 -0.6180342867498073 -0.5555033571555142 1.0809429752671766 1.0494722942664794 -0.6770335397009557 -0.6127965119160192 -1.207848747712726 -0.6720046347024191 -0.6097902605053337 -1.2610969618741783 -1.0767621706929378 -0.9827174429469521 -0.48277789525302706 0.32395132703286816 -0.9457162121224022 1
40 1.170907672469935 0.1606494267038018 1.13812504737607 1.0952949067351319 -0.12313622594851477 0.08829524233446058 0.30007239923229057 0.646935108208041 -0.06432461786688697 -0.7623321531499545 0.14988307073451626 -0.8049398878976097 0.1554102927156918 0.2986274649095823 -0.909029826096615 -0.6515680104091791 -0.3101413874031051 -0.2280890259209542 -0.8296660809941128 -0.6112178061762416 1.3689833001802503 0.3228828919461442 1.368325297182076 1.2752195396349364 0.5186402268220005 0.02121498004746253 0.5095522502187443 1.196715796344091 0.26247566379986914 -0.014730478719676948 0
41 0.13993614043211808 1.1007845457935554 0.10713433540118895 0.02221499060820344 -0.4711352370923351 -0.346451695348133 -0.7254176403773597 -0.49909152663618456 -0.46227744826310513 -0.5865492500182818 -0.11936399676175319 -0.19205451940036933 -0.2906122875022196 -0.14470698432992082 -0.7243556719465315 -0.4078896184844103 -0.6858104573078074 -0.5174710693062855 0.03725600449982024 -0.3411463479196559 -0.03296542791711084 0.5590063895530976 -0.12990237542799823 -0.1351538285013488 -0.9147934202313256 -0.4940581903463522 -0.8649862155870864 -0.6874233641112798 -0.6127436469646772 -0.6364959506707828 1
42 -1.0330424896825325 8.179497807621169e-05 -1.0115915030821416 -0.9066689230071024 0.25119399871743475 -0.3517581095831429 -0.7388514594564772 -0.9520338563202855 1.480024439542291 0.2852772453525167 -0.18108148810473185 0.5754129491441325 -0.2792265834567013 -0.37858515779969343 0.18468118431209302 -0.1837725653609418 -0.10257842380174281 -0.5161733919816878 0.7939966517536023 -0.13008209903005546 -0.9793325900153296 -0.38548760087471623 -0.9841602213615361 -0.83990103439171 -0.45890015022048203 -0.6721773109763128 -0.9226524483851951 -1.2573549042425591 -0.12093834110068048 -0.46692354922957185 1
43 0.27058267066280584 1.5010400915446385 0.2484167222199604 0.1755121214834789 0.4298192580162052 -0.12604598980111628 0.4356660871336646 0.42846007788774887 -0.6010132973920619 0.2611779763747869 0.895906781880346 0.5246113200206194 0.647470719726351 0.5067636381009322 1.1597207166026966 -0.06528674176449477 0.5711722823291969 0.918733309692439 0.079633480746032 0.40552180137796284 0.4640326440819541 1.2282943724252204 0.41517846768858957 0.29782007224895285 1.4742626581908855 -0.11873575759036366 0.6270915766375179 0.578515942501453 -0.3991966062605729 0.5782187681499157 0
44 -0.714946589990424 -0.760869155374274 -0.680010391160536 -0.7016091245635522 0.8852780865070935 0.23611678173830672 -0.22384654485329583 -0.10186419878110736 0.27156217476111333 0.057042992092844566 -0.5759290642989928 -0.8762436030602548 -0.5935710212351405 -0.5378775355909591 -0.3856752737218293 -0.3033761797460349 -0.1851394109211345 0.20176658785209978 -0.2497000489388141 -0.685733320569165 -0.751541807015758 -0.9782390017638953 -0.754511407130449 -0.7117491977506342 0.4002833201845696 -0.2370577448659804 -0.20144073652665428 -0.06252380741911535 -0.18403178494507497 -0.5361933210601318 1
45 -0.6496233248750801 -0.08136555444801583 -0.6779508811486001 -0.6452958928134509 -0.5444356423025878 -0.6697639340955194 -0.7797806652489291 -0.9025094102500422 -1.0172208447789333 -0.3157868750332047 -0.6603845787683321 -0.6380202493489238 -0.7039628474156002 -0.5108154327341556 -0.5080135671750435 -0.458749099367791 -0.379439565346691 -0.8190188376097224 -0.5306021771994179 -0.33017705899887023 -0.6148673372160153 -0.11191003123355645 -0.65651599872315 -0.5876405603451479 -0.19150121300258288 -0.4215382626612968 -0.6001149416450253 -0.6924481412484244 -0.5917124990165454 -0.22253979421135678 1
46 -0.6354226150673965 -0.4490421604286626 -0.6495296429838912 -0.6236807129497757 1.8602446412454032 -0.6110143479221961 -0.3704886073244114 0.647966867501171 0.7425338731199415 -0.5737908135006604 0.8518744196356478 1.9524999671707919 0.5717310362931205 0.18707879703641714 2.3797701826483753 -0.5917662032166328 -0.6374012038161158 1.1847571612350083 0.755251530614209 -0.29991695163118565 -0.8012416142156645 -1.0889727799519844 -0.8280824280319778 -0.7175503096973496 0.15480232864026927 -1.0851592149512073 -0.9626637946028511 -0.38289141640554664 -1.1013133916058835 -1.3086898165145355 1
47 -0.7916304229519143 0.4585140188906548 -0.8027571878718878 -0.7348851251431574 -0.6241409372884931 -0.7313562421804553 -0.4704261772961648 -0.7719918596690881 -1.1851642410929335 0.3533222401131635 -0.6163522165236339 -0.4186660721691832 -0.62822316398237 -0.5264366465783268 0.6907017005572677 -0.5537613164026779 -0.24747461404742224 -0.8696282532690406 -0.5887198589085086 -0.49849890623161613 -0.6749212709159025 0.5655201412112203 -0.693152579981806 -0.6372136987988972 1.6452226344449512 -0.22051811223605555 0.19099668800623104 -0.48460508693926135 -0.11608499926649685 0.24239891431536084 1
48 -1.3724394540861664 -1.2542073861837486 -1.318458494860522 -1.12936215765523 2.899260093740244 0.3441402143795788 -0.6965412068428078 -0.637347271915614 1.407005571579682 2.007666175231408 -0.18541254012880046 -0.1575819853522713 -0.23665395093867655 -0.45559114153856495 2.8064541489157167 -0.004367143783302539 -0.32904089047862856 0.6494652648383753 2.3522769925785907 0.040131004913170676 -1.1802026441149513 -1.276243140123016 -1.1741938704918 -0.9738539829795013 2.307144593787619 -0.28349594417307733 -0.8262702007218007 -0.6393073163737738 1.262264081641808 0.3255226405120328 1
49 -1.3360856369784968 1.999032456607033 -1.3472916350276183 -1.09096677237107 -1.0767531481013144 -1.0353379719288773 -1.1148728439607505 -1.261819584082589 -0.25417367456967044 -0.31295166691817783 0.47759934055571285 3.1027939980389103 0.37223370019121343 -0.24701493415442152 1.516401844654302 -0.7957630221444781 -1.0575006844597676 -1.9134474512424755 1.1499674522217818 -0.17812001947625483 -1.19676924651492 1.394395039707354 -1.2141068939768398 -0.9668223321349979 -1.098904163889551 -1.1621321206520119 -1.3058306525103973 -1.7450628184932908 -0.688779335700229 -0.7899977650473032 1
50 -0.6979057382212037 0.16995769520964074 -0.6903079412202132 -0.6788563036544204 0.3728869044548434 -0.18593266473908465 -0.5875640576776295 -0.7054433852621986 0.17298670301159208 0.2569251642022461 -0.7163273340792192 -0.6211468511043282 -0.7292094085600103 -0.5499784758927817 -0.5966838289149756 -0.458749099367791 -0.44741146237269624 -1.054060643027517 -0.7328032781456287 -0.4251181458649808 -0.604513210716035 0.510153252117176 -0.6034972063325748 -0.5800815356873065 0.9920678533717232 0.26803719006326515 0.017326336318083727 -0.5086631108080144 0.49381829122931437 0.3077895789234094 1
51 -0.35140841891372804 -0.8353353034209873 -0.324950865102866 -0.3933084012448162 -1.2938077460540036 -0.1618642858874329 0.2850064339099158 -0.38740358315485446 -1.385966127990108 -0.4887345700498505 -0.4109881663823774 0.31233308404022525 -0.2569502059763395 -0.375064884257345 -0.20766805654467302 0.7898232115494875 1.5708565239555665 0.9641520160533653 -0.21337649787063234 -0.037410520216521206 -0.4906178192162492 -0.9749821259348339 -0.45099371361361673 -0.5009754636866424 -1.4513447303210112 -0.14354520653525113 0.29846121501768114 -0.19651786440963795 -1.4588429067241178 -0.7024407734534757 1
52 0.8698526245470467 0.6470064561338972 0.8086034454663997 0.777608644791379 0.0640288863844595 -0.27273044044031736 0.02273308758957297 0.42175364248240316 0.20219425019663548 -0.9919840104671396 0.054599926205005436 -0.8682604899122743 -0.023295757737877662 0.1118329500687198 -0.8493607401889166 -0.7499335998100033 -0.37844485465850547 -0.3116270036919439 -1.1020927140054744 -0.8396816168022606 1.0997760111807569 0.594832023672773 0.9900451492268488 0.9763743787435386 1.0271365664494803 0.01548972259864229 0.5599262472553617 1.2758941027475814 0.5099960973432616 -0.45694870208597127 0
53 1.2788330670083286 1.354434862577672 1.352314088617356 1.2318118321899227 0.7144810258230102 1.598728151371196 1.7966249545881956 1.9469518175519298 1.3558923640058553 -0.11732230698131613 1.535819718436493 0.45203756412988627 1.340513574670941 1.4226948104007096 -0.2643370208145543 0.4617516150819662 0.6653382274774189 -0.035059523887016705 -0.057185228277451726 0.28939863935447296 1.4248955832801449 1.3569409676731468 1.5857619176602782 1.387725953146992 0.7334360944232642 1.0905658435437622 1.6364905267807826 1.068812378307683 0.8788500767412585 0.7688491802276164 0
54 -0.28892529575992126 0.7563786110775069 -0.2038516764010623 -0.35690388779020543 0.27325528572246155 0.8330883831769157 -0.021962609533472437 0.05418939430481578 0.14012821242841766 1.4604710090311999 -0.7654125903519976 -0.5344212128149023 -0.6806964087138889 -0.5554789033027011 -0.5966838289149756 0.27563944877245244 -0.21995428500762498 -0.5664583883098563 0.5566827847748163 0.1524716535157001 -0.3560141747165025 0.5671485791257512 -0.2317699428301147 -0.42415467821044195 0.1109664372930727 1.1828061024414203 0.21114628682087788 -0.03054795291001331 1.98541201493525 1.3108158750299168 1
55 -0.05319351295237641 -1.4240832864153132 -0.06833591761571012 -0.17260603842623762 2.0239251577343165 -0.12869919691862125 0.15317923733913563 0.44445234693126484 0.6001470805928536 0.2512547479721923 0.5086385467282052 2.5730055800365585 0.6063831790403502 0.09687178751373905 0.9997142292524439 0.3907719000029624 0.52176831814932 2.714394307604782 -0.4107344586744191 0.6555459385034573 -0.3415183976165301 -1.6768388670975714 -0.37950770140160545 -0.3995439002546798 0.30822794835545725 -0.7497863563936529 -0.5578967346048128 -0.19956318388669517 -1.198380228289567 -0.6326168434482714 1
56 -0.6325824731058599 -1.0796773516992646 -0.5708563605279575 -0.6316442002679719 1.3407369149979829 0.4786957181959002 -0.649083416077327 -0.4872262947651887 0.6695150051573325 2.210383555455837 -0.03238203527837387 -1.0215725492314476 0.0767004256184132 -0.336781909484306 1.0430493195764707 1.2257616191213216 -0.13275131467670115 -0.11292016336289057 1.298894011601326 2.1288349159676043 -0.6459297167159569 -1.4928253827556006 -0.6255387267646115 -0.6521559568434672 0.43973562239704694 -0.01631726322813643 -0.8539039362390306 -0.8250718044742711 -0.2810986216287585 1.089152605172125 1
57 -0.271884443990701 -0.24891438755312104 -0.31671282505512416 -0.3344354771424378 -1.5443101017239922 -0.84146433755691 -0.5048267981155875 -0.5215322912617636 -1.305645373231238 -1.0359297362500586 -0.732207858167471 -0.9649650196366759 -0.8069292144359393 -0.5158758259512815 -0.3573407915868887 -0.5895306216393412 -0.5389248456857569 -0.5406670514834732 -1.163842750821383 -0.8029912366189429 -0.283535289216639 -0.2910382018319346 -0.362231915117036 -0.33924749426306233 -0.1827340347331433 -0.367466386755773 -0.4058152387895016 -0.15388339173083537 -1.0770466824349627 -0.8143807247316601 1
58 -1.101205896759413 -0.7236360813509174 -1.0482507812945925 -0.9405137441094361 0.6931313932375001 0.12809334909703463 -0.27042548764163826 -0.23908818476740687 -0.2505227311715394 1.416525283248281 -0.13524452085000485 0.4611092836162281 -0.62822316398237 -0.3884859271375483 1.1497203111433056 0.9597274114236383 0.270106514038403 0.5910697852314697 0.8048937170740569 1.4377697139581058 -1.0331740478152283 -0.8251658377980087 -1.0642841267158323 -0.861699152009671 0.34329666143321425 -0.11619119872422146 -0.3952606870294484 -0.2613831692709591 -0.473614514384731 0.7245165262560576 1
59 3.1504866196610037 1.3078935200484767 3.2758964397650563 3.4786528969666883 0.7073644816278408 3.073153249527507 3.0772320069900605 3.497170155479861 0.06345840106767868 0.7119760666640774 1.7761931057723046 0.46655231530803287 2.235528918770812 1.7527204549958733 0.37502223488916453 1.7578300345166882 0.8423967299744276 1.379408759924693 -1.1977447318183525 0.7936076783685185 2.843410913777475 1.293431889006449 3.1107968448498573 2.955784091471268 1.092890403470275 2.247703987921971 1.8010455837670656 2.6204026518683934 -0.8829130090675961 1.1722763313687967 0
60 -0.18384004318306366 0.35612306532642385 -0.14700920007164378 -0.27214962990368924 0.3728869044548434 0.4009946526118274 0.21972058417962467 0.14111511475102417 -0.33449442932854045 0.19738579378667892 -0.6935893109528587 -1.1347876084209911 -0.6539647557374548 -0.48001303923860705 -0.5580155944719976 -0.17259465747448458 -0.04654305503396286 0.13363852831071005 -0.8199798007092646 -0.22994045334341479 -0.15307329531688477 0.05581907396310719 0.001155313627355974 -0.2464297031156165 1.2550832014549027 1.0702093726146236 1.1073236817199363 1.693102871104436 -0.15167617271718045 1.2831079662976927 0
61 -0.805831132759598 -1.4543351590592906 -0.813054737931565 -0.75905999735911 0.14088756369229688 -0.5355874598674131 -0.7049530374811338 -0.5511953709392531 -0.15559820282014816 -0.013837210782830062 -0.775157457406152 -1.2474583644413544 -0.8425714184045183 -0.5977221858108821 -0.18966732671776948 -0.7968808129331238 -0.6324276503751887 -0.4780541205716246 -0.438582514493358 -0.36989344991895634 -0.8178082166156334 -1.5465638339351144 -0.8635275757537668 -0.743743209093125 0.1504187395055501 -0.6588183769290659 -0.6941464027800444 -0.41273554728070855 -0.27139193796039035 -0.20646920714666694 1
62 -0.3599288447983384 -0.30010986433523607 -0.3616101433153169 -0.4226026581653234 0.21205300564399834 -0.1683077888870876 -0.6266100178047844 -0.6646888931835608 -0.34179631612480055 -0.40084311848401366 -0.5041057848998539 -0.22108402175666256 -0.5386226234502479 -0.43974991059799706 -0.5826832612718283 -0.4956361953931001 -0.37081873938241716 -0.5867345965066985 -0.3707785524994194 -0.3581676583139786 -0.4202097590163818 -0.13959347578057826 -0.45814231483481815 -0.4543907768418068 -0.15204891079010668 -0.255505796645512 -0.47537932993530635 -0.5382027097354706 -0.19697402983623313 -0.2641016573096927 1
63 1.5798881149312178 0.4561869517641946 1.5665031298586416 1.5588836327586924 0.9422104400684553 1.05292554434161 1.3634784515699176 2.0372307557008114 0.939684816618985 -0.3980079103689868 1.2286759457296228 -0.7800833765050336 0.8509283007136554 1.1813360556534467 -0.29700501198189755 0.8149735042940163 0.21307643458243766 1.42482746628562 0.2370355353748186 0.29355940411752984 1.5118702458799815 -0.023974383848897503 1.3474752102869065 1.456284548880901 0.5274074050914401 1.0829321669453351 0.8549739441841201 1.9550003461313663 1.1522550000669673 0.2013912093916699 0
64 2.110994661738577 0.7214726041806104 2.060785532723147 2.3438559541237396 1.0418420588008372 0.2190604502686322 1.9472846078119446 2.3209645613115804 -0.3125887689397572 -0.9310270359940594 2.782079938362255 0.07102534570353793 2.3795828264771517 2.6041866180513953 1.0863844099004976 0.19180513962402293 0.6660013679362091 2.0671777419615798 -1.138416265073656 0.16797995854163825 1.9011854022792485 0.11769971471527413 1.7525626128216383 2.0153007910189276 0.3783653745109713 -0.2733177087085082 0.6645122601504337 1.6291511620862318 -1.3601582894290396 -0.7090906715492091 0
65 0.07745301727831133 1.791923482352112 0.011573070847384837 -0.024997112778245116 -1.8794993333165064 -0.9875802438137886 -0.678462048455958 -0.8137781110408561 -0.38195669350423606 -1.2003718069216227 -0.6268189255817999 -0.5545604300745808 -0.563869184594658 -0.4360096199592519 -0.5616824098071077 -0.4855760782952886 -0.40397576232193194 -0.8801718815313985 -0.7751807543918405 -0.7197759413578102 -0.1799940242168339 1.0263680710234124 -0.20436697148217692 -0.25662559684014646 -1.3443851554338517 -0.6887169436062378 -0.5996351892922958 -0.8980072059497941 -0.8990908151815433 -1.069847643242765 1
66 -0.5189767946443924 -0.06274901743633793 -0.5803301065828607 -0.5417705576769013 -0.9415388083930818 -1.1810748485975409 -1.0174964880938009 -1.0416679449109603 -0.99531518439015 -0.47455852947471516 -0.7982564015345184 0.5717842613495958 -0.8252453470309035 -0.5961820661361046 0.28001838302495224 -0.9527008488703385 -0.8252688957914064 -0.8555160123640384 -0.13951861069866325 -0.594952998466111 -0.604513210716035 0.4531579251086014 -0.6770682272341032 -0.5911563857673996 -0.4457493828163227 -1.0416472583401741 -1.132208276057523 -1.1385874446373232 -0.5609746674000455 -0.6581081194819176 1
67 -0.4280922518752189 1.0891492101612563 -0.43740011175454124 -0.4507592740403741 -1.233317120395057 -0.5505591286019051 -0.4321335154351287 -0.7366541038793832 -1.086588769343411 -0.36965582921871715 -0.578455511313033 -0.27369999477744383 -0.7034678168049254 -0.4802330563350038 -0.624018270503977 -0.14185541078672714 -0.05748487260400274 -0.5036832477324329 -0.8345092211365369 -0.1467251580822821 -0.42849306021636635 0.9172627307498543 -0.4941831793250404 -0.4510507426906677 -0.4238314371427244 0.5797456511656962 0.5704807990154147 0.05167567297053445 -0.12093834110068048 0.659680019822654 1
68 0.4693926079703736 0.8424800947565193 0.5655812640580182 0.3632228939838163 1.3620865475834938 1.3428831793260774 1.563102492091385 1.1831920008123953 1.0382602883685073 1.4902406942389834 0.529932885846543 -0.26281393139383386 0.3623330879777193 0.4024755344088606 0.5526961052176748 0.7982066424643303 0.9153421804413601 0.3412669002463739 -0.6771071665077504 0.8280285504992598 0.8119312944812992 0.7853592596728668 0.6862295973258001 0.6880766941188959 2.3290625394612174 1.5155071741895254 2.223227654169192 1.352027089674015 0.603827372804156 2.2861342624042003 0
69 1.719055071046515 1.0891492101612563 2.130808873128952 1.6783359425316344 2.2943538371507817 4.568424975035642 3.5982633077221924 2.875535181368993 3.9955244408541675 2.6399175848824257 1.9003499304622733 1.2122476570853147 2.8627327024956655 1.6735143002930342 1.1130521577922063 2.396088574833399 2.559930518241292 2.292649177110465 7.071917061370981 0.8291633045255481 1.4704537398800597 0.9840286852456136 1.8776631341926588 1.3051040557240763 1.3822072863617718 2.303684282977101 2.3791471688063406 2.073767805736603 4.107940177085129 0.8697059680129117 0
70 -0.65814375075969 -0.44206095904928294 -0.6878365292058906 -0.6427362004611737 0.3088380066983123 -0.9233347286113477 -0.819454373931183 -0.8612390385248392 -0.34179631612480055 -0.708463198964442 -0.7913989024964095 1.286635756873316 -0.9183111018377486 -0.5691199632793013 0.26335104059263376 -0.9334748473056318 -0.5415774075209182 -0.9012591380561144 1.313423432028599 -0.6834638125165886 -0.7660375841157309 0.13072721803152013 -0.8248059858055939 -0.6874900023370972 0.14165156123611056 -0.9813412132126017 -0.8835046564024525 -1.0894055350828473 0.4841116075609462 -1.0077819276825837 1
71 -0.3258471412598979 0.014044197736835462 -0.3068271769978343 -0.40070306804028405 -0.04058431328454152 0.1546254202720839 -0.22259104774309807 -0.5008971053991622 -0.18480575000519153 0.3689158847458118 -0.4936390758416879 -1.1801462058526995 -0.1985365939167241 -0.43314939770609384 -0.43801072895930787 0.39524306315754554 0.39908733327311535 -0.3220084222887271 0.8436388382134506 0.29393765545962564 -0.382934903616452 -0.6069551572508931 -0.2398121192039663 -0.4329442417660713 -0.15643249992482586 0.4518815681420459 0.3440376885270016 -0.2440248482517323 1.1247527296732565 0.4274877446466174 1
72 -0.10147592629850004 0.6982019329160123 -0.05515505353932359 -0.18767978227853763 1.6823310363661494 0.4237364279047269 0.6239906536633508 0.42149570265912073 0.08171311805833091 0.8466484521278581 0.7721108781923829 1.6241037217652248 1.0098331267402365 0.20600026732653984 2.253098380162758 0.4472203348295719 0.48927443566859546 1.4280716595971146 0.7685701660058755 0.19332279846207423 0.02501768048278026 1.3569409676731468 0.1292344188405432 -0.12952850782574615 1.811799021564298 0.3685472652758857 0.5215460590369866 0.8023469240651667 0.2899779341935791 0.5200321598122448 0
73 0.4693926079703736 -0.3257076027262936 0.4790818435567294 0.3586723298019898 0.05264241567218774 0.4711151264316007 0.13484897953024616 0.442130888521722 0.1109206652433743 -0.28034677359536736 0.36318738291989877 -0.42084328484590516 0.34550204721477934 0.3041278923195017 -0.4233434676188681 0.8457127509817739 -0.1320881742179109 0.1660804614256576 -0.05597444324184572 0.1320460810425129 0.8595602763812097 0.2610022511939773 0.870901795540163 0.7355403373192945 0.3169951266248968 1.9506267402998576 0.596387426062818 1.0109513082435937 1.4418377295066225 1.1556515861294627 0
74 -0.01911180941393591 -0.4909293687049387 -0.09140242974938714 -0.13022890948297972 -1.1322621928236418 -0.9614272022269543 -0.7782740687166916 -0.4232572185911244 -0.6229189577808452 -0.7311448638846579 -0.9195258582084413 0.8493788776316498 -0.8064341838252646 -0.6087230406307208 -0.5566822070774122 -0.7124876083903714 -0.6821631847844607 -0.42841796290575485 -0.40589131853199467 -0.8892325426168443 -0.2793936386166469 -0.05491470422498126 -0.32291460840042946 -0.34469702366755256 -1.1295892878325886 -0.8343929386928842 -0.8999601621010808 -0.5404866993432634 -0.6111258663532818 -0.989494707919316 1
75 0.6625222613548686 0.1909012993477788 0.7138659849173696 0.5062812554499824 0.13875260043374565 0.9714341828753871 1.1362334746240965 1.025074889140212 -0.06432461786688697 0.06129580426538339 -0.36623396213366766 0.1218269748270511 -0.1901210735352539 -0.19245069424802114 -0.13799856517758374 0.8641562989944283 0.7233630176215697 1.0274137856275132 -0.45069036484941843 0.2984766715647786 0.31493322248223427 0.45152948719407043 0.4836858960584339 0.17687567772349308 0.4002833201845696 1.3513831273233474 1.5064776391910373 1.3535497494125435 0.24791563829731642 0.623105580296118 0
76 -1.8172056852628111 1.442863413383144 -1.8119170937202536 -1.3540462641329065 -1.0945445085892398 -1.0529628477808743 -1.1148728439607505 -1.261819584082589 0.21314708039102662 1.4250309075933625 -0.09915242064943271 0.4447801885408129 -0.18517076742850694 -0.46637197926200696 1.8730829727059073 -0.8822800291856576 -1.0575006844597676 -1.9134474512424755 1.0022516778778432 1.1639157422805595 -1.4893768614043694 0.853753652083157 -1.4920087664510346 -1.1120259220739948 -0.2967073522358551 -1.086940406157507 -1.3058306525103973 -1.7450628184932908 0.2543867607428955 0.8552978554721546 1
77 -0.18668018514460027 -1.216974312160392 -0.19149461632944978 -0.30883855361966456 0.7642968351892016 0.21147985850433243 -0.3884422160002415 0.09649152532314856 -0.11908876883884369 0.5092586864396481 -0.8892084940399606 -1.167627232961548 -0.8732633162663501 -0.6049827499919757 -0.86369465468071 -0.6124453328065788 -0.6151859984466409 -0.4874622811749592 -0.431317804279722 -0.38124099018183816 -0.2980310663166118 -1.1980781202255417 -0.36699764926450335 -0.38741430254791115 0.3038443592207381 -0.027767778125776556 -0.4192483046659329 0.2876879324424778 0.5277916840686034 0.5161530525897334 1
78 -0.02763223529854629 0.4561869517641946 -0.08975482173983854 -0.14644029438073625 -0.40281641281870156 -0.6612357683606822 -0.9313191664498165 -0.7727656791389357 -1.07563593914902 -0.6304949758011997 -0.5279265710322316 0.5191682883288141 -0.5935710212351405 -0.40190697001775166 0.11601173349094265 -0.6510091150148564 -0.815388102955431 -0.2848624088721122 -0.9580092947683543 -0.3290423049725821 -0.19448980131680668 0.7495336255531913 -0.2678108073203374 -0.2902017296226506 -0.16081608905954503 -0.6550015386298524 -1.0068969615245282 -0.5325688687029143 -1.0916067079375154 -0.43090326787768085 1
79 -0.04751322902930266 -0.5211812413489156 -0.022202893348356092 -0.1492843969943777 0.9422104400684553 0.44647820319762643 0.1141332772119807 0.09133272885749824 0.3518829295199834 -0.21230177883471962 0.07156321329927436 -0.738534901257589 -0.15002359407060262 -0.10114359924335914 -0.23000229540397923 0.07331931602757571 -0.023333138976302556 0.2634062607705 0.009407948680880929 -0.4160401136546755 0.02501768048278026 -0.5874139022765243 0.024983984364693065 -0.09595237504324199 0.8254914662523765 0.45760682559086613 0.23369464739917342 0.34707166224509556 0.27056456685684277 -0.24248948849855798 0
80 -0.9591987986825787 -1.0052112036525513 -0.9765798328792389 -0.8520621528251862 -1.311599106541929 -1.0034994865188183 -0.8322604444552015 -1.0586919732476066 -1.5064472601284127 -0.8388827722556829 -0.551025515160598 0.04018149944997657 -0.5247617663513562 -0.4971743727575556 -0.16466631306929264 -0.4285687480743564 -0.38839196154036 -1.0031268080370495 -0.4640090002410853 -0.542754313256855 -0.8944287527154894 -0.8072530207381708 -0.8778247781961688 -0.7723971862844767 -1.085753396485392 -0.8394820564251687 -0.8378322324225861 -1.2253790497334573 -0.9718909426943055 -0.9008293999761992 1
81 -0.8115114166826712 -1.4729516960709685 -0.7747478517095662 -0.7638949718023005 1.9456431715874454 0.12809334909703463 -0.12303012690440397 0.16974643513538362 0.7534867033143325 0.8990998022558566 -0.5376714380863863 -0.41921037533836364 -0.523276674519332 -0.5345772791450074 -0.13533179038841278 -0.4308043296516478 -0.3608716325005627 -0.025326943952532575 0.06510406031875955 -0.02795423666411981 -0.7101253010158362 -0.838193341114254 -0.6651538918654345 -0.7110460326661838 1.2550832014549027 -0.07229755828326676 -0.22782711592678703 0.2618027168874904 0.7154542349903914 0.45464149520419633 1
82 0.5773180025087679 0.5236718984315283 0.5861763641773726 0.4405824850748642 0.3159545508934826 0.4559539429030006 0.19461064197566652 0.1859966440021822 1.2719206658488553 -0.5511091485804445 0.1011587354637436 0.08735444077895267 -0.010919992471010024 0.07354997529568078 -0.7213555503087141 -0.3329976356451467 -0.32174634543193525 -0.41609002832207487 -0.6286757650835082 -0.5378370458096062 0.6628318728815794 0.9775149335874909 0.6683580942727966 0.5175591611396866 0.3126115374901776 0.3259259042680024 0.129588386856831 0.2526667584563186 0.9370901787514684 -0.4297949515283923 0
83 -0.8171917006057445 -1.0494254790552875 -0.8480664081344678 -0.753371792131827 -0.946520389329701 -1.1325590613060224 -1.1026480685987534 -1.1859594820552006 -0.14099442922762595 -0.2817643776528803 -0.6885364169247785 -0.40052263319649994 -0.6618852455082501 -0.5559189374954947 -0.4746788823104077 -1.025804366447769 -1.0252156912235622 -1.436388824787173 -0.4288962342085096 -0.6675772561485541 -0.726691903415805 -0.5890423401910554 -0.7500435313671985 -0.6818646816614944 -0.6912303743606236 -0.9944456913732346 -1.279357917686773 -1.491235440080562 -0.1387339278260232 -0.5411807446319324 1
84 0.10017415297060484 0.5050553614198503 0.09395347132480242 -0.01902449728959795 -0.13665765991933873 -0.0923123564499821 0.3967456767175294 0.011887263286482829 0.9615904770077672 -0.9125981832463843 0.054960847207011124 1.8200528626702042 0.21530899660733138 -0.03227824807116842 0.7760384938107362 0.24322351590172628 0.7233630176215697 0.9430647595286498 0.4404474213566354 -0.20648887013345918 -0.01225717491714952 0.5818045203565276 0.03391973589119485 -0.1260126824034944 -0.07752789549987228 -0.3604688498738817 0.3008599767813296 0.12019536120432446 0.19291109750989555 -0.8581592205285746 0
85 1.9349058601233036 0.9937394579764051 1.9330959119831501 2.01678415355497 0.3088380066983123 1.0661915799291346 2.2900353188959732 2.1171921009183916 1.4362131187647253 -0.5411859201778499 2.1612958149124113 -0.7185771183876374 1.7355480019893574 2.146551057546102 -0.5860167297582918 0.7602017556503755 2.0983847589232467 1.1101407150706293 0.41986407575133255 0.45658573256093093 1.9281061311791976 0.21540598958711715 1.7287339420843015 1.985416274929788 -0.4939688632982391 0.4003542511026644 2.048118045422856 1.46013593110955 0.3643958423177363 -0.30233857136016157 0
86 1.080023129700761 1.207829633610706 0.9568881663257517 0.9784022893144673 -0.5558221130148595 -0.6456955552438676 -0.3993650408589633 -0.03815306243032551 -0.9989661277882811 -1.0912162944930839 0.05784821522305699 0.39216421552003167 -0.05002741071431177 0.12041361682819407 -0.5323478871262279 -0.7706127293999492 -0.5196937723808385 -0.5310966812145637 -0.7691268292138104 -0.3948580384972962 0.9631015413810148 1.4676747458612351 0.8292016217498227 0.7724565042529378 -0.03807559328739489 -0.4686126016849292 -0.30794575883264513 -0.015321355524726642 -0.6418636979697818 -0.24747691207035866 0
87 0.3387460777396863 -0.46998576456680063 0.4626057634612462 0.16612658285846182 2.6430645027141195 2.3511018839779507 1.9585840818037257 1.9417930210862797 2.1408451946039015 1.8659057694800587 0.916840199996678 -0.28640040205832235 0.5915322607201088 0.42073695340979295 1.0363823826035432 1.1402506237899233 0.5947137686162525 1.5367521355321887 -0.2061117876569963 1.8402291419483114 0.30250827068225794 -0.49133606531921237 0.3734782938982493 0.08476105166049736 1.9345395173364481 1.247056213811513 0.8189925177293934 1.6489457386871045 0.5779428830218397 1.9480977758710674 0
88 -0.4735345232598054 1.105438680046475 -0.329481787129124 -0.5090633776200244 1.5826994176337676 2.563358453378346 1.738872087519092 0.941760326219959 0.7972980240918982 2.783095594691288 -0.3882501432560169 0.6933453024665736 -0.4094196340641493 -0.36076377299155454 0.03600848981581628 2.6095866154647336 1.5098476017468596 0.40939495978776363 -0.3211363660395712 2.3773460477247146 -0.24418960851671317 2.443109056665133 -0.2862780271417735 -0.2974091717382667 2.3202953611917776 5.112877271198196 3.9954328451526617 1.6200152036550601 2.370443800447194 6.846856039728261 0
89 0.9862984449700508 0.9402169140678299 1.113410927232845 0.9260708012234642 -0.24696409494447563 1.820460460476965 1.566868983421979 1.3227374452082372 -0.42211707088367056 1.544109648424497 1.890244142406113 0.4502232202326181 1.4528855232940996 1.420494639436742 -0.09166335321573958 2.502278699754744 1.1278786974836497 1.835217920189705 -0.4615874301698733 2.8388126850819053 1.0977051858807612 0.5199238796043607 1.0823812483340303 0.9781322914546645 -0.5115032198371176 1.426447613874545 1.172090249338444 1.2941660196099256 -0.9702731620829109 2.1309699735037455 0
90 -0.5899803436828095 0.798265819353783 -0.5444946323751838 -0.5889826610633497 -1.9221985984875274 0.05607772733618655 -0.11763148933055297 -0.49367479034725165 -2.2220321661619793 0.5376107675899168 -1.0314113688302156 0.39397855941729976 -0.5386226234502479 -0.6773903764161546 -0.6663533202820648 1.1246015527488833 0.36990915308634237 0.7905876738883967 0.50340824320815 1.3477458945392438 -0.7660375841157309 0.4938688729718692 -0.5927743045007731 -0.6894237063193357 -1.945375225803916 0.42707211919715876 0.09120819863845589 -0.08231838401998794 -1.1482290293363309 0.5288986906065569 1
91 -0.3599288447983384 -1.3891772795184163 -0.37685051740363934 -0.42686881208578564 1.2126391194849206 -0.30324232229162407 -0.6377839420855458 -0.3848241849220292 -0.9807114107976288 0.2781892250649481 -0.6639937887883893 -0.3172442483118837 -0.6198076436008999 -0.5229163730359783 -0.37700825565702395 -0.2972283304084833 -0.42685410815019714 -0.2735077322818808 -1.0318671819403236 -0.26020056071109954 -0.46162626501630405 -0.7486292558150653 -0.4307393434868803 -0.4941196041132515 0.9789170859675644 -0.19825322215731045 -0.446594188771525 0.013609179507317987 -0.8392329325599384 0.08778878358955115 1
92 -0.6041810534904931 -0.846970639053286 -0.6186369928048595 -0.6017811228247364 0.0618939231259083 -0.6195425136570332 -0.5937159935175993 -0.7812776933072588 0.9761942506002894 -0.4419536361519057 -0.6426994496700517 0.0692110018062694 -0.7054479392476243 -0.5319370739882461 -0.3573407915868887 -0.41124299085034755 -0.39203923406370655 -0.773600131248796 -0.09956270452366349 -0.4493262317591286 -0.5382468011161596 -0.12656597246433285 -0.580264252363671 -0.549669645784829 0.23370693306522286 -0.34329307752742116 -0.21823206887219326 -0.5829689060482133 0.7736943370006013 -0.2607767082618256 1
93 -0.1895203271061369 -0.12557982985075208 -0.18655179230080454 -0.2951868610741853 0.792763011969882 0.17926234350605816 -0.5874385079666098 -0.44879326109609363 -0.3235415991341483 0.05279017992030378 -0.7412308832176141 -1.106846712403059 -0.7044578780262749 -0.5339172278558171 -0.8760284880806253 -0.6174753913554845 -0.55716120830249 -0.7181244256222359 -0.8478278565282036 -0.7594923322778964 -0.19034815071681455 -0.08422658668653404 -0.1596882138496697 -0.2826427049648094 1.316453449340977 0.36981954470895706 -0.03256790836580371 0.42777262838711483 0.9985658419844684 0.14985449914973334 1
94 0.2592221028166588 -0.5933203222691696 0.27848556839421795 0.09815253039243063 0.17575863024863086 0.6075657781889968 -0.1455035251769465 0.32244681051863405 -0.5243434860313229 0.8353076196677506 -0.11972491776375886 -0.6795687245963683 -0.278236522235352 -0.12094513791906893 -0.9726990741880699 -0.4073307230900875 -0.39568650658705323 -0.2848624088721122 -1.209852582174413 -0.211027886238612 0.10163821658263625 -0.8544777202595615 0.07264132583936767 -0.04163287226945265 -0.8271216375369325 -0.23324090656676705 -0.4154102858440954 -0.19499520467110926 -1.1708779578958566 0.08557215089097332 1
95 -0.8313924104134282 2.3457654584495415 -0.8773114503039507 -0.7647482025863929 -1.5564082268557817 -1.3031223760027677 -1.1148728439607505 -1.261819584082589 -2.744117072094633 -1.1025571269531924 -0.32869817792507255 4.860893234491917 -0.40842957284279996 -0.3856257048843903 0.18434783746344663 -0.9277741142835386 -1.0575006844597676 -1.9134474512424755 -0.07897935891836061 -0.7647878510672412 -0.9006412286154776 2.0555408330068223 -0.9552679580925149 -0.7752098466222781 -1.7402232542990361 -1.2679857694835313 -1.3058306525103973 -1.7450628184932908 -2.1593419114580334 -1.3796220628690292 1
96 -0.8257121264903544 0.13272462118628411 -0.8249998960007908 -0.7610508691886589 0.6433155838713087 -0.6926952241825263 -1.0520226586242432 -1.066223816087456 0.4687131182601579 -0.3568973927010958 -0.3882501432560169 1.359209512764049 -0.4490220829181259 -0.4558111586349617 1.9497527478945706 -0.8069409300309355 -0.9481819798281875 -1.107752042332755 2.6501301113376803 -0.6929200960689901 -0.8882162768155009 0.016736564014370327 -0.90403631600724 -0.7813625411112186 0.43973562239704694 -1.0023974378299292 -1.2417837134209837 -1.4371810193627945 0.6329474238092606 -1.0377064691133855 1
97 -1.2355446115400983 -0.5351436441076749 -1.2138353862542017 -1.0372132329732462 0.5223343325534168 -0.3847336837578469 -0.5707403964009776 -0.8032025782862727 -0.8310227314742799 1.1131580149403955 -0.007839407141984597 0.3758351204446165 -0.05893796170645662 -0.3843056023060096 2.2697657225950763 0.21471985079126021 -0.15496652004617606 -0.2540425724129122 1.485354907084658 0.3189022440379655 -1.0808030297151383 -0.6851201771483674 -1.0598162509525815 -0.9028343094500162 0.6282299551899919 -0.4946943300628878 -0.6821525939618022 -0.9328761139621006 -0.5949480602393346 0.040685338744771 1
98 1.7048543612388314 2.0851339402860454 1.6159313701450917 1.723841584349898 0.10245822503837819 -0.017833042365736514 0.6930429947242354 1.2636692256765407 -0.21766424058836595 -1.0586114011702743 1.3004992251287615 2.2609384297064072 1.1568572181106247 1.2915646209482317 -0.4240101613161609 -0.0697579049190775 0.2522017216510651 0.8084307371016176 -0.18916079715851145 -0.49055562804759906 1.536720149479935 2.0473986434341693 1.421939806341085 1.4949586285256702 -0.6912303743606236 -0.3948203945668026 0.2365731615155515 0.7338272358313767 -0.5318546163949409 -0.9739782790292705 0
99 -0.09011535845235304 1.0379537333791413 -0.016848167317324133 -0.16236726901712856 2.5576659723720776 1.373205546383277 0.8411916537275884 1.1050362343577922 1.6041565150787256 1.6178250594151975 0.5761307741032752 1.2938931324623892 0.5162876078975532 0.27244543043836605 0.5943644612984698 0.3130854401920844 -0.02565413058206861 0.18067933132738395 -0.06808229359790617 0.26897306688128575 0.6069195897816847 2.6336362926652264 0.6326150881667912 0.47888508149491743 3.955374108442208 1.6961708536856286 0.9230987782717359 1.320051235164913 2.477217320799246 1.3662316924943647 0
100 -0.8455931202211112 -1.4450268905534511 -0.8690734102562089 -0.7764090233023231 0.08395521013093608 -1.008426871165613 -0.8660333167195252 -0.8011390597000126 0.06710934446580873 -0.24774188027255695 -0.6499178697101662 -0.7898808335502826 -0.7113883065757208 -0.5468982365432269 0.6593670967845097 -0.9217939335642841 -0.6609426901031713 -0.5781374842312375 0.40412387028845365 -0.823038557750034 -0.8861454515155047 -1.527022578960746 -0.9236949693655431 -0.7731003513689271 0.0758977242153157 -1.0467999900441123 -0.9644388783079509 -0.9066863664594076 -0.06755158092465509 -0.8991669254522656 1
101 0.8925737602393397 1.426573943497926 0.8415556056573672 0.7790306960981997 -0.9287290288417756 0.1243030532148846 0.3967456767175294 0.2177232422659319 -1.2581831090555424 -1.2372295124169739 0.3783460650041391 0.8384928142480398 0.20639844561518653 0.39697510699894123 0.3560214645163221 0.9837599133795214 0.5811193892110514 0.9122449230694498 -0.5572394479827513 -0.02114571250639068 0.8512769751812247 1.5930644652801007 0.7606941933799789 0.7091716466524064 0.4923386920136831 1.0046869818114597 1.1102021958363146 0.9028424668080586 -0.6483348204153608 -0.2496935447689365 0
102 0.4466714722780801 0.23744264187697436 0.38022536298382864 0.3177172521655527 -0.027774533733235292 -0.3098753400853865 -0.2871235992072704 0.07663015893039471 -0.7068906559378453 -1.0359297362500586 -0.127304258805879 -0.12129510740690476 -0.2277433999465317 0.01414535926855125 -0.8050256093189506 -0.1591811680107358 -0.40961245622164943 -0.32914564757401565 -0.6141463446562357 -0.516276719310131 0.79536469208133 1.1631568558439922 0.6564437589041288 0.6828029559855183 0.3958997310498504 0.6389066448035048 0.08641067511115899 0.6013558385793826 0.8675256124614957 0.13101312121182068 0
103 -1.2466211651900914 -1.7033313415904874 -1.2657350385549746 -1.0420482074164368 -0.2747186173056393 -1.2000263280082906 -1.1148728439607505 -1.261819584082589 0.33362821252933117 0.2016386059592197 -0.7448400932376713 -1.3078760162203895 -0.8158397654280841 -0.6177437415829887 -0.3336731653329971 -1.1078502103343657 -1.0575006844597676 -1.9134474512424755 0.26972673133618197 -0.21745815905424487 -1.1698485176149709 -1.8852789201575029 -1.2132133188241896 -0.9452000057881498 -0.3931463131996872 -1.1592058779559482 -1.3058306525103973 -1.7450628184932908 0.33042244947844723 -0.13498280261752918 1
104 1.1141048332392014 -0.730617282730297 1.1628391675192957 0.9985954178713218 0.7215975700181805 2.0895714681096083 0.9993842896125248 1.523930507368601 1.2427131186638118 0.5574572243951058 2.076840300443072 -1.2089942738192658 1.7053511347382002 2.0783457576631017 0.29968584709508694 1.8394287620878265 0.48695344406282964 1.444292626154588 0.6499132325164823 1.2327574865420423 1.2675128604804415 -1.1020002832682299 1.2759891980748947 1.28225119047944 0.6764494356719076 1.9665302332132473 0.5105117549242036 1.4555679518939642 1.3755087244394388 1.4881464909161497 0
105 1.0970639814699807 0.3188899913030672 1.0639826869463944 0.9579247504962488 0.5152177883582464 0.4938569017244997 0.39297918538693577 1.0142414165623461 0.6585621749629403 -0.2987756263430425 0.1751475408749169 -0.6233240637810503 0.09650165004540151 0.20842045538690437 0.06334293140481768 0.12529658769960209 -0.22559097890734248 0.48725559926363776 -0.7751807543918405 -0.1735810033711022 0.9962347461809516 -0.04351563882326622 0.9185591370148372 0.8234359728755879 0.6939837922107868 0.7585009115121926 0.2778318638503047 1.2606675053622949 0.2576223219656846 0.060080874857327174 0
106 -0.9393178049518218 1.1449988211962918 -0.9506300067288525 -0.8341443063592449 -1.0276489931546398 -0.726239342739553 -0.9205218913021145 -1.0513406882840548 0.6001470805928536 0.06838382455295204 0.4129944811966883 1.2721210056951693 0.34550204721477934 -0.16142828365607576 0.40735687920786146 -0.3788270579796214 -0.6340855015221643 -0.9536528600367544 0.49856510306572605 -0.30937323518358706 -0.6707796203159103 0.9400608615532844 -0.6958333054397562 -0.6591876076879707 -0.5246539872412769 -0.5786647726455835 -1.0086720452296283 -1.2480666798375344 0.25600454135429 -0.4259158443058809 1
107 -0.6751846025289102 -0.402500817899467 -0.662298605057891 -0.6598008161430226 0.7785299235795423 -0.1366588182711361 -0.451719270354216 -0.1165667687082109 -0.7799095239004542 0.5631276406251595 0.11992662756804134 1.252163222825218 0.14006434378477578 -0.21291228421292127 -0.1513324391234382 -0.40956630466737903 -0.48156319600039643 0.22123174772106832 -0.26544025440169255 -0.5586408696248893 -0.5734508312160934 0.3749929052111271 -0.5582227319316343 -0.5770930840783927 0.1109664372930727 -0.43807789529122165 -0.6504889386816427 -0.2071764825793385 -0.6839259938660449 -0.35332112342745386 1
108 -0.5076162267982459 0.6819124630307937 -0.4991854121126044 -0.5414861474155371 0.34442072767416304 -0.053840853246160544 -0.44067089578447444 -0.5339134027793244 -0.9515038636125854 0.6822063814562939 -0.3979950103101714 0.7967629046108681 -0.45100220536082475 -0.41334785903038396 1.433065132492712 0.3505314316117163 -0.021343717599931637 -0.07236774696920618 -0.21216571283502633 0.587460696926167 -0.5568842288161245 0.4889835592282769 -0.5927743045007731 -0.5758625451806044 0.5624761181691971 -0.13018627248800396 -0.496008681102683 -0.49739542874290227 -1.0236599222589369 0.38093845797648074 1
109 2.5455363818536902 0.1257434198069045 2.4768065551341056 2.921208784692959 -0.2092464107100737 0.4388976114333264 0.9893403127309416 1.3253168434410625 -1.1194472599265857 -1.128073999988435 3.1971390906688364 -0.8557415170211229 3.350832884620927 3.077223375304463 -0.4293437108945025 0.45169149798415464 0.2608225476153388 1.5837929385488623 0.17770706863012198 -0.3396333425512718 3.007006112477167 -0.2942950776609959 3.1048396771655233 3.3425248879189593 -0.5465719329148746 0.6885255426932794 0.5143497737460412 1.702238829535608 0.011719669033686651 -0.6193170472568037 0
110 0.08881358512445783 -0.956342793996896 0.0824202152579639 -0.04206172846009397 0.2376725647466108 -0.04246996559971104 -0.04933244653578683 0.1651035183162983 -0.31989065573601827 -0.2817643776528803 -0.593975114399279 -0.8662647116252792 -0.369322154599498 -0.42104845740427116 -0.4450110127808815 -0.14017872460375844 -0.02499099012327823 0.5083428557883536 -0.7267493529675983 -0.47920808778471724 -0.08680688571700945 -0.9489271193023425 0.039876903575528796 -0.19984501627078094 -0.03369200415267572 0.12236119497661892 0.18284089800982642 0.6896701034140452 -0.33933872363896844 -0.3943288283511456 1
111 0.14561642435519184 -0.5677225838781113 0.09230586331525381 0.03160052923322018 -0.7081161587915008 -0.7080459225052335 -0.46301874434599716 -0.5419095373010825 -1.469937826147108 -1.3109449234076753 -0.666881156804435 -0.38256062861354345 -0.6905970209273831 -0.4478905431646778 -1.1687070211921295 -0.6454201610716277 -0.46067427154850216 -0.916831265951289 -0.9689063600888087 -0.9743390945884574 0.039513457582753035 -0.0386303250796739 -0.03756627632081685 -0.08716281148761264 -0.7964365135938952 -0.30067171651953783 -0.13667416890814627 -0.5531247751730514 -0.7211349479281235 -0.9966987641896937 1
112 0.5517567248549377 0.0838562115306284 0.4996769436760838 0.46305089572263214 -0.33307427970603454 -0.38094338787569715 0.11162228299158482 0.4503849628667626 -0.049720844274365794 -1.2599111773371898 1.2351725237657256 -0.36441718964086023 1.0707218918532255 0.8561507871790122 1.2597247711966046 -0.19271489167010766 0.1029951184232488 1.0209253990045233 -0.6105139895494175 -0.698593866200431 0.7249566318814625 -0.18193286155837707 0.641550839693293 0.6019389712737283 0.7728883966357404 -0.3165752094329272 0.051388753361891595 0.5693799840702808 -0.40566772870615203 -1.1125178226903905 0
113 -0.7405078676442541 -1.0145194721583908 -0.7455028095400825 -0.707012919529471 0.35153727186933337 -0.49768450104591405 -0.5714936946670963 -0.506313841688095 0.2606093445667222 -0.1584328246492072 -0.5376714380863863 -0.324501623900957 -0.584165439632321 -0.47781286827463926 -0.126331425474961 -0.7376379011349004 -0.3595453515829822 -0.2816182155606176 -0.4567442900274489 -0.3823757442081263 -0.749470981715762 -0.730716438755227 -0.7857865374732043 -0.6834468031015076 0.28631000268185897 -0.6111078981888978 -0.4403574081860391 -0.282091341714949 -0.38301880014662565 -0.3245048983459406 1
114 0.026330461970651087 1.9920512552276544 0.023930130918997358 -0.08813619080108599 -1.005587706149613 -0.008357302660361754 0.26994046858754084 -0.12482084305325147 -1.7145510338218473 -0.21371938289223355 -0.2518220044978536 2.0087446279861094 -0.3767476137596187 -0.22831348096069556 -0.244669556744419 0.16609595148517106 0.2190446987115503 -0.2735077322818808 -1.0524505275456264 -0.0778834138207994 -0.1075151387169704 2.4203109258617026 -0.141816710796667 -0.2049429631330459 -1.0638354508117938 -0.07420597743287345 0.1641305562533685 -0.4935887793965806 -1.6351809933661425 -0.3317089546163191 1
115 1.8752628789310328 2.7530022055800045 1.8012872712192813 2.173209797305251 -0.11886629943141334 0.18873808321143293 0.6013917056797882 0.968328128018058 -0.15559820282014816 -0.8587292290608719 2.7676430982820257 0.7260034926174035 2.4172051528884295 3.5062567132781757 -0.8300266229674275 -0.5979140525541843 -0.3469456828659665 -0.4081417547089127 -0.832087651065325 -0.5658276451247146 3.3590464134765052 3.4983368252810343 3.1793042732197017 4.485168150150775 0.3389130722984951 0.06447248077188172 0.34547694558519076 0.7810296877257652 -0.05299155542210237 -0.09785420491634887 0

View File

@ -0,0 +1,456 @@
mean radius,mean texture,mean perimeter,mean area,mean smoothness,mean compactness,mean concavity,mean concave points,mean symmetry,mean fractal dimension,radius error,texture error,perimeter error,area error,smoothness error,compactness error,concavity error,concave points error,symmetry error,fractal dimension error,worst radius,worst texture,worst perimeter,worst area,worst smoothness,worst compactness,worst concavity,worst concave points,worst symmetry,worst fractal dimension,target
-1.4479872302630423,-0.4560233618080422,-1.3666510291398113,-1.150124106734813,0.7287141142133509,0.7004280273016696,2.8148331109586984,-0.13333285722157465,1.093024439340464,2.5038275953611304,-0.2806956846583113,-0.04146397592709836,-0.4856543481080543,-0.49871449243233296,0.836040926567081,3.3858923181791916,9.015602884564814,3.4751576391503,2.5944339996998016,2.180277098492668,-1.2340441019148498,-0.4929645032337433,-1.2438927323985114,-0.9771940171306405,0.6939837922107868,1.159268932929604,4.7006688036653035,0.9195917239318737,2.1471900760747227,1.8594324679279506,1
1.9775079895463534,1.6941866630408013,2.089618672890243,1.8660467150319717,1.2624549288511109,3.3896429556870236,2.0075484691014442,2.5969601722238744,2.129892364409509,1.585220166092388,0.8107294254069954,-0.8236276300394734,0.7662780662882804,0.9047745654826995,-0.9293639838640431,1.235821736219133,0.2263392437582435,0.6283780083136592,-0.3102393007191167,0.5674133757950759,2.1558969141787694,1.2706337582030187,2.062335332407022,2.1242913791087314,0.7334360944232642,3.2070026804576157,1.9468902989968915,2.675218402455425,1.9368785965934083,2.463464878290432,0
-1.407089186016914,-1.263515654689588,-1.3497630470419406,-1.1205454395529415,-1.3628382247471538,-0.3189720502025461,-0.36308117437424375,-0.6995107693267008,1.9327414209104659,0.9685624010740183,0.016703220994404477,1.9016983380472787,-0.12774721659024083,-0.37000449104021915,0.5656966323148824,0.7769686174800615,0.37223014469210847,0.6170233317234275,2.588380074521771,0.7667518330796984,-1.296168860914733,-1.0498902700032469,-1.2412120069405608,-1.0028595427130782,-1.4907970325334878,-0.5500384854014827,-0.6356166157470224,-0.9704858095037586,0.6167696176953134,0.05287681858694943,1
-0.9876002182979455,1.3800326009687298,-0.986877382938916,-0.8756682045184104,0.014924731437785796,-0.6064659928636161,-0.8161900814446683,-0.8452467694813233,0.3117225521405489,0.06980142861046498,-0.5611313032167582,0.5010248493561313,-0.6777262250498407,-0.5213762533612009,0.04934236376167073,-0.8455047122392131,-0.6990732664836132,-0.9004480897282406,0.12564331209906177,-0.444787215653976,-0.8323039937156061,1.549096641587771,-0.8721654688960513,-0.7469074519731516,0.7685048075010212,-0.7281576060314433,-0.7661092556894977,-0.8107588029321017,0.8222277553424431,-0.137199435316107,1
-1.1239270324517066,-1.0261548077906895,-1.1293954757648488,-0.9754962062572263,1.2126391194849206,-0.4497372581367177,-0.9787769572152973,-0.9290772120481413,3.4004206669589037,0.9643095889014774,0.3992794831204711,0.40667896669817827,0.220754333324753,-0.12578551403979812,0.15768008957173774,-0.8097354070025498,-0.8033521036283872,-0.5844636611886521,2.5774830092013166,0.816302758894282,-1.0870155056151267,-1.339752218789714,-1.1140264768800237,-0.9000216491122148,-0.21341915867618116,-0.9898654854141784,-1.201820342438601,-1.352368871926748,1.061659285828863,-0.20757752349595626,1
0.11721500473982457,1.9199121743074004,0.19610516791680038,0.011122990415001428,1.2482218404607712,1.0453449525773104,0.9428869196536189,0.6376492745698704,1.794005571781509,1.1301692636305567,-0.12694333780387335,-0.3335733433872988,0.006406078902604803,-0.17132905299393072,-0.4780123507968712,0.9457550265655666,0.5144737731026268,-0.14536209647783813,-0.23880298361835964,0.6320943552935019,0.24659598758236326,1.86501359700673,0.5015573991114366,0.11007499470071004,1.553167262615839,2.5664099859062928,2.0649093777683944,0.8617306538677845,2.131012269960775,2.779335037837786,0
0.08029315923984795,0.10247274854230713,0.16727202774970412,-0.01106100997140195,-0.6255642461275276,1.1988519358043814,0.5951142201287987,0.441099129228592,-0.35640008971732273,1.293193730244608,1.7177239034473775,1.0035981088994572,0.7395464133118466,0.8090671285501021,0.24035010803603504,4.5226855502318974,2.2449388003159014,2.581382381833497,2.4491397954270755,7.211398199712337,-0.10337348811697827,-0.5776432747893403,-0.16564538153400407,-0.19914185118633063,-1.426358272253109,-0.044943550472237095,-0.24078042945048866,-0.19042722545552332,-1.0171887998133577,0.2241116945520932,1
-0.7660691452980842,-0.9074743843412403,-0.7788668717334367,-0.7254995865181405,0.0021149518864795685,-0.6718485968307017,-0.6750722062584237,-0.520242592145351,-0.2833812217547138,-0.5879668540757947,-0.827491002696982,-0.40469562416021704,-0.8529670612286872,-0.6087230406307208,-0.6360187570552458,-0.5738815505983011,-0.5820289755071262,-0.5181199079685845,-0.6698424562941139,-0.8347643493550119,-0.8178082166156334,-0.5955560918491781,-0.8140830839737918,-0.7358326018930587,-0.5860242351273519,-0.5691226768975499,-0.634657111041563,-0.45445642411639386,-0.36360543280988933,-0.903046032674777,1
-0.533177504452076,-0.3140722670939945,-0.5642659284897642,-0.5534313783928313,-0.6988646513377793,-0.7116467035932759,-0.6271122166488635,-0.6605618560110406,0.5782414202040713,-0.07337658119839723,-0.668324840812458,-0.4255605789788029,-0.6841616229886119,-0.5242364756143589,-0.5076802203263971,-0.5509668394310636,-0.3963496470458435,-0.6280980612282565,-0.3090285156835107,-0.49585114683694376,-0.5548134035161285,-0.07445595919934998,-0.6154115417012436,-0.5561739228159946,-0.467667328489921,-0.48006311658256967,-0.3736718311566124,-0.4948069071874035,0.34336469436960537,-0.14551180793577406,1
1.6366909541619514,0.2258073062446761,1.587098229977996,1.5901687615087488,0.5223343325534168,0.5052277893709497,0.6566335785284962,1.1708108892948346,-0.035117070681843596,-0.13008074349893753,0.37076672396201893,-0.622598326222143,0.3900548021755029,0.4260173637233156,-0.6506860183956859,-0.13682535223782138,-0.04554834434577746,-0.002617590772069143,-1.207431012103201,-0.15277717955581901,1.5450034506799193,-0.07282752128481901,1.5857619176602782,1.3455360480799712,0.4090504984540091,0.4875053922680383,0.7019329436633492,0.7109873397534467,-0.5690635704570192,0.41086299940728255,0
-0.5019359428751726,0.584175643719483,-0.5020687261293137,-0.5369355832337107,-0.6148894298347716,-0.18744878309194454,-0.3596913321767094,-0.2958349458895608,0.4322036842788534,0.17612173292397693,-0.3875283012520054,0.517353944431546,-0.32823461391349745,-0.42654888481419057,0.02367465641590105,-0.030635227316477054,-0.16126635440468395,0.18392352463887884,-0.11651369502214835,0.25270825917115536,-0.505113596316222,0.7853592596728668,-0.4706523669719202,-0.537715839349173,-0.08629507376931184,-0.05066880792105734,-0.1381134259663353,0.08974216643375112,0.11525762816294927,0.4801327712378425,1
1.9803481315078906,0.2863110515326301,1.9001437517921826,2.0736662058277995,0.03413940076474464,0.24938281732583123,0.8587686132703594,1.7173853748304893,-0.9405510334181932,-0.877158081808547,0.9352471710989698,0.2615314549167121,0.829641984454643,0.914235300627761,-0.5246809096073618,-0.26425350214343424,-0.0014495038362226762,0.46454624608317435,-1.2413329931001704,-0.6013832712817441,1.948814384179159,1.0410240122541887,1.8151128735071482,2.006511227463298,0.19425463085274666,0.3551883312286387,0.8045999471475028,1.7266013853520668,-1.0236599222589369,-0.537301637409421,0
0.2109396894705352,-0.6096097921543874,0.274778450372734,0.07852822235830452,1.4119023569496842,1.1476829413953575,1.0069172722737123,1.0397774590673157,1.260967835654464,0.6921296098588884,0.0773379493313659,-0.4861596651475649,0.060859446076822546,0.018545701196486828,-0.01866039336218683,0.008487450286123395,-0.05914272375097841,0.14823739821243667,-0.5475531676979029,0.033700732097537656,0.5261574030818366,0.2756581924247537,0.5909149143764509,0.376926144249617,2.429885089559769,1.2324250003311952,0.9509244147300576,1.3413684715043142,1.1069571429479146,1.2498584758190239,0
-1.2667861731170018,-0.1860835751387069,-1.2554374884952975,-1.0403417458482518,-0.4910615608388117,-0.7914324319125313,-0.7447522958744075,-0.8712986916328574,1.55669425090303,0.1888801694415993,-0.0995133416514384,0.2415736720467607,-0.1470534104065545,-0.38738584165556444,0.15334658053933506,-0.31231850605520056,-0.15761908188133725,-0.3103293263673461,-0.11409212495093636,0.044670021018323326,-1.0621656020151733,-0.009318442618121106,-1.0836449216899189,-0.8708402981075254,-0.3931463131996872,-0.6365534868503208,-0.693186898074585,-0.7461980300184861,0.4420493116646835,0.07171819652486133,1
-0.20656117887535716,-0.5444519126135139,-0.2672845847686735,-0.2914895276764515,-1.209120870131479,-0.8979397462009435,-0.841048924226587,-0.8818742243874407,-0.5900604671976708,-0.8204539195080077,-0.8906521780479834,-1.0966863865783563,-0.9059353365708808,-0.5966221003288982,-0.8823620782049061,-0.7253422024597972,-0.5763922816074085,-1.0238896452306157,-0.9241073137713849,-0.6509341970963277,-0.31873931931657273,-0.6476661051141609,-0.40214493860207545,-0.38161319060119586,-0.4852016850287995,-0.5513107648345539,-0.6514484433871022,-0.6811804591833122,-0.25844969306923216,-0.4502988039902378,1
1.4606021525466766,1.670915991776203,1.4800037093573535,1.442275425599392,-0.16725879995857032,1.2803432972706041,0.9654858676371811,0.696717494101567,0.1510810426228088,-0.02659564730045244,0.5436478839227601,-1.10793531874142,0.32768094523048985,0.6123718443713847,-0.6753536851955163,0.4304534729998859,0.10200040773506328,-0.34925964610528293,-0.6189894847986599,0.038239748202690466,1.631978113279755,0.850496776254095,1.6125691722397828,1.6391074708379916,0.8123406988482178,2.574679802221256,1.6163409279661356,0.972884814780377,1.2477040561392563,1.5712702171128217,0
1.0970639814699807,-2.0733350146975935,1.2699336881399383,0.9843749048031144,1.568466329243428,3.2835146709868264,2.652873983743168,2.532475216403245,2.2175150059646405,2.255746885296269,2.4897339267376193,-0.5652650590684639,2.833030865855184,2.4875775569611043,-0.21400164666895383,1.3168615683959484,0.72402615808036,0.6608199414286064,1.1487566671861758,0.9070830809973359,1.8866896251792757,-1.3592934737640827,2.3036006236225606,2.0012374893299207,1.3076862710715387,2.616665023512603,2.1095263465722556,2.296076127561788,2.750622244124955,1.9370146123781782,0
0.31034465812431955,2.636648849257015,0.4708438035089881,0.17636535226757122,0.6006163187002885,1.9777577395861858,2.0866447870439124,1.1702950096482694,1.1550904771086807,1.2364895679440686,-0.5232345980061573,-0.021506193057146555,-0.24952474681621883,-0.3891459784267387,-0.805358956167597,1.2833278447365764,1.382524633659123,0.6948839711993016,0.10021682635133489,0.8877922625504371,0.2590209393823396,2.786709456631113,0.6385722558511252,0.06050185624696043,0.4090504984540091,3.418837206063962,4.307271874426959,1.8423235254802452,1.9223185710908557,3.156162596596032,0
0.03769102981679758,-0.2605497231854193,-0.030852835398485264,-0.061970446755584295,-2.177682535094135,-0.9881487881961111,-0.8041373091867685,-0.9074102668924099,-0.6448246181696274,-0.983478386122059,-0.6322327406118856,-0.9939945219929691,-0.5965412048991887,-0.43512955157366484,-1.2907119677966976,-0.6543624873807936,-0.6997364069424035,-1.0629821746341275,-1.1517349004653226,-0.6951896041215665,-0.01018634961715383,-0.06794220754122669,-0.04352344400515123,-0.10702722512333489,-1.6621953677010262,-0.2389661640155871,-0.5550182204884347,-0.5985000353812056,-0.42831665726567836,-0.39820793557365697,1
-0.6893853123365938,-0.04180541329819989,-0.7265553174302768,-0.6717460471203167,-0.5849999442150576,-0.9818947999905637,-0.9161276514164218,-0.9657046669542588,0.4541093446676357,-0.21513698694974648,-0.8845165210138862,0.38672118382822646,-0.8697981019916272,-0.6393054170298726,-0.3256728409654846,-0.9148077411352482,-0.712004505430024,-0.6744900255826315,0.3569032538998179,-0.8071520013819997,-0.7577542829157465,0.14212628343323516,-0.7845951039363372,-0.6987406436883027,-0.44136579368160295,-0.9259970578740067,-0.9261066653248489,-0.8709038626039839,0.948414643031232,-0.7960935049683925,1
0.32454536793200267,-1.4845870317032674,0.25541905626054096,0.20082463474488796,-1.0347655373498101,-0.7967388461475411,-0.37513394663214367,-0.447503561979681,-1.6524849960536305,-1.0685346295728688,-0.6921456269448357,-1.5495466233365305,-0.663865367950949,-0.4474505089718842,-0.9166968036154814,-0.7331667379803174,-0.44707989214330107,-0.7174755869599369,-1.3322629492741849,-0.80904325809248,0.23002938518239405,-1.5889032197129132,0.19178467952605355,0.0916169112338884,-0.4457493828163227,-0.2268795094014113,0.11519581627494034,-0.16910998911612204,-0.939535330466411,-0.5101478868518414,1
0.3444263616627596,-1.1704329696311964,0.43377262329414995,0.14081406959705278,0.7785299235795423,2.0687248407577834,1.492794653920302,1.2546413318616525,2.5899112325739453,1.0663770810424487,0.12137031157606427,-0.9203321597638752,0.25639653729333195,0.10061207815248412,-0.08399637569687343,1.5538332155888428,1.0798010142213534,1.73951421750061,1.9587718560066245,0.2266089165665275,0.37291633088212534,-1.0743168387212079,0.5313432375331081,0.1763483039101552,0.29069359181657933,2.170094942504631,1.7190079314502889,1.8986619358058061,2.8573957644770065,0.8597311208693111,0
-0.17531961729845377,-0.09300089008031492,-0.1593662601432569,-0.27527814277869495,0.6788983048471594,0.19631867497573266,-0.03765632341094629,0.12615460500063802,-0.020513297089321404,-0.28459958576790817,-0.6914237849408242,0.20891548189593082,-0.6698057352790454,-0.46307172281605535,-0.5330145808235207,-0.3302031586735323,0.038007353461799766,0.3039586771641844,-0.8950484729168396,-0.5034161736788649,-0.30424354221659994,0.2479747478777313,-0.29580949543670854,-0.3610456118810231,0.4572699789359261,0.017398141748249156,0.343557936174272,0.46736178158886044,-0.3797832389238366,-0.392666353827212,1
-1.035882631644069,0.13272462118628411,-1.0400127412468507,-0.9021183588252762,0.7571802909940313,-0.8458231778213824,-0.5083421900241416,-0.46994432660526003,-0.27242839156032267,0.2271554789944625,-0.12008583876576455,2.5312756703993875,-0.1727950021616393,-0.3766050039321225,2.9997953211306045,-0.6493324288318877,-0.43912220663781754,-0.07561194028070109,1.721457989027838,-0.08885270274158523,-0.991757541815306,0.6160017165616727,-1.0002445741092385,-0.83990103439171,0.8386422336565352,-0.9648015805826768,-0.7392431239366352,-0.7193992186203816,-0.02872484625118149,-0.3583085469992546,1
0.14561642435519184,-0.9423803912381372,0.15656257568763962,-0.008501317619124687,1.1984060310945799,0.560187079662123,0.13635557606248358,0.5602673275851151,1.1112791563311162,0.09390069758819483,0.38375988003422473,-0.8702562681992695,0.46925969988345617,0.05330840242717736,-0.5110136888128609,1.0418850343890993,0.41334485313710667,0.7192154210355123,0.4513444866770899,0.3956872664834653,0.014663553982799601,-1.2111056235417879,0.06370557431286632,-0.13532961977246144,-0.2046519804067416,0.34755465463021196,-0.056555526002288165,0.38209283623125484,0.40484035760260445,0.04345612961799309,1
0.09165372708599445,0.21649903773883633,0.10383911938209232,-0.03466706166462607,0.16793043163394378,0.30813240349915477,0.36661374607277963,0.28066055914686616,0.5052225522414624,0.26401318448981276,-0.7073043090290762,-1.0268341465335258,-0.7029727861942509,-0.46021150056289717,-0.9990334752311323,-0.5314055006297633,-0.3943602256694726,-0.7288302635501686,-0.644415970546387,-0.6880028286217413,0.42675778868202363,0.7234786189206999,0.3168852008970738,0.2872725959821976,1.0008350316411627,0.9627017605201119,1.0770992834979658,1.0535857809223963,2.9965248970569527,0.961696225003895,0
-0.8768346817980152,-0.5723767181310315,-0.8670139002442736,-0.8011527160410038,0.8069961003602226,-0.498442560222344,-0.732448424194468,-0.6221288223419454,-0.35640008971732273,0.08539507324311324,-0.7524194342797914,0.3087043962456886,-0.7544559697044203,-0.5895815532442014,-0.6276850858390869,-0.9011148039743381,-0.7073625222184919,-0.6996325237467157,-0.4071021035676007,-0.6040310306764165,-0.7991707889156685,0.12421346637339742,-0.8140830839737918,-0.7193082224084755,0.19863821998746584,-0.6747218698424552,-0.7939348921478195,-0.6135743667926394,0.15731992405921194,-0.2846055097715382,1
1.6139698184696574,0.6656229931455752,1.5665031298586416,1.7209974817362566,0.13875260043374565,-0.03109907795326128,0.7420073820219539,1.188092857454763,-0.8383246182705409,-1.254240761107136,1.2741519919823439,-0.3626028457435921,1.484567482377281,1.5855074617343239,-0.18233369604754976,-0.36597246391019567,0.0668539634191777,0.55376156214928,-0.8454062864569916,-0.680059550437724,2.28842973337852,0.8472399004250337,2.369129468150238,2.6674864068466255,0.8254914662523765,0.3863591773388819,1.2713989863534898,1.8910486371131627,-0.21476961656157492,-0.43201158422697017,0
-1.0983657547978765,-1.6451546634289926,-1.079967235478398,-0.9479084109049039,0.2561755796540529,-0.5480954362785077,-0.873440749669693,-0.7541940118625945,-0.042418957478104695,0.4100264024137028,-0.772631010392112,-1.2140744367316172,-0.7514857860403721,-0.6261043912460661,-0.45301133714839403,-0.6610692321126679,-0.7757986175656504,-0.7894966784751202,-0.14072939573426924,-0.5385935484937984,-1.0124657948152669,-1.6328710434052423,-1.0136482013989907,-0.8544917098940549,0.08466490248475525,-0.5678503974644787,-0.8925240006337706,-0.7254898575744962,0.05863530676413387,-0.3727166595400108,1
-0.35140841891372804,-1.4357186220476121,-0.4151574036256382,-0.39529927307436535,-1.9079655100971868,-1.2707153462103862,-0.8311304970560235,-0.9597720510187611,-1.7328057508124994,-0.9905664064096267,-0.909420070152281,-1.3568633014466345,-0.8668279183275789,-0.6085030235343241,-0.7700241902110828,-0.6722471399991252,-0.509746665498984,-0.9555993760236514,-0.5269698220926,-0.6482864377016553,-0.5486009276161403,-1.6507838604650802,-0.591582870963906,-0.5336726401135836,-1.5872359934973206,-0.8878286748818724,-0.7368443621729868,-0.9280036027988089,-0.9573309171917532,-0.819922306478105,1
-0.20656117887535716,0.2863110515326301,-0.13712355201435386,-0.2792598864377929,1.0133758820201568,0.8065563120018667,0.699320480275225,0.8460646517821447,1.1112791563311162,1.4817350698939018,-0.05259361139069434,-0.5193621584675753,0.11234262958699215,-0.14668713819749174,-0.5423482925856186,-0.15806337722209013,0.08707974741228168,0.250429487524521,-0.4228423090304796,0.0794691444911607,0.029159331082772376,0.6485704748522869,0.1798703441573848,-0.06360678115852603,1.0972739926049955,0.835473817212997,1.1437848605273928,1.3779123052290023,1.1069571429479146,1.4936880726625947,0
-0.3315274251829711,-0.23262491766790247,-0.3208318450789948,-0.36884911876749943,-1.6261503599684488,-0.4804386547821319,-0.6055176663534596,-0.7761188968416085,0.2277508539835488,-0.539768316120336,-0.6116602434975595,0.1490421332860758,-0.23219867544260422,-0.44283014994755193,-1.1373724174193718,0.6512171537574174,0.08707974741228168,-0.18591451287152252,0.6995554189763304,-0.034006258137656724,-0.44298883731633876,-0.1737906719857234,-0.3261910506268133,-0.45474235938403207,-1.7130450016637746,-0.14290906681871543,-0.5363078787319769,-0.7388892632735486,0.49543607184070887,-0.6359417924961378,1
1.0289005743931006,2.0339384635039304,1.04338758682704,0.9291993140984699,0.25688723407357067,0.5128083811352492,1.0169612491552955,0.8772753703993295,-0.3600510331154528,-0.5156690471426072,-0.0558419004087459,-0.25374221190749247,0.0034358952385566666,0.07949043689839379,-0.7756910866380708,-0.2977872258028061,0.16831445361409283,-0.11292016336289057,-0.9894897056941115,-0.4686170502060275,1.0894218846807768,2.09462334295556,1.1359957574930393,0.9781322914546645,0.3389130722984951,0.775676683858653,1.76410465260688,1.2545768664081804,0.11525762816294927,0.37705935075396935,0
1.832660749507982,0.6632959260191158,1.7600970709805726,1.8063205601455008,-0.38858332442836185,0.5772434111317978,0.9441424167638169,1.2043430663215617,-0.17020197641267035,-1.780171866444641,1.6419304930261756,0.47743837869164285,2.06078311320264,1.5701062649865498,0.3610216672460173,0.5942098235364852,0.7624883046901971,2.5716498018990133,1.3582224783460222,-0.5408630565463747,1.4435330109801099,0.35219477440769703,1.5202330731326013,1.36311517519123,-0.6386273047439874,0.24004704253569983,0.5464931813789302,1.1784438794817471,0.013337449645081196,-1.4017883898548082,0
0.3273855098935393,0.7261267384335299,0.28631170643957254,0.15844750580163006,-0.4120679202724231,0.016279620573612513,-0.4400431472293755,-0.4201619407117342,-0.30893782554162713,0.05279017992030378,-0.7210193071052936,-1.3086017537792969,-0.7534659084830709,-0.4577913125025327,-1.2503769991104878,-0.644302370282982,-0.469295097512776,-0.9387295708038788,-1.068190733008505,-0.46143027470620246,0.3170040477822307,0.38313509478378077,0.19476326336822053,0.1626365847633735,-0.09944584117347056,0.4811439951026826,0.43567038789837215,0.12171802094285317,0.44366709227607803,0.7633075984811715,0
-0.0986357843369634,-0.8143916992828492,-0.14824490607880508,-0.19621209011946206,-0.5828649809565065,-0.7042556266230835,-0.9824178988348712,-1.0055047816867513,-1.4845415997396294,-0.6120661230535246,-0.17638951507865736,-1.3309181837156971,-0.31239363437190676,-0.24195454093729568,-0.20300120066362393,-0.7778783695261464,-0.8008321698849841,-0.9958273730861863,-1.0015975560501722,-0.46559103946925917,-0.2069147531167834,-1.3316100292170603,-0.2788315675363556,-0.3058471527516708,-1.1032877530242706,-0.936175293338576,-1.1371017500553657,-1.2407579130925968,-1.685332192319379,-0.8781089148157758,1
0.2762629545858791,0.6353711205015982,0.21793597404331608,0.1647045315516411,-0.4127795746919398,-0.6354617563620629,-0.45536021197378995,-0.40184821325867537,-0.7141925427341064,-0.8445531884857366,-0.3416913339972786,-0.6948092133334224,-0.38070785864501633,-0.22941356644267946,-0.7886916137352789,-0.8482991892108274,-0.5259936067393463,-0.41754991531224755,-1.161421180750171,-0.8192560443290736,0.3791288067821139,0.9791433715020218,0.31092803321273943,0.26266181802643546,0.28631000268185897,-0.30894153283450027,-0.0047422719074819136,0.5846065814555674,-0.3652232134212839,-0.28903877516869464,0
-0.5076162267982459,-1.0098653379054712,-0.5634421244849896,-0.5284032753927862,-0.6789383275913037,-1.1111438895718753,-0.8500885034200119,-0.732011187060298,-0.8784849956499765,-0.8105306911054132,-0.07894084453711224,-0.560729199325293,-0.13071740025428918,-0.22413315612915688,0.22034929711725337,-0.9494033660438335,-0.62413839464031,-0.24268789582268052,1.108800761011176,-0.8937715587219971,-0.6397172408159687,-1.4374584936615564,-0.6895782793712053,-0.6108450081320093,-1.2084938922575423,-1.1884683049165845,-1.0697445197321176,-1.0152520058165013,-0.9751265039170951,-1.34138514881856,1
-1.684571055659048,-0.5700496510045714,-1.6582776468298694,-1.2883474937577886,-0.7372939899916989,-0.8511295920563923,-0.9154999028613228,-1.1091965906463235,-0.15559820282014816,0.31646453461781326,-0.8982315190901037,-0.47200778274887195,-0.8772235611517477,-0.7069606741718812,0.6423664075035457,-0.5040196263079432,-0.5309671601802735,-0.9536528600367544,0.6293298869111793,-0.45878251531153,-1.5127771872943252,-0.6053267193363622,-1.4893280409930842,-1.1222218157985246,-0.11698019771234847,-0.7542393344094019,-0.9757610338323716,-1.354652861534541,0.33042244947844723,-0.5461681682037324,1
-0.19236046906767404,-0.2302978505414423,-0.22115156050132007,-0.28381045061961935,0.41558616962586453,-0.4300277195495383,-0.6159382923681023,-0.5447468753571902,-0.6338717879752364,-0.8076954829903863,-0.39763408930816574,0.283303581683932,-0.3797177974236668,-0.3326015846527673,-0.3856752737218293,-0.590648412427987,-0.4368012150320515,-0.3941917234694854,-0.2061117876569963,-0.7481447920150146,-0.24211878321671712,0.04279157064686176,-0.28806517744707383,-0.31850412427177716,0.06713054594587614,-0.5036002860943858,-0.6432926533906974,-0.5404866993432634,-0.3603698715871002,-0.9928196569671823,1
-0.7973107068749876,1.8128670864902499,-0.832414132043758,-0.7371604072340706,-1.9592046283024116,-1.2547961035053565,-0.9098501658654323,-1.1812133893068022,0.20949613699289657,-0.9239390157064928,-1.025636632798124,-0.5881257921740447,-0.8945496325253626,-0.6981599903160102,-1.1293720930518591,-0.5034607309136203,-0.5160464998574917,-1.4065422463214214,-0.6262541950122962,-0.6592557266224409,-0.8675080238155398,1.3146015818953485,-0.8173595262001762,-0.7528843551909795,-1.768278224761242,-0.7065288556692338,-0.7833803403877665,-1.4278927949577698,-0.08372938703860233,-0.7246071004392547,1
2.312644741007682,0.0885103457835487,2.505639695301203,2.429179032532984,2.5790156049575876,3.2683534874582265,4.238566833923125,3.440423394357706,2.7176942515085107,1.0763003094450432,2.9228391291444873,0.5953707320140839,3.5562705880509315,2.852805936979752,-0.17533341222597612,3.420543832627209,2.3908297012497663,2.1093522550110113,1.280732236067235,0.4698245295342927,2.5120788657780984,0.3798782189547194,2.9648462365836674,2.6006857238238426,1.6539898127143908,2.833588666851234,3.30362995251645,2.6858770206251257,1.8673140303034357,0.7727282874501278,0
1.4975239980466533,0.9797770552176467,1.5294319496438036,1.4223667073039017,0.4511688906017153,0.9752244787575371,1.4576407348347609,1.0302336856058623,0.6074489673891147,-0.39659030631147385,0.42995776829095744,1.0616571136120438,0.5796515260639159,0.44163857756748653,1.189721932980869,0.3935663769745768,0.24059676362223484,0.6154012350676802,0.15954529309603152,0.05828706933378158,1.1142717882807296,0.790244573416459,1.1211028382822035,0.9429740372321471,0.610695598651114,0.27058174892940756,0.35315298322886574,0.6363770125655422,0.031133036370422997,-0.43256574240161444,0
-1.8084012451820475,1.2217920363694643,-1.8143885057345759,-1.3477892383828953,-3.1120847879199744,-1.1507524815403418,-1.1148728439607505,-1.261819584082589,-0.8200699012798888,-0.5610323769830381,-0.07027874048897484,0.38309249603368983,-0.1574490532307233,-0.4661519621656102,0.04934236376167073,-1.1635161916089227,-1.0575006844597676,-1.9134474512424755,0.7528299605429967,-0.38275399555022244,-1.410892582534517,0.7641895667839677,-1.4327349479919085,-1.0758129202248017,-1.859018519849939,-1.2075524964126518,-1.3058306525103973,-1.7450628184932908,-0.04813821358791784,-0.7512066928221901,1
0.20809954750899856,-0.5467789797399732,0.12031519947757607,0.05350011935825967,-0.5067179580681859,-0.6367883599208154,-0.6947835108885309,-0.519726712498786,-0.8711831088537154,-0.8176187113929808,-0.36948225115171923,-0.995264562721057,-0.6207977048222494,-0.3612038071843481,-0.4283436703485636,-0.4934006138158086,-0.5730765793134572,-0.5701892106180753,-0.6093032045138115,-0.6153785709392983,0.008451078082811059,-0.8365649031997237,-0.14777387848100138,-0.18121114153284668,-0.46328373935520123,-0.6314643691180362,-0.7205327821801772,-0.5313507409120914,-0.6078903051304927,-0.8686882258468195,1
-0.8512734041441845,-0.6212451277866864,-0.8855494903516927,-0.7786843053932361,-1.0568268243548378,-1.2508162928290991,-0.9429952895746568,-0.9084420261855399,-1.0975415995378024,-0.18678490579947682,-0.9516478273869509,-0.4531386062172814,-0.9395974180967609,-0.6739801114220045,-0.3860086205704757,-1.0739252598989677,-0.7458909828742081,-0.9095318310004259,-0.05476365820623972,-0.536324040441222,-0.950341035815384,-0.8772758510629916,-0.9802880623667191,-0.8077312317781067,-1.2873984966824965,-1.2218656400347023,-1.0861040749602,-1.1292992202322985,-0.8376151519485434,-0.7268237331378326,1
-1.251733420720857,-0.24891438755312104,-1.2867420406767163,-1.0431858484618932,-1.9115237821947715,-1.5331933360492667,-1.1148728439607505,-1.261819584082589,-0.5791076370032796,0.23707870739705703,-0.18505161912679477,6.655279348890291,-0.31486878742528024,-0.4102676196808291,-1.7760649794257979,-1.0474895077474962,-1.0575006844597676,-1.9134474512424755,2.112541555528593,-0.7969392151454061,-1.3048663271747167,-0.7893402036783331,-1.3406967072689435,-1.0139343927931712,-2.6826949182637616,-1.4438784011056174,-1.3058306525103973,-1.7450628184932908,-1.604443161749643,-1.01720261665154,1
-1.2841110390823756,-0.5700496510045714,-1.2492589584594913,-1.0648010283255687,-0.8219808659142234,-0.22857349341327104,-0.057493177752073195,-0.6706215091190588,0.8192036844806805,1.1982142583912034,-0.7968127175264954,-0.4970457285311749,-0.7113883065757208,-0.6219240664145275,-0.3623409943165842,0.515964468331284,0.6096344289390341,-0.5330431972014604,-0.3683569824282069,0.08930367938565821,-1.1429277887150215,-0.4245701108234531,-1.0726241614739005,-0.9263903397791029,-0.3975299023344064,0.5555723419373446,0.7767743106891807,-0.5086631108080144,0.13143543427689652,0.792677981737329,1
-1.1494883101055366,-0.9726322638821147,-1.1619357339534286,-0.959569231620834,-0.2626204921738498,-1.087644055102546,-1.0948225551108899,-1.1998108505654719,-0.39656046709675724,-0.3285453115508261,0.06975860828924574,0.09279747247075786,-0.09210501262166187,-0.30597951598875744,2.449773020864111,-0.7532869721759404,-1.0045489188253627,-1.523495415200807,0.5857416256293616,-0.12289532353023039,-0.9109953551154581,-0.732344876669758,-0.9493107904081804,-0.7797804196712054,0.8649437684648539,-0.9692545585984259,-1.272631789701503,-1.5864016737386037,0.05216418431855479,-0.3865706139061228,1
-0.44513310364443864,-0.05111368180403884,-0.4139216976184769,-0.48090676174497365,-0.6234292828689764,-0.01025245060143676,0.17828917954309362,-0.12920582004905437,-1.0172208447789333,-0.13575115972899127,-0.1623135960004341,0.4738096908971062,0.17125127225728243,-0.2826577037706992,0.9373783685555747,0.9429605495939523,1.0217762240772026,1.2755945739568615,0.7080309142255728,0.15511941291037254,-0.6003715601160429,-0.5287901373534188,-0.5433298127207985,-0.5857068563629093,-0.9980816137909989,-0.34392921724395686,-0.16018203419190094,-0.33431857074648225,-1.2614736721339612,-0.6686371248001625,1
0.28478338047048946,2.448156412013772,0.19528136391202577,0.1837600190630391,-0.9365572274564626,-1.1047003865722205,-0.5265468981220113,-0.5553224081117734,0.14743009922467876,-1.3974187709159982,0.22712016516374112,0.7441469315900867,0.08759109905325688,0.1109528816831327,-0.06999580805372618,-0.6264177176646504,-0.23222238349524552,-0.4394482201648371,1.3279528524558717,-0.7734876319354503,0.20517948158244134,1.8291879628870533,0.08455566120803601,0.08933162470942466,-0.7701349787855771,-0.9898654854141784,-0.5636537628375691,-0.7439140404106932,0.5374983677369716,-1.2355409374614643,0
-1.035882631644069,-1.0028841365260917,-1.008296287063045,-0.9137791795412061,0.12807778414099064,-0.057631149128310556,-0.31951542465037636,-0.6897090560419651,0.4139489672882012,0.9005174063133715,-0.2799738426542999,-0.16302501704407607,-0.149528563459928,-0.4305091925493325,0.1076780622747837,0.7372870444831384,0.6875534328468939,0.13688272162220494,0.1292756672058802,0.3915265017204088,-0.8571538973155592,-0.66883579800306,-0.7700000431097184,-0.7738035164533774,0.014527476329241236,0.28839366099240343,0.10416151216215738,-0.3274666019231031,0.19291109750989555,0.6934836684759672,1
-0.38264998049063187,-0.6514970004306643,-0.43657630774976663,-0.43341024809716105,0.13875260043374565,-0.9854955810786062,-0.6562397496054551,-0.5230799302014587,-0.8091170710854976,-0.8884989142686555,-0.6076901124754965,-0.6235054981707772,-0.6905970209273831,-0.48419336407014585,0.3070194777653073,-1.1103093500693861,-0.5319618708684588,-0.5083873280341005,0.24187867551724304,-0.7144804225684654,-0.5817341324160776,-0.9635830605331189,-0.6431123714333977,-0.5725225110294654,-0.12136378684706885,-1.1683026759024069,-0.8073679580242509,-0.8494343602907297,-0.8376151519485434,-1.0997721846735669,1
0.17401784397055858,1.426573943497926,0.1124890614322215,0.03899519602868808,-0.9685816763347278,-0.6102562887457661,-0.5994912802245096,-0.48103573900640834,0.10361877844711319,-0.8502236047157903,-0.36839948814570217,0.30507570845115195,-0.3411054097910397,-0.2844178405418734,-0.755356928870643,-0.7689360432169807,-0.4119334478274154,0.14499320490094178,-0.22306277815548076,-0.44213945625930356,0.049867584082733694,1.0768496463738644,0.004133897469523375,-0.09524920995879167,-1.1558908226409068,-0.742152679795226,-0.5329496122628691,-0.07775040480440203,-0.2891875246857321,-0.7972018213176818,1
-1.1994748086285822,-0.2861474615764777,-1.1273359657529134,-1.0025151810868203,0.044814217057500653,0.47490542231375016,0.526061879067914,-0.3033152007647537,-0.5206925426331929,2.6030598793870734,0.09357939442162345,1.8944409624582055,0.1316488234033058,-0.28287772086709595,1.9397523424351797,3.498789187832411,2.9113949614001484,2.076910321896064,2.2106151434126833,5.34283656975781,-1.0373156984152203,-0.2096163061053989,-1.0184139355464585,-0.8620507345518961,-0.09944584117347056,0.2591312340317671,0.3665860491052972,-0.23610701761138334,-0.46390783071636194,1.7873919052241685,1
-0.0872752164908164,1.2101567007371652,0.01486828686648147,-0.1677710639830473,1.4119023569496842,1.208327675509756,0.588836734577809,0.4815956814839473,1.6917791566338567,1.3569859128327157,0.2523846353041418,0.5645268857605226,0.0534339869167021,-0.028317940336026467,0.8797093637397538,0.7311391951455866,0.09503743291776512,0.7078607444452806,0.4598199819263323,1.2104406573583748,-0.05367368091707141,1.1826981108183603,-0.03756627632081685,-0.16275305806602505,2.0616636022433186,0.9054491860319102,0.3162120520686798,0.5709026438088097,1.2137306632999663,1.9037651218995093,0
-0.35140841891372804,-1.2053389765280933,-0.28911539089518923,-0.4058224527448386,-0.6234292828689764,0.5734531152496478,0.6101801854511736,-0.235219087418169,-0.7872114106967153,0.1832097532115436,-0.7314860161634595,-1.4091164056879621,-0.23417879788530307,-0.5277567491567073,-0.5133471167533854,1.701381599690079,1.647449246945846,0.3088249671314266,-0.9543769396615362,1.4222614089321675,-0.3891473795164402,-1.2990412709264463,-0.06735211474248833,-0.424506260752667,-0.30547453050529344,2.1033002722683953,2.4012157770319065,0.631809033349956,-0.4234633154314938,1.8760572131672852,1
-0.10999635218310991,-0.3210534684733741,-0.15854245613848228,-0.19877178247173932,-1.20413928919486,-0.7690696862078469,-0.7531641265127335,-0.9190175589401233,-1.23627744866676,-0.9919840104671396,-0.560048540210741,-0.8336065214744492,-0.640103898638563,-0.4151079958015582,-1.401049774698643,-0.5341999776013777,-0.46730567613640506,-0.9680895202729062,-0.878097482418355,-0.6880028286217413,-0.1924189760168106,-0.5239048236098265,-0.2999795128157426,-0.2719194374269416,-1.5455918967174835,-0.45716208678728887,-0.5554979728411643,-0.828573921872887,-0.8910019121245697,-0.7650606471883021,1
-0.21508160475996752,-0.6747676716952616,-0.24174666062067446,-0.2883610148014458,-1.7941008029744643,-0.5892201465998341,-0.09892458238860409,-0.5395880788915398,-1.4224755619714124,-0.647506224491362,-0.8708015229376688,-0.13943854637958802,-0.8133646123747105,-0.5649396384477625,-0.3740081340192069,0.4036264940723884,0.5860929426519788,-0.2297111225767015,-1.024602471726687,0.1063249897799808,-0.41606810841638964,-0.47668012408843596,-0.4548658726084343,-0.4368116497305481,-1.3093164423560948,-0.007411307196638316,0.2811901303194124,-0.3780189052422549,-1.379571656765776,-0.42480752795659166,1
0.15981713416287496,-1.2355908491720702,0.2574785662724763,0.0034439133581696383,0.47963506738239564,1.5020756063763736,0.7055979658262145,0.3632013025972718,1.0017508543872027,1.5965609985524953,0.5089994677302109,0.5336830395069607,0.954884728955344,0.20049983991662046,0.9783800309390769,1.5068860024657222,0.6925269862878211,0.6494652648383753,0.7249819047240578,0.6237728257673885,0.039513457582753035,-1.1948212443964805,0.2036990148947219,-0.12548530859015652,-0.05122636069155361,0.6948869398586351,0.2384921709264703,-0.057955828203529444,-0.11932056048928594,0.45076238798168494,1
-0.34572813499065475,-0.6887300744540209,-0.3887956754728646,-0.3938772217675446,-1.2062742524534111,-0.9604796282564169,-0.6286188131811011,-0.6486966241400448,0.06345840106767868,-0.8686524574634664,-0.7614424593299345,-0.5592777242074785,-0.6797063474925396,-0.5409577749405139,-0.5810165270285966,-0.5369944545729921,-0.2879261820336302,-0.5476420671031867,-0.24364612376078365,-0.6214305924128352,-0.49475946981624136,-0.5988129676782394,-0.4900131619460064,-0.492185900131013,-0.9936980246562792,-0.6594545166456013,-0.4595475022952267,-0.4911525238149346,0.19938221995547464,-0.8010809285401932,1
-0.1440780557215504,0.9169462428032326,-0.19684934236048174,-0.2323321933127086,-0.2775652349837072,-0.6987596975939662,-0.7414880033878929,-0.6316725958033986,-0.5389472596238452,-0.6786935137566584,-0.21356437828524696,0.21617285748500412,-0.39605380757593234,-0.2001512926219083,-0.3910088233001712,-0.2508400126796855,-0.3873972508521746,-0.4431790424730561,0.03967757457103225,-0.45840426396943407,-0.19034815071681455,0.5557495137240361,-0.2883630358312907,-0.2650635778535507,-0.4720509176246408,-0.6524569797637101,-0.802570434496954,-0.6527067220728262,-0.41860997359731017,-0.7988642958416153,1
0.9152948959316337,0.8773861016534158,0.7838893253231747,0.7912603373368583,-0.6931714159816433,-0.7853679585010914,-0.7519086294025354,-0.5300443054300866,-0.9040415994368888,-1.3789899181683232,-0.016140590188116317,0.1817003234369057,-0.14309316552115683,0.08961122333264533,-0.43834407580795426,-0.8058231392422897,-0.6443641786334139,-0.6691371066186651,-0.7788131094986588,-0.8385468627759725,0.7415232342814317,0.9433177373823457,0.6236793366402894,0.593149407718099,-0.36684477839136914,-0.6721773109763128,-0.7248505533547445,-0.4911525238149346,-0.7259882897623076,-1.0415855763358968,0
0.24786153497051233,-0.8795495788237231,0.22576211208867067,0.08421642758558748,-0.9002628520610942,0.09966612998091035,-0.29817197377701204,-0.28680705207467255,0.2533074577704611,-0.5284274836602286,-0.6257361625757827,-1.3067874098820287,-0.2920973793342438,-0.45009071412864554,-0.9740324615826552,0.368416084230048,0.15074123145614993,-0.03992581385425891,-0.8030288102107797,-0.22351018052778193,0.029159331082772376,-1.0368627666870014,0.2066775987368893,-0.12724322130128238,-0.8227380484022127,0.6897978221263508,0.3262868514760032,0.3546849609377389,0.08613757715784384,-0.018055427767544072,1
-0.6609838927212266,-0.47231283169325994,-0.6882484312082773,-0.6342038926202492,-0.3907182876869121,-0.7963598165593261,-0.7566795184212876,-0.8393141535458253,0.12917538223402653,-0.36965582921871715,-0.2215046403293728,-0.13943854637958802,-0.3173439404786537,-0.33612185819511575,-0.5260142970019471,-0.3262908909132722,-0.368166177547256,-1.0378396764700433,-0.6989012971486592,-0.2738176090265576,-0.583804957716074,-0.1933319269600921,-0.6332830447542462,-0.5600413307804716,-0.3493104218524906,-0.5195037790077751,-0.6106694934050786,-0.9295262625373375,-0.19697402983623313,-0.15160754785686326,1
0.11437486277828796,-1.2355908491720702,0.07788929323170597,-0.030400907744163853,0.9635600726539654,-0.2259202862957661,-0.24920758647929364,0.41349956813736255,-0.5900604671976708,-0.22506021535234103,-0.3579327790875361,-0.8991043361658357,-0.3579364505539799,-0.32204076402572207,-0.3026719084088856,-0.7247833070654744,-0.5220147639866044,-0.07074565031345888,0.18497177884375843,-0.0877179487152969,-0.09716101221698974,-1.424430990345311,-0.12394520774366428,-0.22972953235992072,0.10219925902363315,-0.6772664287085975,-0.6471306722125348,-0.11733955800614741,-0.47685007560752013,-0.3239507401712963,1
-0.11851677806771978,-0.14186929973597065,-0.13341643399286995,-0.23858921906272,0.19924322609269213,0.050392283512961544,-0.43878765011917753,-0.28603323260482494,-0.35640008971732273,0.7984499141724003,-0.3106521278247864,0.058324938422659844,-0.28813713444884614,-0.3055394817959639,-0.10066371812919135,-0.1658879127426103,-0.3658451859414899,0.27962722732797396,-0.22306277815548076,-0.018119701769622305,-0.24004795791672104,-0.007690004703590717,-0.2332592347511982,-0.3141093424939625,0.44411921153176614,0.014853582882106786,-0.3775098499784499,0.21003228577751554,-0.08372938703860233,0.35267639106961246,1
-0.7859501390288411,-0.4001737507730069,-0.802345285869501,-0.7254995865181405,-0.5536871497563084,-0.9705239123441141,-0.765467998192673,-0.7201459551893021,-0.7689566937060631,-0.519921859315147,-0.7708264053820834,0.6135141709867672,-0.7460404493229503,-0.58694134808744,-0.550015270104485,-0.8680281966304245,-0.6718845076732111,-0.9609522949876177,-0.8635680619910823,-0.8079085040661916,-0.6666379697159178,1.733110125929742,-0.660983874486401,-0.6315883781232946,0.5668597073039174,-0.5856623095274748,-0.43699914171693127,-0.4206533779210575,0.11687540877434381,-0.35997102152318733,1
-1.5340435316976035,-0.8050834307770098,-1.488162119844002,-1.2058685179621857,1.3265038266076432,-0.4232051869616685,-0.5961014380269752,-0.7655433640870253,-0.5937114105958018,1.918357119608057,-0.8614175768855199,-1.1438593279073328,-0.7485156023763239,-0.6902173731360866,0.4066901855105686,-0.18712593772687905,0.023086693139018163,-0.2264669292652069,-0.4192099539236611,0.004197127414045138,-1.375274387374584,-0.986381191336549,-1.2742742875886162,-1.0480378993890132,1.7548123628129426,-0.11364663985807909,-0.12755887420628212,-0.14627009303819202,0.04083972003879207,0.983862551989674,1
0.5631172927010841,-0.288474528702937,0.5408671439147925,0.44968361343851704,0.06047061428687482,0.17736719556498315,0.0711952760432122,0.2711167856854129,0.18028858980785217,-0.045024500048127566,1.0817810979132934,0.20891548189593082,0.8251867089585709,0.7424019483418791,-0.09032996582115425,-0.34082217116566665,-0.040574790904850215,-0.020460653985290372,-0.21700885297745076,-0.13651237184568848,0.7560190113814046,-0.0663137696266963,0.6475080073776269,0.6195180983849871,-0.04245918242211527,-0.19507252357463256,0.038435439838190096,0.1064914235575665,-0.17594288188810134,-0.1311036953950178,0
1.239071079546815,-0.41180908640530595,1.208148387781875,1.1749297799170932,0.34442072767416304,0.5184938249584745,0.7570733473443289,1.10684181312077,0.07441123126206982,0.5914797217754302,1.3972260536662955,-0.3118012166200789,0.9826064431531276,1.2196190304264856,0.31101963994906356,0.37232835199030806,0.41301328290771167,0.6381105882481436,-0.5293913921638119,0.5522833221112335,1.3420625712803012,-0.4555104311995368,1.1657815959147106,1.2646720633681812,0.3871325527804108,0.34755465463021196,0.3891344096835924,0.7871203266798801,-0.6321570143014136,0.5820978753724271,0
-0.11851677806771978,0.3584501324528832,-0.07286683964196806,-0.21896491102859386,1.6040490502192788,1.140102349631058,0.061025749450609096,0.28195025826327874,1.403354628181551,1.6603531811406034,0.6436230014783456,0.29056095727300535,0.49005098553179377,0.23372242147253355,0.588030871174189,0.2689327040405782,-0.23255395372464063,0.43534850627972166,-0.6880042318282048,0.6116687828203147,0.16376297558251873,0.40104791184361854,0.09944858041887174,0.028859427446694775,1.4479611233825667,0.7247855065358073,-0.021053851900291392,0.6241957346573126,0.4776404851153671,1.7264345060132755,0
0.0973340110090682,1.3265100570601545,0.15821018369718823,0.0042971441422619515,-0.5686318925661658,0.35361595408495355,0.15192374022893768,-0.2584336715135957,0.2204489671872877,0.08681267730062618,-0.5448898581265008,-0.2501135241129558,-0.12428200231551782,-0.37902519199248697,0.032341674480706406,1.1765788244209097,0.21208172389425214,-0.028571137264027192,0.016672658894517363,0.8760664709454593,-0.01018634961715383,0.9856571231601445,0.18582751184171917,-0.1260126824034944,0.07151413508059652,1.0555781591343056,0.6323688525175446,0.08974216643375112,0.46308045961281435,1.0171120424683429,1
-0.16679919141384392,-1.1471622983665986,-0.18572798829603052,-0.25195650134683506,0.10174657061886144,-0.4368502521374081,-0.2782095697248652,-0.028609288968872486,0.26791123136298334,-0.7283096557696301,-0.4882252608116023,-0.7769989918796776,-0.40001405246133,-0.3691244226546321,0.4736929020884875,-0.6079741696519958,-0.26604254689355056,0.21960965106532102,-0.08987642423881505,-0.5654493937826185,-0.24004795791672104,-1.0450049562596546,-0.225217058377347,-0.29776075428049176,0.509873048552561,-0.4896052123306031,-0.15922252948644167,0.2161229247316304,0.1233465312199229,-0.6292918944004043,1
0.37850806520120006,-1.7219478786021658,0.43377262329414995,0.23324740454040072,2.0879740554908484,0.9695390349343124,1.4362972839613963,1.5677802773266292,0.5636376466115491,1.118828431170449,0.05676545221703974,-1.0134080016937403,-0.030226186287323462,0.09467161654977126,-0.5493485764071923,-0.12676523514000965,0.36924601262755213,0.22772013434405783,-0.31750401093275316,0.14112411325281818,0.5220157524818445,-1.4065181732854732,0.5283646536909411,0.3892315332274981,0.9087796598120504,0.6618076745987854,1.491125563903687,1.0368365237985813,0.5099960973432616,0.9450714797645609,0
-0.362768986759875,0.4841117572817123,-0.38467665544899393,-0.39928101673346333,-1.4838194760650467,-0.40141098563930655,-0.34575531425351264,-0.7802459340141288,-0.845626505066802,-0.23498344375493554,0.33972751778952676,1.0543997380229704,-0.15546893078802448,0.019865803774867533,-0.3433402239437417,1.079889921203054,0.6583752526601208,0.2617841641147527,0.7443544652937542,1.4888336451410737,-0.3870765542164441,0.21703442750164811,-0.465588774440236,-0.4127282455881238,-1.6810448009803207,-0.3859144385353047,-0.4240458281932298,-0.8922210989433853,-0.6677481877520977,-0.13498280261752918,1
1.4435613007774568,-0.16746703812702818,1.3811472287844522,1.4138343994629772,0.6361990396761393,0.4237364279047269,0.5461498328310804,1.0580911865203744,0.3847414201031578,-0.45187686455449927,1.163349244366587,-0.04327831982436648,0.9756760146036816,1.3676905363015157,-0.19433418259881857,-0.13514866605485265,-0.08102635889105818,0.5813372052969853,-0.24485690879639008,-0.44894798041703254,2.0440723479789797,0.40104791184361854,1.8717059665083242,2.2227344909317805,1.316453449340977,0.6160056150082241,0.5551287237280648,1.438818694770149,1.0293036736009684,-0.05573818364336865,0
-0.47069438129826874,-0.4606774960609617,-0.47447129196937876,-0.49711814664273,-0.5038713403901179,-0.531418134397048,-0.6617639368903259,-0.6507601427263049,-1.0427774485658456,-0.33138051966585297,-0.909420070152281,-0.7907880054989167,-0.7985136940544694,-0.6254443399568759,-1.0817034936954297,-0.6577158597467307,-0.6112071556938992,-0.7624076643241391,-0.6274649800479022,-0.8525421624335265,-0.45748461441631155,-0.21775849567805258,-0.430143626718447,-0.4804078849664698,-0.209035569541462,-0.023314800110027675,-0.3328928811745888,-0.14170211382260592,0.21717780668081643,-0.406520308193324,1
-0.4735345232598054,0.13970582256566375,-0.4752950959741528,-0.522146249642775,-0.8433304984997334,-0.05573600118723555,-0.25736831769558,-0.46246407173006704,-0.11178688204258258,-0.043606895990614625,-0.14787675592020516,-0.32087293610642037,-0.1421031042998073,-0.2643962847697668,-0.17033320949628064,0.45895713811035177,0.5048582364501676,0.36235415677109,0.8303202028217841,0.32381951148521426,-0.5817341324160776,-0.4245701108234531,-0.5698392089160862,-0.5788509967895185,-1.1997267139881034,-0.24469142146440734,-0.3923821729130702,-0.5840347678651834,-0.34904540730733663,-0.3494420162049425,1
-0.9279572371056753,0.5097094956727698,-0.9662822828195616,-0.8372728192342506,-1.569218006407088,-1.1763369787448537,-1.1148728439607505,-1.261819584082589,-0.5499000898182362,-0.47030571730217535,-0.32075791588094654,0.15811385277241763,-0.3717973076528715,-0.43270936351330025,0.8460413320264719,-0.8069409300309355,-1.0575006844597676,-1.9134474512424755,1.1499674522217818,-0.5926834904135346,-0.9544826864153761,-0.14773566535323196,-0.9883302387405702,-0.8232008636360143,-1.4145225815893663,-1.1500454660378359,-1.3058306525103973,-1.7450628184932908,-0.7162816060939394,-0.9989153968882716,1
-0.7831099970673044,-0.09300089008031492,-0.8155261499458876,-0.7363071764499781,-0.6568770405862759,-1.0283259245469,-0.8136790872242726,-0.7013163480896784,0.7352319863236804,-0.46038248889958083,-0.5037448638978482,1.3737242639421956,-0.4514972359714995,-0.502674800167475,-0.16766643470710968,-0.644302370282982,-0.6012600488120446,-0.3036787300787817,1.6488108868914753,-0.3279075509462939,-0.8095249154156492,0.0753603289374759,-0.8331460205636616,-0.7405789662130985,-0.9016426528271668,-0.9999164929354405,-0.9446251061402148,-0.8005569826839595,0.5925029085243925,-0.7761438106811912,1
1.329955622315989,0.1606494267038018,1.191672307686392,1.2716292687809034,-0.5074296124877026,-0.8623109649087344,-0.10796416158202918,0.24532280335716133,-0.9551548070107154,-1.8198647800550192,-0.27744739564025994,-0.7055138423273055,-0.24902971620554418,-0.07914188960368156,0.1766808599445802,-0.8013519760877068,-0.1877919727562957,0.45967995611593243,-0.15041567601911768,-0.8014782312505588,0.7643023125813888,-0.2242722473361753,0.6475080073776269,0.6247918365183647,-0.3536940109872104,-0.87955885856691,-0.24557795297778556,0.2252588831628022,-0.5399435194519145,-1.4727206362093017,0
-0.18099990122152704,0.7005290000424724,-0.20838259842732024,-0.2670302451991347,-0.6291225182251122,-0.5185311283977383,-0.5183861669057249,-0.38895122209454946,-0.009560466894930265,-0.7963546505302779,-0.6185177425356682,0.24701670373856546,-0.5599089397092604,-0.44305016704394873,-0.8620279204374783,-0.6515680104091791,-0.3628610538769336,0.007114989162414985,-0.5003325513092667,-0.6955678554636625,-0.23176465671673646,1.0003130643909208,-0.24606714527251713,-0.3195588718984527,-0.7087647308995021,-0.5290458747558088,-0.21103578358124805,0.20698696630045854,-0.04813821358791784,-0.8188139901288165,1
-1.2951875927323686,-0.7864668937653315,-1.3081609448008449,-1.067360720677846,-0.8340789910460119,-1.2028690499199028,-0.9074647213560562,-0.8318338986706322,-0.9515038636125854,0.17470412886646397,-0.6856490489087327,-0.701703720143042,-0.8173248572601082,-0.6093830919199111,1.53306918708662,-0.8427102352675988,-0.6642583923971226,-0.3525038394167778,0.39806994511042365,-0.09641772958350625,-1.192627595914928,-1.061289335404962,-1.2367441311773104,-0.9575053947660308,0.7904227531746195,-1.012193989464577,-0.9622799927206673,-0.6453979553278885,-0.23256520328691674,-0.1200205319021279,1
0.8556519147393631,-0.6724406045688023,0.9898403265167186,0.7332406440185723,1.5826994176337676,2.3359407004493513,1.6836302146703839,2.3519173401054827,4.484750856203646,1.6064842269550899,2.312882635754815,-0.4369909455315933,2.183055674039293,1.5635057520946463,0.3293537166246132,0.6992821576691837,0.17991941164292288,1.9747182325839796,0.30726106743996967,1.380275509959505,1.238521306280496,-0.6965192425500825,1.3444966264447396,1.0203221965216853,0.9701499076981249,0.8946348108508052,0.5426551625570927,2.1377195147548065,1.8851096170287776,1.2166089853403548,0
-0.8711543978749413,-1.0377901434229886,-0.8921399223898859,-0.7869322029727964,-1.3486051363568132,-1.0738094751326988,-0.7743820276750781,-1.0749163881320767,-1.0099189579826722,-0.09322303800358628,-0.7928425865044325,-0.9593405535551441,-0.7935633879477223,-0.6019025106424208,-0.9273639027721648,-0.60294411110309,-0.41425443943318147,-1.2373575651269701,-1.04518581733199,-0.0975524836097944,-0.7432585058157738,-0.8675052235758068,-0.7884672629311544,-0.674833030816991,-0.8928754745577273,-0.4221744023778323,-0.30842551118537476,-0.8990730677667642,-0.5027345653898355,0.42305447924946094,1
0.13709599847058146,-0.837662370547447,0.0292848569500299,0.028472016358214492,-1.4361386299574066,-1.31127151214939,-0.9332024121151133,-0.7776665357813036,-0.6557774483640186,-1.4527053291590246,-0.32184067888696377,-0.5540161269054003,-0.4514972359714995,-0.2516352931787538,-0.6700201356171748,-1.087450528441581,-0.8809395373068516,-0.8876335261478364,-0.6783179515433564,-1.0969681796959996,0.039513457582753035,-0.6395239155415072,-0.10607370469066114,-0.0699352669185792,-1.3706866902421697,-1.1666487126394145,-1.0781401859048871,-0.8599407124865774,-0.5998014020735191,-1.4959952795443696,1
-1.8279982247166506,1.4312280777508457,-1.797088621634318,-1.377936726087495,-0.688901489464542,0.2948663679116303,0.0467130823943531,-0.9099896651252352,0.8228546278788105,2.085634398394649,-0.6697685248204809,0.4756240347943747,-0.7034678168049254,-0.6294046476920178,2.80978761740218,2.184826115779357,2.0101870779041375,0.2990923871969422,0.06147170521194113,1.4207484035637832,-1.5720027908742136,1.011712129792636,-1.5718348134211142,-1.154918992225466,1.193712953568827,0.33165116171682263,0.32196908030143595,-0.9837329492289579,-0.17917844311089043,1.2554000575654687,1
1.4037993133159432,1.2846228487838784,1.4964797894528372,1.2773174740081863,-0.3949882142040145,2.172957977516906,1.5304595672262393,1.3075189956345687,1.8195621755684224,0.08964788541565404,2.0786449054531007,0.8149063435835513,2.952333243027788,1.420494639436742,-0.16433296622064622,4.198526221524636,2.1663566559492518,2.3656435266190967,3.9698858001482766,1.4566822810629085,1.6195531614797787,1.2201521828525674,2.0891425869865263,1.3543256116356006,-0.3361596544483313,3.1179431201426353,2.1685358859580073,2.050927909658672,2.862249106311191,1.1002357686650148,0
-0.12419706199079353,-0.7492338197419749,-0.17007571220532078,-0.21555198789222396,-0.9493670070077689,-0.7694487157960618,-0.7939677825941654,-0.7379438029957958,0.2204489671872877,-0.8658172493484395,-0.846980736805291,-1.2886439709093451,-0.7396050513841791,-0.5794607668099497,-0.9370309613829092,-0.5369944545729921,-0.6698950862968402,-0.8858492198265142,-0.13467547055623924,-0.6119743088604336,-0.2959602410166157,-0.8903033543792369,-0.2413014111250498,-0.3691320103522021,-0.9586293115785222,-0.2841320838896128,-0.6600839857362365,-0.6811804591833122,0.6830986227624969,-0.384353981207545,1
1.4293605909697733,1.7011678644201809,1.4099803689515484,1.3740169628719965,0.4013530812355238,0.7762339449446677,1.2969371047294287,1.230910868119661,0.3299772691312011,-0.08471741365850567,0.8334674485333559,-0.3916323480998853,0.7202402194955326,0.6449343746381075,0.11701177403688187,-0.055226624666683044,0.26480139036808065,0.18392352463887884,-0.7497542686441134,-0.13197335574053584,1.5429326253799227,1.6647157335194516,1.5649118307651084,1.4826532395477892,2.0090605326266826,0.8259317214649634,1.4546643850962309,1.1053562120323712,0.5779428830218397,0.7344913733996582,0
1.6111296765081213,0.5283260326844477,1.5541460697870286,1.6356744033270123,-0.18006857950987654,0.4976471976066497,0.4821194802109873,0.9799354200657714,1.0309584015722462,-0.9905664064096267,1.9855272869356242,-0.05597872710524497,1.792476522216949,1.8495279774104547,-0.07899617296717795,0.34717805924577927,0.08509032603591064,0.8635820233970284,-0.19037158219411746,0.09459919817500308,1.9591685106791397,0.4824698075701542,1.8776631341926588,1.983658362218662,0.12850079383195182,0.44043105324440573,0.4294336073128864,1.0261779056288804,0.27380012807963183,-0.0773503524545034,0
-0.7575487194134739,-0.2628767903118795,-0.757036065606921,-0.7161140478931236,-0.557245421853894,-0.5192891875741685,-0.6950346103105703,-0.8743939695122477,-1.462635939350847,-0.05211252033569523,-0.27925200065028855,-0.28640040205832235,-0.19358628780997691,-0.38298549972762896,-0.12966489396142478,0.05822914038085822,-0.32108320497314496,-0.6470765921005008,-0.19400393730093587,-0.14521215271389784,-0.7432585058157738,-0.6623220463449373,-0.7318741699299789,-0.6869626285237594,-0.7876693353244557,-0.47942697686603397,-0.7176542680637992,-0.906229568537849,-1.1207267589426204,-0.4192659462101467,1
-0.5871402017212729,-0.0906738229538556,-0.6305821508740853,-0.5960929175974534,-0.8895880357683392,-0.8793672963784089,-1.0205850109848875,-1.042880262080388,-0.9369000900200632,-0.3285453115508261,-0.5853130103511417,-0.1176664196123681,-0.6470343271880089,-0.49101389405844587,0.04634224212385337,-0.8114120931855184,-0.8641289266765176,-1.0221053389092938,-0.08745485416760304,-0.3937232844710081,-0.5444592770161478,0.22517661707430123,-0.6171986920065434,-0.558986583153796,-0.15204891079010668,-0.7574200329920798,-1.0896542423703997,-0.9695722136606414,-0.03357818808536602,-0.17266555849335377,1
-0.2775647279137743,-0.9191097199735394,-0.2742869188092541,-0.3298849129606114,-0.17935692509035883,-0.36691929311174243,0.05186062054616444,-0.3634151795895803,0.03790179728076534,-0.10314626640618081,-0.48425512978953916,-0.7695601819008774,-0.518326368412585,-0.38606573907718383,0.5143612176233431,-0.29666943501416043,-0.04720619549275313,-0.36661608032178,0.8654329688543595,-0.1194910614513659,-0.3104560181165885,-0.8430786548578464,-0.28568231037334013,-0.3573539951876589,0.6764494356719076,-0.1823497292439211,0.13774417685323562,-0.26473302069572213,1.5340512243561224,0.13212143756110997,1
-0.14691819768308703,1.2566980432663617,-0.1733709282244174,-0.23403865488089357,-0.26902538194950343,-0.48745070216410935,-0.4513426212211566,-0.4660752292560223,-0.18480575000519153,-0.21230177883471962,-0.6286235305918284,-0.384374972510812,-0.5514934193277904,-0.45119079961062947,-0.9843662138906926,-0.7678182524283349,-0.4620005524660827,-0.7974449520882824,-0.8853621926319911,-0.8812892644328272,0.12855894548258537,1.6223763477416535,0.1768917603152178,-0.05604775650068466,0.645764311728871,0.21714601274041923,0.5153092784515004,0.27855197401130555,0.9209123726375211,-0.27407650445329335,0
-1.0983657547978765,-0.6305533962925262,-1.0758482154545275,-0.9501836929958171,-0.5401657157854853,-0.44878968416618037,-0.5677272033365026,-0.6329622949198113,-0.5206925426331929,0.61557899075316,-1.0494574189305017,-0.3517167823599821,-0.9293502844557944,-0.7263001769451578,1.0763840044411064,0.2996719507283356,-0.19110767505024717,-0.13400741988760642,0.26972673133618197,0.7924729243422306,-1.1263611863150527,-0.5922992160201167,-1.0776877540055847,-0.9197102714768246,0.6019284203816745,-0.18871112640927684,-0.45043220759336267,-0.4762304583773538,-0.33933872363896844,0.6009392533103389,1
-1.361646914632327,0.6167545834899202,-1.3575891850872954,-1.1117287214506528,-0.2818351615008096,-0.9151855924647254,-0.6131761987256668,-0.9311407306344016,-0.4367208444761928,0.4199496308162973,-0.37489606618180504,1.2013615937017048,-0.36882712398882334,-0.49453416760079427,1.299726393034168,-0.39894729217524466,0.267453952203242,0.1660804614256576,2.0641101541043505,0.31322847390652486,-1.3303374783646686,-0.1021394037463718,-1.322527345831724,-1.0279976944821783,-0.9673964898479617,-1.0896121929669564,-0.9223645969735572,-1.354652861534541,-0.753490560156018,-0.5550346989980445,1
-0.8711543978749413,-0.5048917714636971,-0.8534211341654998,-0.8202082035524016,1.6396317711951294,0.05228743145403655,-0.6047643680873409,-0.16093241831280392,0.5198263258339836,2.4045953113351852,-0.8202725826568674,-0.3390163750791036,-0.7663367043606133,-0.6168636731974015,1.859749098760053,-0.11167505949329236,-0.46067427154850216,0.1709467513928998,0.20071198430663728,1.7089759262409794,-0.948270210515388,-0.8039961449091095,-0.9287585618972273,-0.8253103588893653,1.4830298364603238,-0.3254811654644251,-0.7032616974819085,-0.29640434325711834,-0.19535624922483769,1.8206413957028373,1
-0.9847600763364088,-0.9633239953762752,-1.008296287063045,-0.8682735377229426,-0.6006563414444318,-1.1621233691867914,-1.1148728439607505,-1.261819584082589,0.4249017974825923,-0.4320304077493112,-0.26806344958811096,1.2848214129760478,-0.3519960832258834,-0.4038871238853226,0.5573629610987237,-0.8555648293370246,-1.0575006844597676,-1.9134474512424755,1.465982346514961,-1.056419635823302,-0.9793325900153296,-1.0547755837468393,-1.014541776551641,-0.8302325144805178,-1.085753396485392,-1.1854784482488674,-1.3058306525103973,-1.7450628184932908,-0.3086008920224685,-1.236095095636109,1
-0.6496233248750801,-0.13721516548305118,-0.5782705965709247,-0.6094601998815683,1.0347255146056669,0.8956282652323896,0.41432263626030025,0.07482458016741707,1.786703684985248,2.153679393155298,0.27909278945256516,-0.3390163750791036,0.3014443228647304,0.01458539346134487,-0.49667977432106725,0.4841074308548806,0.3367521301468276,-0.2199785426422174,0.26488359119375793,0.7081228750548095,0.11406316838261259,0.3977910360145572,0.361563958529581,0.014268751944350134,1.3734401080923335,2.056225933244763,2.0313267130773163,0.608969137272026,3.009467141948111,3.1173715243709177,0
-1.0273622057594591,0.20951783635945753,-0.9609275567885297,-0.9120727179730214,1.1272405891428783,0.49196175378342494,-0.30181291539658595,-0.4704602062518251,0.40299613709381005,2.129580124177568,-0.2583185825339565,1.1668890596536068,-0.40842957284279996,-0.4494306628394552,1.6130724307617466,0.6702195971643947,0.4647382386933546,0.5910697852314697,0.2818345816922428,1.133655634912875,-1.0580239514151812,-0.47668012408843596,-1.0318175628362103,-0.8898257553876848,-0.10382943030818974,-0.31403065056678486,-0.6845513557254506,-0.8107588029321017,-0.8376151519485434,0.3499056001963904,1
-0.41389154206753526,-0.463004563187421,-0.44151913177841184,-0.4692459410290437,0.4582854347968856,-0.5249746313973933,-0.7139926166745587,-0.7183403764263245,-0.38195669350423606,-0.4192719712316898,-0.7044169410130303,-0.48325671491193556,-0.6435691129132859,-0.5000345950107137,-0.07732943872394621,-0.8922283672046046,-0.6168438495936166,-0.8633020763116258,0.0033540235028509165,-0.7606270863041845,-0.5299634999161751,-0.7453723799860034,-0.5528612810157332,-0.5382432131625109,0.2643920570082607,-0.8464795933070601,-0.8164832527261151,-0.8920688329695323,-0.34419206547315295,-0.8348845771935063,1
-0.8654741139518681,-1.0657149489405058,-0.8962589424137571,-0.8025747673478246,0.30172146250314197,-0.8890325508778911,-0.818198876820985,-0.5955610205438462,-0.8967397126406287,0.5517868081650521,-0.7141618080671848,1.0671001453038487,-0.7371298983308056,-0.46769208184038763,2.639780724592536,-0.2385443140045826,-0.5757291411486183,0.6543315548056172,1.2444086849990537,0.37450519132608623,-1.0186782707152555,-1.442343807405149,-1.0499869242734299,-0.8509758844718031,-0.4720509176246408,-1.0933018033228628,-1.116904176005446,-1.0894055350828473,-1.6157676260294058,-0.5993673529696025,1
-0.8768346817980152,-1.0145194721583908,-0.8773114503039507,-0.8025747673478246,-1.1735381491556285,-0.6358407859502777,-0.6696735686845726,-0.7268523905946476,0.6987225523423759,-0.047859708163154435,-0.8697187599316515,-0.3372020311818355,-0.7846528369555775,-0.6305047331740017,-0.5816832207258891,-0.36038350996696705,-0.4862051792119285,-0.7844681788423034,-0.21095492779942032,-0.7012416255951034,-0.8654371985155438,-0.7893402036783331,-0.8200402516581262,-0.7620255012888341,-1.0024652029257188,-0.35665201157466836,-0.560775248721191,-0.71665843109103,0.48734716878373524,-0.6137754655103588,1
-0.48205494914441577,-0.5328165769812148,-0.5506731624109904,-0.5050816339609262,-1.4795495495479443,-1.3228319145899472,-0.9463851317721913,-0.8235798243255915,-1.2399283920648903,-1.0189184875598962,-0.09879149964742683,1.7837659847248377,-0.18764592048188042,-0.2019114293930825,0.10534463433425915,-0.8209133148890071,-0.7272898930051401,-0.09669919680541693,1.6693942324967779,-0.31542525665712395,-0.6977003492158594,-0.8903033543792369,-0.7595749996621332,-0.6410811067633743,-2.1163352020579826,-1.3177318953166133,-1.198510051204766,-1.3138455805419726,-1.6173854066408007,-1.3646597921536283,1
0.1654974180859487,0.5353072340638273,0.14750073163512373,0.005719195449082689,1.2339887520704307,0.6094609261300721,0.5084849195251432,0.8334256004413013,0.786345193897506,0.677953569283753,0.06290110925113696,-0.12129510740690476,-0.06487832903455311,-0.0054361623107616495,-1.127372011959981,0.17168490542839968,-0.20470205445544823,0.14985949486818398,-0.28723438504260185,0.11842903272705461,0.3314998248822035,0.8179280179634809,0.25135635636939646,0.18443470238133425,0.19425463085274666,1.1115584541894359,0.4150410367309957,1.0474951419682819,1.289766352035519,1.4105643464659228,0
0.2109396894705352,0.214171970612377,0.17097914577118806,0.0739776581764781,-0.03489107792840564,-0.3959150566101892,-0.2581216159616988,0.01524048098915551,-1.1851642410929335,-0.7538265288048729,-0.623931557565754,0.7604760266655015,-0.6287181945930447,-0.4069673632348775,-0.5420149457369725,-0.6577158597467307,-0.34362998057201505,0.005492892506667677,-0.11530290998654236,-0.7500360487254949,-0.05367368091707141,0.4564148009376628,-0.10011653700632676,-0.17048787399497883,-0.4720509176246408,-0.7345190031967991,-0.49025165286992667,-0.19651786440963795,-0.8602640805080697,-0.995036289665761,1
0.7164849586240649,0.4864388244081716,0.7426991250844659,0.7102034128480763,1.120124044947709,0.7838145367089672,0.7997602490910576,1.1034885954180975,0.6695150051573325,0.07121903266797792,1.449559598957125,-0.5717966970986299,1.2816049320006508,1.3698907072654836,-0.3310063905438262,-0.37212031324774714,-0.14866668568766828,-0.08047823024794329,-0.7097983624691137,-0.3759454713924933,2.1103387575788553,0.9579736786131221,2.0772282516178575,2.3457883807105913,2.1098830827252346,0.6586269760161075,0.9466066435554904,1.4449093337242633,1.1522550000669673,0.6480426981551198,0
0.5687975766241574,0.3235441255559867,0.664437744630919,0.40929735632480796,1.468834710511046,1.8545731234163139,1.0470931798000451,1.389801799261692,1.2865244394413775,1.5256807956768208,0.5920112981915273,-0.26099958749656577,0.4890609243104445,0.3045679265122953,-0.0049931725676859795,-0.02616406416189413,-0.0004547931480373892,0.19041191126186835,-0.4422148696001764,0.13128957835832067,0.971384842580999,0.9449461752968767,0.8798375470666647,0.7636669406973083,2.0397456565697203,1.0752984903469085,0.9893046029484328,1.411410819476633,1.3027085969266763,1.6765602702952727,0
-0.3570887028368018,-0.7166548799715378,-0.39497420550867113,-0.4058224527448386,-0.15017909389016168,-0.7988235088827236,-0.6252289709835668,-0.8452467694813233,0.7242791561292892,-0.7240568435970903,-0.6159912955216282,0.003894621504610026,-0.65346972512678,-0.4861735179377168,-0.5076802203263971,-0.20668727652817928,-0.19906536055573074,-0.886660268154388,0.6523348025876946,-0.6195393357023548,-0.4906178192162492,-0.33174914969520236,-0.5358833531153806,-0.49763542953550327,-0.2967073522358551,-0.4673403222518582,-0.35016396587285775,-0.8649654896237221,1.1376949745644145,-0.7384610548053667,1
-1.3241570407400427,0.4003373407291601,-1.3122799648247157,-1.096370567336989,0.5721501419196082,-0.5043175188396765,-0.842178871625765,-0.8738780898656827,-0.3454472595229316,0.8778357413931546,-0.6138257695095938,1.440854988141124,-0.5970362355098635,-0.5750604248820141,1.1597207166026966,-0.4431000283267509,-0.48918931127648485,-0.3995446424334517,0.2721483014073944,0.16722345585744636,-1.2133358489148889,0.9579736786131221,-1.198320399613354,-0.9666465408638852,0.9833006751022837,-0.5589444414329808,-0.8542877381212145,-0.7527454668941593,-0.03681374930815512,0.4524248625056185,1
2.1649573590077744,0.3956832064762398,2.2790935939883044,2.377985185487437,-0.16725879995857032,1.738969099010742,1.6409433129236553,1.5445656932312022,-0.3308434859304094,-0.12157511915385594,2.74959704818174,0.24520235984129735,2.9706493756227528,2.562383369736008,-0.4513446029051623,1.3481597104780287,1.041007297382121,0.618645428379175,-0.15768038623275413,0.30982421182766023,2.468591534478181,0.4075616635017413,2.6401805977874484,2.642875628890863,-0.22656992608033988,1.3882792308824106,1.4800912597909042,1.0581537601379827,-0.10961387682091776,0.25680702685611784,0
-0.27472458595223764,0.2909651857855496,-0.3257746691076401,-0.3304537334833395,-1.6375368306807214,-0.9777254745201989,-0.8888833641251271,-0.9378471660397469,-0.3600510331154528,-0.5553619607529843,-0.2940497617325232,0.4647379714107647,-0.2673458488005083,-0.31390013145904133,0.2536839819818895,-0.2771080962128602,-0.6128650068408749,-1.0109128719846368,0.038466789535426246,-0.4137706056020992,-0.36636830121648317,0.4531579251086014,-0.3565726058169181,-0.40833346381030916,-0.9016426528271668,-0.5703949563306211,-0.9365172913790831,-1.1063070581805157,-0.3458098460845475,-0.5350850047108433,1
-0.9137565272979917,-1.6149027907850158,-0.9403324566691753,-0.8281716908705978,-0.7956496523920932,-1.0827166704557512,-0.9596934011402892,-0.9086999660088225,-1.3239000902218903,-0.35264458052855496,-0.8296565287090162,-0.3444594067709088,-0.7915832655050234,-0.6434857418614115,-1.187707791564972,-0.7415501688951603,-0.7020573985481695,-0.3898120624989673,1.0736879949786002,-0.13878187989826482,-1.0145366201152632,-1.7680313903112914,-1.0377747305205447,-0.8585349091296444,-1.720497103192798,-1.1399944585165738,-1.1674700739831552,-1.258725298007235,-1.2258824986832775,-0.9706533299814033,1
-0.533177504452076,0.7331079398129096,-0.5679730465112476,-0.5357979421882542,-1.0276489931546398,-0.991939084078261,-0.8996806392728292,-0.9365574669233345,-0.9770604673994977,-0.4306128036917972,-0.6542489217342349,-0.14125289027685614,-0.6381237761958641,-0.49057385986565233,-0.6483525904551614,-0.7504924952043261,-0.7454930985989338,-1.1752312632118458,-0.5402884574842665,-0.5280025109151086,-0.43470553611635454,1.0279965089379428,-0.43252649379218067,-0.4529844466729062,-0.2967073522358551,-0.46988488111800036,-0.7157352586528803,-0.7804578741353811,0.3223335464214736,-0.10616657753601591,1
-0.39117040637524175,-0.6026285907750085,-0.3896194794776386,-0.4581539408358418,1.1485902217283894,0.13946423674348413,-0.6277399652039626,-0.48928981335144883,1.1258829299236375,0.48657702151943116,-0.07857992353510636,-0.38800366030534866,-0.18368567559648277,-0.2577957718778635,0.156013355328506,-0.5515257348253865,-0.401986340945561,-0.4212807376204663,-0.3017638054698743,-0.06275336013695719,-0.3767224277164638,-0.6411523534560383,-0.4060170975968931,-0.4508749514195551,0.663298668267749,-0.35856043072427507,-0.6231430545760505,-0.5200830588469795,0.2754179086910264,0.09000541628812897,1
0.12857557258597158,-1.3100569972187834,0.09560107933435102,0.011122990415001428,0.1394642548532634,-0.28732307958659464,-0.08260311995603135,-0.14003929262692003,-0.2651265047640616,-0.9069277670163306,0.04088492812878787,-1.0761843005392242,-0.15101365529195215,-0.07100125703700091,-0.6960211898115908,-0.41124299085034755,-0.05118503824549497,-0.5106582633521468,-0.6238326249410842,-0.5726361692824435,0.10163821658263625,-1.3739494149948592,0.03689831973336182,-0.032667517442710674,-0.44136579368160295,-0.39100355626758926,-0.11028778950801336,-0.3463475826808587,-0.4444944633796256,-0.7462192692503895,1
-0.5274972205290027,2.4853894860371284,-0.5992775986926665,-0.5389264550632599,-1.378494621976528,-1.333444743059967,-1.1148728439607505,-1.261819584082589,-0.40386235389301833,-0.45329446861201317,0.14555201871044768,4.409121604072104,0.008881231955978288,-0.11456464212356245,0.09934439105862475,-0.9632639718230406,-1.0575006844597676,-1.9134474512424755,1.315845002099811,-0.24923127179031387,-0.583804957716074,2.0148298851435547,-0.660686016102184,-0.5654908601849619,-1.6722776227108818,-1.285861295518181,-1.3058306525103973,-1.7450628184932908,-0.7955528560522807,-0.9152375125169554,1
-0.5587387821059061,-0.2931286629558565,-0.5634421244849896,-0.5676518914610387,-0.3907182876869121,-0.49199905722268905,-0.7487698866270408,-0.8679454739301847,-1.2691359392499335,0.006009246022357024,-0.6704903668244923,-0.048721351516171664,-0.5881256845177187,-0.5297369030242783,-0.7100217574547381,-0.4928417184214857,-0.5942970739947466,-1.076283367211256,-0.7267493529675983,-0.7326364869890761,-0.6065840360160311,0.35708008815128933,-0.548989122020916,-0.5857068563629093,-0.5071196307023977,-0.16771851576360292,-0.5286318410883017,-0.8786694272704801,-0.8004061978864648,-0.36883755231749943,1
0.04053117177833421,0.7587056782039671,0.07418217521022204,-0.07135598538060135,0.529450876748587,0.20958471056325745,0.7219194282587875,0.32167299104878644,0.41759991068633123,-0.42210717934671665,-0.7307641741594482,1.1505599645781917,-0.4807040420013072,-0.4795730050458135,-0.3093388453818128,0.01966535817258061,0.48264303108069256,0.15634788149117348,-0.7303817080744166,-0.014715439690757821,-0.20277310251679126,1.3992803534509461,-0.08820220163765843,-0.26770044692023953,0.2468577004693828,0.12108891554354756,0.725440808947104,0.3287997453827515,-0.32801425935920575,-0.024151167688633284,0
0.2649023867397326,0.1257434198069045,0.3431541827689905,0.14422699273342268,0.5365674209437574,0.9657487390521624,1.0194722433756915,1.0119199581528038,0.1583829294190699,0.006009246022357024,0.258520292338239,-0.45803733473990577,0.41579639393058776,0.1496758906489652,0.736370218821819,0.6523349445460631,0.5562516220064153,1.089053458545913,-0.6734748114009321,-0.10398275642542743,0.40604953568206303,-0.23567131273789033,0.4836858960584339,0.25387225447080614,0.9964514425064424,1.0562142988508412,1.1903208387421722,1.4753625284948366,-0.10799609620952322,-0.08898767412203758,0
3.718515011968341,0.6004651136047017,3.7125125622953696,4.536659069241317,0.9279773516781146,1.6498971457802192,2.4896593594174408,3.582290297163091,-0.042418957478104695,-0.7226392395395763,1.555309452544802,0.4792527225889114,1.4622911048969192,1.9441353288610679,-0.8033588750757189,-0.006043829966271063,-0.026648841270254013,0.09957449854001518,-0.5802443636592661,-0.3963710438656805,3.4895084073762583,1.1680421695875847,3.381847974487068,4.105459004547587,0.6501479008635902,0.9487066867563291,1.2560469110661399,2.347846558671762,-0.07240492275883872,-0.17321971666799804,0
-0.3230069992983613,-1.1774141710105757,-0.324950865102866,-0.3998498372561918,-0.12384788036803249,-0.0889010901560472,-0.6455680241687729,-0.7206618348358672,-0.5827585804014097,1.3584035168902286,-0.8076403475866671,-1.0444332823370286,-0.962418329248865,-0.5704400658576819,-0.6033507658879025,-0.1357075614491755,-0.02532256035267336,-0.7268837475632716,-0.502754121380479,0.7209834206860756,-0.527892674616179,-1.4276878661743724,-0.5921785877323398,-0.5354305528247094,-0.7964365135938952,-0.36110498959041726,-0.6101897410523489,-0.8543068714540214,-0.7583439019902021,0.9395298980181159,1
-0.24348302437533428,-1.054079613308207,-0.2977653329453184,-0.2934803995060003,-1.6233037422903809,-1.019418729223848,-0.705455236325213,-0.5787949320304825,-1.5539095243041081,-1.3633962735356748,0.0019054599121698557,-0.11585207571509958,-0.08170936979749308,-0.08772255636315583,-0.8533609023726729,-0.8438280260562444,-0.6072283129411573,-0.15833886972381717,-1.1929015916759285,-0.8926368046957088,0.018805204582791717,-0.5418176406696642,-0.08224503395332405,-0.08786597657206295,-1.392604635915768,-0.8299399606771353,-0.6581649763253177,-0.22088042022609666,-1.4135450496050654,-1.212820452301041,1
1.9973889832771101,0.8727319674004963,1.8630725715773444,2.130548258100629,-0.14804413063161048,-0.04057481765863604,0.26240748592635355,0.9647169704921027,-0.15559820282014816,-1.4201004358362141,1.034139525648538,-0.16302501704407607,0.711329668503388,1.1804559872678595,-0.7710242307570218,-0.7203121439108915,-0.48885774104708973,-0.2297111225767015,-1.1759506011774437,-0.6838420638586846,2.671532413877799,1.6142341581690003,2.4048724742562437,3.048953465160939,0.3389130722984951,0.036482333244316385,0.20778802035177016,1.313960596210798,-0.12740946354625957,-0.4813316617703289,0
-0.07307450668313328,0.3281982598089062,-0.09057862574461313,-0.19934060299446774,-0.04129596770405826,-0.048155409422935794,-0.6518455097197623,-0.6507601427263049,-0.6995887691415842,0.5787212852578079,-0.4806459197694819,-0.30817252882554225,-0.39110350146918516,-0.37880517489609017,-0.24766967838223636,-0.21004064889411653,-0.19044453459145688,-0.44366567146978025,-0.6831610916857805,-0.0741009003998388,-0.2524729097166974,-0.1509925411822933,-0.24100355274083293,-0.3374895815519365,-0.2616386391580969,-0.32166432716521176,-0.6452116628016162,-0.7028022274704193,-1.0543977538754368,0.05398513493623796,1
-0.07307450668313328,-0.7166548799715378,-0.14206637604299913,-0.17402808973305836,-0.6355274080007658,-0.9366007641988725,-0.9262971780090248,-0.7232412330686924,-1.4151736751751514,-0.562449981040552,-0.5445289371244949,0.26516014271124877,-0.5589188784879109,-0.43116924383852284,-0.46767859848883414,-0.9802543918104557,-0.8832936859355571,-0.9333766518399124,-0.6177786997630538,-0.6460169296490789,-0.24004795791672104,-0.0158321942762444,-0.3133831401054948,-0.3272936878274065,-0.7482170331119788,-0.9762520954803171,-1.052281534092757,-0.8990730677667642,-0.8715885447878329,-0.7101989878984984,1
1.7133747871234417,0.08618327865708855,1.6118123501212211,1.7608149183272372,-1.1500535533115672,-0.3544113167006479,0.3352263183178321,0.7310234905981418,0.4249017974825923,-1.6781043743036699,0.6761058916588607,-0.9626063725702272,0.49599135285989027,0.7593432647644307,-0.8350268256971229,-0.6549213827751164,-0.18049742770960242,0.1093070784744996,0.16802078834527395,-0.834386098012916,1.40625815558018,-0.43108386248157576,1.2789677819170617,1.3648730879023558,-1.1821923574492248,-0.6397341854329985,-0.0555960212968289,0.4247273089100574,0.24953341890871095,-1.3641056339789837,0
-0.15259848160616027,-0.3373429383585927,-0.2359800325872552,-0.2348918856649862,-1.201292671516792,-1.2095020677136652,-0.8641500710542284,-0.9424900828588323,-0.8711831088537154,-1.0770402539179496,-0.5311748600502832,-0.09226560505061152,-0.5856505314643451,-0.39860671357180005,-1.1000375703709795,-1.129200014397499,-0.7043783901539356,-1.0952618980835003,-0.859935706884264,-1.009516469403391,-0.15928577121687296,0.0688465772793532,-0.24874787073046767,-0.24871498964008004,-1.1997267139881034,-1.1326152378047611,-0.7972931586169275,-0.9555637440661776,-0.9152686212954901,-1.1812334363463053,1
-0.47637466522134253,-0.8353353034209873,-0.38714806746331654,-0.5056504544836544,2.237421483589421,1.2443354863901803,0.8663015959315467,0.8246556464496959,1.005401797785333,1.8900050384577884,-0.25507029351590493,-0.5926616519172156,-0.3213041853640514,-0.28925821666260243,0.1563467021771524,0.44554364864660323,0.16002519787921415,-0.06912355365771157,0.13411880734830423,0.4868458399286153,-0.16549824711686112,-0.31383633263536465,-0.1150094562171625,-0.24432020786226535,2.04851283483916,1.7216164423470515,1.263243196357085,0.905887786285116,1.7540693875058049,2.2418016084326413,0
-1.4704243517591822,-0.8213729006622283,-1.3687105391517467,-1.1651978505871128,-0.12384788036803249,0.3782528773189278,0.04809412921557079,-0.6664944719465384,-1.849635939552674,1.2520832125767167,-0.33194646694312413,-0.43172934822951514,0.20491335378316233,-0.5147757404692976,3.7698265415036976,2.3541714202591844,2.013834350427484,1.8303516302224632,0.39928073014602966,0.6831582864764697,-1.4195900487945008,-1.401632859541881,-1.3082301433893215,-1.0733518424292257,-0.6342437156092677,-0.4221744023778323,-0.5650930198957581,-1.159447883055166,-2.020212778878087,-0.3727166595400108,1
1.284513350931402,-0.39319254939362724,1.3070048683547764,1.1976826008262251,0.9635600726539654,1.217803415215131,1.3634784515699176,1.3407932328380137,0.34823198612185335,-0.32712770749331216,0.8074811363889439,-1.0043362822073987,0.706379362396641,0.6869576400498917,-0.24900306577682169,0.8082667595621422,0.7840403696008817,0.836006380249323,0.4525552717126959,-0.09830898629398663,1.356558348380274,-0.7095467458663279,1.2908821172857305,1.2066609439010276,1.557550851750558,1.620470227417895,2.2179503782891654,1.875822039727876,1.4531621937863861,0.43801674996486223,0
-0.13555762983694003,-1.426410353541773,-0.16842810419577275,-0.24456183455136715,0.007096532823098712,-0.32655264196684586,-0.6267355675158043,-0.6007198170094965,-1.6488340526554994,0.09106548947316698,-0.7036950990090188,-1.421091075409933,-0.7301994697813597,-0.504654954035046,-0.9693656057016061,-0.47663375198612273,-0.509746665498984,-0.8332932881802994,-0.8272445109229007,-0.4009100599708332,-0.1924189760168106,-1.5188803893880922,-0.22491919999313056,-0.30655031783612113,-0.055609949826274,-0.04367127103916591,-0.4619462640588751,-0.5184081331345978,-0.8424684937827279,0.1792248824058901,1
0.4211101946242499,0.02102539911621426,0.330797122697378,0.29496443125642086,-1.2781513488246294,-0.913100929729543,-0.5864341102784514,-0.5274649071972615,-0.9661076372051066,-1.1861957663464884,-0.6329545826158971,-0.39562390467387537,-0.6594100924548766,-0.3994867819573871,-1.4050499368823992,-0.9150871888324097,-0.6228121137227293,-1.0741746415587845,-1.2607055536698673,-0.926679425484354,0.3397831260821877,0.9758864956729605,0.25731352405373087,0.1898842317858245,-1.050684683407635,-0.4679764619683937,-0.2215903353413011,-0.4404479545219301,-0.3522809685301266,-0.8675799094975302,0
-0.7547085774519372,-0.7585420882478138,-0.7805144797429854,-0.7172516889385803,-0.39854648630160017,-0.8619319353205194,-0.7900757415525519,-0.6628833144205832,-0.6484755615677585,0.13075840308354508,-0.8462588948012796,-0.8261677114956492,-0.8792036835944466,-0.6179637586793855,0.7167027547516838,-0.9462176622961932,-0.7458246688283291,-0.8890934131380089,-0.3623030572501769,-0.2972691922365132,-0.7784625359157076,-0.7958539553364559,-0.8218274019634266,-0.7115734064795216,0.9087796598120504,-0.905004447228333,-0.8345699164240243,-0.7480252217047206,-0.08049382581581235,0.204162000264892,1
0.08313330120138458,-0.6398616647983651,0.08983445130093178,-0.03893321558508828,0.08182024687238487,0.18115749144713317,-0.10959630782528634,-0.17253971036051735,0.3664867031125056,0.1874625653840844,-0.20237582722306938,-0.8096571820305074,-0.09359010445368605,-0.18034975394619845,-0.8213596049026222,0.28234619350432694,0.21572899641759874,0.10281869185151007,-0.21943042304866275,-0.159585703713548,0.08300078888267136,-0.6786064254902441,0.12327725115620924,-0.03249172617159805,-0.1301309651165084,0.5269460546932437,0.49563943198958327,0.40797805178624225,0.24629785768592186,0.20471615843953625,1
0.15697699220133832,0.19555543360069827,0.11413666944176952,0.08421642758558748,0.16437215953635811,-0.612909495863271,-0.18643273096939825,0.09468594656017092,-0.8237208446780198,-0.5071634227975256,0.24372253125600438,0.041995843347244696,0.16283575187581223,0.11139291587592617,-0.44101085059712525,-0.7745249971602093,-0.3950233661282629,-0.11454226001863815,-0.7800238945342648,-0.646773432333271,0.5799988608817356,0.8472399004250337,0.4807073122162669,0.4525163908280294,0.6150791877858333,-0.42726352011011703,0.09216770334391516,0.7048967007993319,0.20747112301244827,-0.09896252126563818,0
-0.5899803436828095,-1.084331485952184,-0.5737396745446668,-0.5847165071428875,0.47963506738239564,-0.2543475054118904,-0.2872491489182901,-0.5527430098789482,-0.4987868822444096,-0.3356333318383938,-0.5109632839379628,-0.8844081505979623,-0.5039704807030184,-0.4503107312250423,-0.5176806257857881,-0.6264177176646504,-0.28759461180423507,-0.9953407440894619,-0.7582297638933558,-0.5193027300468993,-0.5196093734161947,-0.8105098965672323,-0.5177139916781611,-0.5238283289312786,0.746586861827423,-0.24596370089747835,0.1574140233151528,-0.7480252217047206,-0.248743009400864,-0.05185907642085726,1
-1.262241945978543,0.01171713061037531,-1.2735611766003296,-1.050011694734633,-0.814864321719053,-1.0241565990765351,-0.8214631693074995,-1.0138104439964484,-0.845626505066802,-0.06345335279580269,-0.39510764229412554,0.26516014271124877,-0.40199417490402883,-0.4861735179377168,0.13301242277190725,-0.796321917538801,-0.282621058363308,-0.3538015167413756,0.18012863870133441,0.1358285944634733,-1.1056529333150917,-0.014203756361713431,-1.1366637140804943,-0.9077564650411686,-0.5465719329148746,-1.0102219563433168,-0.8572622027081385,-1.159447883055166,-0.5642102286228354,-0.26299334096040344,1
-0.8967156755287715,-0.4862752344520192,-0.8336498380509194,-0.8059876904841943,-0.5131228478438394,0.13188364497918437,0.07245077315341014,-0.3298830025628529,-1.1778623542966724,0.510676290497161,-0.5333403860623175,0.2887466133757368,-0.02973115567664881,-0.4881536718052878,0.5080276274990623,1.1681953935060665,1.074495890551031,0.9544194361188815,-0.6516806807600233,0.4467511976664334,-0.8095249154156492,0.19423629669821804,-0.5099696736885263,-0.7105186588528462,0.29507718095129853,0.9792413931500368,0.9869058411847843,0.6226730749187841,-0.5836235959595718,0.6303096365664965,1
-0.7689092872596208,0.25373211176219296,-0.5926871666544732,-0.7644637923250287,3.283553480279431,3.402908991274548,1.9158971800569968,1.451707356849496,2.867382930831859,4.9109192850190375,0.3263734407153149,-0.1104090440232948,0.28659340454448906,-0.28837814827701536,0.6897016600113287,2.7442804054965433,0.8195183841461625,1.115007005037871,4.732680372580089,2.0475108774169515,-0.2814644639166429,0.1339840938605815,-0.2499393042673343,-0.5500212283270541,3.3942746991980925,3.8933974345995,1.9895882583898332,2.175786008218023,6.046041349536007,4.935010337204809,0
-0.4508133875675124,-0.6910571415804803,-0.44151913177841184,-0.5079257365745676,1.3834361801690038,0.07881950262908582,-0.3706141570354312,-0.4160349035392139,0.479665948454549,0.47098337688678293,-0.5322576230563004,-0.22108402175666256,-0.6435691129132859,-0.4806730905277974,0.8870429944099741,-0.5481723624594493,-0.20370734376726282,-0.0301932339197745,0.9041780899937533,-0.497364152205328,-0.5589550541161206,-0.6965192425500825,-0.6133265330117263,-0.5776204578917303,1.1235755274133128,-0.5036002860943858,-0.39957845820401555,-0.46435371241683016,0.4113114800481835,-0.47468176367459464,1
0.832930779047069,0.39801027360269997,0.8168414855141416,0.7500208494390569,1.1058909565573682,0.02386021233791227,0.778416798217693,1.3005546204059406,-0.30893782554162713,-0.29594041822801564,1.4831252521436578,1.6549475680187862,1.589018941229644,1.0304043275252586,-0.1953342231447578,-0.41962642176519055,0.4352284882771864,0.9154891163809444,-0.27270496461532895,-0.023415220558967,0.9775973184809869,1.2168953070235056,1.0704669129653615,0.8462888381202243,0.5493253507650384,-0.31148609170064245,0.5747985701899819,1.0368365237985813,-0.4493478052138101,-0.44087811502128144,0
0.06041216550909108,-1.3542712726215194,0.022282522909449334,-0.03893321558508828,0.19212668189752177,-0.532555223161693,-0.39622629808346854,-0.07452257751316053,0.9615904770077672,-1.1791077460589208,0.4216565852448259,-0.7343619102938718,0.444013138739046,0.17497785673459437,0.01600767889703461,-0.6258588222703275,-0.2749949430872195,0.1725688480486471,0.25640809594451547,-0.8820457671170191,0.10370904188263194,-1.4293163040889034,0.09349141273453779,-0.01297889507810085,-0.11698019771234847,-0.6473678620314255,-0.5228748128555455,-0.08993168271263127,0.2608578831884746,-1.287077647703401,1
0.12857557258597158,0.5213448313050689,0.22411450407912206,-0.028694446175979226,0.6433155838713087,1.5627203404907717,0.6742105380712667,1.0036658838077632,1.6078074584768567,0.913275842830992,-0.5438070951204835,-0.42392766947126137,-0.3742724607062452,-0.42434871385022277,-0.8630279609834172,0.2834639842929726,-0.16856089945137712,0.27962722732797396,-0.7267493529675983,-0.0317367500850804,0.27972919238230093,1.22666593451069,0.4509214737945954,0.028683636175582148,0.8824781250037318,2.608395207197641,1.3515176292593474,2.3676411352726348,2.2054301780849324,2.41359064257243,0
-0.6723444605673736,0.5376343011902875,-0.7104911393371803,-0.6455803030748152,-0.7109627764695687,-1.0362855458994147,-0.9068369728009572,-0.974216681122582,-1.15595669390789,-0.5553619607529843,0.003710064922198473,-0.01243447357080512,-0.11438139010202389,-0.2610960283238152,-0.39467563863528105,-0.8785913195831266,-0.6702266565262354,-0.7057964910385557,0.425918000929363,-0.7663008564356253,-0.6811337468158906,0.006965936527185678,-0.723236276787694,-0.6400263591366987,-1.0463010942729154,-1.0694465639527786,-1.0408634280977902,-1.1793947256298916,-0.7567261213788076,-1.0149859839529622,1
-0.36844927068294825,0.7075102014218512,-0.27634642882118937,-0.43141937626761206,0.8852780865070935,1.4319551325566002,1.013194757824702,0.5079055434587643,1.1368357601180286,1.3810851818104437,-0.35757185808553044,-0.26825696308563907,-0.3015029609370631,-0.3345817385203383,-0.01932708705947964,0.7322569859342327,0.49524269979770813,0.5180754357228378,-0.4531119349206309,0.6892103079500064,-0.22141053021675616,0.7283639326642916,-0.05841636321598696,-0.30690190037834636,1.9871425869530843,1.7814135757013951,1.7079736273375061,1.2652354845778808,0.818992194119654,2.236260026686196,0
-0.31164643145221477,-0.20237304502392464,-0.38550045945376793,-0.37283086242659774,-0.4647303473166825,-1.263703298828409,-0.7932144843280466,-0.5078614806277901,-1.2581831090555424,-0.5908020621908217,-0.7986173225365241,2.0414028181369397,-0.8396012347404701,-0.5759404932676013,-0.8963626458480534,-1.1501585916846062,-0.6122018663820846,-0.025326943952532575,0.7467760353649666,-0.763274845698857,-0.6148673372160153,-0.46690949660125186,-0.6791532359236205,-0.5883437254295981,-1.5499754858522035,-1.3236479946803938,-1.0739663404361388,-0.9817534915688706,-1.4782562740608545,-1.2333243047628866,1
0.7704476558932623,0.039641936127892984,0.6767948047025321,0.6408073090752243,-1.5592548445338497,-0.6085506555987985,-0.4682918322088284,-0.5470683337667328,0.11822255203963539,-1.4342764764113496,0.26609963338035914,1.529757839107272,0.30342444530742924,0.13801498453993608,-1.1993749312675948,0.06325919892976418,-0.0442220634281968,-0.11292016336289057,-0.646837540617599,-0.86086369195964,0.4039787103820666,0.3896488464419035,0.38837121310908507,0.2661776434486872,-1.9563341986407152,-0.5296820144723443,-0.40293672467312336,-0.46054706307050847,-0.6046547439077036,-1.3424934651678488,1
1.8042593298926157,0.5050553614198503,1.6694786304554137,1.8518262019637644,-0.911649322773367,-0.3953465122278667,0.020347643080197,0.291494031724732,-1.2581831090555424,-1.5632784456450775,1.0186199225622918,-0.3190585922091522,1.127650412080817,0.9496580531476418,0.30601943721936836,0.3270578250501558,0.35399378207537524,0.7970760605113859,-0.8635680619910823,0.05223504786024451,1.6464738903797278,0.08024564268106824,1.6215049237662837,1.5283589700370617,-0.41944784800800466,-0.1473620448344645,0.20922727740995933,0.45518050368063073,-1.0721933406007786,-0.7024407734534757,0
-0.260523876144554,2.040919664883309,-0.29199870491189917,-0.3313069642674321,-0.6867665262059908,-0.6741227743599919,-0.7398558571446356,-0.4170666628323439,-0.6703812219565408,-0.7070455949069281,-0.6138257695095938,0.6897166146720369,-0.656934939401503,-0.494754184697191,-0.6893542528386636,-0.6571569643524079,-0.5608084808258367,-0.43458193019759483,-0.3998373933539647,-0.9274359281685461,-0.3932890301164327,1.8715273486648527,-0.440270811781815,-0.4412064315083628,-1.1032877530242706,-0.7389719812125481,-0.7963336539114679,-0.5333301985721788,-0.6920148969230185,-1.0814849649102993,1
-1.5496643124860556,-1.1262186942284607,-1.5466522041829687,-1.2163916976326592,-0.3544239122915446,-1.1670507538335864,-1.1148728439607505,-1.261819584082589,-0.32719254253227936,0.6297550313282934,-0.666881156804435,-0.7793576389461263,-0.7084181229116725,-0.6375452802586985,0.710369164627403,-0.9764539031290601,-1.0575006844597676,-1.9134474512424755,0.7952074367892084,-0.14975116881905048,-1.4510665933544413,-1.4065181732854732,-1.4565636187292457,-1.092337299709385,-0.7087647308995021,-1.168557131789021,-1.3058306525103973,-1.7450628184932908,-0.49949900416704646,-0.3028927295348066,1
-0.6411028989904702,0.5236718984315283,-0.6235798168335048,-0.6339194823588851,-2.151351321572006,0.03902139586651178,-0.012923030340047529,-0.6463751657305021,-1.6889944300349349,0.47098337688678293,-0.5383932800903977,0.611699827089499,-0.45100220536082475,-0.44217009865836165,-0.06232883053486003,1.9646213304161484,1.1517517540001,0.605668655133196,0.3629571790778479,1.9404657476037674,-0.7204794275158168,0.4075616635017413,-0.7074497824242081,-0.6563749473501693,-1.656935060739363,0.5447579667562397,0.2380124185737404,-0.41273554728070855,-0.9638020396373319,0.8630560699171774,1
-0.38833026441370516,-1.3775419438861176,-0.39868132353015445,-0.42885968391533463,-0.5992330326053974,-0.4711524298708648,-0.6061454149085586,-0.6045889143587343,-0.7689566937060631,-0.1981257382595843,-0.2839439736763628,-1.011412223406745,-0.2574452365870142,-0.3334816530383544,-0.18233369604754976,0.12306100612231054,-0.0173648748471898,-0.179426126248533,-0.3913618981047222,0.2258524138823353,-0.43056388551636243,-1.510738199815439,-0.4533765806873504,-0.4601918887885223,-0.5684898785884729,-0.21288443563762863,-0.4571487405315782,-0.46435371241683016,-0.5447968612860983,-0.07845866880379194,1
0.20809954750899856,0.9122921085503131,0.3472732027928617,0.046958683346884085,0.5721501419196082,1.7749769098911663,1.0157057520450974,1.0281701670196022,-0.27242839156032267,0.5560396203375929,-0.453215923617047,-0.4620288913138961,0.3588678737029965,-0.3330416188455608,0.3466877527542239,1.438700764358333,0.7830456589126962,1.1409605515298291,0.594217120878604,0.19559230651465057,-0.03917790381709938,0.342424146920513,0.3377352877922435,-0.16855417001274034,-0.03369200415267572,1.3392964727091714,0.8957528941661435,0.8845705499457145,0.16055548528200106,0.16980419343693454,0
-0.4195718259906085,-0.2605497231854193,-0.38220524343467127,-0.48147558226770193,0.7998795561650524,0.5507113399567483,-0.1083408107150884,0.046967079252905226,-0.6229189577808452,0.8140435588050486,-0.6235706365637483,-1.0589480335151753,-0.579215133525574,-0.4826532443953684,-0.4456777064781743,-0.02560516876757129,-0.18348155977415873,-0.2394437025111859,-0.3574599171077525,-0.0877179487152969,-0.3912182048164362,-0.574386398960279,-0.3565726058169181,-0.43399898939274667,0.9175468380814888,0.8265678611814989,0.41264227496734723,0.3973194336165415,0.532645025902788,1.0725278599327908,1
-0.8001508488365242,-0.05809488318341846,-0.83076652403421,-0.7417109714158969,-1.0653666773890418,-1.086506966337901,-0.6492089657883467,-0.6866137781625749,-1.07928688254715,-0.8686524574634664,-0.4781194727554419,-0.4970457285311749,-0.5123860010844885,-0.4881536718052878,0.7470373179785028,-0.9088834499554259,-0.3734713012175784,-0.45923779936495485,0.1559129379892131,-0.6237001004654115,-0.8157373913156373,-0.29918039140458824,-0.871569752127618,-0.727570412150767,-0.1476653216553863,-1.0355403170614326,-0.613068255168727,-0.6851393745034866,-0.8101128815548334,-0.9717616463306926,1
-0.6212219052597133,0.3421606625676654,-0.5807420085852474,-0.6083225588361117,-0.7337357178941133,-0.06142144501046056,-0.2895090437166464,-0.2839697140185649,-0.8164189578817587,0.6892944017438606,-0.47270565772535605,0.3141474279374934,0.16432084370783642,-0.40542724356010007,-0.10733065510211857,1.4577032077653103,0.39709791189674454,0.735436387592986,-0.22064120808426876,1.596257026296354,-0.627292289015992,0.2626306891085077,-0.44861084653988303,-0.5879921428873729,-0.9104098310966058,0.1719800928663935,-0.17121633830468388,0.013609179507317987,-0.7049571418141762,0.8791266569818672,1
0.9493765994700731,1.2543709761399013,0.9939593465405893,0.9377316219393943,0.6077328628954579,1.06050613610591,1.5957454169565306,1.4284927727540695,-0.9989661277882811,0.12083517468095055,2.464469456597219,0.3504343058828599,2.21325254129045,1.8033243871671318,-0.289004687614385,0.6070644176059108,0.48231146085129756,0.6316222016251538,-1.1008819289698684,0.5012193909282658,1.4228247579801492,1.083363398031987,1.430875557867587,1.3701468260357335,0.2293233439305037,0.8189341845830721,1.0401583523377798,0.8754345915145426,-1.198380228289567,0.5017449400489772,0
0.23650096712436583,-0.044132480424659205,0.2084622279884129,0.09217991490378348,-0.4583254575410289,-0.11581219091931158,-0.3691075605031937,-0.018807575684136858,0.24600557097420103,-0.6063957068234699,-0.4239813224545834,-0.48779257465510645,-0.3440755934550881,-0.34030218302665444,-0.5696827341746203,-0.24189768637051984,-0.5482088121088211,0.011981279129657189,-0.644415970546387,-0.3706499526031486,-0.003973873717165288,0.08350251851012959,0.05476982278636453,-0.12443056096348115,-0.046842771556834445,0.310022411354613,-0.4403574081860391,0.5221775321758922,0.09907982204900201,0.04290197144334883,1
-0.7177867319519606,-0.2163354477826839,-0.7450909075376958,-0.6888106628021655,-0.8027661965872636,-0.8678068939378518,-0.6921469669571152,-0.8034605181095553,-1.07928688254715,-0.5964724784208754,-0.8069185055826557,-0.8187289015168491,-0.773762163520734,-0.6038826645099918,-0.11066412358858232,-0.4732803796201855,-0.36783460731786083,-0.6973615884286694,0.08447662088845602,-0.3884277656816632,-0.7246210781158089,-0.26986850894303543,-0.7321720283141953,-0.6776456911547922,0.08028131335003609,-0.4673403222518582,-0.41349127643317657,-0.48308242720073286,0.5002894136748934,-0.2945803569151388,1
-0.5076162267982459,1.7616716097081349,-0.4456381518022825,-0.5047972236995621,0.5009846999679067,0.5867191508371725,0.24734152060397854,-0.08509811026774378,0.479665948454549,0.931704695578668,0.00046177590414692187,1.074357520892922,-0.11091617582730089,-0.1297458217749401,0.6857014978275725,0.7249913458080351,0.19019808875417238,0.22934223099980514,-0.21337649787063234,0.7100141317652897,-0.12822339171693134,2.2248983761180177,-0.16564538153400407,-0.1963291908485292,2.0222113000308415,1.3761925762682348,0.8170735083184747,0.47649774002003226,0.5083783167318671,2.0256799203212945,0
-1.248609264563167,-0.9191097199735394,-1.1611119299486543,-1.0087722068368314,0.7714133793843719,1.05292554434161,4.042709284732251,0.7648136074481517,2.6884867043234686,4.2758326672529945,1.5134426163121384,2.6256215530573406,0.5974726280482056,0.20930052377249145,1.309726798493559,3.9336098046155987,12.072680399588076,6.6496007944479105,1.8062129415202615,9.851592567542824,-1.0870155056151267,-1.0075508842254486,-1.0788791875424513,-0.879102487849817,-0.13889814338594675,0.14589836448843505,2.635814677516724,0.6470356307352426,0.33527579131263174,2.324925334629314,1
-0.8115114166826712,-0.8818766459501828,-0.7656860076570502,-0.7476835869045441,-0.9045327785781966,0.13377879292025938,0.1494127460085418,-0.550679491292688,-0.005909523496800223,1.378249973695418,-0.2695071335961339,-0.2718856508801757,-0.1470534104065545,-0.38210543134204183,1.1130521577922063,2.3033119393758037,2.0831325283710695,1.4069844030723984,-1.0112838363350207,3.228411567440846,-0.8757913250155245,-1.0987434074391684,-0.8200402516581262,-0.756927554426569,-0.9717800789826809,0.16943553400025113,0.14350120508599176,-0.48551868278237864,-1.203233570123751,1.1279436773972387,1
1.6934937933926848,1.0635514717701988,1.7600970709805726,1.6840241477589173,0.8283457329457328,1.505865902258523,1.7514270586210712,2.039810153933636,1.5968546282824645,1.6858700541758462,2.406722096276303,0.9546108236732127,2.4444318364755384,1.9903389191043914,0.3076861714626001,1.2207315605724158,1.478680000183716,1.2269316742844398,0.8254770626793597,0.8068464753418807,1.5346493241799386,0.6111164028180804,1.535125992343437,1.4334316836362648,0.10219925902363315,0.5396688490239553,1.060307951152427,1.183011858697333,0.6361829850320505,0.595397671563894,0
-0.030472377260082912,-0.8446435719268262,-0.0979928617875804,-0.1376235762784476,-1.1884828919654857,-0.9197339475233054,-0.8528505970624473,-0.5777631727373524,-0.8127680144836277,-0.983478386122059,-0.6892582589287899,-1.0195767709444525,-0.6237678884862976,-0.4639517912016424,-0.7346894242545685,-0.9076538800879156,-0.7520250321180183,-0.1680714496583013,-1.069401518044111,-0.6395866568334458,-0.2814644639166429,-1.0368627666870014,-0.3196381661740456,-0.3369622077385988,-1.2698641401436173,-0.9705268380314969,-1.0055056797016124,-0.49404557731813925,-1.2372069629630402,-0.933524732280223,1
-1.0273622057594591,0.8843673030327953,-1.0346580152158187,-0.9120727179730214,0.3657703602596741,-0.6892839578885914,-0.8016263149663727,-0.7781824154278686,-0.4257680142818006,0.3915975496660267,-0.42722961147263494,-0.13399551468778284,-0.28566198139547244,-0.43512955157366484,1.0430493195764707,-0.6174753913554845,-0.44044848755539806,0.1141733684417418,1.706928568600565,-0.6898940853322216,-1.1056529333150917,-0.2372997506524213,-1.1068778756588227,-0.9103933341078574,-0.7920529244591754,-1.0695101779244323,-1.1063496242453927,-1.2692316502030827,-1.0899889273261203,-0.8963961345790435,1
-1.207427206120885,0.025679533369133735,-1.1541095959080738,-1.0141760018027504,0.2946049183079726,-0.1396910549768559,-0.34223992234495854,-0.48051985935984326,0.48696783525081017,0.05987820020787045,-0.8116104786087301,0.009337653196414806,-0.6623802761189248,-0.6285245793064307,0.672367623881718,-0.19662715943036774,-0.05317445962186577,-0.10967597005139595,-0.5390776724486604,-0.08507018932062463,-1.1408569634150254,0.18772254504009475,-1.043731898204879,-0.9130302031745462,1.0315201555842006,-0.15308730228328474,-0.037365431893100605,-0.26062183940169487,-0.4509655858252047,0.05287681858694943,1
-0.7263071578365705,-0.05809488318341846,-0.7319100434613087,-0.69734297064309,-0.7757233286456177,-0.5139827733391586,-0.42623267901719847,-0.8934815164351539,0.8009489674900282,-0.018090022955370856,-0.4286732954806579,0.40486462280090973,-0.32674952208147323,-0.44084999607998093,0.07901023329119668,-0.2799025731844746,0.4169921256604535,-0.4861646038503614,-0.2254843482266932,-0.17244624934481403,-0.6624963191159258,0.21214911375805579,-0.6204751342329273,-0.6329947082921952,-0.32739247617889233,-0.385278298818769,-0.07766462952239453,-0.730362368737788,0.21717780668081643,-0.0612797653898136,1
-0.5161366526828558,-0.6445157990512846,-0.5263709442701521,-0.5232838906882318,-0.3302276620279666,-0.6832194844771515,-0.6915192184020162,-0.6757803055847091,-0.33449442932854045,-0.5185042552576341,-0.5582439352007125,-0.3480880945654455,-0.5574337866558868,-0.4544910560565811,-0.7290225278275806,-0.4073307230900875,-0.45205344558422833,-0.6214474649396924,-0.8090827353888098,-0.5639363884142342,-0.44713048791633125,-0.401771980020023,-0.5227775842098452,-0.4737278166641914,-0.6473944830134271,-0.4450754321731131,-0.48881239581173763,-0.4264394849274665,-0.45743670827078375,-0.4353365332748365,1
-0.1327174878754034,-0.037151279045280414,-0.10334758781861295,-0.22635957782406177,-0.4120679202724231,0.19631867497573266,0.09756071535736831,-0.02061315444711432,0.13282632563215657,-0.14000397190153205,-0.6524443167242062,-0.5839528012103276,-0.5257518275727056,-0.4615316031412779,-1.0203676735444993,0.145975717289548,0.15903048719102864,0.1531036881796786,-0.5729796534456297,0.060934828728454016,-0.23383548201673252,-0.028859697592489825,-0.17458113306050543,-0.301979744787194,-0.7745185679202969,0.39717355251998654,0.45006295848026284,0.3973194336165415,-0.25359635123504853,0.24627802153787223,1
-1.081324903028656,-0.6840759402011006,-1.09809092358343,-0.9385228722798872,-0.14377420411450906,-1.030979131664405,-0.9878165364087222,-1.1200816511888456,0.26791123136298334,-0.1116518907512614,-0.7029732570050075,-0.45332004060700826,-0.7475255411549744,-0.6021225277388176,0.015007638351095687,-1.018929953097598,-0.7219516123118783,-1.0221053389092938,-0.5984061391933571,-0.44970448310122474,-1.0393865237152164,-0.6362670397124459,-1.0764963204687175,-0.8713676719208632,-0.1695832673289846,-1.0550061923874212,-1.0955072210737018,-1.3825175347496155,-0.3555165297529157,-0.5517097499501774,1
1.0857034136238342,0.16763062808318144,0.9156979660870429,0.9303369551439263,-0.8782015650560674,-0.7034975674466535,-0.199238801493417,0.18161166700637948,1.1587414205068118,-1.778754262387127,0.5248799918184626,-0.005177097981731812,0.243030710805115,0.30148768716274044,-1.0057004122040596,-0.9532597442646612,-0.2978732889154847,-0.31357351967884073,3.5836453737899454,-0.7159934279368496,0.8926934811811466,0.35056633649316604,0.6534651750619609,0.6687396542965114,-1.1032877530242706,-0.8528409904724158,-0.22686761122132776,0.05928897166317778,3.2052185959268726,-1.2654654788922666,0
-0.5445380722982225,-1.2099931107810127,-0.5432589263680225,-0.5485964039496408,-1.0874279643940694,-0.49484177913430166,-0.25623837029640184,-0.6082000718846895,-0.604664240790193,-0.17827928145439623,-0.500135653877791,-0.7002522450252273,-0.38070785864501633,-0.44833057735747134,-0.8786952628697962,0.26725601785760944,0.38284039203275316,-0.15022838644508033,-0.16131274133957213,0.31285022256442874,-0.650071367315949,-1.0401196425160628,-0.5841364113584882,-0.6164703288076121,-1.3049328532213749,-0.07102527885019558,0.16988758448612468,-0.3533518174780906,-0.36198765219849477,0.23796564891820518,1
-0.5445380722982225,-0.2954557300823166,-0.5626183204802157,-0.5588351733587502,-0.28824005127646224,-0.6176473657159585,-0.5634585131618297,-0.7389755622889259,-0.4257680142818006,-0.5156690471426072,-0.5503036731565866,-0.7951424308523608,-0.491099684825476,-0.4789129537566232,-0.4026759630027939,-0.648214638043242,-0.3943602256694726,-0.7638675513143117,-0.14072939573426924,-0.6940548500952782,-0.4098556325164015,-0.26661163311397407,-0.3994642131441254,-0.4499959950639921,0.19425463085274666,-0.2370577448659804,-0.14818822537365883,-0.4007065353463321,0.5132316585660507,-0.5123645195504192,1
-0.3570887028368018,0.05825847313957088,-0.3830290474394453,-0.4143547605857632,-0.35584722113057904,-0.48347089148785194,-0.8892600132581866,-0.7227253534221274,0.18028858980785217,0.09531830164570777,-0.13957557287407366,-0.8120158290969562,-0.13319255330766266,-0.30443939631398,-0.37700825565702395,-0.6627459182956364,-0.8232131603691565,-0.8587602056755331,0.20434433941345528,-0.5359457890991259,-0.3767224277164638,-0.21124474401992988,-0.361040481580169,-0.4459527958284027,-0.4808180958940803,-0.5665781180314076,-0.9639111507199483,-0.7729968414165908,0.6669208166485496,-0.3655126032696323,1
0.7278455264702124,0.21184490348591684,0.6232475443922102,0.576530590006927,-1.5222488147189654,-0.6295867977447305,-0.6567419484495342,-0.666752411769821,0.12552443883589548,-1.3534730451330803,-0.5697934072648956,-1.177424690006797,-0.5401077152822721,-0.3825454655348354,-1.4580520858171704,-0.6157987051725159,-0.5856762480304728,-1.0542228526930917,-0.11288133991533035,-0.7924001990402535,0.6027779391816925,0.14375472134776557,0.5968720820607853,0.3575891044272324,-1.3794538685116087,0.24004704253569983,-0.1174840747989587,-0.41471500494079566,2.8735735705909535,-0.42757831882981373,0
-0.5530584981828329,-1.2123201779074726,-0.606279932733247,-0.5503028655178257,-1.3535867172934324,-1.3686944947639612,-0.9738805184855255,-1.1315341793425895,-0.5060887690406707,-0.8941693304987092,-0.6997249679869559,-1.119909988463391,-0.7069330310796484,-0.5394176552657365,-0.5660159188395104,-1.1016464714573817,-0.685147316849017,-1.094126430424477,-0.09350877934563348,-1.0760130553438778,-0.7080544757158401,-1.499339134413724,-0.7643407338096009,-0.6460032623545267,-1.4145225815893663,-1.2782912328914076,-1.1083645841268575,-1.463066234917782,-0.9832154069740687,-1.3064731838159578,1
0.6312806997779652,0.9309086455619909,0.7015089248457571,0.5276120250522934,0.07541535709673225,0.8596204543519653,1.1588324226076592,1.001086485574938,1.326684816820812,-0.08755262177353254,0.09394031542362934,-0.35353112625725025,0.05244392569535257,0.11359308683989397,-0.468678639034773,0.7652318141992817,0.9557937484275683,0.7727446106751752,1.3836489640937495,0.10972925185884544,0.6441944451816145,0.8716664691429947,0.6564437589041288,0.4999800340284279,0.4002833201845696,1.3501108478902764,2.0941742712849054,1.6778762737191493,3.111387320465978,0.6757506068873439,0
0.673882829201015,-0.23262491766790247,0.6026524442728558,0.5210705890409182,0.03556270960377911,-0.3726047369349672,-0.3789004379627374,-0.014680538511616565,-1.15595669390789,-0.9735551577194644,-0.2391897694276533,0.4030502789036416,-0.25843529780836366,-0.1486672920650628,0.07200994946962334,-0.41515525861060765,-0.4500640242078574,-0.23782160585543832,-0.43616094442214604,-0.6785465450693398,0.3853412826821017,-0.03700188716514351,0.2960351140019037,0.22574565109279218,0.06274695681115697,-0.5494023456849472,-0.5080024899209252,-0.3559403390335891,-0.8198195652232015,-1.067076852369543,1
-0.5928204856443466,2.059536201894988,-0.6227560128287307,-0.5830100455747027,-0.6291225182251122,-0.8403272487922651,-0.8176966779769059,-0.6486966241400448,0.15473198602093985,-0.8247067316805475,0.7251911479316389,2.587520331214705,0.6103434239257478,0.1017121636344681,0.15868013011767693,-0.5548791071913237,-0.5717502983958765,0.005492892506667677,-0.008753826853209948,0.03332248075544171,-0.5527425782161325,1.2462071894850584,-0.5963486051113738,-0.5501970195981667,-1.23917901620058,-0.9987714414456764,-1.0408154528625173,-0.9004434615314401,-0.8036417591092543,-0.9728699626799812,1
-1.1580087359901465,-0.4094820192788458,-1.135162103798268,-0.9786247191322318,0.3088380066983123,-0.5890306318057265,-0.7996175195900561,-0.8039763977561204,0.28616594835363557,0.07263663672549282,-0.5170989409720599,1.4481123637301974,-0.5386226234502479,-0.5167558943368685,0.2540173288305359,-0.6141220189895473,-0.4971469967819684,-0.6087951110248628,0.05541778003391112,-0.3846452522607026,-1.0580239514151812,0.1893509829546257,-1.05088049942608,-0.8729497933608764,0.34329666143321425,-0.7256130471653012,-0.7996919203805759,-0.7554862544235109,-0.010929259525839688,-0.40485783366939043,1
0.034850887855260956,0.5655591067078043,0.06841554717680279,-0.06225485701694851,0.1330593650776098,0.10345642586306009,0.5411278443902886,0.18212754665294448,0.26791123136298334,-0.2193897991222873,-0.43011697948868083,-0.3589741579490554,-0.10349071666718021,-0.3394221146410673,-0.38767535481370746,0.24993026063360077,0.5390099700778677,-0.0301932339197745,-0.03175874252972483,0.08589941730679389,-0.07852358451702485,0.7625611288694367,0.2662492755802322,-0.1423612706169649,0.5361745833608796,1.0784791889295862,1.1821650487457673,0.4582258231576882,1.1166638266162827,0.9672378067503399,0
-0.8086712747211346,-1.3728878096331978,-0.7813382837477594,-0.7681611257227626,1.426135445340025,0.17547204762390842,-0.5329499333840205,-0.02474019161963461,-0.14829631602388704,-0.29452281417050175,-0.2409943744376819,0.2288732647658822,-0.5024853888709944,-0.30817968695272524,1.409730853087467,0.5310546439780013,-0.33235659277258,1.273972477301114,-0.5741904384812357,-0.13348636110891995,-0.9006412286154776,-1.6133297884308737,-0.915354934607475,-0.785054157804583,0.1898710417180263,-0.4584343662203601,-0.8899333379290303,-0.4339005176462568,-1.2922115037504611,-0.8925170273565322,1
0.90109418612395,-0.5142000399695369,0.8662697258005922,0.7773242345300152,0.3159545508934826,-0.004567006778212009,0.4745864975497996,0.8927517597962803,0.005043306697590916,-0.9452030765691948,-0.34602238602134716,-0.6532607380859776,-0.3331849200202444,-0.1475672065830788,-0.7613571721462774,-0.5839416676961127,-0.2842789095102836,0.13363852831071005,-0.7993964551039616,-0.5419978105726628,0.7415232342814317,-0.0956256520882491,0.7041011003788029,0.6001810585626025,0.40466690931928995,-0.08756491148012062,0.31477279501049066,1.082516315954441,0.3838092096544735,-0.1560408132540197,0
1.835500891469519,0.45385988463773447,1.8877866917205708,1.891643638554745,0.8639284539215835,1.1382072016899827,1.6321548331522697,1.6296858349144334,0.13282632563215657,-0.0818822055434788,0.6685265506167406,-0.0015484101871951572,0.6633116992679416,0.7646236750779535,-0.1249980380803757,0.13591560019173649,0.2893375873433217,0.4856335026078902,-1.134783909966838,-0.02568472861154349,1.5719241795798684,0.8276986454506655,1.666183681398791,1.5459380971483205,0.6150791877858333,0.6707136306302836,1.17880678227666,1.4723172090177792,-0.6806904326432553,0.3349433294809891,0
-1.5647170648821997,-1.7452185498667638,-1.5499474202020653,-1.2240707746894912,0.08253190129190162,-0.9782940189025213,-0.8561148895489618,-1.0606523159045536,-0.4695793350593662,1.2861057099570412,-0.8996752030981265,-1.1561968664087576,-0.9009850304641337,-0.7043864741440391,1.0230485086576886,-0.8343268043527557,-0.4006600600279804,-0.9820395515123336,0.04330992967785025,-0.38086273883974203,-1.400331373504537,-1.6735819912685101,-1.4106934275598717,-1.064738070144709,1.7942646650254201,-0.8293038209605995,-0.745479904522121,-1.0721994800374735,0.5164672197888407,0.3499056001963904,1
-0.4252521099136818,0.3421606625676654,-0.4044479515635737,-0.4962649158586377,0.2113413512244816,0.31381784732237955,0.2222315784000204,0.2912360919014494,-0.27973027835658376,1.120246035227962,-0.22655753435745296,1.0634714575093118,-0.0767590636907461,-0.436889688344839,1.9564196848674975,0.8350937384896394,0.6338390556848799,1.8092643736977476,0.10869232160057732,0.7928511756843266,-0.6086548613160271,-0.033745011336082154,-0.5439255294892318,-0.6208651105854267,-0.16081608905954503,-0.18616656754313446,-0.24269943886140746,-0.06252380741911535,-1.0916067079375154,0.0506601858883716,1
0.6085595640856711,0.33052532693536635,0.6150095043444689,0.4516744852680662,1.4617181663158758,0.5222841208406239,0.7407518849117558,0.9275736359394202,0.4979206654452013,-0.003913982380235536,0.1166783385499898,0.027481092169098078,0.19996304767641537,0.08961122333264533,-0.1146642857723386,-0.25978233898885134,0.01943942061567157,0.3445110935578688,-0.6274649800479022,-0.3804844874976461,0.6234861921816539,0.765818004698498,0.6713366781149644,0.42263187473888963,1.1674114187605094,0.25722281488216053,0.4198385602582926,0.6653075475975867,0.3271868882556581,-0.10782905205994947,0
-0.4508133875675124,-0.2838203944500175,-0.5168971982152489,-0.46355773580176074,-1.5656597343095033,-1.4752018090523733,-1.0998822084649875,-1.1212681743759452,-1.0354755617695854,-1.551937613184969,-0.1951574071829549,-0.47926515833794525,-0.26586075696848416,-0.2648363189625603,-0.41934330543511183,-1.1616718368076573,-1.0312104809710265,-1.3267350908586504,-0.013596966995633957,-1.0352375606659228,-0.527892674616179,-0.7649136349603721,-0.6088586572484759,-0.5183787995267884,-1.7288259225487652,-1.3422232744032327,-1.288650720759147,-1.496107951243854,-1.0802822436577522,-1.592418801932509,1
0.898254044162413,0.6609688588926557,0.9239360061347848,0.8330686457573878,-0.4533438766044097,0.4351073155511764,0.10258270379815991,0.6745346692992705,1.0820716091460718,-1.1564260811387048,1.5506174795187277,0.7550329949736967,1.6236710839768735,1.113350772866843,-0.10799734879941138,1.9187919080816735,0.4803220394749265,1.5724382619586306,0.8387956980710266,0.7728038545532355,0.8533478004812212,0.254488499535854,0.9126019693305032,0.728508686474791,-0.8315052266716523,0.2063316375593146,-0.20335974593757294,0.58156126197851,0.2689467862454473,-0.5046063051053964,0
1.1084245493161282,-0.5677225838781113,1.051625626874782,0.9530897760530582,-0.49034990641929493,0.3574062499671036,0.2536190061549681,0.35133607072627593,-0.33449442932854045,-0.708463198964442,-0.3846409332359597,-1.1362390835388059,-0.4678332461237648,-0.10048354795416879,-0.974699155279948,-0.5520846302197094,-0.07107925200920381,-0.331416582892062,-0.9192641736289607,-0.5140072112575547,0.8512769751812247,-0.5955560918491781,0.7755871125908146,0.7232349483414133,-0.2660222282928173,0.07846755453566422,0.7523069406999666,0.5922198801482108,-0.09505385131836507,-0.0939750976938375,0
-0.6723444605673736,-0.26753092456479893,-0.6989578832703418,-0.6364791747111623,0.23624925590757734,-0.8566255210855096,-0.7777718698726125,-0.3551611052445397,-0.7032397125397152,0.010262058194897816,0.8655894177118654,1.6114033144843463,0.6296496177420613,0.19301925863913,-0.4816791661319811,-0.862271574068899,-0.63574335266914,0.40939495978776363,-0.5802443636592661,-0.3922102791026238,-0.6024423854160389,-0.3724600975584702,-0.6600902993337507,-0.5748077975539289,-0.8183544592674935,-1.110223119782709,-1.012222212639828,-0.6548384457067663,-1.492816299563407,-0.819922306478105,0
-0.32016685733682465,0.3468147968205849,-0.3484292792389298,-0.3853449139266202,1.2197556636800908,-0.5391882409554554,-0.7211489502026869,-0.57956875150033,2.659279157138424,-0.2732587533077997,0.054239005202999756,0.19077204292324754,0.0034358952385566666,-0.12226524049744963,-0.007993294205503331,-0.7857029050466666,-0.41127030736862513,-0.043170007165753525,1.0857958453346612,-0.8555681731702951,-0.4367763614163506,-0.25521256771225903,-0.48971530356178994,-0.46388350548188645,-0.11698019771234847,-0.9145465429763666,-0.916655543976074,-0.7863962471156429,0.4776404851153671,-1.0859182303074548,1
-1.001800928105629,-0.07903848732155651,-0.934565828635756,-0.8773746660865954,0.03698601844281259,0.19631867497573266,-0.31298683967734736,-0.5803425709701776,0.40299613709381005,0.2994532859276501,0.16359806881073383,-0.03602094423529317,0.2791679453843686,-0.29123837053017343,0.14301282823129796,0.5774429617067992,0.05458586493155716,0.3007144838526898,1.7553599700248077,-0.18038952752883117,-0.9089245298154618,-0.44573980371235217,-0.8632297173695499,-0.801226954746941,-0.4852016850287995,-0.017589542661207436,-0.38662514468031406,-0.5382027097354706,0.06348864859831752,-0.44752801311701496,1
-0.7121064480288873,-0.25822265605896,-0.6421154069409238,-0.6999026629953673,1.5044174314868959,0.8330883831769157,0.16573420844111453,0.17335759266133888,0.5307791560283757,1.3825027858679586,0.017785984000421726,0.9491677919814075,0.07967060928246156,-0.2747370883004152,2.516442390593383,0.36785718883572494,0.5874192235695593,1.0728324919884396,-0.2993422353986623,0.5379097711115833,-0.6024423854160389,-0.04514407673779719,-0.5695413505318693,-0.6196345716876386,2.000293354357243,0.21332917444120583,0.22266034328639045,0.4110233712632997,-0.3894899225922048,0.48512019480964313,1
0.24502139300897569,1.3753784667158102,0.147088829632737,0.12488709496066044,-0.1772219618318086,-1.005015604871678,-0.8138046369352924,-0.5140520363865706,-0.9003906560387588,-1.0997219188381655,2.9192299191244295,1.7619938579576178,2.5795751931897333,1.4446965200403872,-0.05266177192411546,-0.812529883974164,-0.45470600741938944,1.19611183782524,-1.5328900296741077,-0.7719746265670663,-0.2648978615166741,-0.07771283502841134,-0.34912614621150023,-0.3195588718984527,-1.6876201846824006,-1.2910776411937726,-1.190786038325818,-1.3036437602938307,-2.160959692069428,-1.6018394909014653,0
-0.6354226150673965,0.43757041475251673,-0.6417035049385366,-0.6288000976543303,0.09747664410175905,-0.43855588528437567,-0.7940933323051852,-0.6997687091499832,0.7571376467124626,0.01451487036743861,-0.47090105271532745,-0.02513488085168321,-0.4633779706276925,-0.4577913125025327,0.9513789361987213,0.28234619350432694,-0.5170412105456772,-0.4087905933712117,0.24672181565966705,-0.576040431361308,-0.6666379697159178,0.24960318579226226,-0.6603881577179672,-0.6287757177854931,0.4485028006664865,-0.2262433696848756,-0.7473989139330398,-0.48688907654705454,0.28188903113660546,-0.578309342333112,1
-1.4562236419514987,-1.1378540298607593,-1.4667432157198736,-1.162069337712107,-1.872382789121336,-1.3868879149982805,-1.0686579953343653,-1.172262877438899,-0.08623027825567027,0.784273873597265,-0.8321829757230563,0.15992819666968577,-0.8524720306180125,-0.672109966102632,0.11601173349094265,-1.151052824315523,-0.9354496830194139,-1.3502554923669874,0.7830995864331479,-0.621052341070739,-1.3605715277446118,-0.913101485182667,-1.3809075891382,-1.0461041954067747,-1.4798380596966887,-1.2846526300567633,-1.235211106188587,-1.5335653808116592,0.14599545977944833,-0.32727568921916345,1
1.4350408748928465,0.7447432754452078,1.4635276292618697,1.4024579890084112,-0.7920913802945085,0.7288552464177939,0.28375093679971786,0.48494889918662015,-0.16290008961640925,-1.0642818174003281,0.11018176051388669,-0.26099958749656577,0.4786652814862757,0.3054479948978824,-0.505680139234519,0.6428337228425742,-0.16027164371649844,0.0671325654250679,-0.7739699693562345,-0.15050767150324268,1.4683829145800633,1.0393955743396583,1.76149836434814,1.4193683819472578,-0.007390469344357047,1.9455376225675736,0.548412190789849,0.85564001491367,0.47278714328118254,0.45796644425206345,0
-1.4442950457130446,-0.0906738229538556,-1.313927572834264,-1.1671887224166617,0.23624925590757734,1.7598157263625662,1.3647339486801158,0.004149068588007258,1.8925810435310313,3.4918976234480326,0.21701437710758079,1.2594205984142912,0.4469833224030944,-0.35504332848523845,0.9347115937664033,2.2591592032242978,2.3477255714283976,2.185590797831138,1.7396197645619285,1.5440583410870983,-1.2858147344147524,-0.3708316596439398,-1.1509609165228962,-1.0257124079577145,-0.45013297195104246,0.7667707278271552,0.9053479412207373,-0.0016174178779686822,0.378955867820289,1.1944426583545757,1
-0.6609838927212266,-0.6305533962925262,-0.5346089843178939,-0.6339194823588851,0.9066277190926045,1.2443354863901803,0.967996861857577,0.6508042055572788,3.1631093460804247,1.5469448565395227,-0.3084866018127521,0.37946380823915316,-0.2896222262808701,-0.3436024394726061,-0.538014783553216,0.6065055222115882,0.4839693119982731,1.0760766852999342,4.327067385652061,0.3177674900116775,-0.5237510240161869,0.11444283888621277,-0.4566530229137342,-0.5078313232600332,0.26877564614298105,0.9856027903153924,0.8549739441841201,1.0946975938626704,4.648278901290967,1.0559031146934559,0
-0.06455408079852291,-0.011553540654222887,-0.13341643399286995,-0.147862345687557,-1.1706915314775606,-0.9680602200207166,-0.7388514594564772,-0.7278841498877777,-0.8492774484649321,-0.9721375536619515,-0.265537002574071,-0.5269824028361022,-0.4010041136826793,-0.2624161309021958,-1.1123714037708947,-0.8192366287060384,-0.5501982334851919,-0.8955817997609985,-1.2013770869251708,-0.5968442551765913,0.029159331082772376,0.12095659054433607,-0.08522361779549104,-0.08804176784317558,-1.1383564661020282,-0.7173432308503387,-0.5032049663936283,-0.5040951315924284,-0.8812952284562011,-0.43866148232270363,1
0.23366082516282868,-0.1209256955978326,0.24182629018176713,0.09843694065379485,-1.0660783318085594,0.2342216337972317,0.021352040768355285,-0.3430379335502614,-0.24687178777340932,0.30228849404267794,0.06073558323910266,1.2557919106197546,0.20045807828709003,-0.019957290672948932,-0.4170098774945873,1.3017713927492311,0.7008162420226998,0.5634941420837644,1.5761637847551118,2.108031092152321,-0.003973873717165288,-0.033745011336082154,-0.004801854056978404,-0.12460635223459358,-1.4320569381282449,-0.01377270436199406,-0.10644977068617588,-0.4652673082599474,-0.07887604520441781,0.45630396972812987,1
-0.1895203271061369,2.0758256717802066,-0.25039660267080305,-0.26390173232412906,-1.5080157263286247,-1.0817690964852136,-0.9552991612545965,-0.9737008014760169,-1.4261265053695424,-0.732562467942171,-0.8527554728373825,-0.12129510740690476,-0.7257441942852874,-0.5594392110378431,-0.6996880051467007,-0.7516102859929719,-0.8085577562298909,-1.0733635932309107,-0.741278773394871,-0.7984522205137903,-0.32702262051655734,1.620747909827123,-0.30236237988947623,-0.3515528832409434,-0.9454785441743634,-0.6906253627558445,-0.9251951358546624,-0.8648132236498692,-0.3344853818047848,-0.7390152129800109,1
3.295333859699375,-0.4257714891640644,3.3871099804095697,3.854074441967363,1.3193872824124728,2.500818571322872,3.1136414231858,3.6725692353119723,0.5271282126302447,-0.22506021535234103,2.128091082727885,-0.6639653670798608,2.156324021062859,2.480977044069201,-0.22400205212834481,0.9474317127485353,0.3569779141399316,0.5326743056245641,0.339952263401333,-0.15504668760839535,3.491579232676256,-0.341519777182387,3.6350276010712754,4.137101433347852,0.9043960706773301,2.1592805673235262,1.7890517749488237,2.4513874208917117,1.276824107144361,0.23297822534640528,0
0.10585443689367809,-1.9546545912481443,0.09518917733196373,-0.04035526689190902,0.977793161044306,0.1053515738041351,-0.00476229912376116,0.22855671484379755,0.16203387281719994,0.17328652480894907,-0.4052134303502859,-0.652897869306524,-0.4643680318490419,-0.35526334558163514,-1.0743698630252096,-0.7108109222074028,-0.10191528334295254,0.03306853565437303,-0.174631376731239,-0.37329771199782086,-0.11786926521695106,-1.5791325922257287,-0.13288095927016563,-0.2374643482888745,-0.046842771556834445,-0.48006311658256967,-0.07766462952239453,0.11410472225020983,-0.019018162582813317,-0.21533573794097827,1
2.9829182439303397,0.5376343011902875,3.0287552383328036,3.373421100261954,0.4725185231872253,2.01376555046661,1.7853254805964147,2.532475216403245,0.6549112315648103,0.6510190921909973,2.116180689661696,-0.5741553441650787,2.071178756026809,2.190554476825457,-0.6840207032603217,0.3712105612016624,0.12653660471030412,0.6770409079860806,-0.21216571283502633,0.3650489077736848,2.826844311377507,0.20400692418540212,2.932081814319828,3.0964171083613374,0.08028131335003609,1.0466722031028075,0.9288558065044921,2.0235200343651565,0.4145470412709726,0.7073376228420792,0
-0.5530584981828329,-0.3373429383585927,-0.584037224604344,-0.5795971224383328,0.5792666861147775,-0.6400101114206429,-0.8022540635214715,-0.5032185638087049,0.32267538233494003,0.5035882702095944,-0.1410192568820966,0.5336830395069607,-0.22576327750383288,-0.3497629181717158,-0.5360147024613378,-0.7650237754567206,-0.6824947550138558,0.5505173688377853,0.20071198430663728,-0.146346906740186,-0.7121961263158322,-0.7746842624475562,-0.7482563810618981,-0.6774698998836798,-0.8052036918633342,-1.0221813830141857,-1.0669139808510124,-0.8494343602907297,-1.0899889273261203,-0.564455387967,1
-0.3485682769521914,-0.7841398266388717,-0.33895553318402716,-0.4058224527448386,-0.6824965996888883,-0.17531983626906508,-0.5004325582298949,-0.46530140978617474,-0.12273971223697372,-0.06345335279580269,-0.6888973379267842,-0.8085685756921464,-0.5826803478002969,-0.5213762533612009,-0.5723495089637912,-0.5504079440367406,-0.5568296380730948,-0.6832493475236674,0.06026092017633513,-0.7216671980682905,-0.3705099518164753,-0.6281248501397922,-0.3005752295841759,-0.4162440710103755,-0.05122636069155361,0.0034030679844666597,-0.30314823530534823,-0.2041311631022813,1.0487170409377047,-0.15327002238079682,1
0.946536457508537,4.651888980771191,0.882745805896076,0.7557090546663399,0.1252311664629227,0.4824860140780502,0.6641665611896835,1.0108881988596734,-0.009560466894930265,-0.44478884426693255,0.4743510515376613,-0.6545307788140655,0.0672948440155937,0.1905990705787655,-0.7270224467357024,0.13256222782579924,-0.19475494757359374,0.3153133537544161,-1.0028083410857782,-0.3918320277605277,1.292362764080395,3.125424542853501,1.0108952361220185,0.9271528228320143,0.18110386344858795,0.7585009115121926,0.24904672268652336,1.4007522013069322,-0.07725826459302326,0.05620176763481578,0
1.5088845658928007,-0.1092903599655335,1.4882417494050948,1.4564959386675993,0.8923946307022639,0.766758205239293,1.7175286366457274,1.8179819059106712,0.04155274067889539,-0.23356583969742162,0.5801009051253382,0.3468056180883233,0.3786690981299846,0.6029111092263232,-0.5843499955150601,0.1593892067532968,0.35366221184598023,-0.0058617840835640395,-0.4083128886032067,-0.2208624211331095,1.5926324325798296,0.767446442613029,1.3891753840772467,1.510779842925803,0.8342586445218161,0.7521395143468368,1.5419793132930342,1.3916162428757601,0.5908851279129979,0.3404849112274341,0
-1.2327044695785612,0.15134115819796284,-1.229899564347298,-1.024983591734588,0.4298192580162052,-0.972798089873404,-1.0291349463053354,-1.057092746343255,-1.6853434866368038,0.8650773048755341,-0.25326568850587633,1.4989139928537105,-0.3633817872714015,-0.44635042348990034,1.3630622942769761,-0.6062974834690271,-0.8815032066968234,-1.0618467069751043,-0.3066069456122983,0.7081228750548095,-1.1077237586150877,0.09978689765543637,-1.1453016072227786,-0.9044164308900294,-0.03369200415267572,-1.0148657762740265,-1.2075293954360842,-1.3825175347496155,-1.5639986464647748,0.3288475895598999,1
-0.5473782142597596,-0.9493615926175164,-0.5749753805518282,-0.5602572246655709,-0.6853432173669562,-0.7370416860036803,-0.8645267201872878,-0.8253854030885692,-0.6338717879752364,-0.21371938289223355,-0.5329794650603118,-0.7430707610007597,-0.4490220829181259,-0.469232201515165,-0.5460151079207287,-0.6314477762135561,-0.7090203733654676,-1.0793653508571759,-0.8732543422759307,-0.6543384591751922,-0.5216801987161909,-0.6997761183791438,-0.481077410419505,-0.5229493725757157,-0.2967073522358551,-0.39100355626758926,-0.7459596568748508,-0.8990730677667642,-0.3878721419808102,-0.24027285579998015,1
1.8014191879310786,0.3212170584295274,1.7600970709805726,1.8319174836682741,-0.3416141327402384,0.5109132331941745,0.7972492548706617,1.3562696222349648,1.2938263262376375,-1.2202182637268117,1.546286427494659,0.9419104163923342,1.13953114673701,1.321486946058193,-0.7010213925412864,0.30246642769995,0.29961626445457124,0.8424947668723128,0.9223398655278441,-0.40696208144437007,1.4414621856801142,0.2398325583050776,1.3325822910760707,1.3437781353688454,-0.9936980246562792,-0.005502888047031452,0.17756362212979965,0.7109873397534467,0.5164672197888407,-1.1130719808650347,0
-0.6467831829135435,-0.4257714891640644,-0.6767151751414388,-0.631928610529336,-0.8995511976415774,-0.9081735450827483,-0.777395220739553,-0.673716786998449,0.23140179738167885,-0.8006074627028187,-0.715244571073202,0.03836715555270804,-0.8079192756572887,-0.582100971966711,0.18468118431209302,-0.5856183538790812,-0.5893235205538193,-0.5220129399423782,-0.31750401093275316,-0.7606270863041845,-0.6645671444159218,0.011851250270778003,-0.6824296781500043,-0.6377410726122351,0.19863821998746584,-0.4991473080786367,-0.6744765563181272,-0.3533518174780906,0.32395132703286816,-0.7689397544108135,1
1.719055071046515,0.05825847313957088,1.7230258907657356,1.6925564555998418,1.2055225752897503,0.8444592708233658,1.563102492091385,1.9856427910443077,-0.31989065573601827,-0.32145729126325845,0.10079781446173793,-0.3916323480998853,0.07026502767964204,0.26738503722124024,0.6820346824924624,0.09343955022319878,0.7813878077657206,1.1847571612350083,0.48040332753163517,0.0794691444911607,1.192963149680582,-0.09888252791731045,1.1538672605460418,1.051964625321951,1.4961806038644838,0.2540421162994827,1.24069483577879,1.5636767933294993,0.2123244648466328,-0.1770988238905094,0
2.874992849391946,0.21184490348591684,3.0575883784998994,3.145892891170636,3.440117452573175,3.455973133624647,4.243588822363916,3.927929660361665,3.079137647923426,0.8466484521278581,3.983946875041313,3.452962370211697,3.4359781496569775,4.23891364427944,5.429893847762571,4.056566791366628,3.179966847210218,1.0420126555292395,3.018208762161919,2.2998045225950228,2.0192224443790265,-0.2747538226866278,2.1933930214623762,2.096164775730718,1.6320718670407925,1.0822960272287996,1.4781722503799857,1.6778762737191493,0.5197027810116298,-0.21367326341704546,0
-0.7717494292211575,-1.0168465392848505,-0.7595074776212437,-0.7192425607681293,-0.41064461143338865,-0.43192286749061326,-0.33885008014742424,-0.6528236613125651,-2.3534661284946754,-0.08897022583104548,-0.25543121451791084,-0.1974975510921741,-0.4772388277265843,-0.38650577326997737,0.10501128748561275,0.6596005846722602,0.9037372224125301,0.8635820233970284,0.13411880734830423,0.3741269399839901,-0.8074540901156531,-1.2990412709264463,-0.8382096130953458,-0.7266914557952041,-0.8884918854230075,-0.5932959861259017,-0.5151987752118705,-0.7863962471156429,-1.7629856616663255,-0.5361933210601318,1
2.602339221084424,1.7174573343053994,2.756899916757326,2.9297410925338836,1.2624549288511109,1.972072295762961,3.3082434752664756,2.9168055530941963,1.4179584017740732,-0.07195897714088428,0.5367903848846514,0.622585890473109,0.8915208107889814,0.9421774718701514,0.7620379261675889,1.43814186896401,1.9127054304619642,2.0850208051748007,0.14622665770436466,0.52958824158547,1.8328481673793775,1.1403587250405622,2.0772282516178575,1.943226369862767,0.9306976054856475,1.0333132690555606,2.480374915232305,2.416366246905552,0.48087604633815617,0.20360784209024774,0
1.764497342431102,0.5166906970521494,1.8095253112670238,1.7323738921908225,1.468834710511046,1.5759863760782964,2.105477243696881,2.6175953580864757,2.7651565156842075,0.553204412222565,0.5956205082115845,-0.3517167823599821,0.567275760797048,0.6319533659506977,-0.518680666331727,-0.06528674176449477,0.00020834731075287884,0.3072028704756793,0.8642221838187535,-0.1701767412922377,1.8701230227793073,1.0068268160490437,1.9014918049299956,1.8588465597287254,1.176178597029949,1.2400586769296218,1.2579659204770584,2.3432785794561766,4.298838289229705,1.022653624214788,0
-0.26336401810609117,-0.432752690543444,-0.32289135509093075,-0.32220583590377927,-1.7229353610227627,-1.1200510848949277,-0.570489296978938,-0.976796079355407,-1.1851642410929335,-0.9140157873038983,-0.8740498119557202,0.6969739902611102,-0.9866253261108581,-0.5891415190514078,-0.2600035117821516,-0.5470545716708036,-0.03659594815210838,-1.0402728214536643,-0.11167055487972435,-0.5843619608874214,-0.482334518016265,0.34893789857863566,-0.5653713331528353,-0.48972482233543685,-0.9761636681174006,-0.6581822372125303,-0.20335974593757294,-0.9883009284445441,-0.21638739717296948,-0.6630955430537175,1
0.5801581444703049,-0.7492338197419749,0.5902953842012433,0.38000309940430094,0.17362366699007967,0.7478067258285435,-0.2798417159681226,0.13028164217315832,0.6512602881666802,0.4142792145862436,-0.832543896725062,-1.3205764235012678,-0.7509907554296974,-0.5594392110378431,-0.8436938437619284,-0.41124299085034755,-0.41060716690983484,0.02658014903138352,-0.14557253587669367,-0.037410520216521206,0.14512554788255383,-1.0645462112340234,0.1739131764730504,-0.03354647379827361,-0.3887627240649674,0.0046753474175376675,-0.29163417883983567,0.15978451440606964,0.4080759188253944,0.31333116066985434,1
1.7928987620464691,0.5795215094665636,1.7230258907657356,1.8148528679864253,-0.3458840592573408,0.16599630791853365,0.11538877432217846,0.7462419401718104,-0.7068906559378453,-1.02458890378995,0.6241332673700363,-0.5444001042498782,0.6692520665960379,0.7063191445328079,-0.27767089476040874,-0.3587068237839983,-0.2700213896462923,0.4564357628044375,-0.737646418288053,-0.7144804225684654,1.6651113180796928,0.11281440097168238,1.606612004555448,1.5810963513708378,0.014527476329241236,-0.10601296325965216,-0.009539795434778803,0.9424316200098037,-0.47199673377333556,-0.9196707779141118,0
1.332795764277526,0.623735784869299,1.3070048683547764,1.2943820896900353,0.3871199928451841,0.6549444767158706,0.8863895496947131,0.993606230699745,0.479665948454549,-0.20946657071969274,1.4939528822038295,1.2957074763596579,0.8053854845315825,1.3984929297970645,0.3443543248136994,0.8608029266284912,0.7067845061518123,1.0614778153982078,0.39806994511042365,0.2723773289601504,1.3234251435803361,0.8553820899976874,1.1330171736508723,1.2699458015015588,0.29069359181657933,0.5854709086145164,0.5709605513681444,0.85564001491367,0.17187994956176467,-0.04465502015047875,0
2.153596791161628,-0.4746398988197201,2.0154763124605677,2.5344108292377183,-0.17935692509035883,-0.35479034628886275,0.3515477807504049,0.9216410200039225,-0.3454472595229316,-1.737643744719236,2.8939654489840296,-0.30091515323646895,2.409284663117634,4.043098428486309,-0.49101287789407927,-0.8024697668763525,-0.36252948364753845,0.02820224568713083,-0.9580092947683543,-0.7534403108043595,2.9987228112771827,0.12421346637339742,2.7474096161054655,3.9771313766353984,0.17233668517914838,-0.5818454712282614,0.0667408286492418,1.0261779056288804,-0.6321570143014136,-1.053222898003431,0
-0.47637466522134253,-0.6701135374423421,-0.375614811396478,-0.5067880955291111,-0.08684185055314729,0.8861525255270148,0.8236146941848179,-0.01184320045550872,0.9871470807946806,1.4817350698939018,-0.04717979636060849,-0.0178775052626099,1.0583461265863576,-0.2232530877435697,0.0643429719507569,2.751546045622741,2.6361916710021758,2.5002775490461286,1.4260264403399616,2.2059981897552,-0.5154677228162027,-0.7567714453877185,-0.28121443461008966,-0.5273441543535304,-0.6517780721481468,0.9658824591027897,1.0430368664541578,0.2983465506121786,0.5342628065141825,1.0780694416792358,1
-0.6183817632981767,-1.007538270779011,-0.607103736738021,-0.6489932262111849,1.3834361801690038,0.30813240349915477,-0.9678541323565756,-0.8008811198767302,2.3635527418898583,0.427037651103864,-0.15942622798438844,-0.3027294971337371,-0.20348690002347106,-0.30113913986802837,-0.4136764090081238,-0.07311127728501475,-0.7983453931645204,-0.20700176939623835,0.8230554926081477,-0.2575528013164271,-0.7163377769158243,-1.2957843950973849,-0.7199598345613101,-0.6757119871725539,-0.13451455425122757,-0.4183575640786189,-1.1560519679881887,-1.0193631871105286,0.3611602810949472,-0.44586553859308214,1
-0.07875479060620653,-0.48394816732555906,-0.14536159206209576,-0.18824860280126574,-0.605637922381051,-0.8145532367936457,-0.9365922543126476,-0.9675102457172364,-0.7214944295303675,-0.5525267526379575,-0.6737386558425439,-0.6545307788140655,-0.6787162862711901,-0.49343408211881035,-0.8140259742324024,-0.9115102583087433,-0.7548765360908165,-1.1325701211656898,-0.9773818553380511,-0.7893741883034849,-0.161356596516869,-0.341519777182387,-0.20734555532434432,-0.2719194374269416,-0.7306826765731004,-0.7586923124251509,-0.9165116182702551,-0.9678972879482599,-0.8683529835650433,-0.6719620738480296,1
0.30182423223970917,-1.4147750179094738,0.23400015213641254,0.16186042893799962,-1.190617855224036,-0.6633204310958647,-0.6888826744706006,-0.5764734736209398,-0.3308434859304094,-1.043017756537625,-0.8188288986488446,-1.4593737316422948,-0.7564360921471192,-0.49761440695034914,-0.6763537257414556,-0.5940017847939242,-0.5432352586678939,-0.42841796290575485,-0.4930678410956306,-0.7670573591198175,-0.014328000217145946,-1.6198435400889966,-0.08224503395332405,-0.10808197275001044,-0.8665739397494092,-0.5125062421258839,-0.6524079480925615,-0.49983168432454805,-0.6693659683634922,-0.9024918745001327,1
0.4608721820857637,0.22348023911821593,0.4378916433180206,0.30264350831325265,0.43693580221137457,0.30434210761700475,0.32518234143624875,0.40498755396903957,0.45045840126950565,0.032943723115114724,-0.20887240525917247,-0.5369612942710779,-0.30793835887583426,-0.17924966846421464,-0.7583570505084601,-0.0971437792408979,-0.26703725758173597,-0.5124425696734687,-0.341719711644874,-0.2511225285007941,0.6814693005815443,0.7511620634677216,0.5551719082704456,0.36462075527173593,1.0008350316411627,1.2324250003311952,0.6016647019428445,0.5069509347906056,1.767011632396962,1.2443168940725788,0
-0.8711543978749413,-1.007538270779011,-0.8435354861082098,-0.7991618442114549,0.49386815577273635,-0.25339993144135303,-0.43728105358694014,-0.4000426344956977,-0.1300415990332348,0.889176573853264,-0.8845165210138862,-0.7154927337622812,-0.7480205717656492,-0.649866237656918,0.12501209840439442,-0.3749147902193615,-0.14302999178795078,-0.2751298289376281,0.3556924688642119,-0.33206831570935064,-0.9006412286154776,-0.9407849297296894,-0.819146676505476,-0.7745066815378278,0.4134340875887295,-0.21161215620455745,-0.20287999358484332,-0.10820359957497537,0.6475074493118133,0.3798301416271922,1
1.1623872465853244,-0.13721516548305118,1.1669581875431663,1.0753861884396416,1.3122707382173024,0.8368786790590658,1.1098680353099406,1.4723425427120973,1.023656514775985,0.04286695151770925,1.5466473484966647,0.6824592390829636,0.99547723903067,1.2865042277311056,-1.0473687682848545,0.2309278172266234,-0.12346734825363706,-0.41754991531224755,0.7504083904717846,0.5034888989808421,0.8968351317811395,-0.25195569188319766,0.8292016217498227,0.7742144169640636,-0.19150121300258288,-0.1562680008659626,-0.04744023130042429,0.27246133505719117,0.1945288781212901,-0.2258647432592239,0
1.5344458435466308,3.0671562676520754,1.484122729381224,1.6157656850315218,-0.8653917855047613,0.16410115997745864,0.32267134721585305,0.4501270230434802,-1.4005699015826292,-1.3704842938232427,1.2055770016012564,0.188957699025979,0.9187474943760906,1.5305031876351298,-0.5006799365048238,0.05375797722627549,-0.17419759335109464,-0.16482725634680667,-0.8744651273115367,-0.582092452834845,2.4085376007782933,3.2133601902381597,2.172542934567206,2.8063615110255693,0.36959819624153295,0.9887834888980703,0.6107799966447086,0.7292592566157908,-0.30374755018828486,-0.4580570184352606,0
1.6082895345465842,1.3567619297041325,1.5829792099541253,1.5275985040086362,0.3657703602596741,1.0339740649308609,2.080367301492923,1.7019089854335383,1.4252602885703343,-0.23640104781244947,0.3252906777092978,-0.032392256440756516,-0.05002741071431177,0.5058835697153451,-0.6693534419198819,0.35276701318900766,0.519115756314159,-0.2216006392979647,-0.5766120085524482,-0.21594515368586076,1.3172126676803477,1.286918137348326,1.2342890242845546,1.2453350235457967,-0.21341915867618116,0.8386545157956748,1.415804444525126,0.8921838486383578,0.6539785717573924,0.03902286422083744,0
0.26206224477819595,-0.05111368180403884,0.21793597404331608,0.13370381306294907,-0.299626521988735,-0.34815732849510034,-0.17500770726659737,-0.1436504501528753,-0.914994429631281,-0.5170866512001201,-0.06919597748295758,-0.03420660033802505,-0.11685654315539737,-0.0406388977342458,-0.6963545366602373,-0.512961952617109,-0.073731813844365,-0.38494577253172513,-1.092406433720626,-0.7855916748825243,0.27144589118231593,0.3880204085273725,0.19476326336822053,0.15191331722550566,-0.34054324358305105,-0.2809513853069349,0.06913959041289025,-0.03968391134118535,-1.001010993699411,-0.7983101376669702,0
-0.8484332621826479,-1.2146472450339323,-0.8538330361678871,-0.768729946245491,-1.6809477502712593,-0.8281983019693853,-0.5492713958165933,-0.8823901040340056,-0.44402273127245284,-0.27892916953785346,0.061457425243114226,-0.7396235075959499,0.22966488431689783,-0.25295539575713444,-0.500013242807531,0.46901725520816334,0.4362231989653719,0.47265672936191144,1.2686243857111748,0.3919047530625049,-0.8592247226155556,-1.60518759885822,-0.8233166938845101,-0.7507748599376285,-1.9168818964282384,-0.8184894457794949,-0.7296480768820414,-1.1478756690423482,-0.5253834939493619,-0.7628440144897235,1
-0.3372077091060449,-0.7259631484773766,-0.3620220453177036,-0.41890532476758946,0.17291201257056293,-0.3028632927034092,-0.7010609964395202,-0.645343406437372,-0.27973027835658376,-0.11306949480877533,-0.9361282243007044,-0.5658093622376443,-0.924994015081857,-0.6375452802586985,-1.3847157791149711,-0.705780863658497,-0.5226779044453947,-0.7280192152222947,-0.22306277815548076,-0.6895158339901256,-0.4989011204162338,-0.43271230039610675,-0.5233733009782786,-0.5268167805401928,-0.6649288395523055,-0.37191936477152204,-0.437478894069661,-0.4678558298154462,0.6410363268662342,-0.3106509439798286,1
-0.25200345025994414,0.19555543360069827,-0.21003020643686826,-0.3185085025060455,-0.9621767865590751,0.34034991849742907,0.15317923733913563,-0.5310760647232167,-0.7689566937060631,0.21581464653435503,-0.4481630295889668,-0.7318218288376962,0.2489710781332115,-0.36362399524471267,-0.7040215141791034,2.29660519464393,1.4899533879831506,0.3055807738199317,-0.6395728304039628,1.640890684663689,-0.17171072301684967,-0.028859697592489825,0.23050626947422637,-0.25855930082238493,-0.5378047546454356,1.9741639098116741,1.8394257719854408,0.32118644669010815,-0.09020050948418142,2.2695095171648654,1
-0.30596614752914103,-0.1628129038741087,-0.28334876286176996,-0.406391273267567,0.8425788213360734,0.4938569017244997,0.09078103096229963,0.1834172457693571,0.8155527410825494,0.3136293265027854,-0.3413304129952729,0.5318686956096926,-0.13665776758238568,-0.4129078248375904,0.25535071622512123,0.7736152451141245,0.6374863282082265,1.1296058749395974,0.9756144070945103,0.7262789394754201,-0.43056388551636243,-0.13470816203698596,-0.3884434529281068,-0.5087102796155961,0.08466490248475525,0.07337843680337948,-0.07142784893690873,0.17044313257577037,0.34336469436960537,-0.04299254562654596,1
-0.07875479060620653,0.07222087589833014,-0.13547594400480525,-0.17715660260806404,-0.6775150187522692,-0.7777873667367917,-0.9463851317721913,-0.6703635692957762,-0.9369000900200632,-0.8601468331183848,-0.2283621393674816,0.8366784703507713,-0.26487069574713484,-0.2355740451417892,-0.4016759224568547,-0.8119709885798413,-0.8647920671353079,-0.7716536152618991,-0.04870973302820929,-0.555614858888121,-0.13236504231692345,0.3798782189547194,-0.18947405227134118,-0.23113586252882135,-0.9016426528271668,-0.891645513181086,-1.0778043592579762,-0.8482162324999067,-0.6273036724672291,-0.8221389391766829,1
-0.2349625984907239,0.5306530998109079,-0.277170232825964,-0.30940737414239267,-0.7501037695430052,-0.7696382305901694,-0.6950346103105703,-0.6365734524457664,0.012345193493852012,-0.8275419397955753,-0.5163770989680486,0.5844846686304739,-0.41486497078157114,-0.4258888335250002,-0.5143471572993243,-0.2810203639731203,-0.46233212269547785,-0.875467801229731,-0.27270496461532895,-0.6955678554636625,-0.42849306021636635,0.573662330783874,-0.4265693261078463,-0.45597289828182,-0.8052036918633342,-0.5570360222833741,-0.7243708010020148,-0.890241641283298,-0.4266988766542838,-0.9623409573617363,1
-0.39969083225985164,-1.2821321917012662,-0.4196883256518962,-0.4629889152790323,0.02204127563295614,-0.3868183464930293,-0.95316481616726,-0.7655433640870253,-0.6338717879752364,-0.2548299005601246,-0.8101667946007072,-0.9502688340688025,-0.7554460309257698,-0.5931018267865498,-0.3256728409654846,-0.7644648800623978,-0.8398579858847929,-0.6193387392872206,-0.8236121558160825,-0.9089016124058393,-0.5734508312160934,-1.3348669050461217,-0.5576270151632006,-0.5746320062828163,-0.11259660857762929,-0.681083267007811,-1.0547762463269514,-0.7792397463445583,-0.8602640805080697,-0.8160431992555937,1
-0.6041810534904931,2.080479806033126,-0.6260512288478274,-0.6040564049156496,-0.8532936603729717,-0.7550455914438922,-0.6057687657754991,-0.7601266277980924,-0.7178434861322364,-0.24915948433007085,-0.7722700893901062,0.8856657555770162,-0.6683206434470212,-0.5825410061595045,0.09767765681539302,0.023018730538517853,-0.08235263980863883,-0.42663365658443264,-0.37441090760623735,0.19180979309369015,-0.6583546685159336,1.9871464405965336,-0.660983874486401,-0.6273693876165923,-0.5071196307023977,-0.43680561585815064,-0.43699914171693127,-0.6615381485562923,-0.7340771928192812,-0.1111540011078166,1
1.5514866953158506,1.3288371241866146,1.4717656693096115,1.5247544013949947,0.486751611577566,-0.10671548080215167,0.9629748734167856,1.0758890343268679,-0.5425982030219751,-1.2599111773371898,0.22459371814970094,0.28693226947846867,0.024722211497568935,0.3485713457916505,1.619739367734674,-0.3458522297145724,0.5695144311822213,0.5180754357228378,-0.5003325513092667,-0.7519273054359752,1.070784456980812,0.8602674037412797,0.9691950623316792,0.9500056880766505,0.8956288924078906,-0.4438031527400419,0.6021444542955742,0.487156358189733,-0.9832154069740687,-1.276548642385156,0
1.8497016012772027,-0.4513692275551219,1.7642160910044444,1.9343051777593672,-0.13523435108030427,0.0617631711594113,0.8022712433114535,1.0444203758864008,-0.8784849956499765,-1.1365796243335158,0.752621144084074,-1.014859476811555,0.6202440361392417,0.8070869746825311,-0.2766708542144695,-0.3648546731215498,-0.16856089945137712,0.08497562863828885,-0.9422690893054756,-0.7882394342771967,1.88461879987928,-0.4082857316781457,1.7734126997168087,1.8729098614177322,1.0446709229883593,0.3259259042680024,0.6894593824923775,1.4707945492792507,-0.34257428486175845,-0.7423401620278781,0
0.03769102981679758,0.0838562115306284,0.24141438817937982,-0.07107157511923715,-1.2802863120831807,2.2544493389831284,2.655384977963564,0.749595157874483,-0.3929095236986272,2.111151271429892,-0.15292964994828534,0.49558181766432613,0.2638219964534526,-0.24393469480486665,-0.5810165270285966,2.7375736607646695,3.700532107360599,1.8043980837305051,0.6196436066263309,3.4742749398032835,-0.20070227721679484,-0.317093208464426,-0.007780437899145382,-0.30162816224496874,-1.8796213887831212,1.0498529016854854,1.9483295560550804,0.5465400879923508,-0.8133484427776225,1.3440653655085857,1
-0.37412955460602154,-1.4496810248063707,-0.43987152376886324,-0.4154924016312197,-0.6383740256788338,-1.2621871804755487,-0.9994549946202568,-0.9187596191168407,-1.2618340524536724,-0.2080489666621788,-0.4196502704305148,-0.4117715653595635,-0.5386226234502479,-0.4080674487168614,0.4976938751910252,-1.0682804164163069,-0.8525902826935666,-0.7117982486648211,-1.1977447318183525,-0.1679072332396614,-0.5465301023161439,-1.551449147678707,-0.6124329578590761,-0.5447474901936765,-0.7087647308995021,-1.2711028540945557,-1.1735149536275493,-1.1375215828203533,-1.8082835187853783,-0.5960424039217355,1
0.8386110629701423,1.8291565563754686,0.7921273653709165,0.7850033115868469,0.1864334465413859,0.12619820115595962,0.1494127460085418,0.3969914194472818,-0.06797556126501803,0.0017564338498181988,1.8909659844101248,-0.1176664196123681,1.5766431759627766,1.6471122487254213,0.5663633260121753,-0.1837725653609418,-0.1552980902755712,0.4515694728371953,-0.011175396924421953,0.2353086974347367,1.3855499025802194,1.4351059875706216,1.3355608749182377,1.349051873502223,1.211247310107706,-0.06275546253523315,-0.039764193656749054,0.6226730749187841,0.1767332913959483,0.3687469781343023,0
-1.3411978925092631,0.5609049724548849,-1.333286966946457,-1.0912511826324343,0.5721501419196082,-0.8101943965291732,-0.8578725855032389,-0.9375892262164646,0.7790433071012459,0.45538973225413465,0.0903311054035721,3.0138911470727625,-0.05299759437836013,-0.3337016701347511,2.5664444178903367,-0.48837055526690276,-0.6042441808766009,-0.5064408120472036,1.1983988536460235,0.3007461796173549,-1.1222195357150606,0.9058636653481392,-1.1476844742965124,-0.9161944460545729,0.8868617141384522,-0.8585662479212359,-1.0112147326990957,-1.1710200970679838,-0.04652043297652329,-0.0501966018969237,1
-0.9052361014133818,-0.1628129038741087,-0.8888447063707893,-0.8102538444046565,0.28748837411280226,-0.5636356493953223,-0.4941550726789053,-0.5055400222182476,-1.1888151844910635,0.4752361890593237,-0.09229492161132392,0.9546108236732127,0.07521533378638902,-0.3202806272545478,0.82604052110769,-0.23127867387838527,-0.39767592796342405,-0.03992581385425891,0.029991294286183807,-0.4137706056020992,-0.8012416142156645,-0.0158321942762444,-0.7297891612404617,-0.7175503096973496,0.17233668517914838,-0.5716672357636923,-0.628420330456077,-0.5441410827157324,-1.0511621926526473,-0.36717507779356584,1
-1.5706813630014271,-0.16048583674764855,-1.5602449702617425,-1.233456313314508,0.7856464677747116,-0.8693230122907117,-1.1148728439607505,-1.261819584082589,1.2828734960432464,1.5299336078493615,-0.24676911046977343,2.8306424134486616,-0.31882903231067794,-0.49563425308277814,4.569858978254962,-0.639831207128399,-1.0575006844597676,-1.9134474512424755,4.954254034095996,1.1442466724915645,-1.5152621776543207,-0.5271616994388878,-1.5074974024303038,-1.1259134324918891,0.10219925902363315,-1.1233912119149954,-1.3058306525103973,-1.7450628184932908,0.3902803321000517,-0.15437833873008613,1
-1.6780387291475138,0.3281982598089062,-1.5940209344574836,-1.2826592885305057,-0.1644121822805024,0.49575204966557496,0.5436388386106845,-0.7026060472060909,1.4982791565329432,2.808612467726531,-0.7639689063439746,1.3519521371749756,-0.8034640001612163,-0.6628472463443277,1.7964131975172448,1.6030160102892548,1.5131633040408112,-0.25566466906865953,0.3084718524755757,3.0203733292880135,-1.486270623454375,0.658341102339471,-1.4649036534873137,-1.1088616791939683,1.3427549841492958,1.1242812485201474,1.275716757528057,-0.5453592105065552,0.6814808421511023,3.582864391072281,1
-1.010321353990239,-0.22564371628852284,-1.03589372122298,-0.8930172304616235,-1.0632317141304906,-1.1318010021295923,-0.8646522698983076,-0.975248440415712,2.0459206662525093,-0.7254744476546032,-0.8061966635786443,2.404271597590604,-0.7866329593982764,-0.598822271292866,1.2263900863319688,-0.6800716755196452,-0.39668121727523864,-0.11129806670714326,-0.4083128886032067,0.2636775480919412,-1.1035821080150956,-0.38548760087471623,-1.1292172544750763,-0.9040648483478044,-1.5092081068993106,-1.2013183271906032,-1.1146013647123434,-1.4067278245922212,-0.3263964787478112,-0.9191166197394668,1
1.812779755777226,1.9827429867218145,1.7477400109089607,1.8887995359411036,-0.33947916948168716,0.0579728752772613,0.836169665286797,0.8893985420936078,-1.3275510336200202,-0.9749727617769783,0.4288750052849404,-0.05053569541343979,0.44599326118174487,0.6528549901083914,-0.6736869509522846,-0.2715191422696316,0.08873759855925722,-0.14373999982209082,-0.9156318185221425,-0.3434158559722324,1.6982445228796303,1.9057245448699978,1.6512907621879551,1.7428243207944178,-0.44136579368160295,0.1389008276065438,0.6832226019068917,0.6348543528270133,-0.7502549989332284,-0.036896805705455976,0
-0.26336401810609117,-0.8074104979034695,-0.32536276710525336,-0.3344354771424378,-0.8006312333287123,-0.9822738295787787,-1.0965300311807589,-1.17770540771016,-0.6557774483640186,-0.5468563364079038,-0.7755183784081577,-1.1672643641820943,-0.82277019397753,-0.5464582023504333,-1.1363723768734328,-0.9846137758861739,-1.020099562583995,-1.5264151891811524,-0.859935706884264,-0.45764776128524187,-0.3850057289164481,-0.8512208444305001,-0.45456801422421744,-0.428373668717144,-0.8578067614799703,-0.7612368712912932,-1.2520983890046722,-1.3643978838611244,-0.40404994809475747,-0.005309789750721381,1
-0.49341551699056224,-0.4211173549111449,-0.4666451539240242,-0.5460367115973636,0.5579170535292675,0.48059086613697544,-0.37513394663214367,-0.5189528930289384,-0.11908876883884369,0.43696087950645857,-0.5210690719941231,-0.6238683669502308,-0.3708072464315222,-0.4650518766836263,-0.10866404249670418,0.6467459906028342,0.5197788967729492,-0.20862386605198566,-0.2618078992948745,1.1684547583857123,-0.4326347108163585,-0.414799483336269,-0.35835975612221843,-0.49236169140212566,0.45288638980120566,0.6681690717641412,0.23225539034098425,-0.2522472108397871,-0.1322628053804441,1.5435623083805976,1
2.5966589371613504,0.6400252547545175,2.4768065551341056,2.9325851951475252,-0.8518703515339372,0.19252837909358292,0.5474053299412782,1.2407125814043964,-0.03876801407997364,-1.0302593200200039,0.9348862500969641,-0.6545307788140655,0.8598388517058001,1.265382586477015,-0.7103551043033842,-0.002131562206010979,-0.12180949710666139,0.7192154210355123,-0.11893526509336036,-0.020767461164294735,2.431316679078251,0.41407541515986396,2.2916862882538918,2.676275970402255,-0.41944784800800466,0.6618076745987854,0.5882316360664132,1.8270969280949585,1.1134282653934937,0.43912506631415077,0
1.1623872465853244,-0.0976550243332344,1.1010538671612324,1.0583215727577928,0.0782619747748002,0.13946423674348413,0.30383889056288443,0.7888020110134258,-0.01686235369119136,-0.8729052696360062,-0.0038692761199216794,-1.2093571425987195,-0.15794408384139796,0.1883988996147977,-0.7400229738329105,-0.49675398618174577,-0.2590795720762524,-0.05939097372322744,-0.9434798743410818,-0.5083334411261137,1.1536174689806558,-0.11028159331902548,1.0019594845955175,1.0625121015887062,0.4835715137442435,0.1401731070396148,0.5426551625570927,0.9591808771336193,-0.14358726966020682,-0.10893736840923877,0
-0.6865451703750568,-0.6096097921543874,-0.7104911393371803,-0.6578099443134734,0.6219659512857986,-0.822323343352053,-0.6638982819776623,-0.5911760435480433,-1.7255038640162395,-0.47455852947471516,0.1578233327786423,2.342583905083482,0.19402268034831888,-0.13128594144971753,-0.15433256076125554,-0.6526858011978249,-0.1748607338098849,0.206632877819342,-0.8417739313501734,-0.033249755453464674,-0.6086548613160271,-0.032116573421551185,-0.6285173106067788,-0.5869373952606973,-0.23095351521506027,-0.9635293011496057,-0.8040096915551431,-0.6840735126865165,-1.9231459421944037,-0.5827426077302684,1
1.1226252591238108,0.593483912225322,1.0475066068509111,1.0497892649168683,-1.6119172715781092,-0.3396291627602632,0.26994046858754084,0.22855671484379755,-0.15194725942201812,-1.3322089842703775,0.8338283695353615,0.15992819666968577,0.7157849439994606,0.792565846320344,-0.5036800581426408,1.5359485629705112,0.9683934171445838,0.42886011965673215,0.10384918145815289,0.46944627819219664,0.7228858065814668,-0.159134730754947,0.6504865912197939,0.6107285348293577,-1.9352929707940605,-0.36873866618884416,-0.08965843834063676,-0.34710891255012294,-0.8602640805080697,-1.0177567748261842,0
-0.024792093337009664,-0.7701774238801129,-0.09016672374222583,-0.12425629399433254,-0.8383489175631142,-0.8602263021735519,-0.6711801652168101,-0.5024447443388572,-0.35640008971732273,-0.5411859201778499,-0.057646505418774516,-0.3099868727228104,-0.10992611460595135,-0.16714872816239187,0.31168633364635634,-0.7001919097152683,-0.5243357555923704,-0.4460988164534012,-0.05960679834866415,-0.3649761824717076,-0.12615256641693529,-0.6672073600885297,-0.1805383007448398,-0.2295537410888081,-0.5641062894537536,-0.8210340046456371,-0.7699472745113352,-0.6102245153678764,-0.2843341828515476,-0.6431458487665164,1
0.43531090443193354,0.9099650414238529,0.7509371651322078,0.33734156019967876,1.0347255146056669,3.9240746750701594,2.872585978027802,2.290011782517678,2.494986704222554,2.5860486306969124,3.200748300688894,2.2446093346309923,3.59092273079816,2.1597520833299084,1.7730789181119992,1.9266164436021935,1.671985443921087,2.991772835737583,0.342373833472545,0.8499671283408311,0.7415232342814317,0.9710011819293681,1.0853598321761972,0.6072127094071059,0.7904227531746195,1.672633684173812,1.6595186397118078,2.0037254577642836,0.6086807146383397,0.9949457154825638,0
-0.8257121264903544,3.3789832625976874,-0.8723686262753055,-0.7624729204954797,-1.3208506139956504,-1.3000901392970476,-1.0525123024972205,-1.0958611017826172,0.12187349543776543,-0.6404182042037943,-0.6542489217342349,0.7804338095354533,-0.6816864699352383,-0.5473382707360204,-0.8940292179075288,-1.04318601321121,-0.9506355995257116,-1.3588526046424485,-0.16736666651760257,-0.47693857973214093,-0.8095249154156492,2.6222372272635113,-0.8584639832220826,-0.7201871787640384,-1.4215363242049175,-1.179498734913433,-1.1946240571476554,-1.2879603649869853,0.016573010867871187,-0.6026923020174697,1
-0.62406204722125,0.5213448313050689,-0.6359368769051174,-0.6151484051088513,0.09391837200417437,-0.4899143944875066,-0.697043405686887,-0.7438764189312937,-0.451324618068714,-0.12157511915385594,-0.3369993609712041,-0.533695475255995,-0.42872582788046293,-0.34206231979782864,0.2540173288305359,-0.022810691795957082,-0.4490693135196719,-0.6626487199956757,-0.9398475192342636,0.023109694518848097,-0.5382468011161596,0.0769887668520063,-0.5874128535848719,-0.5231251638468284,0.7728883966357404,-0.09138174977933398,-0.5847628663576754,-0.6415913059815668,-0.7486372183218339,0.08113888549381768,1
-0.7717494292211575,-1.9709440611333628,-0.7673336156665983,-0.7155452273703954,-0.1871851237050469,-0.7105096148286307,-0.6739422588592455,-0.5852434276125454,-0.527994429429454,-0.23640104781244947,-0.9541742744009906,-1.3719223557939615,-0.8727682856556754,-0.6564667505488212,-0.3336731653329971,-0.5694103874437182,-0.5555033571555142,-0.8655730116296722,-0.859935706884264,-0.6010050199396479,-0.7142669516158283,-1.5807610301402593,-0.7005990395872239,-0.6505738354034539,0.9833006751022837,-0.09710700722815423,-0.2973912070725919,-0.3810642247193121,0.18643997506431648,0.07116403835021706,1
-0.39969083225985164,-0.3769030795084087,-0.4526404858428631,-0.43682317123353076,-1.2382987013316762,-1.1204301144831426,-0.9388521491110038,-0.7885000083591692,-1.2873906562405857,-1.043017756537625,-0.39619040530014277,-0.6046363216391865,-0.37476749131691983,-0.37616496973932895,0.09867769736133193,-0.7678182524283349,-0.8790164299763598,-1.0013425017157271,-0.13830782566305724,-0.9890908969302036,-0.507184421616218,-0.7681705107894334,-0.547797688484049,-0.5164450955445501,-1.1208221095631492,-1.0064687320157568,-1.1394045613484685,-1.1950781209367367,-1.1902913252325935,-1.3131230819116917,1
-1.010321353990239,0.21649903773883633,-0.8987303544280792,-0.9004118972570913,-0.40068144956015034,1.1685295687471824,1.7476605672904775,0.2706009060388479,1.3741470809965075,3.076539634596581,-1.0599241279886675,0.025666748271829954,-0.24902971620554418,-0.7284563444898462,0.4860267354884025,2.8476760534462735,4.032102336755747,2.8214526868841086,-0.5293913921638119,3.179238892968358,-1.1222195357150606,-0.4652810586867209,-0.9159506513759084,-0.9293787913880169,-0.7920529244591754,0.6847087043940661,1.5870760344496246,0.4856336984512041,-0.49141010111007283,1.9979720115890705,1
-0.24348302437533428,-0.5281624427282953,-0.30559147099067296,-0.30855414335830034,-0.8476004250168359,-1.030979131664405,-0.6686691709964143,-0.6283193781007259,-1.152305750509759,-0.8587292290608719,-0.4059352723542972,-0.5917544799685813,-0.4069444810107758,-0.3444825078581932,-0.3363399401221681,-0.8069409300309355,-0.30848353625612945,-0.444314510132079,-0.6928473719706291,-0.4913121307317911,-0.23383548201673252,-0.3382629013533251,-0.25083287941998444,-0.301979744787194,-0.209035569541462,-0.7835017613700384,-0.44899295053517346,-0.2714327235452482,-0.6386281367469927,-0.42757831882981373,1
1.1027442653930548,0.295619320038469,1.08869680708962,1.0014395204849633,0.2661387415272912,0.4654296826083754,0.35405877497080074,0.7403093242363123,1.1112791563311162,-0.287434793882935,1.2618806779141494,0.1290843504161244,1.2311118097118305,1.08694872129923,0.31868661746793,0.08505611930835577,0.18157726278989866,0.7597678374291967,1.020413453411934,0.07606488241229638,1.0894218846807768,0.0623328256212299,1.0764240806496963,0.95879525163228,-0.06437712809571355,-0.13718380936989538,-0.0853406671660695,0.5221775321758922,0.566618418742077,-0.4264700024805252,0
-1.343470006078492,0.5562508382019654,-1.327108436910651,-1.0980770289051738,-1.1863479287069345,-0.8302829647045677,-0.6459446733018321,-1.129548042703314,-1.9628151848947175,0.6297550313282934,-1.0342987368462613,-0.06323610269431829,-0.8376211122977713,-0.7378290727963489,-0.5086802608723364,0.07052483905596131,0.1809141223311084,-1.0816362861752222,-0.1249891902713908,0.2980984202226825,-1.3054875747647154,0.3766213431256575,-1.210830451750456,-1.0188565483843237,-1.0419175051381955,-0.4170852846455477,-0.4096532576113391,-1.354652861534541,-0.8489396162283066,0.4496540716323964,1
0.17969812789363182,-1.0587337475611265,0.11949139547280206,0.03927960629005229,-0.5415890246245199,-0.502990915280924,-0.5363397755815549,-0.35180788754186704,-1.0610321655564978,-0.5213394633726609,-0.22511385034943004,-1.4855002837629585,-0.16289438994814515,-0.24811501963640542,-0.7696908433624364,-0.582264981513144,-0.442437908931769,-0.1826703195600276,0.1316972372770922,-0.38275399555022244,0.20725030688243704,-1.2615871988922398,0.2066775987368893,0.00038124152645560187,-0.45451656108576227,-0.3394762392282078,-0.2738833417888371,0.15978451440606964,0.3368935719240263,-0.11503310833032798,1
1.3839183195851863,-0.08834675582739546,1.2946478082831638,1.3740169628719965,-1.0098576326667144,-0.455991246342265,0.049098526903729074,0.18960780152813747,0.49061877864894016,-1.7518197852943715,1.0265601846064178,0.22705892086861407,1.163292616049396,0.8997141722655738,-0.87102828535093,0.10238187653236464,0.2820430422966283,0.2942260972297003,-0.029337172458512827,-0.41944437573354,1.2530170833804688,0.008594374441716646,1.2193961050737188,1.1556814752783773,-1.3268507988949731,-0.17726061151163652,0.23273514269371387,0.10953674303462392,-0.09667163192975961,-1.0271774637951405,0
-0.7433480096057907,1.0798409416554173,-0.7187291793849222,-0.7149764068476671,-0.2668904186909522,-0.04246996559971104,0.28123994257932194,-0.20297660950785426,-1.546607637507847,0.41144400647121576,-0.600471692435382,3.0610640884017384,-0.46040778696364426,-0.5141156891801073,0.38635602774314115,0.24266462050740345,0.8450492918095889,0.14174901158944717,-0.6855826617569926,0.3567273782475714,-0.7846750118156958,1.8698989107503212,-0.7440863636828641,-0.714386066817323,-0.11259660857762929,-0.01631726322813643,0.43567038789837215,-0.27523937289156986,-1.2760336976365139,0.18698309685091288,1
-0.4394528197213654,-0.20702717927684494,-0.5000092161173784,-0.471805633381321,-0.8846064548317201,-1.178421641480036,-1.0915205977110694,-1.1863979797547808,-0.4184661274855406,-0.6021428946509301,-0.4810068407714878,0.2415736720467607,-0.5668393682587063,-0.3935463203546742,-0.21933519624729572,-0.976398013589628,-0.9958286217922703,-1.4391463891019436,0.6256975318043614,-0.6732510262799951,-0.5734508312160934,-0.4229416729089227,-0.6463888136597816,-0.5563497140871072,-1.252329783604739,-1.1961019815150116,-1.279065268751608,-1.6114951062295562,-0.6402459173583872,-1.0881348630060328,1
-1.2156636178093414,-0.8399894376739067,-1.1932402861348472,-1.028680925132322,-0.10249824778252145,-0.3818909618462345,-0.8223420172846381,-0.6386369710320265,-1.5502585809059781,0.8664949089330471,-0.5607703822147525,-0.0015484101871951572,-0.4406065625366559,-0.5521786468567494,0.5636965512230047,-0.2826970501560888,-0.7053731008421211,-0.8102595156686867,-0.2787588897933594,-0.11381729131992493,-1.0414573490152124,-0.4375976141396991,-0.9811816375193692,-0.8861341386943205,0.41781767672344866,-0.19061954555888352,-0.901207518218178,-0.7510705411817779,-0.6450992591925717,0.45131654615632993,1
-1.2642300453516186,-1.4310644877946923,-1.1471072618674933,-1.0875538492347003,2.0737409671005076,2.1994900486919553,0.376657722954363,0.5535608921797698,0.8958734958414194,4.671344199299258,-0.47198381572134473,0.3141474279374934,-0.5341673479541756,-0.49871449243233296,4.909872763874249,1.3079192420867827,0.6630172358716528,0.43859269959121655,0.6995554189763304,2.9068979266591963,-1.1739901682149632,-1.243674381832402,-1.1256429538644757,-0.9712171139128125,2.990984498803885,0.7126988519216314,0.09168795099118553,-0.10820359957497537,-0.08534716764999689,2.9067914180060157,1
-0.5019359428751726,-0.1744482395064078,-0.5337851803131194,-0.5352291216655259,-0.8248274835922913,-0.6858726915946565,-0.7830449577354437,-0.7663171835568727,-0.765305750307932,-0.3030284385155833,-1.029606763820187,-0.5850414075486887,-0.998803079133456,-0.6844749269201308,-1.1947080753865458,-0.8387979675073387,-0.6705582267556305,-1.0118861299780852,-0.972538715195627,-0.9225186607212974,-0.6169381625160117,0.29519944739912185,-0.6463888136597816,-0.5915079683096246,-0.6123257699356695,-0.36873866618884416,-0.37655034527299047,-0.4596334672273914,0.13305321488829108,-0.670299599324096,1
-0.7092663060673502,2.327148921437863,-0.7043126093013737,-0.6819848165294259,-0.19857159441731864,-0.35251616875957287,-0.21593691305904913,-0.7415549605217511,-0.046069900876234735,-0.16126803276423404,-0.3308637039371069,2.193807705507479,-0.35447123627925686,-0.37858515779969343,0.9400451433447453,-0.07255238189069191,0.35996204620448813,-0.4186853829712707,0.5094621683861805,-0.6305086246231404,-0.6521421926159454,2.1385911666478896,-0.6320916112173792,-0.6201619455009765,0.3608310179720934,-0.3254811654644251,0.09648547451848241,-0.704324887208948,-0.027107065639786942,-0.6509040632115392,1
1.0743428457776876,0.4026644078556194,1.3358380085218726,0.9644661865076241,1.895827362221254,2.9044850827718363,2.888907440460375,1.8282994988419718,1.100326326136724,1.18403821781607,-0.007839407141984597,-0.8022183720517071,0.1271935479072335,0.02580626537758039,0.03934195830228004,0.6540116307290313,0.9866297797613169,-0.20862386605198566,-0.5608718030895693,0.4932761127442485,0.9382516377810614,0.342424146920513,1.261096278864059,0.7443299008749238,2.4079671438861707,2.1465577729928147,3.0282521020496094,1.2454409079770081,0.5569117350737088,1.9868888480961813,0
0.44951161423961716,-1.2472261848043693,0.41317752317479556,0.3037811493587095,-0.12384788036803249,-0.1842270315921173,-0.2190756558345439,0.2685373874525879,0.01599613689198307,-0.7892666302427102,-0.33736028197321,-0.7281931410431595,-0.44258668497935477,-0.27275693443284427,-0.6080176217689516,-0.5772349229642383,-0.5011258395347101,0.14337110824519447,-0.46643057031229734,-0.5541018535197367,0.2548792887823475,-1.0466333941741857,0.20965618257905624,0.07421357539374214,-0.44136579368160295,-0.3776446222203423,-0.48593388169535956,0.34707166224509556,-0.2875697440743376,-0.7334736312335668,1
0.19105869573977882,-0.3792301466348688,0.16109349771389755,0.05662863223326503,-0.32524608109134745,-0.29262949382160425,-0.6040110698212221,-0.6788755834640994,0.2971187785480267,-0.5581971688680112,-0.666881156804435,-1.0790872507748537,-0.6851516842099613,-0.4529509363818036,-0.7483566450490694,-0.7694949386113036,-0.47460022118309836,-0.7946873877735118,0.24187867551724304,-0.6898940853322216,0.03330098168276449,-0.4783085620029669,-0.04054486016298383,-0.08979968055430144,-0.4282150262774442,-0.4209021229447613,-0.31754080588723893,-0.4800371077236754,1.1312238521188356,-0.6148837818596481,1
-0.271884443990701,0.5865027108459424,-0.2697559967829961,-0.35093127230155824,0.05548903335025568,0.006803880868237755,-0.07795778064829915,0.09288036779719328,-0.23956990097714823,-0.14567438813158579,-0.7628861433379575,-1.0968678209680833,-0.758416214589818,-0.5686799290865077,-1.2303761881917061,-0.6504502196205335,-0.5760607113780135,-0.8018246130588004,-1.1396270501092622,-0.7848351721983323,-0.008115524317157405,0.6860245468864934,-0.05245919553165258,-0.2459023293022786,0.7860391640398992,0.8660085236067047,0.4826861184658818,0.7018513813222749,1.2816774489785454,0.6779672395859216,0
0.23934110908590245,-0.5444519126135139,0.17509816579505869,0.08819817124468547,0.1558323065021543,-0.4830918618996368,-0.788192495887255,-0.28654911225138996,-0.11543782544071364,-0.8927517264411953,-0.4831723667835221,0.00026593371007337146,-0.4816941032226566,-0.3532831917140642,-0.653686140033503,-0.6582747551410536,-0.8162501855518584,-0.44171915548288343,-0.8526709966706278,-0.7901306909876771,-0.03296542791711084,-0.4359691762251681,-0.07926645011115707,-0.1527329556126075,-0.4720509176246408,-0.5761202137794411,-0.9868912884157004,-0.4530860303517182,-0.8036417591092543,-1.0897973375299663,1
0.18537841181670509,1.0821680087818775,0.22370260207673534,0.03814196524459544,1.4830677989013858,0.8255077914126162,0.4758419946599977,1.0671190803352621,0.5161753824358535,0.53052274730235,-0.1713366210505772,0.11638394313524592,-0.20596205307684456,-0.11214445406319792,-0.11266420468046046,-0.1329130844775613,-0.2899156034100011,0.007114989162414985,-0.18673922708729943,-0.21594515368586076,0.21553360808242128,1.2559778169722429,0.2185919341055576,0.07825677462933175,1.4216595885742493,0.5555723419373446,0.14494046214418094,0.7125099994919752,0.6798630615397078,0.28617741011227465,0
0.6000391382010608,-0.1209256955978326,0.6932708847980152,0.4272152027907495,0.7287141142133509,1.437640576379825,1.3308355267047722,1.0730516962707604,0.2350527407798089,0.573050869027754,-0.42542500646260634,-0.543492932301244,-0.19903162452739875,-0.26945667798689266,-0.8260264607836713,0.5215534222745127,0.2263392437582435,0.047667405556099364,-0.8066611653175979,0.10821624649046133,0.4723159452819384,-0.0956256520882491,0.584957746692117,0.2644197307375613,0.18110386344858795,1.3761925762682348,1.1054046723090176,0.8921838486383578,-0.21153405533878494,1.2387753123261347,0
1.2305506536622055,-0.17910237375932728,1.1999103477341333,1.1948384982125837,0.16935374047297727,0.01817476851468752,0.5612157981534553,1.0067611616871532,1.169694250701203,-0.36540301704617634,1.0630132058089958,0.4683666592053014,0.9484493310165728,0.8858530951925768,-0.1900006735664159,-0.5023429401249744,-0.12711462077698366,0.38992979991879534,0.3823297396475448,-0.015093691032853766,1.379337426680231,0.3261397677752056,1.3385394587604047,1.2699458015015588,0.3257623048943364,-0.2885850619053619,0.20874752505722943,0.7551444721707782,1.2849130102013344,0.10219689613030816,0
-0.8029909907980609,-0.25589558893249986,-0.74303139752576,-0.7550782537000119,-0.031332805830819974,0.533655008487074,0.8286366826256094,-0.5256593284342839,0.8849206656470283,1.9693908656785428,-0.5860348523551532,0.7713620900491115,-0.24605953254149582,-0.5268766807711203,-0.1259980786263149,1.8813459166620414,1.8868429525691426,0.2179875544095737,-0.07171464870472459,1.8459029120797528,-0.7639667588157347,0.37173602938206574,-0.5987314721851075,-0.7166713533417867,0.10219925902363315,1.4665244160162862,2.261607842387567,0.10953674303462392,0.658831913591576,2.535505440994216,1
1.1879485242391545,-0.16513997100056885,1.0969348471373612,1.0981390093487735,-0.7458338430259027,-0.3726047369349672,-0.08925725464008029,0.23784254848196817,-0.6959378257434541,-1.211712639381731,-0.5322576230563004,-1.3447071973349365,-0.5193164296339344,-0.25119525898596023,-1.3917160629365448,-0.910839583835556,-0.5893235205538193,-0.8235607082458151,-1.1929015916759285,-1.024268271745137,1.043863728080862,0.11118596305715141,0.9513235592786756,0.930668648254266,-0.3931463131996872,-0.06211932281869764,0.39153317144724087,0.6470356307352426,0.49381829122931437,-0.8071766684612823,0
0.22514039927821883,-1.0145194721583908,0.18457191184996188,0.09104227385832694,-1.0945445085892398,-0.35725403861226024,-0.41945299462212976,-0.43099541328959984,-0.45497556146684504,-0.8658172493484395,-0.57953827431905,-1.4214539441893868,-0.5148611541378619,-0.3746248500645515,-1.2567105892347687,-0.4347165974119079,-0.2915734545569769,-0.5510484700802563,-1.09724957386305,-0.5355675377570298,0.18861287918247216,-1.2143624993708493,0.14114875420921197,0.04573538947350316,-1.1339728769673085,0.157985019102611,0.20586901094085133,0.0014279015990885247,-0.34419206547315295,-0.0673755053109028,1
-0.9165966692595283,-1.4729516960709685,-0.9588680467765943,-0.8193549727683093,-1.5094390351676592,-1.2728000089455684,-1.076077983255635,-1.0918888285040667,-1.3494566940088035,-0.7609145490924406,-0.44527566157292114,-0.826349145885376,-0.5237717051300067,-0.4795730050458135,-0.29967178677106854,-1.0811350104857327,-0.9966575473657581,-1.3333856871472147,-0.5051756914516911,-0.4273876539175573,-0.8095249154156492,-1.2176193751999105,-0.8694847434381012,-0.7217693002040516,-0.6693124286870253,-1.0898666488535704,-1.216884566314313,-1.1431554238529091,-0.2633030349034167,-0.39322051200185626,1
1.4322007329313104,1.2822957816574192,1.6653596104315431,1.3313554236673744,0.07399204825769778,2.6808576257249923,1.4777286885979273,1.6219476402159576,2.1371942512057704,2.155096997212811,1.9862491289396356,4.265788436187907,4.061201810939133,1.669113958365099,-1.3007123732560884,3.2131936413334268,1.8901586548630942,4.720927870764283,2.941929304918738,3.4213197519098353,0.971384842580999,0.6941667364591471,1.323646539549569,0.7935514567864481,-1.2567133727394586,0.8653723838901689,0.4399881590729394,0.9454769394868612,0.4452848728874726,1.0171120424683429,0
0.742046236277895,0.5353072340638273,0.7468181451083366,0.6103754111092604,-0.018523026279513743,0.5545016358388982,0.5775372605860282,0.2904622724316018,0.30807160874241785,-0.8842461020961147,0.20329937903136341,-0.5391385069478001,0.07026502767964204,0.10677255685159387,-0.4216767333756364,-0.027281854950540006,0.16765131315530235,0.024958052375636215,0.8896486695664808,-0.4273876539175573,0.7746564390813695,0.5443504483223212,0.7815442802751486,0.6124864475404835,1.0490545121230785,0.82211488316575,1.2891498234044885,1.0155192874591796,3.1744807643103723,0.13212143756110997,0
0.33306579381661305,1.3916679366010287,0.4296536032702793,0.22044894277901408,0.8425788213360734,1.238650042566955,0.998128792502327,0.9954118094627226,0.41759991068633123,0.3689158847458118,0.12209215358007565,-0.37167456522993353,0.31283002691024875,0.06958966756053882,-0.60268407219061,0.2845817750816183,0.1281944558572799,-0.15671677306806986,-0.34656285178729807,-0.31315574860454765,0.8284978968812677,1.7966192045964398,1.252160527337558,0.6828029559855183,1.3909744646312114,2.2693327382841804,1.7334005020321797,1.3368004922887282,1.822016173184383,0.8209400486441972,0
-0.5132965107213191,-1.6055945222791763,-0.5403756123513132,-0.5426237884609937,0.4582854347968856,-0.6544132357728124,-0.6143061461248449,-0.30744223793727404,0.5380810428246358,-0.46038248889958083,-0.6105774804915424,-1.0001632912436815,-0.5920859294031164,-0.5039949027458556,0.3346872662029551,-0.7644648800623978,-0.4994679883877343,0.09957449854001518,-0.15768038623275413,-0.5851184635716135,-0.5734508312160934,-1.6344994813197729,-0.604390781485225,-0.5827184047539953,0.26877564614298105,-0.8121280486141391,-0.7099782304201241,-0.3151330580410211,-0.11932056048928594,-0.8997210836269098,1
-0.7660691452980842,-0.4606774960609617,-0.7541527515902117,-0.7306189712226953,0.9137442632877749,-0.17967867653353736,-0.8598813808795556,-0.7817935729538238,-0.608315184188323,0.4001031740111083,-0.43625263652277807,1.2539775667224862,-0.45991275635296947,-0.4170881496691292,-0.12566473177766851,-0.4542779362132081,-0.6735423588201869,-0.3692114349709756,0.27578065651421235,-0.1017132483728511,-0.7225502528158129,0.1763234796383803,-0.732767745082629,-0.663758180736898,0.39151614191513123,-0.4775185577164273,-0.9360375390263534,-0.7702560538872392,-0.5124412490582038,-0.16546150222297526,1
-0.6950655962596671,-0.7259631484773766,-0.6787746851533747,-0.6666266624157621,1.1699398543138995,-0.22194047561950866,-0.5776456305070661,-0.45395205756174395,0.1510810426228088,0.17186892075143614,-0.12225136477779885,-0.11403773181783144,-0.15447886956667517,-0.28089756699952495,0.6523668129629366,-0.701868595898237,-0.4437641898493496,-0.020460653985290372,0.11837860188542576,-0.22010591844891728,-0.6107256866160231,-0.6655789221739987,-0.6163051168538937,-0.5814878658562073,0.8868617141384522,-0.6779025684251331,-0.5909996469431613,-0.25057228512740554,-0.156529514551365,-0.20536089079737765,1
-0.8427529782595746,0.49342002578755123,-0.8657781942371123,-0.7809595874841493,0.3871199928451841,-0.8444965742626299,-1.0024430777425277,-0.9842763342306002,-0.7178434861322364,-0.19245532202953056,-0.4283123744786522,0.8366784703507713,-0.44456680742205357,-0.46967223570795863,-0.04432810070795651,-0.896252414043729,-0.8263299205254708,-0.9143981209676679,0.7746240911839055,-0.6562297158856724,-0.8095249154156492,0.5280660691770144,-0.8340395957163118,-0.7428642527375621,-0.1827340347331433,-0.9126381238267597,-1.133983359762623,-1.0894055350828473,0.12172875060852745,-0.7046574061520535,1
0.11437486277828796,0.01171713061037531,0.09395347132480242,0.013682682767279014,-0.8881647269293057,-0.49920061939877397,-0.007901041899255931,-0.507345600981225,-1.23627744866676,-0.7566617369199008,-0.5474163051405407,0.248831047635834,-0.4316960115445112,-0.3805653116672644,-0.9646987498205573,-0.27934367779015157,0.06287512066643586,-0.4782163302371992,-0.7993964551039616,-0.5552366075460249,0.006380252782815369,0.4417588597068864,0.024983984364693065,-0.08804176784317558,-1.0287667377340368,0.0676531793545596,0.5071534884550959,-0.28422306534888914,-0.6952504581458081,-0.5162436267729306,1
-0.16111890749077015,-1.2542073861837486,-0.1391830620262892,-0.26617701441504243,0.6219659512857986,0.28160033232410553,-0.12805211534519556,-0.11372943065210322,0.549033873019028,0.032943723115114724,-0.5351449910723461,-1.304065894036126,-0.4232804911630411,-0.4247887480430163,-0.3966757197271592,-0.13067750290026975,-0.21398602087851232,-0.5573746470376711,-0.25696475915245054,-0.3316900643672545,-0.2669686868166702,-1.391862232054697,-0.1835168845870072,-0.3410054069741882,0.2293233439305037,0.09882402546480246,-0.06950883952598993,-0.3609651161707339,0.2657112250226582,-0.12057469007677293,1
-0.7916304229519143,-0.15815876962118922,-0.7912239318050492,-0.7499588689954573,0.6077328628954579,-0.36672977831763504,-0.5747579871536108,-0.5927236824877384,0.4212508540844623,-0.09747585017612707,-0.5853130103511417,-0.37530325302447015,-0.6806964087138889,-0.4872736034197006,0.5120277896828186,-0.5068141032795573,-0.36153477295935293,-0.11778645333013277,0.4598199819263323,-0.9750955972726496,-0.7867458371156918,-0.43108386248157576,-0.8373160379426956,-0.7066512508883691,0.6983673813455059,-0.6161970159211823,-0.5267128316773831,-0.44440686984210476,0.2576223219656846,-0.8930711855311764,1
1.741776206738809,0.8704049002740369,1.6653596104315431,1.7323738921908225,-0.3971231774625657,0.5109132331941745,0.7244304224791831,0.9778719014795113,1.0346093449703762,-0.8941693304987092,1.2719864659703097,0.5300543517124241,0.8355823517827397,1.045805524273033,-0.34167348970051,0.5221123176688354,0.3457045263404968,0.14499320490094178,0.7298250448664817,0.23303918938216037,1.6464738903797278,0.9628589923567145,1.4547042286049237,1.5283589700370617,-0.5860242351273519,0.6338175270712201,0.6601944889758664,0.6500809502123001,1.2752063265329663,-0.014730478719676948,0
-0.13839777179847665,-0.6864030073275608,-0.1960255383557077,-0.23631393697180691,-1.3884577838497663,-0.8291458759399228,-0.8817270305969991,-0.8173892685668114,-1.6743906564424127,-0.4632176970146077,-0.7867069294703352,-0.5324254345279071,-0.7014876943622267,-0.567359826508127,-0.8546942897672583,-0.7661415662453664,-0.6997364069424035,-0.622907351929865,-0.8829406225607792,-0.4705083069165079,-0.33116427111654945,-0.4050288558490844,-0.33304179346379786,-0.39356699703685166,-1.0287667377340368,-0.6111078981888978,-0.8020906821442244,-0.43770716699257844,-0.8974730345701484,-0.20480673262273338,1
-0.13839777179847665,-0.858605974685585,-0.18902320431512717,-0.22635957782406177,-0.15160240272919615,-0.7209329285045432,-0.5241614536126352,-0.29944610341551586,-0.3454472595229316,-0.8785756858660609,-0.29224515672249457,-1.0081464043916621,-0.4307059503231618,-0.28925821666260243,-0.1903340204150623,-0.726459993248443,-0.4573585692545506,-0.12427483995312229,-0.18916079715851145,-0.7568445728832239,-0.29388941571661964,-1.0792021524647997,-0.3917198951544906,-0.3466307276497911,-0.20026839127202242,-0.7962245557007498,-0.5703702957757848,-0.34086600762215546,-0.5998014020735191,-1.044356367209119,1
0.1314157145475082,0.7889575508479441,0.18210049983563925,0.0062880159718111134,-0.8276741012703592,0.5431307481924488,0.17703368243289586,-0.2981564042991034,-1.305645373231238,-0.18820250985699075,-0.648835106704149,-0.1974975510921741,-0.3178389710893284,-0.45757129540613595,-0.9330307991991529,1.1687542889003895,1.123568284501513,0.691639777887807,-0.503964906416085,0.23114793267168016,-0.16342742181686506,0.2593738132794463,-0.04054486016298383,-0.25855930082238493,-1.3049328532213749,0.3997181113861289,0.45102246318572237,-0.06252380741911535,-1.0398377283728841,-0.21644405429026756,1
0.4608721820857637,-0.016207674907142363,0.6232475443922102,0.29496443125642086,1.9883424367584654,2.5027137192639466,2.54364573515595,1.9417930210862797,2.0568734964469004,1.8758289978826532,0.4158818492127342,0.1944007307177842,0.3024343840860797,0.23944286597884967,0.7627046198648818,2.2418334460002884,2.2426178087101354,1.7897992138287788,4.224150657625547,1.337154856960554,0.22588773458240194,-0.2454419402250744,0.361563958529581,0.06102923006029811,0.9920678533717232,1.59248007989033,1.9910275154480228,1.5058157232654101,2.1746923464684325,1.166734749622352,0
-1.2665021589208483,-0.27683919307063787,-1.2731492745979422,-1.048305233166448,-0.9429621172321153,-0.9487297110217521,-0.92918482136248,-1.1130141000309048,-0.48053216525375736,0.1874625653840844,-0.22944490237349863,0.17262860395056426,-0.2925924099449185,-0.4258888335250002,1.3130602669800224,-0.7214299346995372,-0.7156517779533705,-1.2753146268714588,0.7734133061482995,-0.30861673249939503,-1.0600947767151774,-0.1721622340711924,-1.0767941788529345,-0.8796298616631548,0.2819264135471398,-0.8191255854960304,-0.99835736964594,-1.3643978838611244,0.25276898013150095,-0.2879304588194053,1
-0.317326715375288,0.6819124630307937,-0.410214579596993,-0.36543619563112983,-2.408970221437165,-1.6101363424569097,-1.0948476650530938,-1.214049128810667,-1.5210510337209338,-1.4824750143668082,-0.8375967907531421,-0.13580985858505137,-0.8737583468770248,-0.5719801855324593,-1.2077086024837538,-1.2980982025618684,-1.0046152328712417,-1.613035150598062,-0.5342345323062364,-1.0691667060519392,-0.46990956621628827,0.5443504483223212,-0.5683499169950023,-0.477771015899781,-2.2408291334840205,-1.3991577790331664,-1.26756080733315,-1.6040797533029216,-0.9799798457512792,-1.4139798696969865,1
0.602879280162598,0.05127727176019208,0.734461085036724,0.45764710075671305,0.4440523464065449,1.6100990390176455,1.6924186944417694,1.1096791511768775,1.2390621752656819,0.4227848389313252,-0.32653265191303826,-0.4193918097280905,0.10095692554147383,-0.15878807849931448,0.7187028358435622,1.6331963615826894,1.6212551988236292,1.6794966412379573,0.8702761089967839,0.9683597984168977,0.23210021048239046,-0.42782698665251445,0.44198572226809363,0.1039223002117695,0.23370693306522286,1.2209744854335547,1.5232689715365761,0.9576582173950904,0.6750097197055233,0.41086299940728255,0
-0.9023959594518453,0.4794576230287928,-0.8266475040103388,-0.8071253315296508,1.874477729635744,0.3308741787920543,0.19586613908586448,0.20044127410600313,0.3044206653442878,0.8367252237252636,-0.6084119544795079,0.38309249603368983,-0.5168412765805608,-0.5141156891801073,0.3410208563272359,-0.4380699697778451,-0.1970759391793598,-0.23133321923244882,-0.8441955014213854,-0.2855434006315353,-0.7101253010158362,1.5735232103057324,-0.5969443218798071,-0.6444211409145134,2.565776352736078,0.09882402546480246,0.6242130625211397,0.4232046491715289,0.1023153832717911,0.6713173414901882,0
-1.5780657321014224,-1.4403727563005317,-1.5421212821567107,-1.2331719030531438,0.5152177883582464,-0.5310391048088331,-0.7928378351949873,-0.8723304509259875,-0.48783405205001845,1.1996318624487183,-1.0050641356837975,-0.9753067798511055,-0.8895993264186155,-0.7278843000392147,0.2853519326032936,-0.4391877605664908,-0.46034270131910693,-0.726072699235398,-0.5596610180539633,0.04920903712347597,-1.4073721795245235,-1.1769084273366428,-1.3094215769261888,-1.0635075312469207,1.3909744646312114,-0.19570866329116807,-0.46434502582252357,-0.44897484905769064,0.13305321488829108,1.1611931678759069,1
0.37850806520120006,1.084495075908337,0.48731988360447126,0.21732042990400838,1.5613497850482576,1.5665106363729218,1.4337862897410008,0.9358277102844608,-0.01686235369119136,1.138674887975638,-0.2601231875439851,1.3501377932777077,0.035117854321737745,-0.17198910428312092,0.8323741112319708,1.3369818025915716,0.9382205262696254,1.3972518231379145,0.06147170521194113,0.834080571972797,0.1741171020824994,1.7347385638442723,0.31092803321273943,0.05065754506465552,1.7898810758906998,1.5422250422840194,1.5299855044747916,1.5484501959442127,0.18158663323013283,1.2609416393119137,0
-1.207427206120885,-0.46998576456680063,-1.1965355021539439,-1.0224238993823107,0.8923946307022639,-0.6068450224518313,-0.8944075514099981,-0.7583210490351148,0.4468074578713746,0.007426850079871933,-0.6910628639388186,0.22705892086861407,-0.6678256128363467,-0.6162036219082113,0.8927098908369622,-0.7259010978541202,-0.7930734265171375,-0.6924952984614273,0.18860413395057685,-0.5003901629420965,-1.211265023614893,-0.40014354210549263,-1.1968311076922704,-0.965064419423872,0.4002833201845696,-0.824214703228315,-1.0077605157594418,-0.8942005566034725,0.14275989855665924,-0.5622387552684223,1
0.38702849108580994,0.15832235957734164,0.4296536032702793,0.25543140492680444,1.3976692685593446,0.9828050705218372,1.2592721914234914,1.0887860254909938,0.42855274088072237,0.658107112478564,0.8728078377519798,0.20710113799866228,0.8954810556743791,0.5846496902253908,0.07601011165337962,0.21248426921396885,0.5910664960929058,0.7451689675274699,-0.24485690879639008,0.1653321991469658,1.0210846497809052,0.607859526989019,1.037702490701523,0.8410150999868466,1.5663180300199977,0.8717337810555246,1.3582341621975633,1.484498486926009,0.46308045961281435,0.9949457154825638,0
1.4975239980466533,-0.25822265605896,1.4511705691902572,1.393925681167487,0.5223343325534168,0.7553873175928429,0.9265654572210461,1.1793229034631576,0.2971187785480267,-0.5496915445229306,0.23722595321990125,-0.40233697709376826,0.01828681355879779,0.28212618267982414,-0.4623450489104922,-0.19495047324739923,-0.0432273527400114,0.5180754357228378,-0.5221266819501755,-0.6921635933847979,1.5574284024798957,0.4840982454846846,1.3444966264447396,1.3138936192797057,0.851793001060694,0.7674068675436907,0.7647805018709385,1.6839669126732641,1.1150460460048883,-0.3366963781881198,0
-1.4908733738822462,-0.8842037130766426,-1.4510909396291642,-1.1771430815644068,-0.9557718967834216,-0.5185311283977383,-0.5221526582363185,-0.6476648648469147,0.4322036842788534,0.4837418134044053,0.47976486656774736,-0.030577912543488392,0.6984588726258457,-0.22347310483996652,1.2963929245477046,0.19627630277860567,0.008166032816236556,0.5294301123130695,0.947766351275571,0.1433936213053945,-1.3021742542847217,-1.2990412709264463,-1.250743475235496,-1.0170986356731977,-1.3531523337032907,-0.8235785635117795,-0.8528964562982984,-1.0199722510059404,-0.7551083407674125,-0.533976688361554,1
-0.37696969656755813,-0.4257714891640644,-0.36737677134873614,-0.41691445293804047,-1.1329738472431585,-0.2916819198510669,-0.1870604795244973,-0.20865128562006977,-0.8675321654555843,-0.750991320689846,-0.14895951892622242,0.08735444077895267,-0.09804537994975837,-0.21489243808049224,-0.5400148646450943,0.5193178406972214,0.4494860081411778,0.33153432031188973,-0.22427356319108718,0.10292072770111647,-0.5237510240161869,-0.7518861316441267,-0.4926938874039569,-0.5090618621578213,-1.6231814244020217,-0.4647957633857158,-0.39382142997125935,-0.48186429940990977,-1.4766384934494596,-0.7434484783771673,1
1.5117247078543368,0.00939006348391516,1.422337429023161,1.4621841438948824,0.508101244163076,0.27401974055980577,0.6164576710021631,0.9541414377375196,-0.1300415990332348,-0.8970045386137361,0.6883772057270552,-1.0571336896179069,0.4608441795019862,0.6746366826516722,-0.7973586318000841,-0.41794973558222204,-0.1460141238525071,0.14174901158944717,-0.8345092211365369,-0.47088655825860387,1.952956034779151,-0.1803044236438461,1.663205097556624,1.918615591907005,0.7597376292315816,0.3933567142207732,0.7652602542236682,1.2987339988255115,0.7736943370006013,0.3077895789234094,0
-0.5416979303366859,0.17461182946256024,-0.5148376882033135,-0.5739089172110499,0.9422104400684553,0.20579441468110743,-0.0885039563739615,-0.703121926852656,1.1404867035161597,0.870747721105588,-0.8087231105926843,-0.7637542814296187,-0.9308353762878185,-0.6107031944982919,-0.2563366964470417,-0.19550936864172205,0.25750684532138746,-0.3085450200460239,-0.8889945477388094,0.006844886808717569,-0.6438588914159609,-0.2454419402250744,-0.6591967241811005,-0.6421358543900498,0.34329666143321425,-0.14481748596832214,0.3900939143890517,-0.5135356219713062,-0.31021867263386393,0.24627802153787223,1
1.7502966326234184,-1.1518164326195182,1.7765731510760563,1.826229278440991,0.2803718299176319,0.5393404523102987,1.3710114342311053,1.4284927727540695,-0.009560466894930265,-0.562449981040552,1.2705427819622865,-0.7902437023297363,1.2731894116191806,1.1903567566057145,1.483067159789666,-0.04851987993480875,0.8284707803398315,1.1442047448413237,-0.3610922722145709,0.49932813421778527,1.2985752399803827,-1.4667703761231092,1.3385394587604047,1.2207242455900345,0.22055616566106412,-0.31339451085024933,0.6131787584083571,0.7292592566157908,-0.8683529835650433,-0.39709961922436765,0
1.5401261274697042,2.2061414308619542,1.714787850717993,1.5702600432132583,-0.26760207311046896,1.9322741890003872,1.1249340006323156,1.6890119942694124,0.2971187785480267,-0.06770616496834349,1.5787693176751743,-0.032392256440756516,2.1246420619796775,1.4534972038962584,-0.2283355611607475,1.2391751085850702,0.22335511169368716,0.5505173688377853,-0.14315096580548167,0.5511485680849452,1.8183523902794048,1.7249679363570887,2.1248855930925314,1.837751607195215,-0.1871176238678637,1.7725076196698974,0.7335965989435087,1.210419733990849,-0.13388058599183866,0.9173635710323369,0
-0.8995558174903081,-0.38853841514070775,-0.8723686262753055,-0.8227678959046789,0.03627436402329585,-0.12926774130094376,-0.454104714863592,-0.54268335677093,-0.7032397125397152,0.18179214915403066,-0.9184430952024242,0.6643158001102804,-0.8420763877938435,-0.665487451501089,0.8200402778320558,0.4639871966592576,0.4017398951082766,0.2698946473934895,-0.8865729776675971,-0.09868723763608273,-0.9627659876153607,0.13561253177511245,-0.918333518449642,-0.8316388446494185,0.4572699789359261,-0.020770241243885306,-0.2873164076652685,-0.24356805033017365,-0.9896865294196477,-0.06460471443767996,1
0.21946011535514556,0.7540515439510476,0.4172965431986662,0.0856384788924082,0.2213045130977199,2.239288155454529,2.316400758210129,1.2430340398139395,0.8374584014713327,0.8764181373356417,-0.5492209101505694,-0.620421113545421,0.2969890473686581,-0.35526334558163514,-0.025327330335114053,2.0484556395645774,1.5705249537261716,1.7103164776971573,-0.6722640263653261,0.7523782820800483,0.016734379282796027,0.3082269507153678,0.5402789890596098,-0.08417435987869858,0.41781767672344866,2.8927496604890424,3.021055816758664,2.0235200343651565,-0.05622711664489147,1.7486008329990554,0
-0.14691819768308703,1.3241829899336952,-0.1614257701551922,-0.2053132184831146,-0.1053448654605894,-0.3644556007883449,-0.032006586415055806,-0.1039277173673676,-0.7397491465210196,-0.5794612297307141,0.18525332893107724,0.13271303821066105,-0.0025044720895398267,0.061669052090254896,-0.3896754359055859,-0.5923250986109555,-0.17983428725081216,-0.3041653590755061,-0.7134307175759319,-0.5446455699673353,0.14926719848254594,1.5621241449040175,0.039876903575528796,0.045559598202390535,-0.25725505002337773,-0.38146146051955565,0.21450455328998586,0.05776631192464928,-0.40404994809475747,-0.5528180662994666,0
-1.047243199490216,-0.8911849144560218,-1.0441317612707213,-0.9251555899957721,0.6361990396761393,-0.5139827733391586,-1.0314701709303036,-0.9481647589710476,-0.08623027825567027,0.2413315195695978,-0.7719091683881005,-0.5699823532013616,-0.8207900715348312,-0.6265444254388597,-0.17600010592326892,-0.9734358679997166,-0.9640973508391546,-1.1069409940048813,-0.6686316712585079,-0.3683804445505721,-0.9834742406153217,-0.9570693088749962,-1.0064996001777897,-0.8529095884540415,0.0758977242153157,-0.8840118365826588,-1.1792240066250326,-1.0653475112140944,-0.46229005010496743,-0.06959213800948064,1
-0.35424856087526463,-0.24891438755312104,-0.3097104910145436,-0.46014481266539087,1.8104288318792128,1.170424716688257,-0.5090954882902603,0.10603529878460176,-0.37465480670797496,1.3796675777529308,0.13508530965228166,-0.08682257335880633,0.15343017027299297,-0.13128594144971753,-0.5893501982447555,-0.12229407198542673,-0.5916445121595854,0.10444078850725738,-0.28844517007820786,-0.18757630302865638,-0.2524729097166974,-0.21287318193446025,-0.2368335353617989,-0.36192456823658603,0.5800104747080762,0.26612877091365833,-0.7080592210092054,-0.07622774506587332,-0.5156768102809937,0.276202562968674,1
0.9351758896623905,1.4591528832683625,0.9280550261586554,0.8336374662801163,0.30172146250314197,0.19442352703465768,0.9968732953921289,0.43980943011217954,-1.838683109358283,-0.5865492500182818,0.44908658139726065,0.8167206874808198,0.44599326118174487,0.4002753634448928,8.02999926720418,3.357388653068726,3.7104792142424543,4.456526115877462,0.14622665770436466,3.315409376122939,0.37291633088212534,0.3896488464419035,0.3913497969512525,0.24684060362630264,-0.3536940109872104,-0.4768824179998918,0.03891519219091973,-0.0716597658502874,-2.0994840288364283,-0.8736756494186194,0
-1.332393452428499,-0.22564371628852284,-1.3242251228939412,-1.0702048232914874,0.323071095088653,-0.8486658997329947,-0.7746331270971176,-0.8991561925473692,-1.1157963165284546,0.9628919848439645,0.37076672396201893,0.05469625062812319,0.1984779558443912,-0.21687259194806321,-0.06832907381049445,-0.9219616021825808,-0.27897378583996124,-0.8485409967443247,-0.13588625559184525,-0.4092315894969464,-0.8799329756155165,-0.10702471748996413,-0.9373964550395117,-0.7752098466222781,0.04082901113755869,-0.9501703671023587,-0.7569939609876336,-0.9758151185886088,-0.722752728539518,-0.14329517523719623,1
-0.19804075299074728,0.07920207727770893,-0.2524561126827384,-0.2545161936991123,-0.41847281004807574,-0.7857469880893063,-0.3794026368068166,-0.3750224716372936,-0.7799095239004542,-0.8629820412334117,0.23289490119583267,-0.12673813909870954,0.1365991295100528,0.06738949659657102,-0.3460069987329127,-0.8298556411981728,-0.3442931210308053,-0.3817015792202305,-0.646837540617599,-0.7288539735681155,0.3542789031821605,0.682767671057432,0.2781636109489006,0.19867379534145385,0.3389130722984951,-0.6340089279841785,-0.037365431893100605,0.02122247819996132,-0.027107065639786942,-0.5672261788402229,0
-0.7177867319519606,-1.5008765015884862,-0.7261434154278895,-0.6890950730635296,-0.4647303473166825,-0.5513171877783352,-0.5880662565217087,-0.3977211760861551,-0.6995887691415842,0.42845525516137895,-0.6268189255817999,-1.2296777942481247,-0.6886168984846842,-0.5409577749405139,-0.29600497143595866,-0.6806305709139682,-0.49615228609378287,-0.7967961134259833,-0.4882247009532062,-0.4705083069165079,-0.6645671444159218,-1.3869769183111045,-0.7238319935561277,-0.6470580099812022,0.4704207463400848,-0.43998631444082853,-0.3837466305639358,-0.45856760541042135,-0.20829849411599585,0.20028289304238062,1
-0.33436756714450827,-0.760869155374274,-0.3636696533272522,-0.4015562988243764,0.2946049183079726,-0.47210000384140216,-0.34211437263393873,-0.3925623796205048,-0.297984995347236,0.26968360071986647,-0.7065824670250647,-0.8223575893113857,-0.8094043674893128,-0.49871449243233296,0.5613631232824801,-0.3044939705346806,-0.2832841988220982,-0.0772340369364484,0.691079923727088,0.3521883621424188,-0.5237510240161869,-0.935899615986097,-0.5495848387893494,-0.5189061733401263,0.6983673813455059,-0.30194399595260885,-0.23070563004316524,-0.13713413460701998,0.7753121176119968,0.659125861648009,1
-0.07591464864466992,-0.5491060468664334,-0.04156228746054976,-0.21612080841495238,0.4440523464065449,0.8975234131734643,0.1281948448461972,0.18315930594607452,1.0747697223498118,0.9019350103708844,-0.5373105170843806,-0.04146397592709836,-0.4618928787956683,-0.3882659100411515,-0.360340913224706,0.4975209203186296,0.23860734224586402,0.41426124975500583,-0.13951861069866325,0.28939863935447296,-0.1075151387169704,0.20400692418540212,-0.08522361779549104,-0.22937794981769546,0.5975448312469541,1.1624496315122819,0.918301254744439,0.7734163890331218,1.1797572704606774,1.2166089853403548,0
-1.5703973488052732,0.3933561393497805,-1.5367665561256787,-1.2317498517463232,1.9883424367584654,-0.27879491385175725,-0.7382237109013784,-1.022993101705306,0.05980745766954762,0.6765359652262402,-0.16953201604054857,1.5424582463881502,-0.18467573681783228,-0.4828732614917651,1.6297397731940646,0.34326579148551917,-0.06278999627432512,-0.4115481576859822,1.5773745697907182,-0.282517389894767,-1.3883205867645596,0.22191974124523986,-1.3463560165690611,-1.0664959828558347,1.3822072863617718,-0.5373156910707712,-0.8740055598184046,-1.3220679431300275,0.11525762816294927,-0.37825824128645574,1
0.5716377185856946,-1.0308089420436093,0.5079149837238256,0.4127102794611779,-0.10036328452397025,-0.3663507487294199,-0.4243494333519016,-0.09386806425934938,-0.27973027835658376,-0.5737908135006604,-0.6008326134373878,-1.051690657926102,-0.5628791233733086,-0.40718738033127433,-1.0277013042147194,-0.7275777840370887,-0.4503955944372526,-0.49459950646024775,-0.6710532413297201,-0.822282055065842,0.2983666200822658,-0.9928949429946723,0.25731352405373087,0.11833718444300151,-0.5158868089718374,-0.5220483378739175,-0.19760271770481666,-0.025979973694427394,-0.19859181044762766,-0.7661689635375907,1
-0.271884443990701,-0.14652343398889012,-0.2466894846493191,-0.3421145541992696,1.3834361801690038,0.3555111020260286,0.42436661314188345,0.6314587188110903,1.1550904771086807,0.7048880463765088,-0.4261468484666177,-0.5863114482767764,-0.4797139807799578,-0.3539432430032545,-0.16966651579898812,-0.11838180422516684,-0.09428916806686412,0.05739998549058349,-0.3768324776774494,-0.05745784134761233,-0.12408174111693923,0.3701075914675348,-0.13288095927016563,-0.21302936160422495,2.026594889165562,1.0326771293390251,1.0958096252544238,1.434250715554563,1.616558035537253,1.8815987949137303,0
0.8215702112009226,1.0914762772877165,0.8580316857528504,0.6951296689957762,1.6609814037806394,0.8577253064108905,1.9196636713875905,1.8411964900060978,1.5932036848843345,0.1449344436586804,0.7064232558273413,0.32866217911564,0.5608403628582771,0.6037911776119104,0.40902361345109317,0.2985541599396899,0.6142764121505662,-0.10967597005139595,0.05783935010512312,0.02235319183465588,0.9548182401810298,1.0442808880832506,0.8589874601714942,0.8146464093199586,1.3602893406881735,0.6465403214019315,1.3750254945431022,1.0672897185691546,1.0179792093212048,0.04844355318979378,0
0.38986863304734654,0.41662681061437784,0.4502487033896337,0.4215269975634665,1.1130075007525386,0.9998614019915114,0.7959937577604639,0.9257680571764426,0.9980999109890717,0.828219599380184,3.4822666822533583,-0.006991441878999937,3.246381425768564,2.9958170496376564,0.3856893340458483,0.7495827431582414,0.43224435621263013,1.5562172954011568,-0.043866592885785274,0.764104073685026,1.4290372338801378,0.3212544540316133,1.484490067026595,1.52484314461481,0.8474094119259747,0.9283502158271908,0.7144065048343211,1.5042930635268816,0.16540882711618557,1.1556515861294627,0
-0.15259848160616027,0.593483912225322,-0.19808504836764304,-0.2670302451991347,-1.1955994361606552,-0.4122133289034338,-0.6036344206881628,-0.7093124826114363,-0.6448246181696274,-0.5964724784208754,-0.24243805844570462,1.2684923179006327,-0.1361627369717108,-0.2987189518076638,-0.5350146619153988,-0.07925912662256619,-0.029964543564205467,-0.30448977840665536,-0.029337172458512827,-0.2972691922365132,-0.30424354221659994,0.7104511156044538,-0.285980168757557,-0.38512901602344757,-1.3969882250504873,-0.516959220141633,-0.6087504839941598,-0.8026887063178997,-0.7356949734306758,-0.7595190654418572,1
-0.5956606276058832,-0.3163993342204547,-0.6540605650101491,-0.5941020457679044,-1.3898810926888008,-1.2398244347708645,-1.0954628586370907,-1.1175796349030052,-1.5685132978966303,-0.29735802228552954,-0.6196005055416853,-0.5572819459204833,-0.6930721739807567,-0.5141156891801073,-0.7706908839083756,-1.039050187293221,-1.0182427692993823,-1.2725570625566882,-0.7122199325403259,-0.7715963752249702,-0.6624963191159258,-0.5581020198149717,-0.7303848780088954,-0.6278967614299302,-1.3619195119727303,-1.1473736792283866,-1.2687362005973377,-1.3193271556006758,-1.1805846415642254,-0.7523150091714786,1
-0.5388577883751493,0.06291260739249036,-0.5531445744253124,-0.5514405065632823,-0.035602732347922376,-0.44480987348992296,-0.5891962039208869,-0.20246072986128924,0.6110999107872447,-0.37816145356379777,-0.18685622413682337,0.19802941851232084,-0.27625639979265315,-0.2881581311806186,0.15768008957173774,-0.4296865388630021,-0.5929707930771659,-0.06425726369046937,-0.667420886222902,-0.17282450068691013,-0.3787932530164599,0.43687354596329403,-0.4501001384609665,-0.4257367996504552,0.4616535680706452,-0.3184836285825339,-0.6452116628016162,-0.10059030088233203,-0.37654767770104747,-0.1222371646007065,1
1.2277105117006684,0.6097733821105406,1.1628391675192957,1.1948384982125837,-0.14662082179257702,-0.13741687744756606,0.33271532409743626,0.504294385932809,-0.4367208444761928,-0.7835962140126564,0.6883772057270552,-0.026949224748951738,0.4454982305710702,0.6163321521065265,-0.3466736924302052,-0.6292121946362647,-0.11086767953662151,-0.429553430564778,-0.6807395216145685,-0.6013832712817441,1.2944335893803907,0.9302902340661003,1.1419529251773732,1.2470929362569225,0.6194627769205524,-0.1702630746297451,0.596387426062818,0.3546849609377389,0.3368935719240263,-0.43478237510019224,0
1.2731527830852554,0.22348023911821593,1.241100547972842,1.2488764478717715,-0.13950427759740666,0.042811691748661784,0.7558178502341308,0.7323131897145546,-0.4184661274855406,-0.8232891276230346,1.6159441808817636,1.146931276783655,1.369225350090074,1.170555217930005,1.2363904917913593,0.09735181798345886,0.627207651096977,1.1863792578907555,0.2890992919058788,0.15965842901552518,1.043863728080862,0.25774537536491593,0.9721736461738462,0.918363259276385,0.06274695681115697,-0.27077314984236583,0.3473959549961096,0.5237001919144207,-0.905561937627122,-0.5395182701079989,0
-0.749028293528864,-1.0936397544580234,-0.7405599855114379,-0.7109946631885691,0.5863832303099479,-0.418088287520766,-0.44845497786770144,-0.753936072039312,-0.11908876883884369,0.41711442270127147,-0.728237727145408,-0.09226560505061152,-0.6430740823026112,-0.5719801855324593,-0.6946878024170055,-0.24245658176484267,0.32050518890646545,-0.6096061593527365,-0.25575397411684453,-0.068427130268398,-0.8012416142156645,-0.6150973468235468,-0.751234964904065,-0.7259882907107537,0.12411720469723143,-0.33884009951167215,-0.06039354482412578,-0.6135743667926394,0.06510642920971206,0.43524595909164016,1
0.8300906370855329,-0.04878661467757951,0.882745805896076,0.682900027757118,1.2624549288511109,1.0017565499325867,1.2831266365172518,1.5497244896968527,1.166043307303073,0.06413101238041125,-0.39438580029011416,-0.9758510830202859,-0.3529861444472327,-0.18387002748854686,-0.5030133644453484,-0.3016994935630662,-0.04455363365759194,0.33153432031188973,-1.062136807830475,-0.5518323454671604,0.6876817764815328,-0.12819441037886323,0.7815442802751486,0.5421699390954487,1.6627569909838305,0.885092715102772,1.10156665348718,2.127060896585106,0.3368935719240263,0.36930113630894656,0
1.7559769165464916,1.8082129522373305,1.6859547105508974,1.800632354918218,0.25902219733212184,0.08450494645231056,0.7922272664298703,1.1455327866131475,0.008694250095721971,-1.003324842927248,-0.02696822024828802,-0.3335733433872988,-0.13814285941440965,0.2640847807752887,-0.6660199734334185,-0.5420245131218979,-0.3555665088302403,-0.5857613385132502,-0.9350043790918393,-0.7197759413578102,1.6692529686796849,2.1955864936564637,1.6393764268192872,1.6936027648828935,0.869327357599573,0.2559505354490892,0.5114712596296631,0.8388907577898544,0.40484035760260445,-0.21921484516348966,0
-0.1327174878754034,-0.9633239953762752,-0.15236392610267632,-0.21128583397176176,-0.9735632572713468,-0.5469583475138626,-0.5814121218376598,-0.6244502807514881,-0.07162650466314807,-0.542603524235363,-0.9563398004130251,-1.224960500115227,-0.8737583468770248,-0.6377652973550952,-0.6096843560121836,0.24378241129604913,-0.24747461404742224,-0.55802348569997,-0.2860236000069954,0.40590005272005897,-0.35808500001649896,-0.9831243155074877,-0.27704441723105566,-0.393039623223514,-0.21341915867618116,0.35709675037824556,-0.07334685834782728,-0.14017945408407742,0.7866365818917594,0.6890504030788108,1
-0.8143515586442078,0.1559952924508823,-0.7516813395758891,-0.7417109714158969,-1.1500535533115672,0.26075370497228095,0.04947517603678847,0.17954814842011924,2.860081044035599,-0.06628856091082956,0.2938905505347998,1.2485345350306813,0.005416017681255277,-0.12446541146141742,2.899791266536697,3.1936323025321265,1.6278866034115325,3.7428035873486167,1.6512324569626873,1.029636515836459,-0.9130661804154543,-0.5450745164987262,-0.8635275757537668,-0.7787256720445298,-1.2961656749519355,-0.4450754321731131,-0.5641335151902989,-0.3268575380276917,0.0877553577692384,-0.7678314380615242,1
-0.4053711161829254,-1.6567899990612918,-0.4567595058667343,-0.4547410176994721,-0.605637922381051,-0.8793672963784089,-0.8185755259540445,-0.6422481285579819,-0.834673674872411,-0.006749190495263386,-0.6491960277061547,-1.0362687347993211,-0.6628753067295996,-0.5053150053242362,-0.3033386021061784,-0.7180765623336,-0.7566007012836713,-0.5782996938968121,-0.4131560287456311,0.2341739434084487,-0.5423884517161518,-1.4260594282598413,-0.5701370673003026,-0.5514275584959549,-0.04245918242211527,-0.5952044052755083,-0.8555830694735846,-0.49282744952731633,-0.20344515228181131,0.5926268806906719,1
1.5514866953158506,-0.26520385743833963,1.5953362700257374,1.5901687615087488,1.1130075007525386,1.1799004563936317,2.0339139084156006,2.055286543330587,0.786345193897506,-0.28034677359536736,1.1954712135450964,-0.3063581849282737,0.9533996371233199,1.2482212529580665,-0.9946999661987297,-0.15135663249021583,0.27839576977328173,0.20014449119635247,-0.44584722470699445,-0.18038952752883117,2.16625104067875,0.11607127680074374,2.0146779909323476,2.375672896799731,0.5011058702831226,0.8291124200476413,1.961282869578782,1.6763536139806208,1.2007884184088091,0.4590747606013527,0
-1.5317714181283744,-0.5700496510045714,-1.511640533980066,-1.1961985690758048,0.5365674209437574,-0.5697001228067621,-1.1148728439607505,-1.261819584082589,0.6330055711760281,1.1599389488383403,0.4032496141425341,1.5642303731553702,0.1489748947769204,-0.25273537866073764,2.926459014428406,-0.3251731001246265,-1.0575006844597676,-1.9134474512424755,-0.2291167033335112,1.1124735597554956,-1.2630356561147955,-0.46853793451578224,-1.2882736316468018,-0.9907299450063097,0.5975448312469541,-0.7841379010865738,-1.3058306525103973,-1.7450628184932908,-0.7373127540420708,0.26068613407862923,1
1.1879485242391545,0.3002734542913885,1.1875532876625208,1.1294241380988297,0.7429472026036915,0.3877286170243026,0.8550021219397657,1.1759696857604847,0.17663764640972213,-0.48022894570476987,0.5043074947041366,-0.5340583440354487,0.17422145592133056,0.5945504595632458,-0.2883379939170922,-0.3749147902193615,-0.09163660623170293,-0.21673434933072247,-0.5996169242289631,-0.40469257339179376,1.1577591195806478,0.08513095642465998,1.04068107454369,1.0765754032777133,0.7378196835579833,-0.004230608613960444,0.4975584414005021,0.5541533866849941,0.2802712505252109,-0.2945803569151388,0
0.23366082516282868,-0.4001737507730069,0.20104799194544504,0.0660141708582821,1.447485077925535,0.49575204966557496,0.8173372086338284,0.9626534519058426,0.5307791560283757,-0.09038782988855941,3.215185140769123,0.4266367495681297,2.7488756620404837,1.3544895105177095,0.9863803553065894,0.5209945268801898,1.1232367142721176,2.6300452815059185,3.770106269273277,-0.3434158559722324,0.4723159452819384,-0.6916339288064901,0.4211356353729239,0.15964813315445944,0.38274896364569166,-0.24087458316519378,0.30373849089770794,0.7932109656339944,0.8303166583994167,-0.6913576099605858,0
0.034850887855260956,0.6656229931455752,0.18333620584280055,-0.026134753823701642,0.6077328628954579,1.828041052241265,1.5656134863117808,0.9701337067810356,0.5015716088433313,1.434954135995957,1.077089124887219,0.09279747247075786,1.241012421925325,0.4497792101341674,0.7887056740592978,2.5196044569787523,1.230002328137355,1.0841871685786713,-0.4288962342085096,0.8768229736296516,0.29008331888228156,0.6241439061343264,0.35262820700307923,0.13872897189206163,1.3865908754964924,2.356483879449554,2.015015133084507,0.972884814780377,-0.09181829009557596,1.6211444528308245,0
-0.3854901224521685,0.7400891411922883,-0.4221597376662188,-0.4226026581653234,-0.4134912291114566,-0.8856212845839563,-0.5234081553465165,-0.5643503019266615,-0.8273717880761499,-0.30444604257309626,-0.6080510334775022,0.2960039889648101,-0.697527449476829,-0.4503107312250423,0.15267988684204223,-0.7521691813872948,-0.2842789095102836,-0.466537234315818,-0.4930678410956306,-0.4410047022330154,-0.3684391265164792,1.252720941143181,-0.4533765806873504,-0.3990165264413419,0.41781767672344866,-0.6486401414644967,-0.26140978061786524,-0.3242690164721929,-0.11608499926649685,-0.18153208928766507,0
0.2762629545858791,-0.6747676716952616,0.3134972385971202,0.05577540144917272,1.3265038266076432,1.4471163160851999,0.31388286744446764,0.9394388678104161,0.6914206655461148,0.26543078854732766,0.09285755241761208,-0.2700713069829072,-0.034681461783396,-0.010936589720681044,0.6550335877521073,0.915015779877809,0.004850330522284985,1.7492467974350945,0.3617463940422419,0.4497772084032016,-0.03296542791711084,-1.1964496823110113,-0.04054486016298383,-0.20740404092862208,0.27315923527770025,0.21650987302388372,-0.3655160411602077,0.4216819894330004,-0.5027345653898355,-0.3411296435852754,1
-0.3854901224521685,2.3597278612083,-0.43740011175454124,-0.41805209398349713,-0.967870021915211,-1.1750103751861012,-0.8641500710542284,-0.8751677889820951,-0.99531518439015,-0.9111805791888704,-0.5928923513932619,0.27241751830032207,-0.6876268372633348,-0.4747326289250844,0.5980312766335799,-0.734843424163286,-0.6171754198230117,-0.40408651306954413,-0.19037158219411746,-0.7825656641457558,-0.4968302951162378,1.681000112664759,-0.5707327840687363,-0.5025575851266556,-0.3931463131996872,-0.940628271354325,-0.8907009416933979,-0.755638520397364,-0.7987884172750702,-1.0587644797498759,1
-0.32016685733682465,0.5888297779724025,-0.1840803802864819,-0.38420727288116363,2.20183876261357,1.6840098087195687,1.2190962838971586,1.150691583078798,1.965599911493639,1.5724617295747656,-0.3568500160815189,-0.3898180042026168,-0.2277433999465317,-0.3524031233284771,-0.43667734156472254,0.533290225555293,0.12056834058119148,0.07524304870380472,0.10748153656497132,-0.01736319908543009,-0.161356596516869,0.8228133317070733,-0.031609108636482475,-0.24836340709785498,1.6627569909838305,1.8183096792604587,1.2800345287026242,1.3916162428757601,2.3898571677839313,1.2886495480441378,0
-0.0049110996062527905,-1.4915682330826467,-0.07986917368254863,-0.10918255014203285,-0.23273100655413492,-0.9718505159028664,-0.8932776040108199,-0.5568700470514685,-1.6013717884798038,-0.8218715235655206,-0.5344231490683348,-0.24648483631841914,-0.6475293577986836,-0.3612038071843481,-0.11633102001557033,-0.7912918589898952,-0.8679419843145618,-0.838483997478691,-0.7727591843206283,-0.49887715757371226,-0.15307329531688477,-1.2501881334905247,-0.26393864832551983,-0.22972953235992072,-0.1871176238678637,-0.9120019841102242,-1.0512260789167516,-0.8482162324999067,-1.2954470649732506,-0.7268237331378326,1
-0.6865451703750568,-0.8935119815824819,-0.6977221772631805,-0.6671954829384903,1.3265038266076432,-0.5975587975405638,-0.611920701615469,-0.42351515841440684,0.7206282127311582,0.320717346790354,-0.21861727231332692,-0.8660832772355522,-0.25298996109094185,-0.3477827643041448,0.8317074175346779,-0.8108531977911955,-0.5100782357283791,-0.09507710014966962,-0.12256762020017879,-0.26284832010577197,-0.6645671444159218,-1.2241331268580333,-0.6880889874501218,-0.6402021504078114,0.5975448312469541,-0.9081851458110108,-0.7843398450932257,-0.5476432001143482,-0.21962295839575857,-0.3261673728698742,1
-0.41105140010599867,1.0588973375172794,-0.38220524343467127,-0.44336460724490623,1.1272405891428783,0.41426068819935213,0.3013278963424885,0.5110008213381544,0.34093009932559226,0.4397960876214864,0.07336781830930297,-0.07049347828339159,0.030167548214990778,-0.08530236830279131,0.24668369816031588,0.05599355880356685,-0.07174239246799408,0.17905723467163664,-0.5075972615229031,-0.07334439771564676,0.16997545148250726,1.2690053202884883,0.1351915865248776,0.013565586859899626,2.311528182922338,0.9658824591027897,0.6246928148738694,0.8678212928218993,0.7801654594461804,1.061444696439901,0
1.5344458435466308,-0.0906738229538556,1.5459080297392873,1.598701069349673,1.3265038266076432,1.1344169058078333,1.643454307144051,1.4775013391777478,-0.07162650466314807,0.38592713343597296,2.547481287058535,-0.10133732453695295,2.1637494802229793,2.0387426803116817,-0.32833961575465553,0.36618050265275665,0.8118922688700742,0.8976460531677235,-0.2061117876569963,0.3752616940102781,2.0005850166790617,0.09164470808278269,1.9014918049299956,2.0610065215082005,0.7509704509621421,1.0008701435122462,1.6307334985480264,1.2698034637934672,0.10878650571737018,0.8503104319003547,0
-0.11283649414464653,0.7726680809627255,0.06717984116964147,-0.21782726998313734,1.1912894868994104,2.3681582154476257,1.5568250065403952,0.8081474977596147,0.939684816618985,1.9878197184262187,-0.6968375999709101,-0.08682257335880633,-0.3985289606293058,-0.4648318595872295,-0.20400124120956314,1.8936416153371443,0.766467147442939,0.7273259043142488,-0.11288133991533035,1.6257606309798467,-0.2566145603166899,1.031253384767004,0.04583407125986318,-0.321492575880691,1.434810355978408,3.296698380489132,2.025089932491831,1.6169698841780027,1.1247527296732565,3.2780773950178173,0
1.0090195806623439,0.33750652831474515,1.0475066068509111,0.8782898773142875,1.0774247797766878,1.178005308452557,1.2140742954563668,1.4568661533151464,0.5818923636022013,-0.16126803276423404,1.465801044047383,0.3322908669101767,1.323682533908001,1.1786958504966853,0.6653673400601444,1.3448063381120916,0.6686539297713705,1.0728324919884396,-0.33445500143123763,0.44372518692966484,0.8699144028811896,-0.09236877625918773,0.7636727772221459,0.7408140754526721,0.4134340875887295,0.6077357986932616,0.4131220273200769,0.5617666853776374,-0.7081927030369658,-0.3638501287456987,0
-0.19520061102921066,0.5329801669373672,-0.23845144460157724,-0.2613420399718518,-1.048998625740151,-0.8344522901749326,-0.7244132426892014,-0.7379438029957958,-0.10083405184819144,-0.9820607820645451,-0.6015544554413993,-0.7082353581732079,-0.6405989292492377,-0.4357896028628551,-1.2537104675969515,-0.8080587208195812,-0.5966180656005127,-0.7972827424227077,-0.8163474456024463,-0.9489962546680214,-0.07024028331704062,0.7446483118095989,-0.141816710796667,-0.16292884933713767,-1.0068487920604385,-0.31784748886599823,-0.3055469970689967,-0.051865189249414814,0.15084880161363287,-0.6919117681352308,0
-0.8654741139518681,-0.10696329283907419,-0.7689812236761469,-0.8341443063592449,1.796195743488872,2.1047326516382077,1.0056617751635142,0.38048327075720056,1.403354628181551,2.3677376058398347,-0.6993640469849501,-0.3444594067709088,-0.5678294294800557,-0.5796807839063465,0.12134528306928455,1.1184537034113318,0.4637435280051691,0.2585399708032581,-0.3828864028554798,0.24211722159246565,-0.627292289015992,1.1631568558439922,-0.4617166154454184,-0.654792825910156,3.7712633647839837,4.348873471638971,2.7250486151244457,2.098130361553061,2.0274743108315127,3.1229131061173634,0
-0.6865451703750568,-0.4886023015784785,-0.7121387473467283,-0.6671954829384903,0.09818829852127578,-0.8136056628231082,-0.6366539946863677,-0.42635249647051454,-1.07928688254715,-0.2619179208476923,-0.5777336693090215,-0.8189103359065759,-0.5564437254345375,-0.49453416760079427,-0.04532814125389572,-0.9374988941447565,-0.4016547707161659,0.008737085818162292,-0.19037158219411746,-0.803369487961039,-0.6749212709159025,-0.6981476804646128,-0.6803446694604871,-0.6312367955810694,-0.0030068802096378773,-0.9558956245511789,-0.5761273240085409,-0.0716597658502874,-0.5318546163949409,-0.7190655186928098,1
-0.4735345232598054,-1.5032035687149459,-0.5411994163560873,-0.5050816339609262,-1.6112056171585922,-1.2112077008606326,-1.0248160362462546,-0.9654467271309763,-0.7251453729284975,-0.37816145356379777,-0.2799738426542999,0.4883244420752528,-0.3752625219275945,-0.3462426446293674,1.1163856262786698,-0.8633893648575447,-0.8447652252798411,-0.6328021415299241,0.9865114724149647,0.38812223964154413,-0.6376464155159727,-1.5172519514735618,-0.7154919587980596,-0.609262886691996,-1.6648255211818581,-1.2054532353480845,-1.2255201086634475,-1.3369900085676083,-1.0042465549222,-0.7573024327432794,1
-0.6354226150673965,-0.2186625149091432,-0.6033966187165377,-0.6333506618361567,-0.19430166790021625,0.20958471056325745,-0.28172496163341937,-0.4513726593289189,0.5672885900096801,0.04853736774776298,-0.39294211628209125,0.6280289221649138,-0.3856581647517633,-0.41532801289795496,0.6103651100334949,0.9189280476380691,0.9140158995237795,0.9819950792665869,0.8944918097089047,0.3707226779051255,-0.625221463715996,0.23169036873242452,-0.6273258770699118,-0.6141850422831483,0.35644742883737424,0.32020064681918214,0.04035444924910891,-0.012276036047669435,0.8028143880057067,-0.016392953243610512,1
-0.5274972205290027,-0.318726401346914,-0.558499300456345,-0.5369355832337107,-0.6768033643327525,-0.7406424670917227,-0.7117327218762025,-0.5775052329140699,0.5636376466115491,-0.9678847414894107,-0.2561530565219222,1.0235558917694088,-0.389618409637161,-0.32006061015815107,-0.384341886327244,-0.1329130844775613,-0.3747975821351589,-0.16969354631404887,0.6341730270536038,-0.5779316880717884,-0.44920131321632734,0.5215523175188911,-0.5439255294892318,-0.47530993810420463,-0.36684477839136914,-0.4756101385668206,-0.6452116628016162,-0.29366355572776676,0.8966456634666002,-0.8304513117963507,1
-0.07875479060620653,-0.956342793996896,-0.12270698193080604,-0.19194593619899986,-0.08541854171411381,-0.5204262763388133,-0.5525356883031078,-0.30460489988116635,1.089373495942333,-0.604978102765957,-0.5676278812528612,-0.5395013757272537,-0.5128810316951632,-0.460431517659294,-0.9353642271396775,-0.5627036427118438,-0.5744028602310377,-0.2216006392979647,-0.6371512603327506,-0.8328730926445316,-0.2669686868166702,-0.6411523534560383,-0.26483222347817004,-0.3701867579788777,-0.6079421808009502,-0.5207760584408463,-0.6073112269359707,-0.22346894178159524,0.0877553577692384,-0.8215847810020386,1
-0.6212219052597133,-0.24426025330020157,-0.6697128411008588,-0.6179925077224927,-0.978544838207966,-1.0770312266325264,-0.8672888138297232,-0.9138587624744728,0.2058451935947655,-0.24065385998498928,-0.6419776076660402,-1.0594923366843558,-0.6663405210043224,-0.5031148343602685,0.05634264758324435,-0.9556071049208172,-0.6228121137227293,-0.6157701266445765,-0.0705038636691186,-0.4387351941804389,-0.6562838432159376,-0.7079183079517974,-0.7026840482767407,-0.6212166931276518,-0.7876693353244557,-1.0509348982015936,-0.8643145622932649,-0.7863962471156429,-0.18726734616786406,-0.5467223263783775,1
-0.8143515586442078,0.1257434198069045,-0.8513616241535644,-0.7587755870977457,-0.8006312333287123,-1.1410872270408594,-1.0512568053870224,-1.115722468175371,-0.6375227313733663,0.08964788541565404,-0.9772732185293571,-0.2428561485238825,-0.9330630140358548,-0.6821647474079646,-0.9470313668423002,-1.0942131627128877,-0.929978774234394,-1.2540651606811681,-0.6867934467925988,-0.5673406504930987,-0.8985704033154814,0.12258502845886646,-0.9198228103707259,-0.7817141236534438,-0.9454785441743634,-1.126190226667752,-1.1843093815639671,-1.3138455805419726,-0.5561213255658618,-0.43311990057625865,1
1.3185950544698424,0.4980741600404707,1.2740527081638096,1.2431882426444887,-0.37008030952091875,0.6795813999498449,0.21595409284903086,0.3090339397079432,0.5161753824358535,-0.27892916953785346,0.855483629655705,0.5681555735550592,0.7440016888079186,1.0541661739361103,0.16901388242571402,0.7540539063128241,0.2402651933928398,1.0322800755947552,0.13775116245512264,0.2458997350134264,1.7127402999796033,1.4155647325962524,1.603633420713281,1.7445822335055436,0.7641212183663008,1.4531654819690394,0.9173417500389794,1.3733443260134164,1.259028520419019,0.81761509959633,0
2.5796180853921307,1.7872693480991924,2.534472835468298,2.8870795533292615,-0.09040012265073295,1.2102228234508308,1.333346520925168,1.9288960299221538,0.35553387291811345,0.04144934746019434,2.356193155995502,-0.4596702442474473,2.1686997863297264,2.540381660096331,-0.20433458805820956,0.1761560685829826,0.4335706371302109,0.8700704100200182,-0.5620825881251753,-0.2806261331842866,3.052564269077082,1.4383628633996823,2.9410175658463302,3.6273067471213505,0.6896002030760676,1.007231540677602,1.48632804037639,2.2031938835115383,0.3271868882556581,0.15650439724546683,0
0.8187300692393864,0.2258073062446761,0.7303420650128534,0.7093501820639836,-0.6148894298347716,-0.5931999572760916,-0.24230235237320505,0.12847606341018086,0.7826942504993759,-1.4980686589994565,0.6519241845244771,-0.6558008195421532,0.6138086382004706,0.618752340166891,-0.6676867076766502,-0.5839416676961127,-0.41226501805681054,-0.09183290683817473,0.2903100769414848,-0.45916076665362615,0.7311691077814512,-0.1021394037463718,0.6772938457992984,0.579086106029092,-0.9323277767702041,-0.6721773109763128,-0.3789491070366389,-0.07622774506587332,0.6054451534155506,-1.067076852369543,0
3.971287646545106,-0.19073770939162638,3.976129843823106,5.244840620038045,1.2695714730462813,0.8956282652323896,2.9039734057827498,2.852320597273567,-0.5973623539939319,-1.069952233630382,8.906909342399377,0.4701810031025695,9.46198577340019,10.676613884849099,2.1364269831365323,0.12529658769960209,1.06090151114583,0.36884254339407924,3.3039540305649475,0.25762552661840415,2.4520249320782117,-1.1736515515075814,2.4197653934670793,2.845035590670338,-0.7964365135938952,-0.6530931194802456,0.2298566285773358,0.6835794644599308,-2.0266839013236657,-1.590202169233931,0
-0.10147592629850004,-1.4008126151507154,-0.1610138681528049,-0.2053132184831146,-0.3117246471205235,-0.7984444792945086,-0.9814135011467129,-0.7673489428500029,-0.8018151842892365,-0.5213394633726609,-0.6715731298305095,-0.9475473182229001,-0.6866367760419854,-0.4971743727575556,-0.8976960332426387,-0.9682940303719463,-0.9158538824621607,-0.805717645032594,0.12080017195663777,-0.7538185621464554,-0.33116427111654945,-1.424430990345311,-0.38993274484919027,-0.3858321811078979,-0.6736960178217445,-0.9355391536220403,-1.1267870744716775,-0.861615638198959,-0.12579168293486503,-0.8869754456100871,1
-0.6922254542981305,1.198521365104867,-0.6425273089433106,-0.7067285092681069,1.938526627392275,0.9638535911110876,-0.5480158987063954,-0.09309424478950176,1.166043307303073,1.5951433944949824,-0.39510764229412554,1.380981639531269,-0.3505109913938592,-0.42654888481419057,1.9464192794081072,0.5293779577950329,-0.43912220663781754,0.9511752428073863,-0.5984061391933571,0.7675083357638907,-0.6811337468158906,1.0605652672285568,-0.6297087441436455,-0.6906542452171238,1.9476902847406081,0.4506092887089749,-0.6365761204524817,0.24657611950220373,-0.15814729516275955,0.8730309170607781,1
-0.7461881515673273,-0.19539184364454584,-0.7698050276809209,-0.7038844066544654,-0.2071114474515225,-0.8420328819392324,-0.7836727062905426,-0.7281420897110602,0.08171311805833091,-0.4901521741073644,-0.04501427034857419,-0.6784801182580075,-0.09012489017896305,-0.293658558590538,-0.22033523679323466,-0.8287378504095272,-0.644695748862809,-0.42517376959425995,0.28788850687027284,-0.8828022698012112,-0.6832045721158867,-0.5239048236098265,-0.71906625940866,-0.6533864957412554,-0.6167093590703892,-0.9501703671023587,-0.9169913706229846,-0.7486342856001321,-0.2600674736806267,-1.0571020052259423,1
-0.021951951375472536,1.8291565563754686,-0.024262403360292,-0.15497260222166068,0.20849473354641368,0.1565205682131589,-0.5546700333904444,-0.1516465846746333,-1.002617071186411,-0.15418001247666638,-0.14679399291418813,0.49921050545886275,0.010861354398677118,-0.2309536861174569,0.07167660262097693,0.07276042063325287,-0.37081873938241716,0.7240817110027542,0.03120207932178981,0.5708176378739402,-0.20070227721679484,1.2201521828525674,-0.2103241391665113,-0.3056713614805582,-0.36246118925664933,-0.17726061151163652,-0.6696790327908303,-0.14931541251524924,-1.0527799732640417,-0.04077591292796736,1
3.7753178511990755,1.6243746492470075,3.9102255234411722,5.250528825265327,0.8568119097264131,1.790138093419766,3.448859151608641,3.0947840311591333,0.9104772694339416,-0.9310270359940594,7.73030687586072,0.1617425405669543,7.813533839853414,11.041842264867746,0.20301526098764267,1.5795424037276948,1.6132975133181455,2.3007596603892013,-0.432528589315328,0.2886421366702811,4.094189394975121,0.9270333582370389,4.28733746250588,5.93017239869624,0.14603515037082973,1.0899297038272264,1.9723171736915648,2.2519189951444565,-0.42022775420870473,-0.5361933210601318,0
-0.2122414627984304,2.6599195205216124,-0.23186101256338398,-0.2778378351309722,-0.278276889403224,-0.570079152394977,-0.7609482085959605,-0.4199040008884516,-1.5940699016835427,-0.37390864139125796,-0.2323322703895445,1.2830070690787794,-0.286652042616822,-0.2509752418895635,-0.40000918821362297,-0.7275777840370887,-0.7943665504117786,-0.43279762387627263,-0.5935629990509326,-0.30634722444681867,-0.2524729097166974,2.594553782716489,-0.3148724320265783,-0.3076050654627967,-0.6649288395523055,-0.7135263925511252,-0.9698600798937965,-0.5630220634734877,-1.1401401262793571,-0.39876209374830124,1
0.7022842488163823,2.045573799136229,0.6726757846786608,0.5779526413137477,-0.8404838808216655,-0.03867966971756104,0.04658753268333319,0.10577735896131917,-0.8091170710854976,-0.8955869345562222,0.18489240792907136,-0.2573708997020291,0.2766927923309949,0.18069830124091052,-0.3793416835975485,0.6612772708552289,0.5108265005792803,0.6121570417561856,-0.8914161178100214,0.03672674283430619,0.5613614331817707,1.3748537847329845,0.5790005790077827,0.42790561287226725,-0.809587280998054,0.35073535321288984,0.32676660382873285,0.41406869074035707,-1.1045489528286732,-0.3184091584248514,0
-1.0330424896825325,-0.15815876962118922,-1.0342461132134313,-0.9117883077116572,0.7429472026036915,-0.7118362183873832,-0.8264851577482911,-0.8026866986397078,-1.2034189580835857,0.4539721281966217,-0.9263833572465502,0.6280289221649138,-0.9064303671815556,-0.6657074685974859,0.6113651505794339,-0.9007235771983121,-0.458021709713341,-0.4212807376204663,-0.31871479596835917,-0.18076777887092726,-1.0787322044151422,-0.18518973738743844,-1.0872192223005193,-0.888067842676559,0.39151614191513123,-0.9533510656850366,-0.9017352458061806,-0.7510705411817779,-1.1126378558856467,-0.30621767858267296,1
-0.7007458801827404,-0.5165271070959963,-0.7525051435806631,-0.6652046111089412,-1.4767029318698763,-1.289477310827028,-1.0105912539877124,-0.9620935094283037,-0.5133906558369318,-0.7779257977826027,-0.18685622413682337,-0.9878257527422569,-0.3173439404786537,-0.3147801998446284,-0.15266582651802352,-1.0332376751922632,-0.8602495549925945,-0.892175396783929,0.19586884416421285,-0.42625289989126913,-0.6190089878160078,-0.9668399363621809,-0.7044711985820411,-0.5943206286474261,-1.437317245089908,-1.2055168493197381,-1.1596980858689343,-1.0961052379323737,-0.2746274991831794,-0.869796542196108,1
-0.9705593665287252,0.2560591788886531,-0.9255039845832401,-0.8816408200070576,0.8425788213360734,0.4654296826083754,-0.054228885265558684,-0.5223061107316112,-0.5243434860313229,0.8253843912651561,-0.3081256808107464,0.493767473767058,-0.31486878742528024,-0.43116924383852284,0.6203655154928859,1.2503530164715275,1.37589322907122,0.9171112130366917,0.8157907823945113,1.4430652327474505,-0.948270210515388,-0.07608439711388038,-0.9159506513759084,-0.8265408977871536,0.049596189406998246,0.0046753474175376675,-0.0901381906933664,-0.4355754433586385,-0.4784678562189147,0.16980419343693454,1
-0.12135692002925691,-0.3838842808877883,-0.1733709282244174,-0.23830480880135577,0.2234394763562711,-0.4694467967238972,-0.5438727582427424,-0.4467297425098334,-0.2906831085509749,-0.2718411492502868,-0.5849520893491359,-0.4910583936701893,-0.6445591741346353,-0.4333694148024906,-1.2653776072995742,-0.9664496755706807,-0.4944944349468072,-0.41576560899092535,-0.9313720239850212,-0.8589724352491598,-0.2711103374166623,-0.34966196675504013,-0.34197754499029925,-0.34118119824530085,-0.5465719329148746,-0.7612368712912932,-0.4701020540552798,-0.362944573830821,-0.6192147694102554,-0.7949851886191039,1
-0.6070211954520297,1.303239385795557,-0.5914514606473119,-0.6074693280520193,0.4725185231872253,-0.23046864135434605,-0.4317568663020693,-0.15938477937310885,0.030599910484504247,0.8083731425749948,-0.5156552569640372,-0.023320536954415085,-0.49555496032154844,-0.46087155185208756,0.4263576495807039,-0.2921982718595775,-0.2836157690514933,0.7873434805769021,0.04815306982027469,-0.045732049742634444,-0.6811337468158906,0.7625611288694367,-0.6785575191551867,-0.644596932185626,-0.055609949826274,-0.4584343662203601,-0.5339091169683284,0.0851741872181652,-0.4881745398872828,-0.07956698515308123,1
0.96925759320083,0.007062996357455837,0.9527691463018805,0.8438762356892257,-0.4754051636094375,0.29297121997055525,0.1858221622042811,0.6696338126569028,-1.1157963165284546,-1.1181507715858405,-0.02913374626032232,-0.7051509735478517,0.10986747653361867,0.008644931858631856,-0.31700582290067925,0.011840822652060637,-0.1579506521107324,0.2682725507377422,-0.5572394479827513,-0.43003541331222955,0.8595602763812097,0.026507191501554398,0.9602593108051773,0.6300655746517423,0.25124128960410197,0.558116900803487,0.37714060086535023,1.2073744145137915,0.04407528126158116,-0.292363724216561,0
1.4378810168543836,-0.7794856923859523,1.414099388975419,1.4280549125311846,-0.6703984745570989,0.2683342967365807,0.38293520850535256,1.2316846875895087,-0.2578246179678005,-1.5646960497025904,2.1468589748321825,-1.058222295956268,2.032071337783507,1.7373192582480992,0.7883723272106512,0.2834639842929726,0.38284039203275316,2.618690604915687,1.3340067776339013,-0.16374646847660468,1.192963149680582,-1.2811284538666086,1.1717387635990446,1.0800912286999649,-0.8753411180188488,-0.33502326121245873,-0.21967132593038244,0.9607035368721478,-0.7405483152648603,-1.1878833344420394,0
-0.24064288241379767,0.23046144049759557,-0.19149461632944978,-0.31196706649466993,0.5508005093340972,0.7440164299463934,0.12141516045112853,0.3265738476911544,0.5928451937965925,0.7119760666640774,-0.1254996537958504,-0.7111383084088373,-0.2173477571223629,-0.19817113875433734,-0.6563529148226739,-0.22401303375218812,-0.3330197332313703,-0.3627230483479861,-0.40589131853199467,-0.18076777887092726,0.23002938518239405,0.37824978104018847,0.1739131764730504,0.04679013710017873,0.9043960706773301,0.7515033746303014,0.45198196789118167,0.5267455113914782,1.3560953571027026,1.0392783694541219,0
-1.1154066065670967,-0.4211173549111449,-1.1088003756454945,-0.9490460519503605,-1.1258573030479881,-0.8579521246442621,-0.389948812532479,-0.9855660333470128,0.556335759815288,0.04995497180527592,-0.17494583107063444,1.2793783812842427,-0.05893796170645662,-0.38606573907718383,-0.7870248794920471,0.31979218492395867,0.8569858200678142,-0.1761819329370381,0.6123788964126949,0.3094459604855641,-0.991757541815306,-0.19658880278915347,-0.9490129320239636,-0.8383189129516968,-1.6262499367963257,-0.728793745747979,-0.3823073735057468,-1.2013210258647045,-0.05299155542210237,-0.3245048983459406,1
-0.62406204722125,-1.950000456995225,-0.6520010549982137,-0.6034875843929213,-0.5437239878830711,-0.9839794627257462,-0.787690297043176,-0.7985596614671875,-0.7689566937060631,-1.047270568710166,-0.5521082781666152,-0.3118012166200789,-0.6024815722272852,-0.4705523040935457,-0.28867134076573864,-0.751051390598649,-0.6012600488120446,-0.9674406816106071,-1.160210395714565,-0.7330147383311723,-0.5113260722162102,-0.901702419780952,-0.584434269742705,-0.5116987312245102,0.22055616566106412,-0.6155608762046468,-0.5794855904776488,-0.6980819822809803,-0.7130460448711499,-0.6276294198764708,1
0.026330461970651087,0.891348504412175,0.09889629535344766,-0.12795362739206664,0.792763011969882,2.5955759683766195,1.3722669313413032,0.44522616640111246,2.089731987030075,1.7893551503743303,-0.43011697948868083,1.6204750339706877,-0.37328239948489567,-0.18959047199486306,0.30968625255447796,6.143482193768203,2.8086081902876523,0.7889655772326494,3.703513092314945,2.9976782487622495,-0.10958596401696645,1.873155786579383,-0.025651940952148095,-0.20775562347084733,0.9175468380814888,4.315794206379121,2.7663073174591997,0.9530902381795044,3.664668289562973,3.3612011212144894,0
0.020650178047577333,0.2886381186590902,0.018163502885578102,-0.10377875517611411,-0.5017363771315667,0.1224079052738096,-0.4792146570675502,-0.47303960448465027,-1.1157963165284546,-0.3838318697938525,-0.20706780024914387,-0.36078850184632355,-0.0579479004851071,-0.2052116858390341,-0.9780326237664114,0.4136866111701999,-0.12214106733605652,0.276383034016479,-0.5378668874130544,-0.39750579789196866,0.037442632282756606,0.25774537536491593,0.14412733805137895,-0.09155759326542731,-0.7482170331119788,0.5638421582523069,-0.10069274245341972,0.29377857139659225,-0.59333027962794,-0.29735114778836164,1
-0.30596614752914103,-1.2681697889425074,-0.3813814394298973,-0.3534909646538355,-0.9137842860319182,-1.269578257445741,-1.057634730706828,-1.0340845141064543,-1.309296316629368,-1.0798754620329765,-0.027690062252299388,-0.7046066703786713,-0.1480434716279038,-0.16120826655967901,-0.9643654029719109,-1.160665825097876,-0.9636331525180014,-1.1314346535066666,-0.7654944741069921,-0.5756621800192121,-0.31873931931657273,-1.3478944083623676,-0.39618777091774154,-0.36596776747217563,-1.3487687445685714,-1.2455300374898255,-1.2183238233725022,-1.2072593988449662,-1.2841226006934874,-1.005565294984006,1
0.3983890589319564,3.320806584436193,0.4832008635806006,0.25600022544953255,0.7073644816278408,1.128731461984608,1.0835025959957847,0.9046169916672762,1.020005571377855,0.5248523310722963,-0.5892831413732046,0.11094091144344113,-0.47674379711590953,-0.38100534586005796,-0.5653492251422176,0.004575182525863312,-0.0995942917371865,-0.25566466906865953,-1.282862919821458,-0.16488122250289283,0.4598909934819613,3.8859050489393443,0.5670862436391139,0.27145138158206483,2.4518030352333673,1.922000453055757,1.4301970151070167,1.3215738949034415,0.9888591583161002,2.0201383385748493,0
-0.28892529575992126,-0.867914243191424,-0.1960255383557077,-0.35462860569929205,3.0914067870098387,1.3675201025600516,1.485261671259115,1.2146606592528624,0.4139489672882012,2.001995759001354,-0.051871769386682975,-0.5316996969689999,-0.22576327750383288,-0.12490544565421104,0.04034199884821896,0.20354194290480299,0.7571831810198748,0.3380227069348793,-0.6141463446562357,1.2494005455942687,0.008451078082811059,-0.5336754510970111,-0.025651940952148095,-0.09384287978989087,2.359747663404255,0.9900557683311414,1.7530703484940968,1.2789394222246389,0.3983692351570253,3.1339962696102535,0
1.5401261274697042,0.9122921085503131,1.5211939095960623,1.4764046569630898,0.33018763928382333,0.5203889728995492,1.2153297925665647,1.3717460116319156,0.6476093447685493,-0.5610323769830381,0.7417935140239024,2.9376887033874923,1.245962728032072,0.6548351439759622,1.399730447628076,0.865832985177397,1.4189973588925895,3.668187141184238,0.8642221838187535,0.9248608940758508,0.9423932883810534,0.7755886321856826,1.0347239068593561,0.7601511152750566,-0.3186252979094534,-0.08183965403130038,0.5311411060915803,1.0337912043215238,-0.5253834939493619,-0.4392156404973479,0
1.8298206075464458,-0.35363240824381126,1.6859547105508974,1.9087082542365938,-0.8269624468508425,-0.48707167257589423,-0.023845855198769264,0.5481441558908369,0.0013923632994608738,-0.8686524574634664,0.49925460067605626,-0.8762436030602548,0.263326965842778,0.7424019483418791,-0.6053508469797809,-0.6929262695890712,-0.44078005778479334,0.2601620674590054,-0.8054503802819919,-0.09944374032027478,1.8059274384794277,-0.36920322172940884,1.535125992343437,1.8904889885289908,-0.3756119566608087,-0.4304442186927949,-0.14674896831546966,1.087084295170027,-0.24388966756667946,0.2811899865404747,0
-0.5843000597597362,-1.3612524740008989,-0.582389616594796,-0.5963773278588176,0.9706766168491356,-0.2700772333228124,-0.6401693865949218,-0.5401039585381048,-0.5645038634107584,0.46531296065672917,-0.5553565671846666,-1.293361265042243,-0.5703045825334292,-0.4795730050458135,0.09534422887486847,-0.7795550557091151,-0.46133741200729245,-0.6180410619626229,-0.11167055487972435,-0.5904139823609583,-0.583804957716074,-1.6133297884308737,-0.6058800734063085,-0.5813120745850947,0.8649437684648539,-0.579300912362119,-0.5276723363828424,-0.6193604737990485,-0.19373846861344313,-0.18984446190733287,1
-0.760388861375011,0.39102907222332034,-0.7479742215544052,-0.72066461207495,0.9849097052394764,-0.20317851100286685,-0.5384741206688913,-0.6858399586927273,0.1109206652433743,1.0281017714895855,-0.288996867704443,1.7365930433958607,-0.39060847085851047,-0.3458026104365738,1.109718689305743,-0.47048590264857126,-0.20006007124391612,-0.6959017014384968,-0.28844517007820786,0.0684998555703752,-0.6542130179159414,1.0556799534849646,-0.6770682272341032,-0.6249083098210162,1.022752977314761,-0.5513107648345539,-0.4638652734697939,-0.8121291966967774,-0.2244763002299431,0.25292791963360645,1
0.2819432385089523,-0.607282725027928,0.2805450784061533,0.1755121214834789,-0.5408773702050022,-0.16034816753457273,-0.16697252576133076,-0.2096830449131998,-0.7945132974929764,-0.4164367631166629,-0.4838942087875335,-1.5508166640646184,-0.44159662375800535,-0.3057594988923606,-0.5230141753641298,-0.3514411836578012,-0.3814289867230619,-0.5735956135951448,-0.6432051855107808,-0.3456853640248087,0.31079157188224216,-0.8854180406356452,0.31092803321273943,0.19146635322583774,0.7334360944232642,0.5015004660318209,0.29030542502127654,0.16130717414459855,0.8319344390108122,0.745574536892548,0
0.5687975766241574,-0.32803466985275376,0.6191285243683395,0.4331878182793966,0.5436839651389268,0.9771196266986124,0.5850702432472155,0.7377299260034875,0.6804678353517236,0.33347578330797445,-0.2568748985259336,-0.9636949789085882,-0.3381352261269916,-0.11676481308753024,-0.9520315695719953,0.178950545554597,-0.17419759335109464,-0.4426924134763317,-0.42526387910169156,0.008357892177101839,0.8160729450812914,0.25774537536491593,0.757715609537811,0.6687396542965114,0.5361745833608796,2.074673985024295,1.2243832557859802,1.093174934124142,2.215136861753301,2.1808442092217493,0
0.6170799899702816,-0.8353353034209873,0.5243910638193094,0.46902351121127894,-0.14875578505112722,-0.7053927153877285,-0.4210851408653871,-0.08484017044446136,-0.36735291991171387,-0.8828284980386008,-0.7163273340792192,-1.353960351211005,-0.851481969396663,-0.43270936351330025,0.11767846773417467,-0.7516102859929719,-0.23852221785375327,0.4077728631320163,-0.859935706884264,-0.46369978275877877,0.2176044333824177,-1.2892706434392616,0.07561990968153465,0.083706304033822,0.132884382966671,-0.7516947755432596,-0.3717528217456936,0.32118644669010815,-0.9718909426943055,-0.6453624814650941,1
-0.9449980888748951,0.6260628519957592,-0.9547490267527231,-0.8389792808024354,-0.5942514516687782,-0.8890325508778911,-0.6611361883352269,-0.8996720721939344,0.7461848165180714,-0.4291951996342843,-0.35179712205343894,0.7332608682064767,-0.30991848131853306,-0.44305016704394873,-0.16599970046387796,-0.2234541383578653,-0.06577412833888144,-0.21835644598647008,-0.2545431890812381,-0.4179313703651557,-0.726691903415805,1.0361386985105965,-0.7020883315083074,-0.6874900023370972,-0.09067866290403101,-0.5385879705038423,-0.38134786880028737,-0.6053520042045847,0.10393316388318564,-0.40596615001867975,1
-0.4280922518752189,-0.49791057008431827,-0.4674689579287982,-0.46071363318811925,-0.7493921151234875,-0.9483506814335371,-0.7424924010760513,-0.6757803055847091,-0.046069900876234735,-0.6432534123188212,-0.8516727098313653,-0.9968974722285986,-0.8663328877169042,-0.5944219293649304,-1.0510355836199645,-0.9467206681510837,-0.6410484763394624,-0.7961472747636845,-0.5402884574842665,-0.8158517822502089,-0.3995015060164208,-0.574386398960279,-0.4658866328244524,-0.43435057193497195,-0.432598615412164,-0.6524569797637101,-0.40053796290947496,-0.24509071006870237,0.597356250358577,-0.5899466640006462,1
1.7247353549695883,1.7546904083287553,1.7189068707418638,1.6470508137815782,0.19141502747800504,1.1855859002168565,0.9453979138740147,2.0011191804412585,0.23140179738167885,-0.3682382251612042,2.0605988553528145,1.2249480643661927,2.1097911436594363,1.391892416905161,0.4660259245696211,1.1883156277016895,0.9000899498891834,2.2001896677328645,2.0047816873596545,0.18575777162015306,1.64026141447974,1.3243722093825332,1.5708689984494424,1.3894838658581181,-0.20026839127202242,0.5555723419373446,0.4706923096476396,1.5317009388203975,0.5989740309699715,-0.4225908952580138,0
0.3529467875473694,0.8075740878596228,0.33903516274511986,0.2085037118017201,-0.31030133828149004,-0.014042746483586768,0.29379491368130106,0.66834411354049,-0.3454472595229316,-0.2590827127326644,-0.3330292299491412,-0.6813830684936366,-0.3915985320798598,-0.23975436997332789,0.9470454271663189,-0.05802110163829745,0.4448440249296459,0.9463089528401444,0.504619028243756,-0.6252131058337957,0.03330098168276449,0.026507191501554398,0.007112481311690353,-0.08733860275872526,-0.2923237631011347,-0.34710991582663475,0.05954454335829647,0.5023829555750197,-0.5577391061772564,-0.8681340676721753,0
2.6648223442382317,1.1589612239550502,2.600377155850232,3.106075454579655,0.7500637467988609,0.4540587949619259,1.7828144863760187,2.375131924200909,-0.053371787672495834,-1.0968867107231386,2.179341865012697,-0.5304296562409121,1.780100756950081,2.7229958501056544,-0.2496697594741145,-0.3223786231530123,0.1301838772336507,0.19690029788485786,-0.6964797270774472,-0.2560397959480428,2.9821562088772144,0.8228133317070733,2.833788547528313,3.560506064098567,0.8386422336565352,0.08610123113409097,1.006095935293972,1.4357733752930915,-0.4978812235556519,-0.3638501287456987,0
-1.0983657547978765,-1.0657149489405058,-1.0614316453709791,-0.9479084109049039,0.17504697582911413,-0.24165001420668814,-0.66527932879888,-0.7363961640561008,-0.6521265049658885,1.0281017714895855,-0.24243805844570462,2.3443982489807498,-0.2336837672746282,-0.4621916544304682,3.4398131613438006,1.186638941518721,-0.19177081550903743,0.18878981460612076,1.962404211113442,1.120795089281609,-1.116007059815072,-1.0091793221399792,-1.083347063305702,-0.9202376452901623,0.15918591777498967,-0.5767563534959769,-0.9622320174853942,-1.1247312410167125,-0.7551083407674125,0.05176850223766013,1
-0.4848950911059524,-0.9889217337673332,-0.5502612604086031,-0.5073569160518394,-1.2169490687461662,-1.3343923170305045,-0.9826689982569109,-0.9760222598855596,-0.9697585806032377,-0.7453209044597923,-1.04620912991245,-0.9840156305579935,-1.044048876949124,-0.6893373047504995,-1.2587106703266469,-1.1484260159622055,-0.8422121345134984,-1.3032146893503136,-0.40468053349638866,-0.9210056553529131,-0.6355755902159765,-0.8642483477467455,-0.69732259736084,-0.5927385072074128,-1.2567133727394586,-1.1228186861701133,-1.0063212587012529,-1.1280810924414755,0.00039520475392393085,-0.8930711855311764,1
0.48927360170113043,1.084495075908337,0.4832008635806006,0.36350730424518046,-0.8789132194755842,-0.07847777648013507,0.1328401841539294,0.12176962800483532,0.12917538223402653,-1.3350441923854053,-0.006756644135967547,-0.25192786801022393,0.01828681355879779,-0.08266216314603006,0.9093772332692801,0.3231455572898961,0.6172605442151224,1.317769087006293,1.1221193964028424,-0.29991695163118565,0.11820481898260471,0.3228828919461442,0.14114875420921197,-0.007177783131385559,-0.8446559940758109,-0.3935481151337316,-0.1918456894720605,-0.041206571079714066,-0.14844061149439136,-1.1679336401548384,0
-0.4650140973751955,-0.5677225838781113,-0.5263709442701521,-0.4928519927222678,-0.8006312333287123,-1.2508162928290991,-1.058714458221598,-1.0961448355882282,-2.178220845384414,-0.8601468331183848,-0.843010605783228,-0.9103532683288995,-0.900489999853459,-0.6082830064379273,-0.7043548610277498,-1.2556221525933307,-0.970629284358239,-1.3635566849441156,-0.8006072401395676,-0.92705767682645,-0.6065840360160311,-0.9717252501057726,-0.6785575191551867,-0.591332177038512,-0.963012900713242,-1.302400928148106,-1.2128546465513836,-1.3211543472869103,-1.5915009168584848,-1.230553513889664,1
-0.07023436472159615,-0.7282902156038368,-0.14824490607880508,-0.16578019215349815,-1.8574380463114786,-1.0618700431039267,-0.8581236849252786,-1.0423901764161514,-0.7470510333172797,-1.1422500405635705,-0.5452507791285065,-1.0796315539440342,-0.5727797355868027,-0.37880517489609017,-1.104371079403382,-0.6331244623965248,-0.39833906842221445,-0.7753844375701182,-0.4930678410956306,-0.6902723366743176,-0.1572149459168769,-0.9293858643279744,-0.22640849191421406,-0.23781593083109975,-2.083458283547585,-0.8331206592598129,-0.782420835682307,-1.0542320951228352,-0.5803880347367827,-0.9817364934742933,1
-1.2454851084054763,-0.8423165048003665,-1.2550255864929105,-1.0380664637573387,-0.4263010086627628,-1.0887811438671908,-0.9763915127059213,-0.8988982527240869,0.9834961373965505,0.045702159632735134,-0.4936390758416879,0.3486199619855918,-0.5524834805491398,-0.5268766807711203,2.253098380162758,-0.8276200596208814,-0.780739013983638,-0.37699749891856316,-0.3102393007191167,0.17630148806775167,-1.1429277887150215,-0.7811980141056795,-1.1667474108863822,-0.9235776794413014,0.6282299551899919,-1.0214180153543428,-1.1118667763017842,-0.9595226593863523,-0.09667163192975961,-0.12168300642606146,1
-0.9449980888748951,-2.229248512170399,-0.9555728307574978,-0.8455207168138108,-0.029909496991786494,-0.8903591544366436,-0.7971065253696602,-0.8238377641488743,-1.5721642412947605,0.1704513166939232,-0.8386795537591593,-1.4704412294156315,-0.8613825816101572,-0.6349050751019372,0.25601740992241406,-0.8753497262960539,-0.6931050023545006,-1.046598998411079,-0.9689063600888087,-0.633534635359909,-0.9669076382153529,-2.223994006379891,-1.0008402908776723,-0.8202124120271004,0.4923386920136831,-0.8178533060629593,-0.8035299392024133,-1.0441825408485461,-1.3116248710871978,-0.3854622975568335,1
1.9292255762002302,1.3497807283247527,2.101975732961856,1.968434409123065,0.9635600726539654,2.2601347828063534,2.8700749838074064,2.5402134111017203,1.2317602884694208,0.8494836602428859,2.0104308360740193,-0.34627375066817695,2.916691039059209,1.7263184034282604,-0.21400164666895383,0.9848777041681671,1.543667765145165,2.3429341734386333,0.0033540235028509165,0.9146481078392572,1.6609696674797008,0.607859526989019,2.1397785123033675,1.6496549471047468,0.3652146071068125,1.0453999236697364,1.8600551231528177,2.1255382368465767,0.045693061872975706,0.8192775741202637,0
0.45519189816269046,-1.863898973316213,0.4461296833657625,0.2625416614609081,0.5650335977244378,0.4843811620191249,0.38042421428495665,0.3402446583251277,-0.10083405184819144,-0.029430855415478324,-0.8740498119557202,-1.5054580666329103,-0.8529670612286872,-0.5823209890631078,-0.3356732464248753,-0.40677182769576464,0.04861760080244452,-0.1826703195600276,-1.064558377901687,-0.582092452834845,0.1534088490825388,-1.8689945410121958,0.1560416734200477,-0.04620344531837995,0.9526155511592458,0.27757928581129876,0.6150977678192756,0.4658391218503315,-0.5561213255658618,-0.11835805737819512,1
-0.35424856087526463,2.2410474377588514,-0.39003138148002586,-0.3998498372561918,-1.0767531481013144,-0.873681852555184,-0.33709238419314713,-0.6574665781316503,-0.8967397126406287,-0.8105306911054132,-0.6986422049809388,0.25971711101944395,-0.6752510719964672,-0.5171959285296622,0.45702555965616903,-0.2206596613862509,0.23496006972251743,-0.6774097995629768,-0.43495015938654,-0.3759454713924933,-0.4926886445162453,1.6386607268869609,-0.5486912636366992,-0.5007996724155297,-0.4238314371427244,-0.586934588960546,-0.13571466420268685,-0.7563998502666283,-0.8554107386738856,-0.6387125833693607,1
-1.3801078373823152,-1.4938953002091069,-1.2554374884952975,-1.1552434914393674,4.770911217069991,2.265820226629578,0.10672584426181296,0.09288036779719328,2.0678263266412924,4.567859103100772,0.008762958950278642,-0.2247127095511992,0.07323521134369018,-0.44657044058629713,0.9140440891503292,1.1145414356510717,0.09735842452353118,1.6357000315327783,0.590584765771786,2.517299044300256,-1.2402565778148384,-1.5139950756445004,-1.1381530060015776,-1.0202628785532242,2.5350912287930414,0.5714758348507339,-0.29883046413078096,-0.18433658650140872,0.22203114851500097,2.2861342624042003,1
-0.10715621022157329,1.0426078676320607,-0.14124257203822452,-0.18455126940353195,-1.1336855016626752,-0.6873888099475164,-0.5251658513007936,-0.6572086383083678,-0.14099442922762595,-1.2060422231516774,0.10657255049382945,-0.29002908985285897,-0.018345451631130476,-0.008956435853110144,-0.8966959926966998,0.06661257129570122,0.06022255883127455,-0.27999611890487003,0.6583887277657247,-0.2677655875530207,-0.260756210916682,0.10792908722809005,-0.2758529836941886,-0.30690190037834636,-1.6959490040383678,-0.7001674585038782,-0.6538472051507506,-0.8153267821476876,-0.3846365807580211,-1.1490922622169257,1
-0.5189767946443924,-0.7887939608917912,-0.5411994163560873,-0.5437614295064503,-1.107354288140546,-0.6028652117755737,-0.632259754800675,-0.835187116373305,-0.527994429429454,-1.1422500405635705,-0.6026372184474165,-0.691906263097793,-0.5836704090216464,-0.48441338116654253,-0.34834042667343723,-0.18768483312120188,-0.3555665088302403,-0.8699526726001899,-0.03539109763654284,-0.7829439154878519,-0.604513210716035,-0.9912665050801414,-0.6139222497801596,-0.5869373952606973,-0.9980816137909989,-0.5678503974644787,-0.6231430545760505,-1.0119021543917384,-0.6774548714204658,-1.1574046348365927,1
-0.36844927068294825,-0.8283541020416076,-0.3739672033869294,-0.4208961965971386,-0.4241660454042126,-0.4103181809623588,-0.3822902801602718,-0.46788080801899995,-0.38925858030049615,-0.519921859315147,-0.9213304632184698,-1.3232979393471702,-0.8272254694736023,-0.6313848015595888,-0.7226889377032997,-0.4201853171595134,0.04264933667333187,-0.5573746470376711,-0.5487639527335089,-0.5696101585456752,-0.45127213851632336,-1.030349015028878,-0.41822929134977826,-0.4830447540331586,0.01014388719452085,0.042843730409672126,0.3617885255780003,-0.2554447962906973,0.17026216895036922,-0.328384005568452,1
-0.6780247444904469,-1.0703690831934256,-0.6449987209576332,-0.6509840980407339,-1.0938328541697222,-0.1465135875647257,-0.27042548764163826,-0.5811163904400252,-1.1413529203153678,0.677953569283753,-0.7679390373660376,-1.0435261103883944,-0.7529708778723962,-0.6005824080640402,-0.019660433908125753,0.7646729188049587,0.2744169270205399,0.5651162387395117,0.24914338573087907,1.1450031751757566,-0.7908874877156843,-1.315325650071753,-0.7747657772571858,-0.7150892319017733,-1.098904163889551,0.15925729853568202,-0.015296823667534966,-0.13713413460701998,-0.4800856368303092,0.8226025231681308,1
-0.30596614752914103,0.004735929230995686,-0.38550045945376793,-0.36316091354021646,-1.1215873765308857,-1.2593444585639366,-1.106184803958181,-1.1543360597207641,0.026948967086374207,-1.1039747310107053,-0.004230197121927363,-0.005177097981731812,-0.13418261452901198,-0.16230835204166283,0.15001311205287157,-0.9437026330217403,-1.0345560245856233,-1.237519774792545,0.16438843323845553,-0.3044559677363383,-0.4222805843163778,-0.5581020198149717,-0.5069910898463593,-0.4508749514195551,-1.3268507988949731,-1.2236468312410018,-1.2969792216025346,-1.575895321542756,-0.7470194377104389,-1.166825323805549,1
-0.9222769531826016,-0.8539518404326656,-0.8880209023660153,-0.841823383416077,0.3088380066983123,0.048497135571886535,-0.472686072094521,-0.8565961217057539,0.18028858980785217,0.7899442898273188,-0.9274661202525672,-1.2316735725351198,-0.7747522247420834,-0.67633429435345,-0.8556943303131975,0.30470200927724134,-0.1433615620173459,-0.8281025788819077,-1.0197593315842628,0.33176278966923156,-0.8964995780154854,-1.030349015028878,-0.7887651213153712,-0.7866362792445962,0.03644542200283952,0.862191685307491,0.30853601442500483,-0.5321120707813559,-0.5172945908923883,1.3329822020156958,1
1.5912486827773644,0.12341635268044518,1.5953362700257374,1.5674159405996169,0.7002479374326704,1.5267125296103479,1.9196636713875905,1.2505142946891323,-0.28703216515284385,0.5914797217754302,1.302664751140796,-0.792602349396185,0.6182639136965432,1.15449396989304,0.4803598390614145,1.4023725637273465,1.1971768754272356,1.283705057235598,-0.7110091475047197,1.3102990116717341,1.8659813721793153,-0.014203756361713431,1.5649118307651084,1.850056996173096,1.6934421149268684,2.1707310822211667,2.766787069811929,2.0722451459980733,-0.2455074481780749,2.535505440994216,0
-1.3130804870900499,-1.5939591866468776,-1.3028062187698126,-1.0835721055756025,0.4298192580162052,-0.7470859700913773,-0.7437478981862491,-0.7263365109480825,0.012345193493852012,0.8863413657382362,-0.4615171066631787,-0.4355394704137786,-0.4737736134518613,-0.5420578604224978,0.8550416969399234,-0.623623240693036,-0.39933377911039986,0.39155189657454265,-0.032969527565330836,-0.3127774972624515,-1.2506107043148187,-1.6312426054907117,-1.25491349261453,-0.9944215616996741,0.0013767089250812925,-0.8871925351653367,-0.8804342413449825,-0.7969025993114908,-0.7292238509850971,-0.34445459263314254,1
-0.7348275837211808,-1.9942147323979607,-0.7512694375735018,-0.6990494322112748,-0.7394289532502492,-0.8462022074095973,-0.9432463889966965,-1.0320725834848508,0.07806217466019987,-0.2548299005601246,-0.9888226905935402,-1.554263917469428,-0.8707881632129766,-0.6798325661861587,-0.9723657273394234,-0.6750416169707395,-0.7249357443764347,-1.1564149420051761,-0.026915602387300404,-0.6970808608320468,-0.8136665660156412,-2.0855767836447807,-0.775361494025619,-0.7256367081685285,-1.0156159703298775,-0.5831177506613325,-0.9064847940982046,-1.0271287517770251,0.7914899237259441,-0.5323142138376205,1
-1.2417929238554786,2.0734986046537465,-1.2476113504499429,-1.0352223611436973,-1.1756731124141795,-1.100720575895963,-0.9214007392792529,-0.9927883483989232,-0.6959378257434541,-0.46463530107212064,-0.8195507406528559,0.8530075654261864,-0.8034640001612163,-0.6393054170298726,-0.15099909227479177,-0.71416429457334,-0.5767238518368037,-0.9233196525742786,-0.5814551486948721,-0.5775534367296923,-1.1594943911149902,1.8308164008015848,-1.1685345611916824,-0.9328946168102686,-0.9367113659049239,-0.9120019841102242,-0.9608887108977512,-1.004136589725242,-0.9379175498550165,-0.6558914867833397,1
-0.6751846025289102,0.20719076923299737,-0.6536486630077624,-0.668617534245311,0.8923946307022639,0.1849477873292829,-0.2557361714523227,-0.2976405246525384,0.6622131183610714,0.24558433174213862,0.34875054283966983,0.8638936288097964,0.5247031282790234,-0.04393915418019741,0.7973726921241032,-0.07981802201688923,0.3241524614298121,-0.04479210382150083,1.62580597121496,0.47890256174459833,-0.6107256866160231,0.08675939433919094,-0.5466062549471824,-0.5918595508518499,0.1504187395055501,-0.4139045860628699,-0.36743505057112646,-0.5407912312909693,0.4323426279963153,-0.2258647432592239,1
-0.794470564913451,-1.1937036408957942,-0.8311784260365968,-0.7346007148817932,-0.1829151971879445,-1.2436147306530145,-1.0962036019321075,-1.175848240982526,0.5198263258339836,-0.6503414326063888,-0.6051636654614565,0.11456959923797778,-0.6440641435239607,-0.511475484023346,0.4616924155372181,-0.9210673695516641,-1.0081961913487092,-1.3728026358818761,0.36780031922027234,-0.8200125470132656,-0.8426581202155868,-1.0889727799519844,-0.8903348303332709,-0.7428642527375621,-0.28355658483169516,-1.1500454660378359,-1.2820589234326414,-1.575895321542756,-0.23094742267552218,-1.1130719808650347,1
-0.3854901224521685,0.49342002578755123,-0.40980267759460626,-0.4194741452903179,-0.6312574814836635,-0.7264288575336605,-0.7241621432671619,-0.5230799302014587,-0.4294189576799317,0.010262058194897816,1.1763424004387928,0.9636825431595542,1.1147796162032746,0.29290702040326616,-0.8233596859945003,-0.42353868952545065,-0.3360038652959266,0.93657637290566,1.5967471303604153,0.7867991542107896,-0.5216801987161909,-0.35454728049863243,-0.5427340959523648,-0.5292778583357689,-1.6871818257689282,-1.0463546922425373,-1.0570310823847808,-1.0182973252935588,-1.1676423966730671,-0.8443052661624627,1
0.13425585650904484,0.9309086455619909,0.0824202152579639,0.02790319583548639,-0.6789383275913037,-0.7197958397398981,-0.061510768504706506,0.09778122443956118,-0.6740321653546708,-1.2244710758993524,0.0379975601127422,0.7441469315900867,0.02373215027621963,-0.16120826655967901,0.4236908747915332,-0.450365668452948,0.06619082296038743,0.6429768782153855,-0.3804648327842678,-0.3494678774457693,-0.09923183751698617,0.9824002473310832,-0.15075246232316836,-0.2151388568575759,-0.05122636069155361,-0.6117440379054334,-0.0224931089584803,0.3242317661671656,-0.6855437744774394,-0.8637008022750189,0
0.24502139300897569,0.6563147246397362,0.2290573281077673,0.11038217163108918,-0.7977846156506444,-0.03488937383541129,-0.2537273760760061,-0.2620448290395508,0.48331689185267906,-0.519921859315147,-0.312456732834815,0.21617285748500412,-0.2752663385713036,-0.26021595993822805,-0.8640280015293564,0.14541682189522517,0.04065991529696084,0.02658014903138352,-0.179474516873663,0.08325165791212145,0.10163821658263625,0.9563452406985917,0.08753424505020341,-0.023702162615968695,-1.0813698073506723,0.5104064220633189,0.18811817388985297,0.24657611950220373,0.42425372493934166,0.4745911894913975,1
1.0573019940084678,-1.4101208836565542,0.9321740461825261,0.9590623915417054,-1.2795746576636629,-0.7992025384709385,-0.5568043784777807,-0.18414700240823062,-2.159966128393762,-1.469716577849187,0.2823410784706167,-0.3099868727228104,0.1469947723342216,0.2335024043761368,-0.8906957494210653,-0.9615313961006396,-0.6752002099671627,-0.7070941683631536,-0.9107886783797182,-0.9402964737998122,0.7353107583814432,-1.1817937410802344,0.5909149143764509,0.579086106029092,-1.479399700783217,-0.982867948532287,-0.8030501868496837,-0.4750123305865309,-1.8082835187853783,-1.3984634408069414,1
1.5770479729696807,0.5562508382019654,1.562384109834771,1.5332867092359193,0.11455635017016767,0.560187079662123,1.22411827233795,1.58325666672358,0.9871470807946806,-0.8006074627028187,0.7847431132625835,1.9361708720953763,1.1420062997903835,0.601150972455149,-0.7616905189949238,0.45839824271602914,0.38317196226214845,1.0160591090372815,2.060477798997533,-0.19173706779171293,1.3420625712803012,1.462789432117643,1.4993829862374308,1.159197300700629,-0.46328373935520123,0.5822902100318387,0.9653169853119483,1.68853489188885,1.8511362241894884,-0.2641016573096927,0
-0.1781597592599904,-1.531128374232463,-0.2586346427185449,-0.25224091160819895,-1.6083589994805234,-1.2925095475327482,-1.0802462336614922,-1.1478359761740446,-1.6305793356648473,-1.339297004557945,-0.6524443167242062,-0.9624249381805003,-0.6717858577217443,-0.43886984221241,-1.2343763503754626,-1.2145992306500326,-0.9901919278925527,-1.387563715449177,-0.695268942041841,-0.8430858788811252,-0.2690395121166662,-1.4228025524307801,-0.3509132965168006,-0.3197346631695651,-1.8471828291861956,-1.2462297911780147,-1.2396728030689732,-1.4085550162784555,-1.0252777028703315,-1.2205786667460634,1
-0.5502183562212962,-1.3961584808977958,-0.53090186629641,-0.566229840154218,0.7287141142133509,-0.17531983626906508,-0.7564284189992481,-0.5184370133823734,0.24965651437233108,0.2711012047773814,-0.738704436203574,-0.7267416659253448,-0.44209165436868,-0.5521786468567494,-0.08932992527521504,-0.05131435690642316,-0.7199621909355074,-0.6005224180805512,0.7358789700445122,0.13166782970041677,-0.6065840360160311,-1.2811284538666086,-0.47303523404565384,-0.5895742643273861,0.45288638980120566,0.02694023749628277,-0.830156194778911,-0.4984612905598723,0.9192945920261266,0.46904960774495336,1
0.08313330120138458,0.11178101704814608,0.1034272173797056,-0.03523588218735449,0.08253190129190162,0.1849477873292829,0.06378784309304464,0.24429104406403113,0.24600557097420103,0.15627527611878786,-0.4174847444184805,1.1505599645781917,-0.24259431826677305,-0.2967387979400928,0.32135339225710063,0.1940407212013143,0.04364404736151739,0.39641818654178457,-0.7170630726827502,0.24854749440809884,0.012592728682803176,0.8439830245959723,0.06668415815503329,-0.09524920995879167,0.4704207463400848,0.30747785248847065,0.22649836210822807,0.6378996723040707,-0.29565864713131124,0.5311153233051348,0
2.0570319644693806,-0.9749593310085743,2.0319523925560516,2.0793544110550823,0.2661387415272912,0.8937331172913143,1.3107475729416058,1.9753251981130069,0.5891942503984624,-0.1371687637865042,-0.2301667443775102,0.16718557225875907,-0.22724836933585704,-0.028097923239629577,-0.8716949790482226,0.07108373445028415,0.08210619397135432,0.2650283574262473,-0.4591658600986609,0.2163961303299339,1.3296376194803248,-0.6248679743107308,1.3355608749182377,1.1504077371449997,-0.5772570568579124,0.18915586521285388,0.6246928148738694,1.2484862274540656,-0.276245279794574,0.1504086573243776,0
1.3895986035082595,1.2334273720017634,1.2369815279489713,1.1976826008262251,-0.4319942440188997,0.30813240349915477,0.7281969138097771,0.8716006942871142,0.5161753824358535,-0.9225214116489788,0.5209098607963997,-1.0037919790382182,0.09353146638135337,0.3809138589619765,-1.0563691331983063,-0.39447612902066176,0.1726248665962297,0.03306853565437303,-0.10924898480851193,-0.1732027520290061,1.7168819505795954,0.7707033184420904,1.3593895456555751,1.3051040557240763,-0.32739247617889233,0.421983001464874,1.4551441374489604,1.233259630068779,1.7071537497753577,0.4950950419532437,0
-0.32016685733682465,1.3590889968305917,-0.38550045945376793,-0.3830696318357068,-0.9016861609001287,-1.016007462929913,-0.9634598924708828,-0.8073296154587931,-0.527994429429454,-1.1776901420014076,-0.5163770989680486,0.027481092169098078,-0.5985213273418876,-0.4212684745006679,-0.3290063094519481,-0.9224087184980392,-0.8691356371403844,-0.8856870101609395,-1.016126976477445,-0.8627549486701201,-0.3995015060164208,1.010083691878105,-0.4825667023405885,-0.4431401354906013,-0.46328373935520123,-0.9221802195747933,-1.0917651527224104,-0.8434959873104679,-0.9621842590259373,-1.1657170074562604,1
0.5403961570087912,-0.8795495788237231,0.5697002840818889,0.393370381688416,-0.10320990220203918,0.6208318137765215,0.3967456767175294,0.5543347116496173,-0.10813593864445255,-0.4306128036917972,-0.2456863474637562,-0.8513870916676788,-0.11735157376607203,-0.15548782205336273,-0.4006758819109158,0.38965410921431676,0.1742827177432055,0.45319156949294287,-0.7110091475047197,-0.25490504192175467,0.5158032765818567,-0.6020698435073008,0.5075145667957709,0.33297832647147024,0.4879551028789627,1.2311527208981237,1.0718220076179392,1.2713261235319957,0.19129331689850101,0.40421310131154903,0
0.017810036086040707,1.0519161361378997,0.03711099499538448,-0.12567834530115327,-0.12313622594851477,0.4976471976066497,0.2850064339099158,0.40498755396903957,1.5457414207086388,0.217232250591868,0.05604361021302837,1.1396739011945816,0.330651128894538,-0.2054317029354309,1.2797255821153866,0.6495404675744487,0.16533032154953653,0.7257038076585015,2.960091080452829,0.36807491851045304,0.12234646958259683,1.4937297524937272,0.23050626947422637,-0.12179369189679236,1.0315201555842006,0.9646101796697184,0.49036215610955675,0.9530902381795044,2.9496092593265053,1.0337367877076769,0
-0.2804048698753109,0.33750652831474515,-0.2466894846493191,-0.33557311818789437,-0.6839199085279228,0.08640009439338557,0.24734152060397854,-0.35645080436095233,-0.9113434862331499,-0.3682382251612042,-0.32472804690300966,-0.7773618606591312,-0.27427627734995436,-0.2846378576382702,0.08467712971818497,0.35276701318900766,0.4726959241988381,0.12066175506473131,-0.5971953541577508,-0.21367564563328442,-0.30424354221659994,-0.03537344925061254,-0.18947405227134118,-0.3366106251963735,0.11973361556251226,0.6401789242365759,0.8549739441841201,0.053198332709063156,-0.5464146418974937,-0.1222371646007065,1
1.287353492892939,-0.5048917714636971,1.2122674078057463,1.2005267034398666,0.6433155838713087,0.10724672174521009,0.7143864455975999,0.9732289846604261,0.5636376466115491,-0.0946406420611002,1.1102938570717455,0.6606871123157437,1.0043877900228146,1.1030099693361946,0.35368803657579756,-0.24972222189103982,0.05060702217881532,0.6835292946090699,-0.011175396924421953,0.2931811527754337,1.238521306280496,-0.12656597246433285,1.1359957574930393,1.175018515100762,0.7860391640398992,-0.160084839165176,0.26391904562114366,0.8038695838036952,-0.010929259525839688,0.034035440649036755,0
-0.29744572164453115,-0.833008236294527,-0.2611060547328675,-0.38363845235843524,0.792763011969882,0.42942187172795165,-0.5413617640223466,-0.4596267336739594,0.5672885900096801,0.7530865843319685,-0.7939253495104497,-0.8512056572779519,-0.7341597146667573,-0.5647196213513657,-0.9813660922528752,-0.3631779869385813,-0.4944944349468072,-0.86070672166243,-0.45553350499184286,-0.5181679760206112,-0.36636830121648317,-0.8447070927723773,-0.332743935079581,-0.43962431006834957,-0.05122636069155361,0.1484429233545774,-0.3990987058512859,-0.6361097309228636,0.45822711777863073,-0.11724974102890581,1
-1.4880332319207095,-1.0820044188257243,-1.3666510291398113,-1.1686107737234823,0.10459318829692939,0.9240554843485138,-0.03439203092443178,-0.5210164116151985,0.3299772691312011,3.8278697850787315,0.4368152673290662,-0.661606720013412,0.1494699253875953,-0.3277612085320382,3.3898111340468464,3.811770608653214,0.8228340864401141,0.9511752428073863,0.5893739807361796,6.859624451563005,-1.3535307217246249,-1.6296141675761808,-1.3314630973582253,-1.0480378993890132,-0.5115032198371176,-0.0678445802675177,-0.6178657786960239,-1.0163178676334714,-1.0463088508184633,1.3551485290014749,1
-0.7064261641058136,-0.2233166491620635,-0.6919555492297612,-0.6893794833248938,1.2695714730462813,-0.050050557364010796,-0.22723638705083027,-0.3628992999430153,-0.03876801407997364,0.3405638035955411,-0.3579327790875361,0.7985772485081365,-0.3519960832258834,-0.4338094489952841,0.49969395628290364,-0.1329130844775613,-0.08102635889105818,0.3542436734923529,-0.5923522140153267,0.017057673045311184,-0.6480005420159529,0.5834329582710586,-0.6478781055808651,-0.6308852130388442,1.5970031539630356,0.07465071623645085,0.07249785688199796,0.10953674303462392,-0.153293953328575,0.38925083059614773,1
0.04621145570140746,-0.5747037852574909,-0.06874781961809742,-0.06339249806240503,-2.282295734763136,-1.4704639391996859,-1.023849303471402,-1.1006071945310156,-1.1084944297321944,-1.2811752381998918,-0.9924319006135974,-0.9018258520117383,-1.001030716881492,-0.6505262889461083,-1.183040935683923,-1.2166112540695948,-0.8974848917536695,-1.3281949778488231,-0.6274649800479022,-0.913062377168896,-0.2814644639166429,-0.8186520861398859,-0.3818905684753391,-0.34452123239643995,-2.0470744937294123,-1.2971209685008604,-1.1203583929450998,-1.2375603276416867,-0.7162816060939394,-1.2604780553204662,1
-0.04183294510622941,0.0768750101512496,-0.03497185542235591,-0.15753229457393794,0.6860148490423298,0.1697866038006834,0.29881690212209283,0.40524549379232233,-0.5206925426331929,0.3745863009758655,-0.6654374727964122,-0.4781765519995842,-0.6257480109289965,-0.47275247505751344,-0.5756829774502548,-0.4229797941311278,-0.3330197332313703,-0.3615875806889629,-1.0064406961925965,-0.3589241609981707,0.1596213249825266,0.8342123971087883,0.19774184721038793,-0.0198347546514919,1.2682339688590614,0.6522655788507518,0.6462816707467054,1.0368365237985813,0.4501382147216571,1.1944426583545757,0
-0.5530584981828329,0.2863110515326301,-0.6075156387404084,-0.5579819425746577,-1.1550351342481853,-1.2121552748311701,-0.8156878826005892,-0.8052660968725329,-0.2651265047640616,-0.8544764168883311,-0.7679390373660376,0.6425436733430604,-0.8331658368016988,-0.5644996042549689,-0.653686140033503,-1.0831470339052949,-0.7030521092363551,-0.8109083543309856,-0.7352248482168408,-0.8559464245123912,-0.6065840360160311,1.1664137316730543,-0.6755789353130198,-0.5850036912784591,-0.8797247071535685,-1.05373391295435,-0.7565142086349039,-0.6135743667926394,-0.3344853818047848,-0.8404261589399513,1
1 mean radius mean texture mean perimeter mean area mean smoothness mean compactness mean concavity mean concave points mean symmetry mean fractal dimension radius error texture error perimeter error area error smoothness error compactness error concavity error concave points error symmetry error fractal dimension error worst radius worst texture worst perimeter worst area worst smoothness worst compactness worst concavity worst concave points worst symmetry worst fractal dimension target
2 -1.4479872302630423 -0.4560233618080422 -1.3666510291398113 -1.150124106734813 0.7287141142133509 0.7004280273016696 2.8148331109586984 -0.13333285722157465 1.093024439340464 2.5038275953611304 -0.2806956846583113 -0.04146397592709836 -0.4856543481080543 -0.49871449243233296 0.836040926567081 3.3858923181791916 9.015602884564814 3.4751576391503 2.5944339996998016 2.180277098492668 -1.2340441019148498 -0.4929645032337433 -1.2438927323985114 -0.9771940171306405 0.6939837922107868 1.159268932929604 4.7006688036653035 0.9195917239318737 2.1471900760747227 1.8594324679279506 1
3 1.9775079895463534 1.6941866630408013 2.089618672890243 1.8660467150319717 1.2624549288511109 3.3896429556870236 2.0075484691014442 2.5969601722238744 2.129892364409509 1.585220166092388 0.8107294254069954 -0.8236276300394734 0.7662780662882804 0.9047745654826995 -0.9293639838640431 1.235821736219133 0.2263392437582435 0.6283780083136592 -0.3102393007191167 0.5674133757950759 2.1558969141787694 1.2706337582030187 2.062335332407022 2.1242913791087314 0.7334360944232642 3.2070026804576157 1.9468902989968915 2.675218402455425 1.9368785965934083 2.463464878290432 0
4 -1.407089186016914 -1.263515654689588 -1.3497630470419406 -1.1205454395529415 -1.3628382247471538 -0.3189720502025461 -0.36308117437424375 -0.6995107693267008 1.9327414209104659 0.9685624010740183 0.016703220994404477 1.9016983380472787 -0.12774721659024083 -0.37000449104021915 0.5656966323148824 0.7769686174800615 0.37223014469210847 0.6170233317234275 2.588380074521771 0.7667518330796984 -1.296168860914733 -1.0498902700032469 -1.2412120069405608 -1.0028595427130782 -1.4907970325334878 -0.5500384854014827 -0.6356166157470224 -0.9704858095037586 0.6167696176953134 0.05287681858694943 1
5 -0.9876002182979455 1.3800326009687298 -0.986877382938916 -0.8756682045184104 0.014924731437785796 -0.6064659928636161 -0.8161900814446683 -0.8452467694813233 0.3117225521405489 0.06980142861046498 -0.5611313032167582 0.5010248493561313 -0.6777262250498407 -0.5213762533612009 0.04934236376167073 -0.8455047122392131 -0.6990732664836132 -0.9004480897282406 0.12564331209906177 -0.444787215653976 -0.8323039937156061 1.549096641587771 -0.8721654688960513 -0.7469074519731516 0.7685048075010212 -0.7281576060314433 -0.7661092556894977 -0.8107588029321017 0.8222277553424431 -0.137199435316107 1
6 -1.1239270324517066 -1.0261548077906895 -1.1293954757648488 -0.9754962062572263 1.2126391194849206 -0.4497372581367177 -0.9787769572152973 -0.9290772120481413 3.4004206669589037 0.9643095889014774 0.3992794831204711 0.40667896669817827 0.220754333324753 -0.12578551403979812 0.15768008957173774 -0.8097354070025498 -0.8033521036283872 -0.5844636611886521 2.5774830092013166 0.816302758894282 -1.0870155056151267 -1.339752218789714 -1.1140264768800237 -0.9000216491122148 -0.21341915867618116 -0.9898654854141784 -1.201820342438601 -1.352368871926748 1.061659285828863 -0.20757752349595626 1
7 0.11721500473982457 1.9199121743074004 0.19610516791680038 0.011122990415001428 1.2482218404607712 1.0453449525773104 0.9428869196536189 0.6376492745698704 1.794005571781509 1.1301692636305567 -0.12694333780387335 -0.3335733433872988 0.006406078902604803 -0.17132905299393072 -0.4780123507968712 0.9457550265655666 0.5144737731026268 -0.14536209647783813 -0.23880298361835964 0.6320943552935019 0.24659598758236326 1.86501359700673 0.5015573991114366 0.11007499470071004 1.553167262615839 2.5664099859062928 2.0649093777683944 0.8617306538677845 2.131012269960775 2.779335037837786 0
8 0.08029315923984795 0.10247274854230713 0.16727202774970412 -0.01106100997140195 -0.6255642461275276 1.1988519358043814 0.5951142201287987 0.441099129228592 -0.35640008971732273 1.293193730244608 1.7177239034473775 1.0035981088994572 0.7395464133118466 0.8090671285501021 0.24035010803603504 4.5226855502318974 2.2449388003159014 2.581382381833497 2.4491397954270755 7.211398199712337 -0.10337348811697827 -0.5776432747893403 -0.16564538153400407 -0.19914185118633063 -1.426358272253109 -0.044943550472237095 -0.24078042945048866 -0.19042722545552332 -1.0171887998133577 0.2241116945520932 1
9 -0.7660691452980842 -0.9074743843412403 -0.7788668717334367 -0.7254995865181405 0.0021149518864795685 -0.6718485968307017 -0.6750722062584237 -0.520242592145351 -0.2833812217547138 -0.5879668540757947 -0.827491002696982 -0.40469562416021704 -0.8529670612286872 -0.6087230406307208 -0.6360187570552458 -0.5738815505983011 -0.5820289755071262 -0.5181199079685845 -0.6698424562941139 -0.8347643493550119 -0.8178082166156334 -0.5955560918491781 -0.8140830839737918 -0.7358326018930587 -0.5860242351273519 -0.5691226768975499 -0.634657111041563 -0.45445642411639386 -0.36360543280988933 -0.903046032674777 1
10 -0.533177504452076 -0.3140722670939945 -0.5642659284897642 -0.5534313783928313 -0.6988646513377793 -0.7116467035932759 -0.6271122166488635 -0.6605618560110406 0.5782414202040713 -0.07337658119839723 -0.668324840812458 -0.4255605789788029 -0.6841616229886119 -0.5242364756143589 -0.5076802203263971 -0.5509668394310636 -0.3963496470458435 -0.6280980612282565 -0.3090285156835107 -0.49585114683694376 -0.5548134035161285 -0.07445595919934998 -0.6154115417012436 -0.5561739228159946 -0.467667328489921 -0.48006311658256967 -0.3736718311566124 -0.4948069071874035 0.34336469436960537 -0.14551180793577406 1
11 1.6366909541619514 0.2258073062446761 1.587098229977996 1.5901687615087488 0.5223343325534168 0.5052277893709497 0.6566335785284962 1.1708108892948346 -0.035117070681843596 -0.13008074349893753 0.37076672396201893 -0.622598326222143 0.3900548021755029 0.4260173637233156 -0.6506860183956859 -0.13682535223782138 -0.04554834434577746 -0.002617590772069143 -1.207431012103201 -0.15277717955581901 1.5450034506799193 -0.07282752128481901 1.5857619176602782 1.3455360480799712 0.4090504984540091 0.4875053922680383 0.7019329436633492 0.7109873397534467 -0.5690635704570192 0.41086299940728255 0
12 -0.5019359428751726 0.584175643719483 -0.5020687261293137 -0.5369355832337107 -0.6148894298347716 -0.18744878309194454 -0.3596913321767094 -0.2958349458895608 0.4322036842788534 0.17612173292397693 -0.3875283012520054 0.517353944431546 -0.32823461391349745 -0.42654888481419057 0.02367465641590105 -0.030635227316477054 -0.16126635440468395 0.18392352463887884 -0.11651369502214835 0.25270825917115536 -0.505113596316222 0.7853592596728668 -0.4706523669719202 -0.537715839349173 -0.08629507376931184 -0.05066880792105734 -0.1381134259663353 0.08974216643375112 0.11525762816294927 0.4801327712378425 1
13 1.9803481315078906 0.2863110515326301 1.9001437517921826 2.0736662058277995 0.03413940076474464 0.24938281732583123 0.8587686132703594 1.7173853748304893 -0.9405510334181932 -0.877158081808547 0.9352471710989698 0.2615314549167121 0.829641984454643 0.914235300627761 -0.5246809096073618 -0.26425350214343424 -0.0014495038362226762 0.46454624608317435 -1.2413329931001704 -0.6013832712817441 1.948814384179159 1.0410240122541887 1.8151128735071482 2.006511227463298 0.19425463085274666 0.3551883312286387 0.8045999471475028 1.7266013853520668 -1.0236599222589369 -0.537301637409421 0
14 0.2109396894705352 -0.6096097921543874 0.274778450372734 0.07852822235830452 1.4119023569496842 1.1476829413953575 1.0069172722737123 1.0397774590673157 1.260967835654464 0.6921296098588884 0.0773379493313659 -0.4861596651475649 0.060859446076822546 0.018545701196486828 -0.01866039336218683 0.008487450286123395 -0.05914272375097841 0.14823739821243667 -0.5475531676979029 0.033700732097537656 0.5261574030818366 0.2756581924247537 0.5909149143764509 0.376926144249617 2.429885089559769 1.2324250003311952 0.9509244147300576 1.3413684715043142 1.1069571429479146 1.2498584758190239 0
15 -1.2667861731170018 -0.1860835751387069 -1.2554374884952975 -1.0403417458482518 -0.4910615608388117 -0.7914324319125313 -0.7447522958744075 -0.8712986916328574 1.55669425090303 0.1888801694415993 -0.0995133416514384 0.2415736720467607 -0.1470534104065545 -0.38738584165556444 0.15334658053933506 -0.31231850605520056 -0.15761908188133725 -0.3103293263673461 -0.11409212495093636 0.044670021018323326 -1.0621656020151733 -0.009318442618121106 -1.0836449216899189 -0.8708402981075254 -0.3931463131996872 -0.6365534868503208 -0.693186898074585 -0.7461980300184861 0.4420493116646835 0.07171819652486133 1
16 -0.20656117887535716 -0.5444519126135139 -0.2672845847686735 -0.2914895276764515 -1.209120870131479 -0.8979397462009435 -0.841048924226587 -0.8818742243874407 -0.5900604671976708 -0.8204539195080077 -0.8906521780479834 -1.0966863865783563 -0.9059353365708808 -0.5966221003288982 -0.8823620782049061 -0.7253422024597972 -0.5763922816074085 -1.0238896452306157 -0.9241073137713849 -0.6509341970963277 -0.31873931931657273 -0.6476661051141609 -0.40214493860207545 -0.38161319060119586 -0.4852016850287995 -0.5513107648345539 -0.6514484433871022 -0.6811804591833122 -0.25844969306923216 -0.4502988039902378 1
17 1.4606021525466766 1.670915991776203 1.4800037093573535 1.442275425599392 -0.16725879995857032 1.2803432972706041 0.9654858676371811 0.696717494101567 0.1510810426228088 -0.02659564730045244 0.5436478839227601 -1.10793531874142 0.32768094523048985 0.6123718443713847 -0.6753536851955163 0.4304534729998859 0.10200040773506328 -0.34925964610528293 -0.6189894847986599 0.038239748202690466 1.631978113279755 0.850496776254095 1.6125691722397828 1.6391074708379916 0.8123406988482178 2.574679802221256 1.6163409279661356 0.972884814780377 1.2477040561392563 1.5712702171128217 0
18 1.0970639814699807 -2.0733350146975935 1.2699336881399383 0.9843749048031144 1.568466329243428 3.2835146709868264 2.652873983743168 2.532475216403245 2.2175150059646405 2.255746885296269 2.4897339267376193 -0.5652650590684639 2.833030865855184 2.4875775569611043 -0.21400164666895383 1.3168615683959484 0.72402615808036 0.6608199414286064 1.1487566671861758 0.9070830809973359 1.8866896251792757 -1.3592934737640827 2.3036006236225606 2.0012374893299207 1.3076862710715387 2.616665023512603 2.1095263465722556 2.296076127561788 2.750622244124955 1.9370146123781782 0
19 0.31034465812431955 2.636648849257015 0.4708438035089881 0.17636535226757122 0.6006163187002885 1.9777577395861858 2.0866447870439124 1.1702950096482694 1.1550904771086807 1.2364895679440686 -0.5232345980061573 -0.021506193057146555 -0.24952474681621883 -0.3891459784267387 -0.805358956167597 1.2833278447365764 1.382524633659123 0.6948839711993016 0.10021682635133489 0.8877922625504371 0.2590209393823396 2.786709456631113 0.6385722558511252 0.06050185624696043 0.4090504984540091 3.418837206063962 4.307271874426959 1.8423235254802452 1.9223185710908557 3.156162596596032 0
20 0.03769102981679758 -0.2605497231854193 -0.030852835398485264 -0.061970446755584295 -2.177682535094135 -0.9881487881961111 -0.8041373091867685 -0.9074102668924099 -0.6448246181696274 -0.983478386122059 -0.6322327406118856 -0.9939945219929691 -0.5965412048991887 -0.43512955157366484 -1.2907119677966976 -0.6543624873807936 -0.6997364069424035 -1.0629821746341275 -1.1517349004653226 -0.6951896041215665 -0.01018634961715383 -0.06794220754122669 -0.04352344400515123 -0.10702722512333489 -1.6621953677010262 -0.2389661640155871 -0.5550182204884347 -0.5985000353812056 -0.42831665726567836 -0.39820793557365697 1
21 -0.6893853123365938 -0.04180541329819989 -0.7265553174302768 -0.6717460471203167 -0.5849999442150576 -0.9818947999905637 -0.9161276514164218 -0.9657046669542588 0.4541093446676357 -0.21513698694974648 -0.8845165210138862 0.38672118382822646 -0.8697981019916272 -0.6393054170298726 -0.3256728409654846 -0.9148077411352482 -0.712004505430024 -0.6744900255826315 0.3569032538998179 -0.8071520013819997 -0.7577542829157465 0.14212628343323516 -0.7845951039363372 -0.6987406436883027 -0.44136579368160295 -0.9259970578740067 -0.9261066653248489 -0.8709038626039839 0.948414643031232 -0.7960935049683925 1
22 0.32454536793200267 -1.4845870317032674 0.25541905626054096 0.20082463474488796 -1.0347655373498101 -0.7967388461475411 -0.37513394663214367 -0.447503561979681 -1.6524849960536305 -1.0685346295728688 -0.6921456269448357 -1.5495466233365305 -0.663865367950949 -0.4474505089718842 -0.9166968036154814 -0.7331667379803174 -0.44707989214330107 -0.7174755869599369 -1.3322629492741849 -0.80904325809248 0.23002938518239405 -1.5889032197129132 0.19178467952605355 0.0916169112338884 -0.4457493828163227 -0.2268795094014113 0.11519581627494034 -0.16910998911612204 -0.939535330466411 -0.5101478868518414 1
23 0.3444263616627596 -1.1704329696311964 0.43377262329414995 0.14081406959705278 0.7785299235795423 2.0687248407577834 1.492794653920302 1.2546413318616525 2.5899112325739453 1.0663770810424487 0.12137031157606427 -0.9203321597638752 0.25639653729333195 0.10061207815248412 -0.08399637569687343 1.5538332155888428 1.0798010142213534 1.73951421750061 1.9587718560066245 0.2266089165665275 0.37291633088212534 -1.0743168387212079 0.5313432375331081 0.1763483039101552 0.29069359181657933 2.170094942504631 1.7190079314502889 1.8986619358058061 2.8573957644770065 0.8597311208693111 0
24 -0.17531961729845377 -0.09300089008031492 -0.1593662601432569 -0.27527814277869495 0.6788983048471594 0.19631867497573266 -0.03765632341094629 0.12615460500063802 -0.020513297089321404 -0.28459958576790817 -0.6914237849408242 0.20891548189593082 -0.6698057352790454 -0.46307172281605535 -0.5330145808235207 -0.3302031586735323 0.038007353461799766 0.3039586771641844 -0.8950484729168396 -0.5034161736788649 -0.30424354221659994 0.2479747478777313 -0.29580949543670854 -0.3610456118810231 0.4572699789359261 0.017398141748249156 0.343557936174272 0.46736178158886044 -0.3797832389238366 -0.392666353827212 1
25 -1.035882631644069 0.13272462118628411 -1.0400127412468507 -0.9021183588252762 0.7571802909940313 -0.8458231778213824 -0.5083421900241416 -0.46994432660526003 -0.27242839156032267 0.2271554789944625 -0.12008583876576455 2.5312756703993875 -0.1727950021616393 -0.3766050039321225 2.9997953211306045 -0.6493324288318877 -0.43912220663781754 -0.07561194028070109 1.721457989027838 -0.08885270274158523 -0.991757541815306 0.6160017165616727 -1.0002445741092385 -0.83990103439171 0.8386422336565352 -0.9648015805826768 -0.7392431239366352 -0.7193992186203816 -0.02872484625118149 -0.3583085469992546 1
26 0.14561642435519184 -0.9423803912381372 0.15656257568763962 -0.008501317619124687 1.1984060310945799 0.560187079662123 0.13635557606248358 0.5602673275851151 1.1112791563311162 0.09390069758819483 0.38375988003422473 -0.8702562681992695 0.46925969988345617 0.05330840242717736 -0.5110136888128609 1.0418850343890993 0.41334485313710667 0.7192154210355123 0.4513444866770899 0.3956872664834653 0.014663553982799601 -1.2111056235417879 0.06370557431286632 -0.13532961977246144 -0.2046519804067416 0.34755465463021196 -0.056555526002288165 0.38209283623125484 0.40484035760260445 0.04345612961799309 1
27 0.09165372708599445 0.21649903773883633 0.10383911938209232 -0.03466706166462607 0.16793043163394378 0.30813240349915477 0.36661374607277963 0.28066055914686616 0.5052225522414624 0.26401318448981276 -0.7073043090290762 -1.0268341465335258 -0.7029727861942509 -0.46021150056289717 -0.9990334752311323 -0.5314055006297633 -0.3943602256694726 -0.7288302635501686 -0.644415970546387 -0.6880028286217413 0.42675778868202363 0.7234786189206999 0.3168852008970738 0.2872725959821976 1.0008350316411627 0.9627017605201119 1.0770992834979658 1.0535857809223963 2.9965248970569527 0.961696225003895 0
28 -0.8768346817980152 -0.5723767181310315 -0.8670139002442736 -0.8011527160410038 0.8069961003602226 -0.498442560222344 -0.732448424194468 -0.6221288223419454 -0.35640008971732273 0.08539507324311324 -0.7524194342797914 0.3087043962456886 -0.7544559697044203 -0.5895815532442014 -0.6276850858390869 -0.9011148039743381 -0.7073625222184919 -0.6996325237467157 -0.4071021035676007 -0.6040310306764165 -0.7991707889156685 0.12421346637339742 -0.8140830839737918 -0.7193082224084755 0.19863821998746584 -0.6747218698424552 -0.7939348921478195 -0.6135743667926394 0.15731992405921194 -0.2846055097715382 1
29 1.6139698184696574 0.6656229931455752 1.5665031298586416 1.7209974817362566 0.13875260043374565 -0.03109907795326128 0.7420073820219539 1.188092857454763 -0.8383246182705409 -1.254240761107136 1.2741519919823439 -0.3626028457435921 1.484567482377281 1.5855074617343239 -0.18233369604754976 -0.36597246391019567 0.0668539634191777 0.55376156214928 -0.8454062864569916 -0.680059550437724 2.28842973337852 0.8472399004250337 2.369129468150238 2.6674864068466255 0.8254914662523765 0.3863591773388819 1.2713989863534898 1.8910486371131627 -0.21476961656157492 -0.43201158422697017 0
30 -1.0983657547978765 -1.6451546634289926 -1.079967235478398 -0.9479084109049039 0.2561755796540529 -0.5480954362785077 -0.873440749669693 -0.7541940118625945 -0.042418957478104695 0.4100264024137028 -0.772631010392112 -1.2140744367316172 -0.7514857860403721 -0.6261043912460661 -0.45301133714839403 -0.6610692321126679 -0.7757986175656504 -0.7894966784751202 -0.14072939573426924 -0.5385935484937984 -1.0124657948152669 -1.6328710434052423 -1.0136482013989907 -0.8544917098940549 0.08466490248475525 -0.5678503974644787 -0.8925240006337706 -0.7254898575744962 0.05863530676413387 -0.3727166595400108 1
31 -0.35140841891372804 -1.4357186220476121 -0.4151574036256382 -0.39529927307436535 -1.9079655100971868 -1.2707153462103862 -0.8311304970560235 -0.9597720510187611 -1.7328057508124994 -0.9905664064096267 -0.909420070152281 -1.3568633014466345 -0.8668279183275789 -0.6085030235343241 -0.7700241902110828 -0.6722471399991252 -0.509746665498984 -0.9555993760236514 -0.5269698220926 -0.6482864377016553 -0.5486009276161403 -1.6507838604650802 -0.591582870963906 -0.5336726401135836 -1.5872359934973206 -0.8878286748818724 -0.7368443621729868 -0.9280036027988089 -0.9573309171917532 -0.819922306478105 1
32 -0.20656117887535716 0.2863110515326301 -0.13712355201435386 -0.2792598864377929 1.0133758820201568 0.8065563120018667 0.699320480275225 0.8460646517821447 1.1112791563311162 1.4817350698939018 -0.05259361139069434 -0.5193621584675753 0.11234262958699215 -0.14668713819749174 -0.5423482925856186 -0.15806337722209013 0.08707974741228168 0.250429487524521 -0.4228423090304796 0.0794691444911607 0.029159331082772376 0.6485704748522869 0.1798703441573848 -0.06360678115852603 1.0972739926049955 0.835473817212997 1.1437848605273928 1.3779123052290023 1.1069571429479146 1.4936880726625947 0
33 -0.3315274251829711 -0.23262491766790247 -0.3208318450789948 -0.36884911876749943 -1.6261503599684488 -0.4804386547821319 -0.6055176663534596 -0.7761188968416085 0.2277508539835488 -0.539768316120336 -0.6116602434975595 0.1490421332860758 -0.23219867544260422 -0.44283014994755193 -1.1373724174193718 0.6512171537574174 0.08707974741228168 -0.18591451287152252 0.6995554189763304 -0.034006258137656724 -0.44298883731633876 -0.1737906719857234 -0.3261910506268133 -0.45474235938403207 -1.7130450016637746 -0.14290906681871543 -0.5363078787319769 -0.7388892632735486 0.49543607184070887 -0.6359417924961378 1
34 1.0289005743931006 2.0339384635039304 1.04338758682704 0.9291993140984699 0.25688723407357067 0.5128083811352492 1.0169612491552955 0.8772753703993295 -0.3600510331154528 -0.5156690471426072 -0.0558419004087459 -0.25374221190749247 0.0034358952385566666 0.07949043689839379 -0.7756910866380708 -0.2977872258028061 0.16831445361409283 -0.11292016336289057 -0.9894897056941115 -0.4686170502060275 1.0894218846807768 2.09462334295556 1.1359957574930393 0.9781322914546645 0.3389130722984951 0.775676683858653 1.76410465260688 1.2545768664081804 0.11525762816294927 0.37705935075396935 0
35 1.832660749507982 0.6632959260191158 1.7600970709805726 1.8063205601455008 -0.38858332442836185 0.5772434111317978 0.9441424167638169 1.2043430663215617 -0.17020197641267035 -1.780171866444641 1.6419304930261756 0.47743837869164285 2.06078311320264 1.5701062649865498 0.3610216672460173 0.5942098235364852 0.7624883046901971 2.5716498018990133 1.3582224783460222 -0.5408630565463747 1.4435330109801099 0.35219477440769703 1.5202330731326013 1.36311517519123 -0.6386273047439874 0.24004704253569983 0.5464931813789302 1.1784438794817471 0.013337449645081196 -1.4017883898548082 0
36 0.3273855098935393 0.7261267384335299 0.28631170643957254 0.15844750580163006 -0.4120679202724231 0.016279620573612513 -0.4400431472293755 -0.4201619407117342 -0.30893782554162713 0.05279017992030378 -0.7210193071052936 -1.3086017537792969 -0.7534659084830709 -0.4577913125025327 -1.2503769991104878 -0.644302370282982 -0.469295097512776 -0.9387295708038788 -1.068190733008505 -0.46143027470620246 0.3170040477822307 0.38313509478378077 0.19476326336822053 0.1626365847633735 -0.09944584117347056 0.4811439951026826 0.43567038789837215 0.12171802094285317 0.44366709227607803 0.7633075984811715 0
37 -0.0986357843369634 -0.8143916992828492 -0.14824490607880508 -0.19621209011946206 -0.5828649809565065 -0.7042556266230835 -0.9824178988348712 -1.0055047816867513 -1.4845415997396294 -0.6120661230535246 -0.17638951507865736 -1.3309181837156971 -0.31239363437190676 -0.24195454093729568 -0.20300120066362393 -0.7778783695261464 -0.8008321698849841 -0.9958273730861863 -1.0015975560501722 -0.46559103946925917 -0.2069147531167834 -1.3316100292170603 -0.2788315675363556 -0.3058471527516708 -1.1032877530242706 -0.936175293338576 -1.1371017500553657 -1.2407579130925968 -1.685332192319379 -0.8781089148157758 1
38 0.2762629545858791 0.6353711205015982 0.21793597404331608 0.1647045315516411 -0.4127795746919398 -0.6354617563620629 -0.45536021197378995 -0.40184821325867537 -0.7141925427341064 -0.8445531884857366 -0.3416913339972786 -0.6948092133334224 -0.38070785864501633 -0.22941356644267946 -0.7886916137352789 -0.8482991892108274 -0.5259936067393463 -0.41754991531224755 -1.161421180750171 -0.8192560443290736 0.3791288067821139 0.9791433715020218 0.31092803321273943 0.26266181802643546 0.28631000268185897 -0.30894153283450027 -0.0047422719074819136 0.5846065814555674 -0.3652232134212839 -0.28903877516869464 0
39 -0.5076162267982459 -1.0098653379054712 -0.5634421244849896 -0.5284032753927862 -0.6789383275913037 -1.1111438895718753 -0.8500885034200119 -0.732011187060298 -0.8784849956499765 -0.8105306911054132 -0.07894084453711224 -0.560729199325293 -0.13071740025428918 -0.22413315612915688 0.22034929711725337 -0.9494033660438335 -0.62413839464031 -0.24268789582268052 1.108800761011176 -0.8937715587219971 -0.6397172408159687 -1.4374584936615564 -0.6895782793712053 -0.6108450081320093 -1.2084938922575423 -1.1884683049165845 -1.0697445197321176 -1.0152520058165013 -0.9751265039170951 -1.34138514881856 1
40 -1.684571055659048 -0.5700496510045714 -1.6582776468298694 -1.2883474937577886 -0.7372939899916989 -0.8511295920563923 -0.9154999028613228 -1.1091965906463235 -0.15559820282014816 0.31646453461781326 -0.8982315190901037 -0.47200778274887195 -0.8772235611517477 -0.7069606741718812 0.6423664075035457 -0.5040196263079432 -0.5309671601802735 -0.9536528600367544 0.6293298869111793 -0.45878251531153 -1.5127771872943252 -0.6053267193363622 -1.4893280409930842 -1.1222218157985246 -0.11698019771234847 -0.7542393344094019 -0.9757610338323716 -1.354652861534541 0.33042244947844723 -0.5461681682037324 1
41 -0.19236046906767404 -0.2302978505414423 -0.22115156050132007 -0.28381045061961935 0.41558616962586453 -0.4300277195495383 -0.6159382923681023 -0.5447468753571902 -0.6338717879752364 -0.8076954829903863 -0.39763408930816574 0.283303581683932 -0.3797177974236668 -0.3326015846527673 -0.3856752737218293 -0.590648412427987 -0.4368012150320515 -0.3941917234694854 -0.2061117876569963 -0.7481447920150146 -0.24211878321671712 0.04279157064686176 -0.28806517744707383 -0.31850412427177716 0.06713054594587614 -0.5036002860943858 -0.6432926533906974 -0.5404866993432634 -0.3603698715871002 -0.9928196569671823 1
42 -0.7973107068749876 1.8128670864902499 -0.832414132043758 -0.7371604072340706 -1.9592046283024116 -1.2547961035053565 -0.9098501658654323 -1.1812133893068022 0.20949613699289657 -0.9239390157064928 -1.025636632798124 -0.5881257921740447 -0.8945496325253626 -0.6981599903160102 -1.1293720930518591 -0.5034607309136203 -0.5160464998574917 -1.4065422463214214 -0.6262541950122962 -0.6592557266224409 -0.8675080238155398 1.3146015818953485 -0.8173595262001762 -0.7528843551909795 -1.768278224761242 -0.7065288556692338 -0.7833803403877665 -1.4278927949577698 -0.08372938703860233 -0.7246071004392547 1
43 2.312644741007682 0.0885103457835487 2.505639695301203 2.429179032532984 2.5790156049575876 3.2683534874582265 4.238566833923125 3.440423394357706 2.7176942515085107 1.0763003094450432 2.9228391291444873 0.5953707320140839 3.5562705880509315 2.852805936979752 -0.17533341222597612 3.420543832627209 2.3908297012497663 2.1093522550110113 1.280732236067235 0.4698245295342927 2.5120788657780984 0.3798782189547194 2.9648462365836674 2.6006857238238426 1.6539898127143908 2.833588666851234 3.30362995251645 2.6858770206251257 1.8673140303034357 0.7727282874501278 0
44 1.4975239980466533 0.9797770552176467 1.5294319496438036 1.4223667073039017 0.4511688906017153 0.9752244787575371 1.4576407348347609 1.0302336856058623 0.6074489673891147 -0.39659030631147385 0.42995776829095744 1.0616571136120438 0.5796515260639159 0.44163857756748653 1.189721932980869 0.3935663769745768 0.24059676362223484 0.6154012350676802 0.15954529309603152 0.05828706933378158 1.1142717882807296 0.790244573416459 1.1211028382822035 0.9429740372321471 0.610695598651114 0.27058174892940756 0.35315298322886574 0.6363770125655422 0.031133036370422997 -0.43256574240161444 0
45 -1.8084012451820475 1.2217920363694643 -1.8143885057345759 -1.3477892383828953 -3.1120847879199744 -1.1507524815403418 -1.1148728439607505 -1.261819584082589 -0.8200699012798888 -0.5610323769830381 -0.07027874048897484 0.38309249603368983 -0.1574490532307233 -0.4661519621656102 0.04934236376167073 -1.1635161916089227 -1.0575006844597676 -1.9134474512424755 0.7528299605429967 -0.38275399555022244 -1.410892582534517 0.7641895667839677 -1.4327349479919085 -1.0758129202248017 -1.859018519849939 -1.2075524964126518 -1.3058306525103973 -1.7450628184932908 -0.04813821358791784 -0.7512066928221901 1
46 0.20809954750899856 -0.5467789797399732 0.12031519947757607 0.05350011935825967 -0.5067179580681859 -0.6367883599208154 -0.6947835108885309 -0.519726712498786 -0.8711831088537154 -0.8176187113929808 -0.36948225115171923 -0.995264562721057 -0.6207977048222494 -0.3612038071843481 -0.4283436703485636 -0.4934006138158086 -0.5730765793134572 -0.5701892106180753 -0.6093032045138115 -0.6153785709392983 0.008451078082811059 -0.8365649031997237 -0.14777387848100138 -0.18121114153284668 -0.46328373935520123 -0.6314643691180362 -0.7205327821801772 -0.5313507409120914 -0.6078903051304927 -0.8686882258468195 1
47 -0.8512734041441845 -0.6212451277866864 -0.8855494903516927 -0.7786843053932361 -1.0568268243548378 -1.2508162928290991 -0.9429952895746568 -0.9084420261855399 -1.0975415995378024 -0.18678490579947682 -0.9516478273869509 -0.4531386062172814 -0.9395974180967609 -0.6739801114220045 -0.3860086205704757 -1.0739252598989677 -0.7458909828742081 -0.9095318310004259 -0.05476365820623972 -0.536324040441222 -0.950341035815384 -0.8772758510629916 -0.9802880623667191 -0.8077312317781067 -1.2873984966824965 -1.2218656400347023 -1.0861040749602 -1.1292992202322985 -0.8376151519485434 -0.7268237331378326 1
48 -1.251733420720857 -0.24891438755312104 -1.2867420406767163 -1.0431858484618932 -1.9115237821947715 -1.5331933360492667 -1.1148728439607505 -1.261819584082589 -0.5791076370032796 0.23707870739705703 -0.18505161912679477 6.655279348890291 -0.31486878742528024 -0.4102676196808291 -1.7760649794257979 -1.0474895077474962 -1.0575006844597676 -1.9134474512424755 2.112541555528593 -0.7969392151454061 -1.3048663271747167 -0.7893402036783331 -1.3406967072689435 -1.0139343927931712 -2.6826949182637616 -1.4438784011056174 -1.3058306525103973 -1.7450628184932908 -1.604443161749643 -1.01720261665154 1
49 -1.2841110390823756 -0.5700496510045714 -1.2492589584594913 -1.0648010283255687 -0.8219808659142234 -0.22857349341327104 -0.057493177752073195 -0.6706215091190588 0.8192036844806805 1.1982142583912034 -0.7968127175264954 -0.4970457285311749 -0.7113883065757208 -0.6219240664145275 -0.3623409943165842 0.515964468331284 0.6096344289390341 -0.5330431972014604 -0.3683569824282069 0.08930367938565821 -1.1429277887150215 -0.4245701108234531 -1.0726241614739005 -0.9263903397791029 -0.3975299023344064 0.5555723419373446 0.7767743106891807 -0.5086631108080144 0.13143543427689652 0.792677981737329 1
50 -1.1494883101055366 -0.9726322638821147 -1.1619357339534286 -0.959569231620834 -0.2626204921738498 -1.087644055102546 -1.0948225551108899 -1.1998108505654719 -0.39656046709675724 -0.3285453115508261 0.06975860828924574 0.09279747247075786 -0.09210501262166187 -0.30597951598875744 2.449773020864111 -0.7532869721759404 -1.0045489188253627 -1.523495415200807 0.5857416256293616 -0.12289532353023039 -0.9109953551154581 -0.732344876669758 -0.9493107904081804 -0.7797804196712054 0.8649437684648539 -0.9692545585984259 -1.272631789701503 -1.5864016737386037 0.05216418431855479 -0.3865706139061228 1
51 -0.44513310364443864 -0.05111368180403884 -0.4139216976184769 -0.48090676174497365 -0.6234292828689764 -0.01025245060143676 0.17828917954309362 -0.12920582004905437 -1.0172208447789333 -0.13575115972899127 -0.1623135960004341 0.4738096908971062 0.17125127225728243 -0.2826577037706992 0.9373783685555747 0.9429605495939523 1.0217762240772026 1.2755945739568615 0.7080309142255728 0.15511941291037254 -0.6003715601160429 -0.5287901373534188 -0.5433298127207985 -0.5857068563629093 -0.9980816137909989 -0.34392921724395686 -0.16018203419190094 -0.33431857074648225 -1.2614736721339612 -0.6686371248001625 1
52 0.28478338047048946 2.448156412013772 0.19528136391202577 0.1837600190630391 -0.9365572274564626 -1.1047003865722205 -0.5265468981220113 -0.5553224081117734 0.14743009922467876 -1.3974187709159982 0.22712016516374112 0.7441469315900867 0.08759109905325688 0.1109528816831327 -0.06999580805372618 -0.6264177176646504 -0.23222238349524552 -0.4394482201648371 1.3279528524558717 -0.7734876319354503 0.20517948158244134 1.8291879628870533 0.08455566120803601 0.08933162470942466 -0.7701349787855771 -0.9898654854141784 -0.5636537628375691 -0.7439140404106932 0.5374983677369716 -1.2355409374614643 0
53 -1.035882631644069 -1.0028841365260917 -1.008296287063045 -0.9137791795412061 0.12807778414099064 -0.057631149128310556 -0.31951542465037636 -0.6897090560419651 0.4139489672882012 0.9005174063133715 -0.2799738426542999 -0.16302501704407607 -0.149528563459928 -0.4305091925493325 0.1076780622747837 0.7372870444831384 0.6875534328468939 0.13688272162220494 0.1292756672058802 0.3915265017204088 -0.8571538973155592 -0.66883579800306 -0.7700000431097184 -0.7738035164533774 0.014527476329241236 0.28839366099240343 0.10416151216215738 -0.3274666019231031 0.19291109750989555 0.6934836684759672 1
54 -0.38264998049063187 -0.6514970004306643 -0.43657630774976663 -0.43341024809716105 0.13875260043374565 -0.9854955810786062 -0.6562397496054551 -0.5230799302014587 -0.8091170710854976 -0.8884989142686555 -0.6076901124754965 -0.6235054981707772 -0.6905970209273831 -0.48419336407014585 0.3070194777653073 -1.1103093500693861 -0.5319618708684588 -0.5083873280341005 0.24187867551724304 -0.7144804225684654 -0.5817341324160776 -0.9635830605331189 -0.6431123714333977 -0.5725225110294654 -0.12136378684706885 -1.1683026759024069 -0.8073679580242509 -0.8494343602907297 -0.8376151519485434 -1.0997721846735669 1
55 0.17401784397055858 1.426573943497926 0.1124890614322215 0.03899519602868808 -0.9685816763347278 -0.6102562887457661 -0.5994912802245096 -0.48103573900640834 0.10361877844711319 -0.8502236047157903 -0.36839948814570217 0.30507570845115195 -0.3411054097910397 -0.2844178405418734 -0.755356928870643 -0.7689360432169807 -0.4119334478274154 0.14499320490094178 -0.22306277815548076 -0.44213945625930356 0.049867584082733694 1.0768496463738644 0.004133897469523375 -0.09524920995879167 -1.1558908226409068 -0.742152679795226 -0.5329496122628691 -0.07775040480440203 -0.2891875246857321 -0.7972018213176818 1
56 -1.1994748086285822 -0.2861474615764777 -1.1273359657529134 -1.0025151810868203 0.044814217057500653 0.47490542231375016 0.526061879067914 -0.3033152007647537 -0.5206925426331929 2.6030598793870734 0.09357939442162345 1.8944409624582055 0.1316488234033058 -0.28287772086709595 1.9397523424351797 3.498789187832411 2.9113949614001484 2.076910321896064 2.2106151434126833 5.34283656975781 -1.0373156984152203 -0.2096163061053989 -1.0184139355464585 -0.8620507345518961 -0.09944584117347056 0.2591312340317671 0.3665860491052972 -0.23610701761138334 -0.46390783071636194 1.7873919052241685 1
57 -0.0872752164908164 1.2101567007371652 0.01486828686648147 -0.1677710639830473 1.4119023569496842 1.208327675509756 0.588836734577809 0.4815956814839473 1.6917791566338567 1.3569859128327157 0.2523846353041418 0.5645268857605226 0.0534339869167021 -0.028317940336026467 0.8797093637397538 0.7311391951455866 0.09503743291776512 0.7078607444452806 0.4598199819263323 1.2104406573583748 -0.05367368091707141 1.1826981108183603 -0.03756627632081685 -0.16275305806602505 2.0616636022433186 0.9054491860319102 0.3162120520686798 0.5709026438088097 1.2137306632999663 1.9037651218995093 0
58 -0.35140841891372804 -1.2053389765280933 -0.28911539089518923 -0.4058224527448386 -0.6234292828689764 0.5734531152496478 0.6101801854511736 -0.235219087418169 -0.7872114106967153 0.1832097532115436 -0.7314860161634595 -1.4091164056879621 -0.23417879788530307 -0.5277567491567073 -0.5133471167533854 1.701381599690079 1.647449246945846 0.3088249671314266 -0.9543769396615362 1.4222614089321675 -0.3891473795164402 -1.2990412709264463 -0.06735211474248833 -0.424506260752667 -0.30547453050529344 2.1033002722683953 2.4012157770319065 0.631809033349956 -0.4234633154314938 1.8760572131672852 1
59 -0.10999635218310991 -0.3210534684733741 -0.15854245613848228 -0.19877178247173932 -1.20413928919486 -0.7690696862078469 -0.7531641265127335 -0.9190175589401233 -1.23627744866676 -0.9919840104671396 -0.560048540210741 -0.8336065214744492 -0.640103898638563 -0.4151079958015582 -1.401049774698643 -0.5341999776013777 -0.46730567613640506 -0.9680895202729062 -0.878097482418355 -0.6880028286217413 -0.1924189760168106 -0.5239048236098265 -0.2999795128157426 -0.2719194374269416 -1.5455918967174835 -0.45716208678728887 -0.5554979728411643 -0.828573921872887 -0.8910019121245697 -0.7650606471883021 1
60 -0.21508160475996752 -0.6747676716952616 -0.24174666062067446 -0.2883610148014458 -1.7941008029744643 -0.5892201465998341 -0.09892458238860409 -0.5395880788915398 -1.4224755619714124 -0.647506224491362 -0.8708015229376688 -0.13943854637958802 -0.8133646123747105 -0.5649396384477625 -0.3740081340192069 0.4036264940723884 0.5860929426519788 -0.2297111225767015 -1.024602471726687 0.1063249897799808 -0.41606810841638964 -0.47668012408843596 -0.4548658726084343 -0.4368116497305481 -1.3093164423560948 -0.007411307196638316 0.2811901303194124 -0.3780189052422549 -1.379571656765776 -0.42480752795659166 1
61 0.15981713416287496 -1.2355908491720702 0.2574785662724763 0.0034439133581696383 0.47963506738239564 1.5020756063763736 0.7055979658262145 0.3632013025972718 1.0017508543872027 1.5965609985524953 0.5089994677302109 0.5336830395069607 0.954884728955344 0.20049983991662046 0.9783800309390769 1.5068860024657222 0.6925269862878211 0.6494652648383753 0.7249819047240578 0.6237728257673885 0.039513457582753035 -1.1948212443964805 0.2036990148947219 -0.12548530859015652 -0.05122636069155361 0.6948869398586351 0.2384921709264703 -0.057955828203529444 -0.11932056048928594 0.45076238798168494 1
62 -0.34572813499065475 -0.6887300744540209 -0.3887956754728646 -0.3938772217675446 -1.2062742524534111 -0.9604796282564169 -0.6286188131811011 -0.6486966241400448 0.06345840106767868 -0.8686524574634664 -0.7614424593299345 -0.5592777242074785 -0.6797063474925396 -0.5409577749405139 -0.5810165270285966 -0.5369944545729921 -0.2879261820336302 -0.5476420671031867 -0.24364612376078365 -0.6214305924128352 -0.49475946981624136 -0.5988129676782394 -0.4900131619460064 -0.492185900131013 -0.9936980246562792 -0.6594545166456013 -0.4595475022952267 -0.4911525238149346 0.19938221995547464 -0.8010809285401932 1
63 -0.1440780557215504 0.9169462428032326 -0.19684934236048174 -0.2323321933127086 -0.2775652349837072 -0.6987596975939662 -0.7414880033878929 -0.6316725958033986 -0.5389472596238452 -0.6786935137566584 -0.21356437828524696 0.21617285748500412 -0.39605380757593234 -0.2001512926219083 -0.3910088233001712 -0.2508400126796855 -0.3873972508521746 -0.4431790424730561 0.03967757457103225 -0.45840426396943407 -0.19034815071681455 0.5557495137240361 -0.2883630358312907 -0.2650635778535507 -0.4720509176246408 -0.6524569797637101 -0.802570434496954 -0.6527067220728262 -0.41860997359731017 -0.7988642958416153 1
64 0.9152948959316337 0.8773861016534158 0.7838893253231747 0.7912603373368583 -0.6931714159816433 -0.7853679585010914 -0.7519086294025354 -0.5300443054300866 -0.9040415994368888 -1.3789899181683232 -0.016140590188116317 0.1817003234369057 -0.14309316552115683 0.08961122333264533 -0.43834407580795426 -0.8058231392422897 -0.6443641786334139 -0.6691371066186651 -0.7788131094986588 -0.8385468627759725 0.7415232342814317 0.9433177373823457 0.6236793366402894 0.593149407718099 -0.36684477839136914 -0.6721773109763128 -0.7248505533547445 -0.4911525238149346 -0.7259882897623076 -1.0415855763358968 0
65 0.24786153497051233 -0.8795495788237231 0.22576211208867067 0.08421642758558748 -0.9002628520610942 0.09966612998091035 -0.29817197377701204 -0.28680705207467255 0.2533074577704611 -0.5284274836602286 -0.6257361625757827 -1.3067874098820287 -0.2920973793342438 -0.45009071412864554 -0.9740324615826552 0.368416084230048 0.15074123145614993 -0.03992581385425891 -0.8030288102107797 -0.22351018052778193 0.029159331082772376 -1.0368627666870014 0.2066775987368893 -0.12724322130128238 -0.8227380484022127 0.6897978221263508 0.3262868514760032 0.3546849609377389 0.08613757715784384 -0.018055427767544072 1
66 -0.6609838927212266 -0.47231283169325994 -0.6882484312082773 -0.6342038926202492 -0.3907182876869121 -0.7963598165593261 -0.7566795184212876 -0.8393141535458253 0.12917538223402653 -0.36965582921871715 -0.2215046403293728 -0.13943854637958802 -0.3173439404786537 -0.33612185819511575 -0.5260142970019471 -0.3262908909132722 -0.368166177547256 -1.0378396764700433 -0.6989012971486592 -0.2738176090265576 -0.583804957716074 -0.1933319269600921 -0.6332830447542462 -0.5600413307804716 -0.3493104218524906 -0.5195037790077751 -0.6106694934050786 -0.9295262625373375 -0.19697402983623313 -0.15160754785686326 1
67 0.11437486277828796 -1.2355908491720702 0.07788929323170597 -0.030400907744163853 0.9635600726539654 -0.2259202862957661 -0.24920758647929364 0.41349956813736255 -0.5900604671976708 -0.22506021535234103 -0.3579327790875361 -0.8991043361658357 -0.3579364505539799 -0.32204076402572207 -0.3026719084088856 -0.7247833070654744 -0.5220147639866044 -0.07074565031345888 0.18497177884375843 -0.0877179487152969 -0.09716101221698974 -1.424430990345311 -0.12394520774366428 -0.22972953235992072 0.10219925902363315 -0.6772664287085975 -0.6471306722125348 -0.11733955800614741 -0.47685007560752013 -0.3239507401712963 1
68 -0.11851677806771978 -0.14186929973597065 -0.13341643399286995 -0.23858921906272 0.19924322609269213 0.050392283512961544 -0.43878765011917753 -0.28603323260482494 -0.35640008971732273 0.7984499141724003 -0.3106521278247864 0.058324938422659844 -0.28813713444884614 -0.3055394817959639 -0.10066371812919135 -0.1658879127426103 -0.3658451859414899 0.27962722732797396 -0.22306277815548076 -0.018119701769622305 -0.24004795791672104 -0.007690004703590717 -0.2332592347511982 -0.3141093424939625 0.44411921153176614 0.014853582882106786 -0.3775098499784499 0.21003228577751554 -0.08372938703860233 0.35267639106961246 1
69 -0.7859501390288411 -0.4001737507730069 -0.802345285869501 -0.7254995865181405 -0.5536871497563084 -0.9705239123441141 -0.765467998192673 -0.7201459551893021 -0.7689566937060631 -0.519921859315147 -0.7708264053820834 0.6135141709867672 -0.7460404493229503 -0.58694134808744 -0.550015270104485 -0.8680281966304245 -0.6718845076732111 -0.9609522949876177 -0.8635680619910823 -0.8079085040661916 -0.6666379697159178 1.733110125929742 -0.660983874486401 -0.6315883781232946 0.5668597073039174 -0.5856623095274748 -0.43699914171693127 -0.4206533779210575 0.11687540877434381 -0.35997102152318733 1
70 -1.5340435316976035 -0.8050834307770098 -1.488162119844002 -1.2058685179621857 1.3265038266076432 -0.4232051869616685 -0.5961014380269752 -0.7655433640870253 -0.5937114105958018 1.918357119608057 -0.8614175768855199 -1.1438593279073328 -0.7485156023763239 -0.6902173731360866 0.4066901855105686 -0.18712593772687905 0.023086693139018163 -0.2264669292652069 -0.4192099539236611 0.004197127414045138 -1.375274387374584 -0.986381191336549 -1.2742742875886162 -1.0480378993890132 1.7548123628129426 -0.11364663985807909 -0.12755887420628212 -0.14627009303819202 0.04083972003879207 0.983862551989674 1
71 0.5631172927010841 -0.288474528702937 0.5408671439147925 0.44968361343851704 0.06047061428687482 0.17736719556498315 0.0711952760432122 0.2711167856854129 0.18028858980785217 -0.045024500048127566 1.0817810979132934 0.20891548189593082 0.8251867089585709 0.7424019483418791 -0.09032996582115425 -0.34082217116566665 -0.040574790904850215 -0.020460653985290372 -0.21700885297745076 -0.13651237184568848 0.7560190113814046 -0.0663137696266963 0.6475080073776269 0.6195180983849871 -0.04245918242211527 -0.19507252357463256 0.038435439838190096 0.1064914235575665 -0.17594288188810134 -0.1311036953950178 0
72 1.239071079546815 -0.41180908640530595 1.208148387781875 1.1749297799170932 0.34442072767416304 0.5184938249584745 0.7570733473443289 1.10684181312077 0.07441123126206982 0.5914797217754302 1.3972260536662955 -0.3118012166200789 0.9826064431531276 1.2196190304264856 0.31101963994906356 0.37232835199030806 0.41301328290771167 0.6381105882481436 -0.5293913921638119 0.5522833221112335 1.3420625712803012 -0.4555104311995368 1.1657815959147106 1.2646720633681812 0.3871325527804108 0.34755465463021196 0.3891344096835924 0.7871203266798801 -0.6321570143014136 0.5820978753724271 0
73 -0.11851677806771978 0.3584501324528832 -0.07286683964196806 -0.21896491102859386 1.6040490502192788 1.140102349631058 0.061025749450609096 0.28195025826327874 1.403354628181551 1.6603531811406034 0.6436230014783456 0.29056095727300535 0.49005098553179377 0.23372242147253355 0.588030871174189 0.2689327040405782 -0.23255395372464063 0.43534850627972166 -0.6880042318282048 0.6116687828203147 0.16376297558251873 0.40104791184361854 0.09944858041887174 0.028859427446694775 1.4479611233825667 0.7247855065358073 -0.021053851900291392 0.6241957346573126 0.4776404851153671 1.7264345060132755 0
74 0.0973340110090682 1.3265100570601545 0.15821018369718823 0.0042971441422619515 -0.5686318925661658 0.35361595408495355 0.15192374022893768 -0.2584336715135957 0.2204489671872877 0.08681267730062618 -0.5448898581265008 -0.2501135241129558 -0.12428200231551782 -0.37902519199248697 0.032341674480706406 1.1765788244209097 0.21208172389425214 -0.028571137264027192 0.016672658894517363 0.8760664709454593 -0.01018634961715383 0.9856571231601445 0.18582751184171917 -0.1260126824034944 0.07151413508059652 1.0555781591343056 0.6323688525175446 0.08974216643375112 0.46308045961281435 1.0171120424683429 1
75 -0.16679919141384392 -1.1471622983665986 -0.18572798829603052 -0.25195650134683506 0.10174657061886144 -0.4368502521374081 -0.2782095697248652 -0.028609288968872486 0.26791123136298334 -0.7283096557696301 -0.4882252608116023 -0.7769989918796776 -0.40001405246133 -0.3691244226546321 0.4736929020884875 -0.6079741696519958 -0.26604254689355056 0.21960965106532102 -0.08987642423881505 -0.5654493937826185 -0.24004795791672104 -1.0450049562596546 -0.225217058377347 -0.29776075428049176 0.509873048552561 -0.4896052123306031 -0.15922252948644167 0.2161229247316304 0.1233465312199229 -0.6292918944004043 1
76 0.37850806520120006 -1.7219478786021658 0.43377262329414995 0.23324740454040072 2.0879740554908484 0.9695390349343124 1.4362972839613963 1.5677802773266292 0.5636376466115491 1.118828431170449 0.05676545221703974 -1.0134080016937403 -0.030226186287323462 0.09467161654977126 -0.5493485764071923 -0.12676523514000965 0.36924601262755213 0.22772013434405783 -0.31750401093275316 0.14112411325281818 0.5220157524818445 -1.4065181732854732 0.5283646536909411 0.3892315332274981 0.9087796598120504 0.6618076745987854 1.491125563903687 1.0368365237985813 0.5099960973432616 0.9450714797645609 0
77 -0.362768986759875 0.4841117572817123 -0.38467665544899393 -0.39928101673346333 -1.4838194760650467 -0.40141098563930655 -0.34575531425351264 -0.7802459340141288 -0.845626505066802 -0.23498344375493554 0.33972751778952676 1.0543997380229704 -0.15546893078802448 0.019865803774867533 -0.3433402239437417 1.079889921203054 0.6583752526601208 0.2617841641147527 0.7443544652937542 1.4888336451410737 -0.3870765542164441 0.21703442750164811 -0.465588774440236 -0.4127282455881238 -1.6810448009803207 -0.3859144385353047 -0.4240458281932298 -0.8922210989433853 -0.6677481877520977 -0.13498280261752918 1
78 1.4435613007774568 -0.16746703812702818 1.3811472287844522 1.4138343994629772 0.6361990396761393 0.4237364279047269 0.5461498328310804 1.0580911865203744 0.3847414201031578 -0.45187686455449927 1.163349244366587 -0.04327831982436648 0.9756760146036816 1.3676905363015157 -0.19433418259881857 -0.13514866605485265 -0.08102635889105818 0.5813372052969853 -0.24485690879639008 -0.44894798041703254 2.0440723479789797 0.40104791184361854 1.8717059665083242 2.2227344909317805 1.316453449340977 0.6160056150082241 0.5551287237280648 1.438818694770149 1.0293036736009684 -0.05573818364336865 0
79 -0.47069438129826874 -0.4606774960609617 -0.47447129196937876 -0.49711814664273 -0.5038713403901179 -0.531418134397048 -0.6617639368903259 -0.6507601427263049 -1.0427774485658456 -0.33138051966585297 -0.909420070152281 -0.7907880054989167 -0.7985136940544694 -0.6254443399568759 -1.0817034936954297 -0.6577158597467307 -0.6112071556938992 -0.7624076643241391 -0.6274649800479022 -0.8525421624335265 -0.45748461441631155 -0.21775849567805258 -0.430143626718447 -0.4804078849664698 -0.209035569541462 -0.023314800110027675 -0.3328928811745888 -0.14170211382260592 0.21717780668081643 -0.406520308193324 1
80 -0.4735345232598054 0.13970582256566375 -0.4752950959741528 -0.522146249642775 -0.8433304984997334 -0.05573600118723555 -0.25736831769558 -0.46246407173006704 -0.11178688204258258 -0.043606895990614625 -0.14787675592020516 -0.32087293610642037 -0.1421031042998073 -0.2643962847697668 -0.17033320949628064 0.45895713811035177 0.5048582364501676 0.36235415677109 0.8303202028217841 0.32381951148521426 -0.5817341324160776 -0.4245701108234531 -0.5698392089160862 -0.5788509967895185 -1.1997267139881034 -0.24469142146440734 -0.3923821729130702 -0.5840347678651834 -0.34904540730733663 -0.3494420162049425 1
81 -0.9279572371056753 0.5097094956727698 -0.9662822828195616 -0.8372728192342506 -1.569218006407088 -1.1763369787448537 -1.1148728439607505 -1.261819584082589 -0.5499000898182362 -0.47030571730217535 -0.32075791588094654 0.15811385277241763 -0.3717973076528715 -0.43270936351330025 0.8460413320264719 -0.8069409300309355 -1.0575006844597676 -1.9134474512424755 1.1499674522217818 -0.5926834904135346 -0.9544826864153761 -0.14773566535323196 -0.9883302387405702 -0.8232008636360143 -1.4145225815893663 -1.1500454660378359 -1.3058306525103973 -1.7450628184932908 -0.7162816060939394 -0.9989153968882716 1
82 -0.7831099970673044 -0.09300089008031492 -0.8155261499458876 -0.7363071764499781 -0.6568770405862759 -1.0283259245469 -0.8136790872242726 -0.7013163480896784 0.7352319863236804 -0.46038248889958083 -0.5037448638978482 1.3737242639421956 -0.4514972359714995 -0.502674800167475 -0.16766643470710968 -0.644302370282982 -0.6012600488120446 -0.3036787300787817 1.6488108868914753 -0.3279075509462939 -0.8095249154156492 0.0753603289374759 -0.8331460205636616 -0.7405789662130985 -0.9016426528271668 -0.9999164929354405 -0.9446251061402148 -0.8005569826839595 0.5925029085243925 -0.7761438106811912 1
83 1.329955622315989 0.1606494267038018 1.191672307686392 1.2716292687809034 -0.5074296124877026 -0.8623109649087344 -0.10796416158202918 0.24532280335716133 -0.9551548070107154 -1.8198647800550192 -0.27744739564025994 -0.7055138423273055 -0.24902971620554418 -0.07914188960368156 0.1766808599445802 -0.8013519760877068 -0.1877919727562957 0.45967995611593243 -0.15041567601911768 -0.8014782312505588 0.7643023125813888 -0.2242722473361753 0.6475080073776269 0.6247918365183647 -0.3536940109872104 -0.87955885856691 -0.24557795297778556 0.2252588831628022 -0.5399435194519145 -1.4727206362093017 0
84 -0.18099990122152704 0.7005290000424724 -0.20838259842732024 -0.2670302451991347 -0.6291225182251122 -0.5185311283977383 -0.5183861669057249 -0.38895122209454946 -0.009560466894930265 -0.7963546505302779 -0.6185177425356682 0.24701670373856546 -0.5599089397092604 -0.44305016704394873 -0.8620279204374783 -0.6515680104091791 -0.3628610538769336 0.007114989162414985 -0.5003325513092667 -0.6955678554636625 -0.23176465671673646 1.0003130643909208 -0.24606714527251713 -0.3195588718984527 -0.7087647308995021 -0.5290458747558088 -0.21103578358124805 0.20698696630045854 -0.04813821358791784 -0.8188139901288165 1
85 -1.2951875927323686 -0.7864668937653315 -1.3081609448008449 -1.067360720677846 -0.8340789910460119 -1.2028690499199028 -0.9074647213560562 -0.8318338986706322 -0.9515038636125854 0.17470412886646397 -0.6856490489087327 -0.701703720143042 -0.8173248572601082 -0.6093830919199111 1.53306918708662 -0.8427102352675988 -0.6642583923971226 -0.3525038394167778 0.39806994511042365 -0.09641772958350625 -1.192627595914928 -1.061289335404962 -1.2367441311773104 -0.9575053947660308 0.7904227531746195 -1.012193989464577 -0.9622799927206673 -0.6453979553278885 -0.23256520328691674 -0.1200205319021279 1
86 0.8556519147393631 -0.6724406045688023 0.9898403265167186 0.7332406440185723 1.5826994176337676 2.3359407004493513 1.6836302146703839 2.3519173401054827 4.484750856203646 1.6064842269550899 2.312882635754815 -0.4369909455315933 2.183055674039293 1.5635057520946463 0.3293537166246132 0.6992821576691837 0.17991941164292288 1.9747182325839796 0.30726106743996967 1.380275509959505 1.238521306280496 -0.6965192425500825 1.3444966264447396 1.0203221965216853 0.9701499076981249 0.8946348108508052 0.5426551625570927 2.1377195147548065 1.8851096170287776 1.2166089853403548 0
87 -0.8711543978749413 -1.0377901434229886 -0.8921399223898859 -0.7869322029727964 -1.3486051363568132 -1.0738094751326988 -0.7743820276750781 -1.0749163881320767 -1.0099189579826722 -0.09322303800358628 -0.7928425865044325 -0.9593405535551441 -0.7935633879477223 -0.6019025106424208 -0.9273639027721648 -0.60294411110309 -0.41425443943318147 -1.2373575651269701 -1.04518581733199 -0.0975524836097944 -0.7432585058157738 -0.8675052235758068 -0.7884672629311544 -0.674833030816991 -0.8928754745577273 -0.4221744023778323 -0.30842551118537476 -0.8990730677667642 -0.5027345653898355 0.42305447924946094 1
88 0.13709599847058146 -0.837662370547447 0.0292848569500299 0.028472016358214492 -1.4361386299574066 -1.31127151214939 -0.9332024121151133 -0.7776665357813036 -0.6557774483640186 -1.4527053291590246 -0.32184067888696377 -0.5540161269054003 -0.4514972359714995 -0.2516352931787538 -0.6700201356171748 -1.087450528441581 -0.8809395373068516 -0.8876335261478364 -0.6783179515433564 -1.0969681796959996 0.039513457582753035 -0.6395239155415072 -0.10607370469066114 -0.0699352669185792 -1.3706866902421697 -1.1666487126394145 -1.0781401859048871 -0.8599407124865774 -0.5998014020735191 -1.4959952795443696 1
89 -1.8279982247166506 1.4312280777508457 -1.797088621634318 -1.377936726087495 -0.688901489464542 0.2948663679116303 0.0467130823943531 -0.9099896651252352 0.8228546278788105 2.085634398394649 -0.6697685248204809 0.4756240347943747 -0.7034678168049254 -0.6294046476920178 2.80978761740218 2.184826115779357 2.0101870779041375 0.2990923871969422 0.06147170521194113 1.4207484035637832 -1.5720027908742136 1.011712129792636 -1.5718348134211142 -1.154918992225466 1.193712953568827 0.33165116171682263 0.32196908030143595 -0.9837329492289579 -0.17917844311089043 1.2554000575654687 1
90 1.4037993133159432 1.2846228487838784 1.4964797894528372 1.2773174740081863 -0.3949882142040145 2.172957977516906 1.5304595672262393 1.3075189956345687 1.8195621755684224 0.08964788541565404 2.0786449054531007 0.8149063435835513 2.952333243027788 1.420494639436742 -0.16433296622064622 4.198526221524636 2.1663566559492518 2.3656435266190967 3.9698858001482766 1.4566822810629085 1.6195531614797787 1.2201521828525674 2.0891425869865263 1.3543256116356006 -0.3361596544483313 3.1179431201426353 2.1685358859580073 2.050927909658672 2.862249106311191 1.1002357686650148 0
91 -0.12419706199079353 -0.7492338197419749 -0.17007571220532078 -0.21555198789222396 -0.9493670070077689 -0.7694487157960618 -0.7939677825941654 -0.7379438029957958 0.2204489671872877 -0.8658172493484395 -0.846980736805291 -1.2886439709093451 -0.7396050513841791 -0.5794607668099497 -0.9370309613829092 -0.5369944545729921 -0.6698950862968402 -0.8858492198265142 -0.13467547055623924 -0.6119743088604336 -0.2959602410166157 -0.8903033543792369 -0.2413014111250498 -0.3691320103522021 -0.9586293115785222 -0.2841320838896128 -0.6600839857362365 -0.6811804591833122 0.6830986227624969 -0.384353981207545 1
92 1.4293605909697733 1.7011678644201809 1.4099803689515484 1.3740169628719965 0.4013530812355238 0.7762339449446677 1.2969371047294287 1.230910868119661 0.3299772691312011 -0.08471741365850567 0.8334674485333559 -0.3916323480998853 0.7202402194955326 0.6449343746381075 0.11701177403688187 -0.055226624666683044 0.26480139036808065 0.18392352463887884 -0.7497542686441134 -0.13197335574053584 1.5429326253799227 1.6647157335194516 1.5649118307651084 1.4826532395477892 2.0090605326266826 0.8259317214649634 1.4546643850962309 1.1053562120323712 0.5779428830218397 0.7344913733996582 0
93 1.6111296765081213 0.5283260326844477 1.5541460697870286 1.6356744033270123 -0.18006857950987654 0.4976471976066497 0.4821194802109873 0.9799354200657714 1.0309584015722462 -0.9905664064096267 1.9855272869356242 -0.05597872710524497 1.792476522216949 1.8495279774104547 -0.07899617296717795 0.34717805924577927 0.08509032603591064 0.8635820233970284 -0.19037158219411746 0.09459919817500308 1.9591685106791397 0.4824698075701542 1.8776631341926588 1.983658362218662 0.12850079383195182 0.44043105324440573 0.4294336073128864 1.0261779056288804 0.27380012807963183 -0.0773503524545034 0
94 -0.7575487194134739 -0.2628767903118795 -0.757036065606921 -0.7161140478931236 -0.557245421853894 -0.5192891875741685 -0.6950346103105703 -0.8743939695122477 -1.462635939350847 -0.05211252033569523 -0.27925200065028855 -0.28640040205832235 -0.19358628780997691 -0.38298549972762896 -0.12966489396142478 0.05822914038085822 -0.32108320497314496 -0.6470765921005008 -0.19400393730093587 -0.14521215271389784 -0.7432585058157738 -0.6623220463449373 -0.7318741699299789 -0.6869626285237594 -0.7876693353244557 -0.47942697686603397 -0.7176542680637992 -0.906229568537849 -1.1207267589426204 -0.4192659462101467 1
95 -0.5871402017212729 -0.0906738229538556 -0.6305821508740853 -0.5960929175974534 -0.8895880357683392 -0.8793672963784089 -1.0205850109848875 -1.042880262080388 -0.9369000900200632 -0.3285453115508261 -0.5853130103511417 -0.1176664196123681 -0.6470343271880089 -0.49101389405844587 0.04634224212385337 -0.8114120931855184 -0.8641289266765176 -1.0221053389092938 -0.08745485416760304 -0.3937232844710081 -0.5444592770161478 0.22517661707430123 -0.6171986920065434 -0.558986583153796 -0.15204891079010668 -0.7574200329920798 -1.0896542423703997 -0.9695722136606414 -0.03357818808536602 -0.17266555849335377 1
96 -0.2775647279137743 -0.9191097199735394 -0.2742869188092541 -0.3298849129606114 -0.17935692509035883 -0.36691929311174243 0.05186062054616444 -0.3634151795895803 0.03790179728076534 -0.10314626640618081 -0.48425512978953916 -0.7695601819008774 -0.518326368412585 -0.38606573907718383 0.5143612176233431 -0.29666943501416043 -0.04720619549275313 -0.36661608032178 0.8654329688543595 -0.1194910614513659 -0.3104560181165885 -0.8430786548578464 -0.28568231037334013 -0.3573539951876589 0.6764494356719076 -0.1823497292439211 0.13774417685323562 -0.26473302069572213 1.5340512243561224 0.13212143756110997 1
97 -0.14691819768308703 1.2566980432663617 -0.1733709282244174 -0.23403865488089357 -0.26902538194950343 -0.48745070216410935 -0.4513426212211566 -0.4660752292560223 -0.18480575000519153 -0.21230177883471962 -0.6286235305918284 -0.384374972510812 -0.5514934193277904 -0.45119079961062947 -0.9843662138906926 -0.7678182524283349 -0.4620005524660827 -0.7974449520882824 -0.8853621926319911 -0.8812892644328272 0.12855894548258537 1.6223763477416535 0.1768917603152178 -0.05604775650068466 0.645764311728871 0.21714601274041923 0.5153092784515004 0.27855197401130555 0.9209123726375211 -0.27407650445329335 0
98 -1.0983657547978765 -0.6305533962925262 -1.0758482154545275 -0.9501836929958171 -0.5401657157854853 -0.44878968416618037 -0.5677272033365026 -0.6329622949198113 -0.5206925426331929 0.61557899075316 -1.0494574189305017 -0.3517167823599821 -0.9293502844557944 -0.7263001769451578 1.0763840044411064 0.2996719507283356 -0.19110767505024717 -0.13400741988760642 0.26972673133618197 0.7924729243422306 -1.1263611863150527 -0.5922992160201167 -1.0776877540055847 -0.9197102714768246 0.6019284203816745 -0.18871112640927684 -0.45043220759336267 -0.4762304583773538 -0.33933872363896844 0.6009392533103389 1
99 -1.361646914632327 0.6167545834899202 -1.3575891850872954 -1.1117287214506528 -0.2818351615008096 -0.9151855924647254 -0.6131761987256668 -0.9311407306344016 -0.4367208444761928 0.4199496308162973 -0.37489606618180504 1.2013615937017048 -0.36882712398882334 -0.49453416760079427 1.299726393034168 -0.39894729217524466 0.267453952203242 0.1660804614256576 2.0641101541043505 0.31322847390652486 -1.3303374783646686 -0.1021394037463718 -1.322527345831724 -1.0279976944821783 -0.9673964898479617 -1.0896121929669564 -0.9223645969735572 -1.354652861534541 -0.753490560156018 -0.5550346989980445 1
100 -0.8711543978749413 -0.5048917714636971 -0.8534211341654998 -0.8202082035524016 1.6396317711951294 0.05228743145403655 -0.6047643680873409 -0.16093241831280392 0.5198263258339836 2.4045953113351852 -0.8202725826568674 -0.3390163750791036 -0.7663367043606133 -0.6168636731974015 1.859749098760053 -0.11167505949329236 -0.46067427154850216 0.1709467513928998 0.20071198430663728 1.7089759262409794 -0.948270210515388 -0.8039961449091095 -0.9287585618972273 -0.8253103588893653 1.4830298364603238 -0.3254811654644251 -0.7032616974819085 -0.29640434325711834 -0.19535624922483769 1.8206413957028373 1
101 -0.9847600763364088 -0.9633239953762752 -1.008296287063045 -0.8682735377229426 -0.6006563414444318 -1.1621233691867914 -1.1148728439607505 -1.261819584082589 0.4249017974825923 -0.4320304077493112 -0.26806344958811096 1.2848214129760478 -0.3519960832258834 -0.4038871238853226 0.5573629610987237 -0.8555648293370246 -1.0575006844597676 -1.9134474512424755 1.465982346514961 -1.056419635823302 -0.9793325900153296 -1.0547755837468393 -1.014541776551641 -0.8302325144805178 -1.085753396485392 -1.1854784482488674 -1.3058306525103973 -1.7450628184932908 -0.3086008920224685 -1.236095095636109 1
102 -0.6496233248750801 -0.13721516548305118 -0.5782705965709247 -0.6094601998815683 1.0347255146056669 0.8956282652323896 0.41432263626030025 0.07482458016741707 1.786703684985248 2.153679393155298 0.27909278945256516 -0.3390163750791036 0.3014443228647304 0.01458539346134487 -0.49667977432106725 0.4841074308548806 0.3367521301468276 -0.2199785426422174 0.26488359119375793 0.7081228750548095 0.11406316838261259 0.3977910360145572 0.361563958529581 0.014268751944350134 1.3734401080923335 2.056225933244763 2.0313267130773163 0.608969137272026 3.009467141948111 3.1173715243709177 0
103 -1.0273622057594591 0.20951783635945753 -0.9609275567885297 -0.9120727179730214 1.1272405891428783 0.49196175378342494 -0.30181291539658595 -0.4704602062518251 0.40299613709381005 2.129580124177568 -0.2583185825339565 1.1668890596536068 -0.40842957284279996 -0.4494306628394552 1.6130724307617466 0.6702195971643947 0.4647382386933546 0.5910697852314697 0.2818345816922428 1.133655634912875 -1.0580239514151812 -0.47668012408843596 -1.0318175628362103 -0.8898257553876848 -0.10382943030818974 -0.31403065056678486 -0.6845513557254506 -0.8107588029321017 -0.8376151519485434 0.3499056001963904 1
104 -0.41389154206753526 -0.463004563187421 -0.44151913177841184 -0.4692459410290437 0.4582854347968856 -0.5249746313973933 -0.7139926166745587 -0.7183403764263245 -0.38195669350423606 -0.4192719712316898 -0.7044169410130303 -0.48325671491193556 -0.6435691129132859 -0.5000345950107137 -0.07732943872394621 -0.8922283672046046 -0.6168438495936166 -0.8633020763116258 0.0033540235028509165 -0.7606270863041845 -0.5299634999161751 -0.7453723799860034 -0.5528612810157332 -0.5382432131625109 0.2643920570082607 -0.8464795933070601 -0.8164832527261151 -0.8920688329695323 -0.34419206547315295 -0.8348845771935063 1
105 -0.8654741139518681 -1.0657149489405058 -0.8962589424137571 -0.8025747673478246 0.30172146250314197 -0.8890325508778911 -0.818198876820985 -0.5955610205438462 -0.8967397126406287 0.5517868081650521 -0.7141618080671848 1.0671001453038487 -0.7371298983308056 -0.46769208184038763 2.639780724592536 -0.2385443140045826 -0.5757291411486183 0.6543315548056172 1.2444086849990537 0.37450519132608623 -1.0186782707152555 -1.442343807405149 -1.0499869242734299 -0.8509758844718031 -0.4720509176246408 -1.0933018033228628 -1.116904176005446 -1.0894055350828473 -1.6157676260294058 -0.5993673529696025 1
106 -0.8768346817980152 -1.0145194721583908 -0.8773114503039507 -0.8025747673478246 -1.1735381491556285 -0.6358407859502777 -0.6696735686845726 -0.7268523905946476 0.6987225523423759 -0.047859708163154435 -0.8697187599316515 -0.3372020311818355 -0.7846528369555775 -0.6305047331740017 -0.5816832207258891 -0.36038350996696705 -0.4862051792119285 -0.7844681788423034 -0.21095492779942032 -0.7012416255951034 -0.8654371985155438 -0.7893402036783331 -0.8200402516581262 -0.7620255012888341 -1.0024652029257188 -0.35665201157466836 -0.560775248721191 -0.71665843109103 0.48734716878373524 -0.6137754655103588 1
107 -0.48205494914441577 -0.5328165769812148 -0.5506731624109904 -0.5050816339609262 -1.4795495495479443 -1.3228319145899472 -0.9463851317721913 -0.8235798243255915 -1.2399283920648903 -1.0189184875598962 -0.09879149964742683 1.7837659847248377 -0.18764592048188042 -0.2019114293930825 0.10534463433425915 -0.8209133148890071 -0.7272898930051401 -0.09669919680541693 1.6693942324967779 -0.31542525665712395 -0.6977003492158594 -0.8903033543792369 -0.7595749996621332 -0.6410811067633743 -2.1163352020579826 -1.3177318953166133 -1.198510051204766 -1.3138455805419726 -1.6173854066408007 -1.3646597921536283 1
108 0.1654974180859487 0.5353072340638273 0.14750073163512373 0.005719195449082689 1.2339887520704307 0.6094609261300721 0.5084849195251432 0.8334256004413013 0.786345193897506 0.677953569283753 0.06290110925113696 -0.12129510740690476 -0.06487832903455311 -0.0054361623107616495 -1.127372011959981 0.17168490542839968 -0.20470205445544823 0.14985949486818398 -0.28723438504260185 0.11842903272705461 0.3314998248822035 0.8179280179634809 0.25135635636939646 0.18443470238133425 0.19425463085274666 1.1115584541894359 0.4150410367309957 1.0474951419682819 1.289766352035519 1.4105643464659228 0
109 0.2109396894705352 0.214171970612377 0.17097914577118806 0.0739776581764781 -0.03489107792840564 -0.3959150566101892 -0.2581216159616988 0.01524048098915551 -1.1851642410929335 -0.7538265288048729 -0.623931557565754 0.7604760266655015 -0.6287181945930447 -0.4069673632348775 -0.5420149457369725 -0.6577158597467307 -0.34362998057201505 0.005492892506667677 -0.11530290998654236 -0.7500360487254949 -0.05367368091707141 0.4564148009376628 -0.10011653700632676 -0.17048787399497883 -0.4720509176246408 -0.7345190031967991 -0.49025165286992667 -0.19651786440963795 -0.8602640805080697 -0.995036289665761 1
110 0.7164849586240649 0.4864388244081716 0.7426991250844659 0.7102034128480763 1.120124044947709 0.7838145367089672 0.7997602490910576 1.1034885954180975 0.6695150051573325 0.07121903266797792 1.449559598957125 -0.5717966970986299 1.2816049320006508 1.3698907072654836 -0.3310063905438262 -0.37212031324774714 -0.14866668568766828 -0.08047823024794329 -0.7097983624691137 -0.3759454713924933 2.1103387575788553 0.9579736786131221 2.0772282516178575 2.3457883807105913 2.1098830827252346 0.6586269760161075 0.9466066435554904 1.4449093337242633 1.1522550000669673 0.6480426981551198 0
111 0.5687975766241574 0.3235441255559867 0.664437744630919 0.40929735632480796 1.468834710511046 1.8545731234163139 1.0470931798000451 1.389801799261692 1.2865244394413775 1.5256807956768208 0.5920112981915273 -0.26099958749656577 0.4890609243104445 0.3045679265122953 -0.0049931725676859795 -0.02616406416189413 -0.0004547931480373892 0.19041191126186835 -0.4422148696001764 0.13128957835832067 0.971384842580999 0.9449461752968767 0.8798375470666647 0.7636669406973083 2.0397456565697203 1.0752984903469085 0.9893046029484328 1.411410819476633 1.3027085969266763 1.6765602702952727 0
112 -0.3570887028368018 -0.7166548799715378 -0.39497420550867113 -0.4058224527448386 -0.15017909389016168 -0.7988235088827236 -0.6252289709835668 -0.8452467694813233 0.7242791561292892 -0.7240568435970903 -0.6159912955216282 0.003894621504610026 -0.65346972512678 -0.4861735179377168 -0.5076802203263971 -0.20668727652817928 -0.19906536055573074 -0.886660268154388 0.6523348025876946 -0.6195393357023548 -0.4906178192162492 -0.33174914969520236 -0.5358833531153806 -0.49763542953550327 -0.2967073522358551 -0.4673403222518582 -0.35016396587285775 -0.8649654896237221 1.1376949745644145 -0.7384610548053667 1
113 -1.3241570407400427 0.4003373407291601 -1.3122799648247157 -1.096370567336989 0.5721501419196082 -0.5043175188396765 -0.842178871625765 -0.8738780898656827 -0.3454472595229316 0.8778357413931546 -0.6138257695095938 1.440854988141124 -0.5970362355098635 -0.5750604248820141 1.1597207166026966 -0.4431000283267509 -0.48918931127648485 -0.3995446424334517 0.2721483014073944 0.16722345585744636 -1.2133358489148889 0.9579736786131221 -1.198320399613354 -0.9666465408638852 0.9833006751022837 -0.5589444414329808 -0.8542877381212145 -0.7527454668941593 -0.03681374930815512 0.4524248625056185 1
114 2.1649573590077744 0.3956832064762398 2.2790935939883044 2.377985185487437 -0.16725879995857032 1.738969099010742 1.6409433129236553 1.5445656932312022 -0.3308434859304094 -0.12157511915385594 2.74959704818174 0.24520235984129735 2.9706493756227528 2.562383369736008 -0.4513446029051623 1.3481597104780287 1.041007297382121 0.618645428379175 -0.15768038623275413 0.30982421182766023 2.468591534478181 0.4075616635017413 2.6401805977874484 2.642875628890863 -0.22656992608033988 1.3882792308824106 1.4800912597909042 1.0581537601379827 -0.10961387682091776 0.25680702685611784 0
115 -0.27472458595223764 0.2909651857855496 -0.3257746691076401 -0.3304537334833395 -1.6375368306807214 -0.9777254745201989 -0.8888833641251271 -0.9378471660397469 -0.3600510331154528 -0.5553619607529843 -0.2940497617325232 0.4647379714107647 -0.2673458488005083 -0.31390013145904133 0.2536839819818895 -0.2771080962128602 -0.6128650068408749 -1.0109128719846368 0.038466789535426246 -0.4137706056020992 -0.36636830121648317 0.4531579251086014 -0.3565726058169181 -0.40833346381030916 -0.9016426528271668 -0.5703949563306211 -0.9365172913790831 -1.1063070581805157 -0.3458098460845475 -0.5350850047108433 1
116 -0.9137565272979917 -1.6149027907850158 -0.9403324566691753 -0.8281716908705978 -0.7956496523920932 -1.0827166704557512 -0.9596934011402892 -0.9086999660088225 -1.3239000902218903 -0.35264458052855496 -0.8296565287090162 -0.3444594067709088 -0.7915832655050234 -0.6434857418614115 -1.187707791564972 -0.7415501688951603 -0.7020573985481695 -0.3898120624989673 1.0736879949786002 -0.13878187989826482 -1.0145366201152632 -1.7680313903112914 -1.0377747305205447 -0.8585349091296444 -1.720497103192798 -1.1399944585165738 -1.1674700739831552 -1.258725298007235 -1.2258824986832775 -0.9706533299814033 1
117 -0.533177504452076 0.7331079398129096 -0.5679730465112476 -0.5357979421882542 -1.0276489931546398 -0.991939084078261 -0.8996806392728292 -0.9365574669233345 -0.9770604673994977 -0.4306128036917972 -0.6542489217342349 -0.14125289027685614 -0.6381237761958641 -0.49057385986565233 -0.6483525904551614 -0.7504924952043261 -0.7454930985989338 -1.1752312632118458 -0.5402884574842665 -0.5280025109151086 -0.43470553611635454 1.0279965089379428 -0.43252649379218067 -0.4529844466729062 -0.2967073522358551 -0.46988488111800036 -0.7157352586528803 -0.7804578741353811 0.3223335464214736 -0.10616657753601591 1
118 -0.39117040637524175 -0.6026285907750085 -0.3896194794776386 -0.4581539408358418 1.1485902217283894 0.13946423674348413 -0.6277399652039626 -0.48928981335144883 1.1258829299236375 0.48657702151943116 -0.07857992353510636 -0.38800366030534866 -0.18368567559648277 -0.2577957718778635 0.156013355328506 -0.5515257348253865 -0.401986340945561 -0.4212807376204663 -0.3017638054698743 -0.06275336013695719 -0.3767224277164638 -0.6411523534560383 -0.4060170975968931 -0.4508749514195551 0.663298668267749 -0.35856043072427507 -0.6231430545760505 -0.5200830588469795 0.2754179086910264 0.09000541628812897 1
119 0.12857557258597158 -1.3100569972187834 0.09560107933435102 0.011122990415001428 0.1394642548532634 -0.28732307958659464 -0.08260311995603135 -0.14003929262692003 -0.2651265047640616 -0.9069277670163306 0.04088492812878787 -1.0761843005392242 -0.15101365529195215 -0.07100125703700091 -0.6960211898115908 -0.41124299085034755 -0.05118503824549497 -0.5106582633521468 -0.6238326249410842 -0.5726361692824435 0.10163821658263625 -1.3739494149948592 0.03689831973336182 -0.032667517442710674 -0.44136579368160295 -0.39100355626758926 -0.11028778950801336 -0.3463475826808587 -0.4444944633796256 -0.7462192692503895 1
120 -0.5274972205290027 2.4853894860371284 -0.5992775986926665 -0.5389264550632599 -1.378494621976528 -1.333444743059967 -1.1148728439607505 -1.261819584082589 -0.40386235389301833 -0.45329446861201317 0.14555201871044768 4.409121604072104 0.008881231955978288 -0.11456464212356245 0.09934439105862475 -0.9632639718230406 -1.0575006844597676 -1.9134474512424755 1.315845002099811 -0.24923127179031387 -0.583804957716074 2.0148298851435547 -0.660686016102184 -0.5654908601849619 -1.6722776227108818 -1.285861295518181 -1.3058306525103973 -1.7450628184932908 -0.7955528560522807 -0.9152375125169554 1
121 -0.5587387821059061 -0.2931286629558565 -0.5634421244849896 -0.5676518914610387 -0.3907182876869121 -0.49199905722268905 -0.7487698866270408 -0.8679454739301847 -1.2691359392499335 0.006009246022357024 -0.6704903668244923 -0.048721351516171664 -0.5881256845177187 -0.5297369030242783 -0.7100217574547381 -0.4928417184214857 -0.5942970739947466 -1.076283367211256 -0.7267493529675983 -0.7326364869890761 -0.6065840360160311 0.35708008815128933 -0.548989122020916 -0.5857068563629093 -0.5071196307023977 -0.16771851576360292 -0.5286318410883017 -0.8786694272704801 -0.8004061978864648 -0.36883755231749943 1
122 0.04053117177833421 0.7587056782039671 0.07418217521022204 -0.07135598538060135 0.529450876748587 0.20958471056325745 0.7219194282587875 0.32167299104878644 0.41759991068633123 -0.42210717934671665 -0.7307641741594482 1.1505599645781917 -0.4807040420013072 -0.4795730050458135 -0.3093388453818128 0.01966535817258061 0.48264303108069256 0.15634788149117348 -0.7303817080744166 -0.014715439690757821 -0.20277310251679126 1.3992803534509461 -0.08820220163765843 -0.26770044692023953 0.2468577004693828 0.12108891554354756 0.725440808947104 0.3287997453827515 -0.32801425935920575 -0.024151167688633284 0
123 0.2649023867397326 0.1257434198069045 0.3431541827689905 0.14422699273342268 0.5365674209437574 0.9657487390521624 1.0194722433756915 1.0119199581528038 0.1583829294190699 0.006009246022357024 0.258520292338239 -0.45803733473990577 0.41579639393058776 0.1496758906489652 0.736370218821819 0.6523349445460631 0.5562516220064153 1.089053458545913 -0.6734748114009321 -0.10398275642542743 0.40604953568206303 -0.23567131273789033 0.4836858960584339 0.25387225447080614 0.9964514425064424 1.0562142988508412 1.1903208387421722 1.4753625284948366 -0.10799609620952322 -0.08898767412203758 0
124 3.718515011968341 0.6004651136047017 3.7125125622953696 4.536659069241317 0.9279773516781146 1.6498971457802192 2.4896593594174408 3.582290297163091 -0.042418957478104695 -0.7226392395395763 1.555309452544802 0.4792527225889114 1.4622911048969192 1.9441353288610679 -0.8033588750757189 -0.006043829966271063 -0.026648841270254013 0.09957449854001518 -0.5802443636592661 -0.3963710438656805 3.4895084073762583 1.1680421695875847 3.381847974487068 4.105459004547587 0.6501479008635902 0.9487066867563291 1.2560469110661399 2.347846558671762 -0.07240492275883872 -0.17321971666799804 0
125 -0.3230069992983613 -1.1774141710105757 -0.324950865102866 -0.3998498372561918 -0.12384788036803249 -0.0889010901560472 -0.6455680241687729 -0.7206618348358672 -0.5827585804014097 1.3584035168902286 -0.8076403475866671 -1.0444332823370286 -0.962418329248865 -0.5704400658576819 -0.6033507658879025 -0.1357075614491755 -0.02532256035267336 -0.7268837475632716 -0.502754121380479 0.7209834206860756 -0.527892674616179 -1.4276878661743724 -0.5921785877323398 -0.5354305528247094 -0.7964365135938952 -0.36110498959041726 -0.6101897410523489 -0.8543068714540214 -0.7583439019902021 0.9395298980181159 1
126 -0.24348302437533428 -1.054079613308207 -0.2977653329453184 -0.2934803995060003 -1.6233037422903809 -1.019418729223848 -0.705455236325213 -0.5787949320304825 -1.5539095243041081 -1.3633962735356748 0.0019054599121698557 -0.11585207571509958 -0.08170936979749308 -0.08772255636315583 -0.8533609023726729 -0.8438280260562444 -0.6072283129411573 -0.15833886972381717 -1.1929015916759285 -0.8926368046957088 0.018805204582791717 -0.5418176406696642 -0.08224503395332405 -0.08786597657206295 -1.392604635915768 -0.8299399606771353 -0.6581649763253177 -0.22088042022609666 -1.4135450496050654 -1.212820452301041 1
127 1.9973889832771101 0.8727319674004963 1.8630725715773444 2.130548258100629 -0.14804413063161048 -0.04057481765863604 0.26240748592635355 0.9647169704921027 -0.15559820282014816 -1.4201004358362141 1.034139525648538 -0.16302501704407607 0.711329668503388 1.1804559872678595 -0.7710242307570218 -0.7203121439108915 -0.48885774104708973 -0.2297111225767015 -1.1759506011774437 -0.6838420638586846 2.671532413877799 1.6142341581690003 2.4048724742562437 3.048953465160939 0.3389130722984951 0.036482333244316385 0.20778802035177016 1.313960596210798 -0.12740946354625957 -0.4813316617703289 0
128 -0.07307450668313328 0.3281982598089062 -0.09057862574461313 -0.19934060299446774 -0.04129596770405826 -0.048155409422935794 -0.6518455097197623 -0.6507601427263049 -0.6995887691415842 0.5787212852578079 -0.4806459197694819 -0.30817252882554225 -0.39110350146918516 -0.37880517489609017 -0.24766967838223636 -0.21004064889411653 -0.19044453459145688 -0.44366567146978025 -0.6831610916857805 -0.0741009003998388 -0.2524729097166974 -0.1509925411822933 -0.24100355274083293 -0.3374895815519365 -0.2616386391580969 -0.32166432716521176 -0.6452116628016162 -0.7028022274704193 -1.0543977538754368 0.05398513493623796 1
129 -0.07307450668313328 -0.7166548799715378 -0.14206637604299913 -0.17402808973305836 -0.6355274080007658 -0.9366007641988725 -0.9262971780090248 -0.7232412330686924 -1.4151736751751514 -0.562449981040552 -0.5445289371244949 0.26516014271124877 -0.5589188784879109 -0.43116924383852284 -0.46767859848883414 -0.9802543918104557 -0.8832936859355571 -0.9333766518399124 -0.6177786997630538 -0.6460169296490789 -0.24004795791672104 -0.0158321942762444 -0.3133831401054948 -0.3272936878274065 -0.7482170331119788 -0.9762520954803171 -1.052281534092757 -0.8990730677667642 -0.8715885447878329 -0.7101989878984984 1
130 1.7133747871234417 0.08618327865708855 1.6118123501212211 1.7608149183272372 -1.1500535533115672 -0.3544113167006479 0.3352263183178321 0.7310234905981418 0.4249017974825923 -1.6781043743036699 0.6761058916588607 -0.9626063725702272 0.49599135285989027 0.7593432647644307 -0.8350268256971229 -0.6549213827751164 -0.18049742770960242 0.1093070784744996 0.16802078834527395 -0.834386098012916 1.40625815558018 -0.43108386248157576 1.2789677819170617 1.3648730879023558 -1.1821923574492248 -0.6397341854329985 -0.0555960212968289 0.4247273089100574 0.24953341890871095 -1.3641056339789837 0
131 -0.15259848160616027 -0.3373429383585927 -0.2359800325872552 -0.2348918856649862 -1.201292671516792 -1.2095020677136652 -0.8641500710542284 -0.9424900828588323 -0.8711831088537154 -1.0770402539179496 -0.5311748600502832 -0.09226560505061152 -0.5856505314643451 -0.39860671357180005 -1.1000375703709795 -1.129200014397499 -0.7043783901539356 -1.0952618980835003 -0.859935706884264 -1.009516469403391 -0.15928577121687296 0.0688465772793532 -0.24874787073046767 -0.24871498964008004 -1.1997267139881034 -1.1326152378047611 -0.7972931586169275 -0.9555637440661776 -0.9152686212954901 -1.1812334363463053 1
132 -0.47637466522134253 -0.8353353034209873 -0.38714806746331654 -0.5056504544836544 2.237421483589421 1.2443354863901803 0.8663015959315467 0.8246556464496959 1.005401797785333 1.8900050384577884 -0.25507029351590493 -0.5926616519172156 -0.3213041853640514 -0.28925821666260243 0.1563467021771524 0.44554364864660323 0.16002519787921415 -0.06912355365771157 0.13411880734830423 0.4868458399286153 -0.16549824711686112 -0.31383633263536465 -0.1150094562171625 -0.24432020786226535 2.04851283483916 1.7216164423470515 1.263243196357085 0.905887786285116 1.7540693875058049 2.2418016084326413 0
133 -1.4704243517591822 -0.8213729006622283 -1.3687105391517467 -1.1651978505871128 -0.12384788036803249 0.3782528773189278 0.04809412921557079 -0.6664944719465384 -1.849635939552674 1.2520832125767167 -0.33194646694312413 -0.43172934822951514 0.20491335378316233 -0.5147757404692976 3.7698265415036976 2.3541714202591844 2.013834350427484 1.8303516302224632 0.39928073014602966 0.6831582864764697 -1.4195900487945008 -1.401632859541881 -1.3082301433893215 -1.0733518424292257 -0.6342437156092677 -0.4221744023778323 -0.5650930198957581 -1.159447883055166 -2.020212778878087 -0.3727166595400108 1
134 1.284513350931402 -0.39319254939362724 1.3070048683547764 1.1976826008262251 0.9635600726539654 1.217803415215131 1.3634784515699176 1.3407932328380137 0.34823198612185335 -0.32712770749331216 0.8074811363889439 -1.0043362822073987 0.706379362396641 0.6869576400498917 -0.24900306577682169 0.8082667595621422 0.7840403696008817 0.836006380249323 0.4525552717126959 -0.09830898629398663 1.356558348380274 -0.7095467458663279 1.2908821172857305 1.2066609439010276 1.557550851750558 1.620470227417895 2.2179503782891654 1.875822039727876 1.4531621937863861 0.43801674996486223 0
135 -0.13555762983694003 -1.426410353541773 -0.16842810419577275 -0.24456183455136715 0.007096532823098712 -0.32655264196684586 -0.6267355675158043 -0.6007198170094965 -1.6488340526554994 0.09106548947316698 -0.7036950990090188 -1.421091075409933 -0.7301994697813597 -0.504654954035046 -0.9693656057016061 -0.47663375198612273 -0.509746665498984 -0.8332932881802994 -0.8272445109229007 -0.4009100599708332 -0.1924189760168106 -1.5188803893880922 -0.22491919999313056 -0.30655031783612113 -0.055609949826274 -0.04367127103916591 -0.4619462640588751 -0.5184081331345978 -0.8424684937827279 0.1792248824058901 1
136 0.4211101946242499 0.02102539911621426 0.330797122697378 0.29496443125642086 -1.2781513488246294 -0.913100929729543 -0.5864341102784514 -0.5274649071972615 -0.9661076372051066 -1.1861957663464884 -0.6329545826158971 -0.39562390467387537 -0.6594100924548766 -0.3994867819573871 -1.4050499368823992 -0.9150871888324097 -0.6228121137227293 -1.0741746415587845 -1.2607055536698673 -0.926679425484354 0.3397831260821877 0.9758864956729605 0.25731352405373087 0.1898842317858245 -1.050684683407635 -0.4679764619683937 -0.2215903353413011 -0.4404479545219301 -0.3522809685301266 -0.8675799094975302 0
137 -0.7547085774519372 -0.7585420882478138 -0.7805144797429854 -0.7172516889385803 -0.39854648630160017 -0.8619319353205194 -0.7900757415525519 -0.6628833144205832 -0.6484755615677585 0.13075840308354508 -0.8462588948012796 -0.8261677114956492 -0.8792036835944466 -0.6179637586793855 0.7167027547516838 -0.9462176622961932 -0.7458246688283291 -0.8890934131380089 -0.3623030572501769 -0.2972691922365132 -0.7784625359157076 -0.7958539553364559 -0.8218274019634266 -0.7115734064795216 0.9087796598120504 -0.905004447228333 -0.8345699164240243 -0.7480252217047206 -0.08049382581581235 0.204162000264892 1
138 0.08313330120138458 -0.6398616647983651 0.08983445130093178 -0.03893321558508828 0.08182024687238487 0.18115749144713317 -0.10959630782528634 -0.17253971036051735 0.3664867031125056 0.1874625653840844 -0.20237582722306938 -0.8096571820305074 -0.09359010445368605 -0.18034975394619845 -0.8213596049026222 0.28234619350432694 0.21572899641759874 0.10281869185151007 -0.21943042304866275 -0.159585703713548 0.08300078888267136 -0.6786064254902441 0.12327725115620924 -0.03249172617159805 -0.1301309651165084 0.5269460546932437 0.49563943198958327 0.40797805178624225 0.24629785768592186 0.20471615843953625 1
139 0.15697699220133832 0.19555543360069827 0.11413666944176952 0.08421642758558748 0.16437215953635811 -0.612909495863271 -0.18643273096939825 0.09468594656017092 -0.8237208446780198 -0.5071634227975256 0.24372253125600438 0.041995843347244696 0.16283575187581223 0.11139291587592617 -0.44101085059712525 -0.7745249971602093 -0.3950233661282629 -0.11454226001863815 -0.7800238945342648 -0.646773432333271 0.5799988608817356 0.8472399004250337 0.4807073122162669 0.4525163908280294 0.6150791877858333 -0.42726352011011703 0.09216770334391516 0.7048967007993319 0.20747112301244827 -0.09896252126563818 0
140 -0.5899803436828095 -1.084331485952184 -0.5737396745446668 -0.5847165071428875 0.47963506738239564 -0.2543475054118904 -0.2872491489182901 -0.5527430098789482 -0.4987868822444096 -0.3356333318383938 -0.5109632839379628 -0.8844081505979623 -0.5039704807030184 -0.4503107312250423 -0.5176806257857881 -0.6264177176646504 -0.28759461180423507 -0.9953407440894619 -0.7582297638933558 -0.5193027300468993 -0.5196093734161947 -0.8105098965672323 -0.5177139916781611 -0.5238283289312786 0.746586861827423 -0.24596370089747835 0.1574140233151528 -0.7480252217047206 -0.248743009400864 -0.05185907642085726 1
141 -1.262241945978543 0.01171713061037531 -1.2735611766003296 -1.050011694734633 -0.814864321719053 -1.0241565990765351 -0.8214631693074995 -1.0138104439964484 -0.845626505066802 -0.06345335279580269 -0.39510764229412554 0.26516014271124877 -0.40199417490402883 -0.4861735179377168 0.13301242277190725 -0.796321917538801 -0.282621058363308 -0.3538015167413756 0.18012863870133441 0.1358285944634733 -1.1056529333150917 -0.014203756361713431 -1.1366637140804943 -0.9077564650411686 -0.5465719329148746 -1.0102219563433168 -0.8572622027081385 -1.159447883055166 -0.5642102286228354 -0.26299334096040344 1
142 -0.8967156755287715 -0.4862752344520192 -0.8336498380509194 -0.8059876904841943 -0.5131228478438394 0.13188364497918437 0.07245077315341014 -0.3298830025628529 -1.1778623542966724 0.510676290497161 -0.5333403860623175 0.2887466133757368 -0.02973115567664881 -0.4881536718052878 0.5080276274990623 1.1681953935060665 1.074495890551031 0.9544194361188815 -0.6516806807600233 0.4467511976664334 -0.8095249154156492 0.19423629669821804 -0.5099696736885263 -0.7105186588528462 0.29507718095129853 0.9792413931500368 0.9869058411847843 0.6226730749187841 -0.5836235959595718 0.6303096365664965 1
143 -0.7689092872596208 0.25373211176219296 -0.5926871666544732 -0.7644637923250287 3.283553480279431 3.402908991274548 1.9158971800569968 1.451707356849496 2.867382930831859 4.9109192850190375 0.3263734407153149 -0.1104090440232948 0.28659340454448906 -0.28837814827701536 0.6897016600113287 2.7442804054965433 0.8195183841461625 1.115007005037871 4.732680372580089 2.0475108774169515 -0.2814644639166429 0.1339840938605815 -0.2499393042673343 -0.5500212283270541 3.3942746991980925 3.8933974345995 1.9895882583898332 2.175786008218023 6.046041349536007 4.935010337204809 0
144 -0.4508133875675124 -0.6910571415804803 -0.44151913177841184 -0.5079257365745676 1.3834361801690038 0.07881950262908582 -0.3706141570354312 -0.4160349035392139 0.479665948454549 0.47098337688678293 -0.5322576230563004 -0.22108402175666256 -0.6435691129132859 -0.4806730905277974 0.8870429944099741 -0.5481723624594493 -0.20370734376726282 -0.0301932339197745 0.9041780899937533 -0.497364152205328 -0.5589550541161206 -0.6965192425500825 -0.6133265330117263 -0.5776204578917303 1.1235755274133128 -0.5036002860943858 -0.39957845820401555 -0.46435371241683016 0.4113114800481835 -0.47468176367459464 1
145 0.832930779047069 0.39801027360269997 0.8168414855141416 0.7500208494390569 1.1058909565573682 0.02386021233791227 0.778416798217693 1.3005546204059406 -0.30893782554162713 -0.29594041822801564 1.4831252521436578 1.6549475680187862 1.589018941229644 1.0304043275252586 -0.1953342231447578 -0.41962642176519055 0.4352284882771864 0.9154891163809444 -0.27270496461532895 -0.023415220558967 0.9775973184809869 1.2168953070235056 1.0704669129653615 0.8462888381202243 0.5493253507650384 -0.31148609170064245 0.5747985701899819 1.0368365237985813 -0.4493478052138101 -0.44087811502128144 0
146 0.06041216550909108 -1.3542712726215194 0.022282522909449334 -0.03893321558508828 0.19212668189752177 -0.532555223161693 -0.39622629808346854 -0.07452257751316053 0.9615904770077672 -1.1791077460589208 0.4216565852448259 -0.7343619102938718 0.444013138739046 0.17497785673459437 0.01600767889703461 -0.6258588222703275 -0.2749949430872195 0.1725688480486471 0.25640809594451547 -0.8820457671170191 0.10370904188263194 -1.4293163040889034 0.09349141273453779 -0.01297889507810085 -0.11698019771234847 -0.6473678620314255 -0.5228748128555455 -0.08993168271263127 0.2608578831884746 -1.287077647703401 1
147 0.12857557258597158 0.5213448313050689 0.22411450407912206 -0.028694446175979226 0.6433155838713087 1.5627203404907717 0.6742105380712667 1.0036658838077632 1.6078074584768567 0.913275842830992 -0.5438070951204835 -0.42392766947126137 -0.3742724607062452 -0.42434871385022277 -0.8630279609834172 0.2834639842929726 -0.16856089945137712 0.27962722732797396 -0.7267493529675983 -0.0317367500850804 0.27972919238230093 1.22666593451069 0.4509214737945954 0.028683636175582148 0.8824781250037318 2.608395207197641 1.3515176292593474 2.3676411352726348 2.2054301780849324 2.41359064257243 0
148 -0.6723444605673736 0.5376343011902875 -0.7104911393371803 -0.6455803030748152 -0.7109627764695687 -1.0362855458994147 -0.9068369728009572 -0.974216681122582 -1.15595669390789 -0.5553619607529843 0.003710064922198473 -0.01243447357080512 -0.11438139010202389 -0.2610960283238152 -0.39467563863528105 -0.8785913195831266 -0.6702266565262354 -0.7057964910385557 0.425918000929363 -0.7663008564356253 -0.6811337468158906 0.006965936527185678 -0.723236276787694 -0.6400263591366987 -1.0463010942729154 -1.0694465639527786 -1.0408634280977902 -1.1793947256298916 -0.7567261213788076 -1.0149859839529622 1
149 -0.36844927068294825 0.7075102014218512 -0.27634642882118937 -0.43141937626761206 0.8852780865070935 1.4319551325566002 1.013194757824702 0.5079055434587643 1.1368357601180286 1.3810851818104437 -0.35757185808553044 -0.26825696308563907 -0.3015029609370631 -0.3345817385203383 -0.01932708705947964 0.7322569859342327 0.49524269979770813 0.5180754357228378 -0.4531119349206309 0.6892103079500064 -0.22141053021675616 0.7283639326642916 -0.05841636321598696 -0.30690190037834636 1.9871425869530843 1.7814135757013951 1.7079736273375061 1.2652354845778808 0.818992194119654 2.236260026686196 0
150 -0.31164643145221477 -0.20237304502392464 -0.38550045945376793 -0.37283086242659774 -0.4647303473166825 -1.263703298828409 -0.7932144843280466 -0.5078614806277901 -1.2581831090555424 -0.5908020621908217 -0.7986173225365241 2.0414028181369397 -0.8396012347404701 -0.5759404932676013 -0.8963626458480534 -1.1501585916846062 -0.6122018663820846 -0.025326943952532575 0.7467760353649666 -0.763274845698857 -0.6148673372160153 -0.46690949660125186 -0.6791532359236205 -0.5883437254295981 -1.5499754858522035 -1.3236479946803938 -1.0739663404361388 -0.9817534915688706 -1.4782562740608545 -1.2333243047628866 1
151 0.7704476558932623 0.039641936127892984 0.6767948047025321 0.6408073090752243 -1.5592548445338497 -0.6085506555987985 -0.4682918322088284 -0.5470683337667328 0.11822255203963539 -1.4342764764113496 0.26609963338035914 1.529757839107272 0.30342444530742924 0.13801498453993608 -1.1993749312675948 0.06325919892976418 -0.0442220634281968 -0.11292016336289057 -0.646837540617599 -0.86086369195964 0.4039787103820666 0.3896488464419035 0.38837121310908507 0.2661776434486872 -1.9563341986407152 -0.5296820144723443 -0.40293672467312336 -0.46054706307050847 -0.6046547439077036 -1.3424934651678488 1
152 1.8042593298926157 0.5050553614198503 1.6694786304554137 1.8518262019637644 -0.911649322773367 -0.3953465122278667 0.020347643080197 0.291494031724732 -1.2581831090555424 -1.5632784456450775 1.0186199225622918 -0.3190585922091522 1.127650412080817 0.9496580531476418 0.30601943721936836 0.3270578250501558 0.35399378207537524 0.7970760605113859 -0.8635680619910823 0.05223504786024451 1.6464738903797278 0.08024564268106824 1.6215049237662837 1.5283589700370617 -0.41944784800800466 -0.1473620448344645 0.20922727740995933 0.45518050368063073 -1.0721933406007786 -0.7024407734534757 0
153 -0.260523876144554 2.040919664883309 -0.29199870491189917 -0.3313069642674321 -0.6867665262059908 -0.6741227743599919 -0.7398558571446356 -0.4170666628323439 -0.6703812219565408 -0.7070455949069281 -0.6138257695095938 0.6897166146720369 -0.656934939401503 -0.494754184697191 -0.6893542528386636 -0.6571569643524079 -0.5608084808258367 -0.43458193019759483 -0.3998373933539647 -0.9274359281685461 -0.3932890301164327 1.8715273486648527 -0.440270811781815 -0.4412064315083628 -1.1032877530242706 -0.7389719812125481 -0.7963336539114679 -0.5333301985721788 -0.6920148969230185 -1.0814849649102993 1
154 -1.5496643124860556 -1.1262186942284607 -1.5466522041829687 -1.2163916976326592 -0.3544239122915446 -1.1670507538335864 -1.1148728439607505 -1.261819584082589 -0.32719254253227936 0.6297550313282934 -0.666881156804435 -0.7793576389461263 -0.7084181229116725 -0.6375452802586985 0.710369164627403 -0.9764539031290601 -1.0575006844597676 -1.9134474512424755 0.7952074367892084 -0.14975116881905048 -1.4510665933544413 -1.4065181732854732 -1.4565636187292457 -1.092337299709385 -0.7087647308995021 -1.168557131789021 -1.3058306525103973 -1.7450628184932908 -0.49949900416704646 -0.3028927295348066 1
155 -0.6411028989904702 0.5236718984315283 -0.6235798168335048 -0.6339194823588851 -2.151351321572006 0.03902139586651178 -0.012923030340047529 -0.6463751657305021 -1.6889944300349349 0.47098337688678293 -0.5383932800903977 0.611699827089499 -0.45100220536082475 -0.44217009865836165 -0.06232883053486003 1.9646213304161484 1.1517517540001 0.605668655133196 0.3629571790778479 1.9404657476037674 -0.7204794275158168 0.4075616635017413 -0.7074497824242081 -0.6563749473501693 -1.656935060739363 0.5447579667562397 0.2380124185737404 -0.41273554728070855 -0.9638020396373319 0.8630560699171774 1
156 -0.38833026441370516 -1.3775419438861176 -0.39868132353015445 -0.42885968391533463 -0.5992330326053974 -0.4711524298708648 -0.6061454149085586 -0.6045889143587343 -0.7689566937060631 -0.1981257382595843 -0.2839439736763628 -1.011412223406745 -0.2574452365870142 -0.3334816530383544 -0.18233369604754976 0.12306100612231054 -0.0173648748471898 -0.179426126248533 -0.3913618981047222 0.2258524138823353 -0.43056388551636243 -1.510738199815439 -0.4533765806873504 -0.4601918887885223 -0.5684898785884729 -0.21288443563762863 -0.4571487405315782 -0.46435371241683016 -0.5447968612860983 -0.07845866880379194 1
157 0.20809954750899856 0.9122921085503131 0.3472732027928617 0.046958683346884085 0.5721501419196082 1.7749769098911663 1.0157057520450974 1.0281701670196022 -0.27242839156032267 0.5560396203375929 -0.453215923617047 -0.4620288913138961 0.3588678737029965 -0.3330416188455608 0.3466877527542239 1.438700764358333 0.7830456589126962 1.1409605515298291 0.594217120878604 0.19559230651465057 -0.03917790381709938 0.342424146920513 0.3377352877922435 -0.16855417001274034 -0.03369200415267572 1.3392964727091714 0.8957528941661435 0.8845705499457145 0.16055548528200106 0.16980419343693454 0
158 -0.4195718259906085 -0.2605497231854193 -0.38220524343467127 -0.48147558226770193 0.7998795561650524 0.5507113399567483 -0.1083408107150884 0.046967079252905226 -0.6229189577808452 0.8140435588050486 -0.6235706365637483 -1.0589480335151753 -0.579215133525574 -0.4826532443953684 -0.4456777064781743 -0.02560516876757129 -0.18348155977415873 -0.2394437025111859 -0.3574599171077525 -0.0877179487152969 -0.3912182048164362 -0.574386398960279 -0.3565726058169181 -0.43399898939274667 0.9175468380814888 0.8265678611814989 0.41264227496734723 0.3973194336165415 0.532645025902788 1.0725278599327908 1
159 -0.8001508488365242 -0.05809488318341846 -0.83076652403421 -0.7417109714158969 -1.0653666773890418 -1.086506966337901 -0.6492089657883467 -0.6866137781625749 -1.07928688254715 -0.8686524574634664 -0.4781194727554419 -0.4970457285311749 -0.5123860010844885 -0.4881536718052878 0.7470373179785028 -0.9088834499554259 -0.3734713012175784 -0.45923779936495485 0.1559129379892131 -0.6237001004654115 -0.8157373913156373 -0.29918039140458824 -0.871569752127618 -0.727570412150767 -0.1476653216553863 -1.0355403170614326 -0.613068255168727 -0.6851393745034866 -0.8101128815548334 -0.9717616463306926 1
160 -0.6212219052597133 0.3421606625676654 -0.5807420085852474 -0.6083225588361117 -0.7337357178941133 -0.06142144501046056 -0.2895090437166464 -0.2839697140185649 -0.8164189578817587 0.6892944017438606 -0.47270565772535605 0.3141474279374934 0.16432084370783642 -0.40542724356010007 -0.10733065510211857 1.4577032077653103 0.39709791189674454 0.735436387592986 -0.22064120808426876 1.596257026296354 -0.627292289015992 0.2626306891085077 -0.44861084653988303 -0.5879921428873729 -0.9104098310966058 0.1719800928663935 -0.17121633830468388 0.013609179507317987 -0.7049571418141762 0.8791266569818672 1
161 0.9493765994700731 1.2543709761399013 0.9939593465405893 0.9377316219393943 0.6077328628954579 1.06050613610591 1.5957454169565306 1.4284927727540695 -0.9989661277882811 0.12083517468095055 2.464469456597219 0.3504343058828599 2.21325254129045 1.8033243871671318 -0.289004687614385 0.6070644176059108 0.48231146085129756 0.6316222016251538 -1.1008819289698684 0.5012193909282658 1.4228247579801492 1.083363398031987 1.430875557867587 1.3701468260357335 0.2293233439305037 0.8189341845830721 1.0401583523377798 0.8754345915145426 -1.198380228289567 0.5017449400489772 0
162 0.23650096712436583 -0.044132480424659205 0.2084622279884129 0.09217991490378348 -0.4583254575410289 -0.11581219091931158 -0.3691075605031937 -0.018807575684136858 0.24600557097420103 -0.6063957068234699 -0.4239813224545834 -0.48779257465510645 -0.3440755934550881 -0.34030218302665444 -0.5696827341746203 -0.24189768637051984 -0.5482088121088211 0.011981279129657189 -0.644415970546387 -0.3706499526031486 -0.003973873717165288 0.08350251851012959 0.05476982278636453 -0.12443056096348115 -0.046842771556834445 0.310022411354613 -0.4403574081860391 0.5221775321758922 0.09907982204900201 0.04290197144334883 1
163 -0.7177867319519606 -0.2163354477826839 -0.7450909075376958 -0.6888106628021655 -0.8027661965872636 -0.8678068939378518 -0.6921469669571152 -0.8034605181095553 -1.07928688254715 -0.5964724784208754 -0.8069185055826557 -0.8187289015168491 -0.773762163520734 -0.6038826645099918 -0.11066412358858232 -0.4732803796201855 -0.36783460731786083 -0.6973615884286694 0.08447662088845602 -0.3884277656816632 -0.7246210781158089 -0.26986850894303543 -0.7321720283141953 -0.6776456911547922 0.08028131335003609 -0.4673403222518582 -0.41349127643317657 -0.48308242720073286 0.5002894136748934 -0.2945803569151388 1
164 -0.5076162267982459 1.7616716097081349 -0.4456381518022825 -0.5047972236995621 0.5009846999679067 0.5867191508371725 0.24734152060397854 -0.08509811026774378 0.479665948454549 0.931704695578668 0.00046177590414692187 1.074357520892922 -0.11091617582730089 -0.1297458217749401 0.6857014978275725 0.7249913458080351 0.19019808875417238 0.22934223099980514 -0.21337649787063234 0.7100141317652897 -0.12822339171693134 2.2248983761180177 -0.16564538153400407 -0.1963291908485292 2.0222113000308415 1.3761925762682348 0.8170735083184747 0.47649774002003226 0.5083783167318671 2.0256799203212945 0
165 -1.248609264563167 -0.9191097199735394 -1.1611119299486543 -1.0087722068368314 0.7714133793843719 1.05292554434161 4.042709284732251 0.7648136074481517 2.6884867043234686 4.2758326672529945 1.5134426163121384 2.6256215530573406 0.5974726280482056 0.20930052377249145 1.309726798493559 3.9336098046155987 12.072680399588076 6.6496007944479105 1.8062129415202615 9.851592567542824 -1.0870155056151267 -1.0075508842254486 -1.0788791875424513 -0.879102487849817 -0.13889814338594675 0.14589836448843505 2.635814677516724 0.6470356307352426 0.33527579131263174 2.324925334629314 1
166 -0.8115114166826712 -0.8818766459501828 -0.7656860076570502 -0.7476835869045441 -0.9045327785781966 0.13377879292025938 0.1494127460085418 -0.550679491292688 -0.005909523496800223 1.378249973695418 -0.2695071335961339 -0.2718856508801757 -0.1470534104065545 -0.38210543134204183 1.1130521577922063 2.3033119393758037 2.0831325283710695 1.4069844030723984 -1.0112838363350207 3.228411567440846 -0.8757913250155245 -1.0987434074391684 -0.8200402516581262 -0.756927554426569 -0.9717800789826809 0.16943553400025113 0.14350120508599176 -0.48551868278237864 -1.203233570123751 1.1279436773972387 1
167 1.6934937933926848 1.0635514717701988 1.7600970709805726 1.6840241477589173 0.8283457329457328 1.505865902258523 1.7514270586210712 2.039810153933636 1.5968546282824645 1.6858700541758462 2.406722096276303 0.9546108236732127 2.4444318364755384 1.9903389191043914 0.3076861714626001 1.2207315605724158 1.478680000183716 1.2269316742844398 0.8254770626793597 0.8068464753418807 1.5346493241799386 0.6111164028180804 1.535125992343437 1.4334316836362648 0.10219925902363315 0.5396688490239553 1.060307951152427 1.183011858697333 0.6361829850320505 0.595397671563894 0
168 -0.030472377260082912 -0.8446435719268262 -0.0979928617875804 -0.1376235762784476 -1.1884828919654857 -0.9197339475233054 -0.8528505970624473 -0.5777631727373524 -0.8127680144836277 -0.983478386122059 -0.6892582589287899 -1.0195767709444525 -0.6237678884862976 -0.4639517912016424 -0.7346894242545685 -0.9076538800879156 -0.7520250321180183 -0.1680714496583013 -1.069401518044111 -0.6395866568334458 -0.2814644639166429 -1.0368627666870014 -0.3196381661740456 -0.3369622077385988 -1.2698641401436173 -0.9705268380314969 -1.0055056797016124 -0.49404557731813925 -1.2372069629630402 -0.933524732280223 1
169 -1.0273622057594591 0.8843673030327953 -1.0346580152158187 -0.9120727179730214 0.3657703602596741 -0.6892839578885914 -0.8016263149663727 -0.7781824154278686 -0.4257680142818006 0.3915975496660267 -0.42722961147263494 -0.13399551468778284 -0.28566198139547244 -0.43512955157366484 1.0430493195764707 -0.6174753913554845 -0.44044848755539806 0.1141733684417418 1.706928568600565 -0.6898940853322216 -1.1056529333150917 -0.2372997506524213 -1.1068778756588227 -0.9103933341078574 -0.7920529244591754 -1.0695101779244323 -1.1063496242453927 -1.2692316502030827 -1.0899889273261203 -0.8963961345790435 1
170 -1.207427206120885 0.025679533369133735 -1.1541095959080738 -1.0141760018027504 0.2946049183079726 -0.1396910549768559 -0.34223992234495854 -0.48051985935984326 0.48696783525081017 0.05987820020787045 -0.8116104786087301 0.009337653196414806 -0.6623802761189248 -0.6285245793064307 0.672367623881718 -0.19662715943036774 -0.05317445962186577 -0.10967597005139595 -0.5390776724486604 -0.08507018932062463 -1.1408569634150254 0.18772254504009475 -1.043731898204879 -0.9130302031745462 1.0315201555842006 -0.15308730228328474 -0.037365431893100605 -0.26062183940169487 -0.4509655858252047 0.05287681858694943 1
171 -0.7263071578365705 -0.05809488318341846 -0.7319100434613087 -0.69734297064309 -0.7757233286456177 -0.5139827733391586 -0.42623267901719847 -0.8934815164351539 0.8009489674900282 -0.018090022955370856 -0.4286732954806579 0.40486462280090973 -0.32674952208147323 -0.44084999607998093 0.07901023329119668 -0.2799025731844746 0.4169921256604535 -0.4861646038503614 -0.2254843482266932 -0.17244624934481403 -0.6624963191159258 0.21214911375805579 -0.6204751342329273 -0.6329947082921952 -0.32739247617889233 -0.385278298818769 -0.07766462952239453 -0.730362368737788 0.21717780668081643 -0.0612797653898136 1
172 -0.5161366526828558 -0.6445157990512846 -0.5263709442701521 -0.5232838906882318 -0.3302276620279666 -0.6832194844771515 -0.6915192184020162 -0.6757803055847091 -0.33449442932854045 -0.5185042552576341 -0.5582439352007125 -0.3480880945654455 -0.5574337866558868 -0.4544910560565811 -0.7290225278275806 -0.4073307230900875 -0.45205344558422833 -0.6214474649396924 -0.8090827353888098 -0.5639363884142342 -0.44713048791633125 -0.401771980020023 -0.5227775842098452 -0.4737278166641914 -0.6473944830134271 -0.4450754321731131 -0.48881239581173763 -0.4264394849274665 -0.45743670827078375 -0.4353365332748365 1
173 -0.1327174878754034 -0.037151279045280414 -0.10334758781861295 -0.22635957782406177 -0.4120679202724231 0.19631867497573266 0.09756071535736831 -0.02061315444711432 0.13282632563215657 -0.14000397190153205 -0.6524443167242062 -0.5839528012103276 -0.5257518275727056 -0.4615316031412779 -1.0203676735444993 0.145975717289548 0.15903048719102864 0.1531036881796786 -0.5729796534456297 0.060934828728454016 -0.23383548201673252 -0.028859697592489825 -0.17458113306050543 -0.301979744787194 -0.7745185679202969 0.39717355251998654 0.45006295848026284 0.3973194336165415 -0.25359635123504853 0.24627802153787223 1
174 -1.081324903028656 -0.6840759402011006 -1.09809092358343 -0.9385228722798872 -0.14377420411450906 -1.030979131664405 -0.9878165364087222 -1.1200816511888456 0.26791123136298334 -0.1116518907512614 -0.7029732570050075 -0.45332004060700826 -0.7475255411549744 -0.6021225277388176 0.015007638351095687 -1.018929953097598 -0.7219516123118783 -1.0221053389092938 -0.5984061391933571 -0.44970448310122474 -1.0393865237152164 -0.6362670397124459 -1.0764963204687175 -0.8713676719208632 -0.1695832673289846 -1.0550061923874212 -1.0955072210737018 -1.3825175347496155 -0.3555165297529157 -0.5517097499501774 1
175 1.0857034136238342 0.16763062808318144 0.9156979660870429 0.9303369551439263 -0.8782015650560674 -0.7034975674466535 -0.199238801493417 0.18161166700637948 1.1587414205068118 -1.778754262387127 0.5248799918184626 -0.005177097981731812 0.243030710805115 0.30148768716274044 -1.0057004122040596 -0.9532597442646612 -0.2978732889154847 -0.31357351967884073 3.5836453737899454 -0.7159934279368496 0.8926934811811466 0.35056633649316604 0.6534651750619609 0.6687396542965114 -1.1032877530242706 -0.8528409904724158 -0.22686761122132776 0.05928897166317778 3.2052185959268726 -1.2654654788922666 0
176 -0.5445380722982225 -1.2099931107810127 -0.5432589263680225 -0.5485964039496408 -1.0874279643940694 -0.49484177913430166 -0.25623837029640184 -0.6082000718846895 -0.604664240790193 -0.17827928145439623 -0.500135653877791 -0.7002522450252273 -0.38070785864501633 -0.44833057735747134 -0.8786952628697962 0.26725601785760944 0.38284039203275316 -0.15022838644508033 -0.16131274133957213 0.31285022256442874 -0.650071367315949 -1.0401196425160628 -0.5841364113584882 -0.6164703288076121 -1.3049328532213749 -0.07102527885019558 0.16988758448612468 -0.3533518174780906 -0.36198765219849477 0.23796564891820518 1
177 -0.5445380722982225 -0.2954557300823166 -0.5626183204802157 -0.5588351733587502 -0.28824005127646224 -0.6176473657159585 -0.5634585131618297 -0.7389755622889259 -0.4257680142818006 -0.5156690471426072 -0.5503036731565866 -0.7951424308523608 -0.491099684825476 -0.4789129537566232 -0.4026759630027939 -0.648214638043242 -0.3943602256694726 -0.7638675513143117 -0.14072939573426924 -0.6940548500952782 -0.4098556325164015 -0.26661163311397407 -0.3994642131441254 -0.4499959950639921 0.19425463085274666 -0.2370577448659804 -0.14818822537365883 -0.4007065353463321 0.5132316585660507 -0.5123645195504192 1
178 -0.3570887028368018 0.05825847313957088 -0.3830290474394453 -0.4143547605857632 -0.35584722113057904 -0.48347089148785194 -0.8892600132581866 -0.7227253534221274 0.18028858980785217 0.09531830164570777 -0.13957557287407366 -0.8120158290969562 -0.13319255330766266 -0.30443939631398 -0.37700825565702395 -0.6627459182956364 -0.8232131603691565 -0.8587602056755331 0.20434433941345528 -0.5359457890991259 -0.3767224277164638 -0.21124474401992988 -0.361040481580169 -0.4459527958284027 -0.4808180958940803 -0.5665781180314076 -0.9639111507199483 -0.7729968414165908 0.6669208166485496 -0.3655126032696323 1
179 0.7278455264702124 0.21184490348591684 0.6232475443922102 0.576530590006927 -1.5222488147189654 -0.6295867977447305 -0.6567419484495342 -0.666752411769821 0.12552443883589548 -1.3534730451330803 -0.5697934072648956 -1.177424690006797 -0.5401077152822721 -0.3825454655348354 -1.4580520858171704 -0.6157987051725159 -0.5856762480304728 -1.0542228526930917 -0.11288133991533035 -0.7924001990402535 0.6027779391816925 0.14375472134776557 0.5968720820607853 0.3575891044272324 -1.3794538685116087 0.24004704253569983 -0.1174840747989587 -0.41471500494079566 2.8735735705909535 -0.42757831882981373 0
180 -0.5530584981828329 -1.2123201779074726 -0.606279932733247 -0.5503028655178257 -1.3535867172934324 -1.3686944947639612 -0.9738805184855255 -1.1315341793425895 -0.5060887690406707 -0.8941693304987092 -0.6997249679869559 -1.119909988463391 -0.7069330310796484 -0.5394176552657365 -0.5660159188395104 -1.1016464714573817 -0.685147316849017 -1.094126430424477 -0.09350877934563348 -1.0760130553438778 -0.7080544757158401 -1.499339134413724 -0.7643407338096009 -0.6460032623545267 -1.4145225815893663 -1.2782912328914076 -1.1083645841268575 -1.463066234917782 -0.9832154069740687 -1.3064731838159578 1
181 0.6312806997779652 0.9309086455619909 0.7015089248457571 0.5276120250522934 0.07541535709673225 0.8596204543519653 1.1588324226076592 1.001086485574938 1.326684816820812 -0.08755262177353254 0.09394031542362934 -0.35353112625725025 0.05244392569535257 0.11359308683989397 -0.468678639034773 0.7652318141992817 0.9557937484275683 0.7727446106751752 1.3836489640937495 0.10972925185884544 0.6441944451816145 0.8716664691429947 0.6564437589041288 0.4999800340284279 0.4002833201845696 1.3501108478902764 2.0941742712849054 1.6778762737191493 3.111387320465978 0.6757506068873439 0
182 0.673882829201015 -0.23262491766790247 0.6026524442728558 0.5210705890409182 0.03556270960377911 -0.3726047369349672 -0.3789004379627374 -0.014680538511616565 -1.15595669390789 -0.9735551577194644 -0.2391897694276533 0.4030502789036416 -0.25843529780836366 -0.1486672920650628 0.07200994946962334 -0.41515525861060765 -0.4500640242078574 -0.23782160585543832 -0.43616094442214604 -0.6785465450693398 0.3853412826821017 -0.03700188716514351 0.2960351140019037 0.22574565109279218 0.06274695681115697 -0.5494023456849472 -0.5080024899209252 -0.3559403390335891 -0.8198195652232015 -1.067076852369543 1
183 -0.5928204856443466 2.059536201894988 -0.6227560128287307 -0.5830100455747027 -0.6291225182251122 -0.8403272487922651 -0.8176966779769059 -0.6486966241400448 0.15473198602093985 -0.8247067316805475 0.7251911479316389 2.587520331214705 0.6103434239257478 0.1017121636344681 0.15868013011767693 -0.5548791071913237 -0.5717502983958765 0.005492892506667677 -0.008753826853209948 0.03332248075544171 -0.5527425782161325 1.2462071894850584 -0.5963486051113738 -0.5501970195981667 -1.23917901620058 -0.9987714414456764 -1.0408154528625173 -0.9004434615314401 -0.8036417591092543 -0.9728699626799812 1
184 -1.1580087359901465 -0.4094820192788458 -1.135162103798268 -0.9786247191322318 0.3088380066983123 -0.5890306318057265 -0.7996175195900561 -0.8039763977561204 0.28616594835363557 0.07263663672549282 -0.5170989409720599 1.4481123637301974 -0.5386226234502479 -0.5167558943368685 0.2540173288305359 -0.6141220189895473 -0.4971469967819684 -0.6087951110248628 0.05541778003391112 -0.3846452522607026 -1.0580239514151812 0.1893509829546257 -1.05088049942608 -0.8729497933608764 0.34329666143321425 -0.7256130471653012 -0.7996919203805759 -0.7554862544235109 -0.010929259525839688 -0.40485783366939043 1
185 0.034850887855260956 0.5655591067078043 0.06841554717680279 -0.06225485701694851 0.1330593650776098 0.10345642586306009 0.5411278443902886 0.18212754665294448 0.26791123136298334 -0.2193897991222873 -0.43011697948868083 -0.3589741579490554 -0.10349071666718021 -0.3394221146410673 -0.38767535481370746 0.24993026063360077 0.5390099700778677 -0.0301932339197745 -0.03175874252972483 0.08589941730679389 -0.07852358451702485 0.7625611288694367 0.2662492755802322 -0.1423612706169649 0.5361745833608796 1.0784791889295862 1.1821650487457673 0.4582258231576882 1.1166638266162827 0.9672378067503399 0
186 -0.8086712747211346 -1.3728878096331978 -0.7813382837477594 -0.7681611257227626 1.426135445340025 0.17547204762390842 -0.5329499333840205 -0.02474019161963461 -0.14829631602388704 -0.29452281417050175 -0.2409943744376819 0.2288732647658822 -0.5024853888709944 -0.30817968695272524 1.409730853087467 0.5310546439780013 -0.33235659277258 1.273972477301114 -0.5741904384812357 -0.13348636110891995 -0.9006412286154776 -1.6133297884308737 -0.915354934607475 -0.785054157804583 0.1898710417180263 -0.4584343662203601 -0.8899333379290303 -0.4339005176462568 -1.2922115037504611 -0.8925170273565322 1
187 0.90109418612395 -0.5142000399695369 0.8662697258005922 0.7773242345300152 0.3159545508934826 -0.004567006778212009 0.4745864975497996 0.8927517597962803 0.005043306697590916 -0.9452030765691948 -0.34602238602134716 -0.6532607380859776 -0.3331849200202444 -0.1475672065830788 -0.7613571721462774 -0.5839416676961127 -0.2842789095102836 0.13363852831071005 -0.7993964551039616 -0.5419978105726628 0.7415232342814317 -0.0956256520882491 0.7041011003788029 0.6001810585626025 0.40466690931928995 -0.08756491148012062 0.31477279501049066 1.082516315954441 0.3838092096544735 -0.1560408132540197 0
188 1.835500891469519 0.45385988463773447 1.8877866917205708 1.891643638554745 0.8639284539215835 1.1382072016899827 1.6321548331522697 1.6296858349144334 0.13282632563215657 -0.0818822055434788 0.6685265506167406 -0.0015484101871951572 0.6633116992679416 0.7646236750779535 -0.1249980380803757 0.13591560019173649 0.2893375873433217 0.4856335026078902 -1.134783909966838 -0.02568472861154349 1.5719241795798684 0.8276986454506655 1.666183681398791 1.5459380971483205 0.6150791877858333 0.6707136306302836 1.17880678227666 1.4723172090177792 -0.6806904326432553 0.3349433294809891 0
189 -1.5647170648821997 -1.7452185498667638 -1.5499474202020653 -1.2240707746894912 0.08253190129190162 -0.9782940189025213 -0.8561148895489618 -1.0606523159045536 -0.4695793350593662 1.2861057099570412 -0.8996752030981265 -1.1561968664087576 -0.9009850304641337 -0.7043864741440391 1.0230485086576886 -0.8343268043527557 -0.4006600600279804 -0.9820395515123336 0.04330992967785025 -0.38086273883974203 -1.400331373504537 -1.6735819912685101 -1.4106934275598717 -1.064738070144709 1.7942646650254201 -0.8293038209605995 -0.745479904522121 -1.0721994800374735 0.5164672197888407 0.3499056001963904 1
190 -0.4252521099136818 0.3421606625676654 -0.4044479515635737 -0.4962649158586377 0.2113413512244816 0.31381784732237955 0.2222315784000204 0.2912360919014494 -0.27973027835658376 1.120246035227962 -0.22655753435745296 1.0634714575093118 -0.0767590636907461 -0.436889688344839 1.9564196848674975 0.8350937384896394 0.6338390556848799 1.8092643736977476 0.10869232160057732 0.7928511756843266 -0.6086548613160271 -0.033745011336082154 -0.5439255294892318 -0.6208651105854267 -0.16081608905954503 -0.18616656754313446 -0.24269943886140746 -0.06252380741911535 -1.0916067079375154 0.0506601858883716 1
191 0.6085595640856711 0.33052532693536635 0.6150095043444689 0.4516744852680662 1.4617181663158758 0.5222841208406239 0.7407518849117558 0.9275736359394202 0.4979206654452013 -0.003913982380235536 0.1166783385499898 0.027481092169098078 0.19996304767641537 0.08961122333264533 -0.1146642857723386 -0.25978233898885134 0.01943942061567157 0.3445110935578688 -0.6274649800479022 -0.3804844874976461 0.6234861921816539 0.765818004698498 0.6713366781149644 0.42263187473888963 1.1674114187605094 0.25722281488216053 0.4198385602582926 0.6653075475975867 0.3271868882556581 -0.10782905205994947 0
192 -0.4508133875675124 -0.2838203944500175 -0.5168971982152489 -0.46355773580176074 -1.5656597343095033 -1.4752018090523733 -1.0998822084649875 -1.1212681743759452 -1.0354755617695854 -1.551937613184969 -0.1951574071829549 -0.47926515833794525 -0.26586075696848416 -0.2648363189625603 -0.41934330543511183 -1.1616718368076573 -1.0312104809710265 -1.3267350908586504 -0.013596966995633957 -1.0352375606659228 -0.527892674616179 -0.7649136349603721 -0.6088586572484759 -0.5183787995267884 -1.7288259225487652 -1.3422232744032327 -1.288650720759147 -1.496107951243854 -1.0802822436577522 -1.592418801932509 1
193 0.898254044162413 0.6609688588926557 0.9239360061347848 0.8330686457573878 -0.4533438766044097 0.4351073155511764 0.10258270379815991 0.6745346692992705 1.0820716091460718 -1.1564260811387048 1.5506174795187277 0.7550329949736967 1.6236710839768735 1.113350772866843 -0.10799734879941138 1.9187919080816735 0.4803220394749265 1.5724382619586306 0.8387956980710266 0.7728038545532355 0.8533478004812212 0.254488499535854 0.9126019693305032 0.728508686474791 -0.8315052266716523 0.2063316375593146 -0.20335974593757294 0.58156126197851 0.2689467862454473 -0.5046063051053964 0
194 1.1084245493161282 -0.5677225838781113 1.051625626874782 0.9530897760530582 -0.49034990641929493 0.3574062499671036 0.2536190061549681 0.35133607072627593 -0.33449442932854045 -0.708463198964442 -0.3846409332359597 -1.1362390835388059 -0.4678332461237648 -0.10048354795416879 -0.974699155279948 -0.5520846302197094 -0.07107925200920381 -0.331416582892062 -0.9192641736289607 -0.5140072112575547 0.8512769751812247 -0.5955560918491781 0.7755871125908146 0.7232349483414133 -0.2660222282928173 0.07846755453566422 0.7523069406999666 0.5922198801482108 -0.09505385131836507 -0.0939750976938375 0
195 -0.6723444605673736 -0.26753092456479893 -0.6989578832703418 -0.6364791747111623 0.23624925590757734 -0.8566255210855096 -0.7777718698726125 -0.3551611052445397 -0.7032397125397152 0.010262058194897816 0.8655894177118654 1.6114033144843463 0.6296496177420613 0.19301925863913 -0.4816791661319811 -0.862271574068899 -0.63574335266914 0.40939495978776363 -0.5802443636592661 -0.3922102791026238 -0.6024423854160389 -0.3724600975584702 -0.6600902993337507 -0.5748077975539289 -0.8183544592674935 -1.110223119782709 -1.012222212639828 -0.6548384457067663 -1.492816299563407 -0.819922306478105 0
196 -0.32016685733682465 0.3468147968205849 -0.3484292792389298 -0.3853449139266202 1.2197556636800908 -0.5391882409554554 -0.7211489502026869 -0.57956875150033 2.659279157138424 -0.2732587533077997 0.054239005202999756 0.19077204292324754 0.0034358952385566666 -0.12226524049744963 -0.007993294205503331 -0.7857029050466666 -0.41127030736862513 -0.043170007165753525 1.0857958453346612 -0.8555681731702951 -0.4367763614163506 -0.25521256771225903 -0.48971530356178994 -0.46388350548188645 -0.11698019771234847 -0.9145465429763666 -0.916655543976074 -0.7863962471156429 0.4776404851153671 -1.0859182303074548 1
197 -1.001800928105629 -0.07903848732155651 -0.934565828635756 -0.8773746660865954 0.03698601844281259 0.19631867497573266 -0.31298683967734736 -0.5803425709701776 0.40299613709381005 0.2994532859276501 0.16359806881073383 -0.03602094423529317 0.2791679453843686 -0.29123837053017343 0.14301282823129796 0.5774429617067992 0.05458586493155716 0.3007144838526898 1.7553599700248077 -0.18038952752883117 -0.9089245298154618 -0.44573980371235217 -0.8632297173695499 -0.801226954746941 -0.4852016850287995 -0.017589542661207436 -0.38662514468031406 -0.5382027097354706 0.06348864859831752 -0.44752801311701496 1
198 -0.7121064480288873 -0.25822265605896 -0.6421154069409238 -0.6999026629953673 1.5044174314868959 0.8330883831769157 0.16573420844111453 0.17335759266133888 0.5307791560283757 1.3825027858679586 0.017785984000421726 0.9491677919814075 0.07967060928246156 -0.2747370883004152 2.516442390593383 0.36785718883572494 0.5874192235695593 1.0728324919884396 -0.2993422353986623 0.5379097711115833 -0.6024423854160389 -0.04514407673779719 -0.5695413505318693 -0.6196345716876386 2.000293354357243 0.21332917444120583 0.22266034328639045 0.4110233712632997 -0.3894899225922048 0.48512019480964313 1
199 0.24502139300897569 1.3753784667158102 0.147088829632737 0.12488709496066044 -0.1772219618318086 -1.005015604871678 -0.8138046369352924 -0.5140520363865706 -0.9003906560387588 -1.0997219188381655 2.9192299191244295 1.7619938579576178 2.5795751931897333 1.4446965200403872 -0.05266177192411546 -0.812529883974164 -0.45470600741938944 1.19611183782524 -1.5328900296741077 -0.7719746265670663 -0.2648978615166741 -0.07771283502841134 -0.34912614621150023 -0.3195588718984527 -1.6876201846824006 -1.2910776411937726 -1.190786038325818 -1.3036437602938307 -2.160959692069428 -1.6018394909014653 0
200 -0.6354226150673965 0.43757041475251673 -0.6417035049385366 -0.6288000976543303 0.09747664410175905 -0.43855588528437567 -0.7940933323051852 -0.6997687091499832 0.7571376467124626 0.01451487036743861 -0.47090105271532745 -0.02513488085168321 -0.4633779706276925 -0.4577913125025327 0.9513789361987213 0.28234619350432694 -0.5170412105456772 -0.4087905933712117 0.24672181565966705 -0.576040431361308 -0.6666379697159178 0.24960318579226226 -0.6603881577179672 -0.6287757177854931 0.4485028006664865 -0.2262433696848756 -0.7473989139330398 -0.48688907654705454 0.28188903113660546 -0.578309342333112 1
201 -1.4562236419514987 -1.1378540298607593 -1.4667432157198736 -1.162069337712107 -1.872382789121336 -1.3868879149982805 -1.0686579953343653 -1.172262877438899 -0.08623027825567027 0.784273873597265 -0.8321829757230563 0.15992819666968577 -0.8524720306180125 -0.672109966102632 0.11601173349094265 -1.151052824315523 -0.9354496830194139 -1.3502554923669874 0.7830995864331479 -0.621052341070739 -1.3605715277446118 -0.913101485182667 -1.3809075891382 -1.0461041954067747 -1.4798380596966887 -1.2846526300567633 -1.235211106188587 -1.5335653808116592 0.14599545977944833 -0.32727568921916345 1
202 1.4350408748928465 0.7447432754452078 1.4635276292618697 1.4024579890084112 -0.7920913802945085 0.7288552464177939 0.28375093679971786 0.48494889918662015 -0.16290008961640925 -1.0642818174003281 0.11018176051388669 -0.26099958749656577 0.4786652814862757 0.3054479948978824 -0.505680139234519 0.6428337228425742 -0.16027164371649844 0.0671325654250679 -0.7739699693562345 -0.15050767150324268 1.4683829145800633 1.0393955743396583 1.76149836434814 1.4193683819472578 -0.007390469344357047 1.9455376225675736 0.548412190789849 0.85564001491367 0.47278714328118254 0.45796644425206345 0
203 -1.4442950457130446 -0.0906738229538556 -1.313927572834264 -1.1671887224166617 0.23624925590757734 1.7598157263625662 1.3647339486801158 0.004149068588007258 1.8925810435310313 3.4918976234480326 0.21701437710758079 1.2594205984142912 0.4469833224030944 -0.35504332848523845 0.9347115937664033 2.2591592032242978 2.3477255714283976 2.185590797831138 1.7396197645619285 1.5440583410870983 -1.2858147344147524 -0.3708316596439398 -1.1509609165228962 -1.0257124079577145 -0.45013297195104246 0.7667707278271552 0.9053479412207373 -0.0016174178779686822 0.378955867820289 1.1944426583545757 1
204 -0.6609838927212266 -0.6305533962925262 -0.5346089843178939 -0.6339194823588851 0.9066277190926045 1.2443354863901803 0.967996861857577 0.6508042055572788 3.1631093460804247 1.5469448565395227 -0.3084866018127521 0.37946380823915316 -0.2896222262808701 -0.3436024394726061 -0.538014783553216 0.6065055222115882 0.4839693119982731 1.0760766852999342 4.327067385652061 0.3177674900116775 -0.5237510240161869 0.11444283888621277 -0.4566530229137342 -0.5078313232600332 0.26877564614298105 0.9856027903153924 0.8549739441841201 1.0946975938626704 4.648278901290967 1.0559031146934559 0
205 -0.06455408079852291 -0.011553540654222887 -0.13341643399286995 -0.147862345687557 -1.1706915314775606 -0.9680602200207166 -0.7388514594564772 -0.7278841498877777 -0.8492774484649321 -0.9721375536619515 -0.265537002574071 -0.5269824028361022 -0.4010041136826793 -0.2624161309021958 -1.1123714037708947 -0.8192366287060384 -0.5501982334851919 -0.8955817997609985 -1.2013770869251708 -0.5968442551765913 0.029159331082772376 0.12095659054433607 -0.08522361779549104 -0.08804176784317558 -1.1383564661020282 -0.7173432308503387 -0.5032049663936283 -0.5040951315924284 -0.8812952284562011 -0.43866148232270363 1
206 0.23366082516282868 -0.1209256955978326 0.24182629018176713 0.09843694065379485 -1.0660783318085594 0.2342216337972317 0.021352040768355285 -0.3430379335502614 -0.24687178777340932 0.30228849404267794 0.06073558323910266 1.2557919106197546 0.20045807828709003 -0.019957290672948932 -0.4170098774945873 1.3017713927492311 0.7008162420226998 0.5634941420837644 1.5761637847551118 2.108031092152321 -0.003973873717165288 -0.033745011336082154 -0.004801854056978404 -0.12460635223459358 -1.4320569381282449 -0.01377270436199406 -0.10644977068617588 -0.4652673082599474 -0.07887604520441781 0.45630396972812987 1
207 -0.1895203271061369 2.0758256717802066 -0.25039660267080305 -0.26390173232412906 -1.5080157263286247 -1.0817690964852136 -0.9552991612545965 -0.9737008014760169 -1.4261265053695424 -0.732562467942171 -0.8527554728373825 -0.12129510740690476 -0.7257441942852874 -0.5594392110378431 -0.6996880051467007 -0.7516102859929719 -0.8085577562298909 -1.0733635932309107 -0.741278773394871 -0.7984522205137903 -0.32702262051655734 1.620747909827123 -0.30236237988947623 -0.3515528832409434 -0.9454785441743634 -0.6906253627558445 -0.9251951358546624 -0.8648132236498692 -0.3344853818047848 -0.7390152129800109 1
208 3.295333859699375 -0.4257714891640644 3.3871099804095697 3.854074441967363 1.3193872824124728 2.500818571322872 3.1136414231858 3.6725692353119723 0.5271282126302447 -0.22506021535234103 2.128091082727885 -0.6639653670798608 2.156324021062859 2.480977044069201 -0.22400205212834481 0.9474317127485353 0.3569779141399316 0.5326743056245641 0.339952263401333 -0.15504668760839535 3.491579232676256 -0.341519777182387 3.6350276010712754 4.137101433347852 0.9043960706773301 2.1592805673235262 1.7890517749488237 2.4513874208917117 1.276824107144361 0.23297822534640528 0
209 0.10585443689367809 -1.9546545912481443 0.09518917733196373 -0.04035526689190902 0.977793161044306 0.1053515738041351 -0.00476229912376116 0.22855671484379755 0.16203387281719994 0.17328652480894907 -0.4052134303502859 -0.652897869306524 -0.4643680318490419 -0.35526334558163514 -1.0743698630252096 -0.7108109222074028 -0.10191528334295254 0.03306853565437303 -0.174631376731239 -0.37329771199782086 -0.11786926521695106 -1.5791325922257287 -0.13288095927016563 -0.2374643482888745 -0.046842771556834445 -0.48006311658256967 -0.07766462952239453 0.11410472225020983 -0.019018162582813317 -0.21533573794097827 1
210 2.9829182439303397 0.5376343011902875 3.0287552383328036 3.373421100261954 0.4725185231872253 2.01376555046661 1.7853254805964147 2.532475216403245 0.6549112315648103 0.6510190921909973 2.116180689661696 -0.5741553441650787 2.071178756026809 2.190554476825457 -0.6840207032603217 0.3712105612016624 0.12653660471030412 0.6770409079860806 -0.21216571283502633 0.3650489077736848 2.826844311377507 0.20400692418540212 2.932081814319828 3.0964171083613374 0.08028131335003609 1.0466722031028075 0.9288558065044921 2.0235200343651565 0.4145470412709726 0.7073376228420792 0
211 -0.5530584981828329 -0.3373429383585927 -0.584037224604344 -0.5795971224383328 0.5792666861147775 -0.6400101114206429 -0.8022540635214715 -0.5032185638087049 0.32267538233494003 0.5035882702095944 -0.1410192568820966 0.5336830395069607 -0.22576327750383288 -0.3497629181717158 -0.5360147024613378 -0.7650237754567206 -0.6824947550138558 0.5505173688377853 0.20071198430663728 -0.146346906740186 -0.7121961263158322 -0.7746842624475562 -0.7482563810618981 -0.6774698998836798 -0.8052036918633342 -1.0221813830141857 -1.0669139808510124 -0.8494343602907297 -1.0899889273261203 -0.564455387967 1
212 -0.3485682769521914 -0.7841398266388717 -0.33895553318402716 -0.4058224527448386 -0.6824965996888883 -0.17531983626906508 -0.5004325582298949 -0.46530140978617474 -0.12273971223697372 -0.06345335279580269 -0.6888973379267842 -0.8085685756921464 -0.5826803478002969 -0.5213762533612009 -0.5723495089637912 -0.5504079440367406 -0.5568296380730948 -0.6832493475236674 0.06026092017633513 -0.7216671980682905 -0.3705099518164753 -0.6281248501397922 -0.3005752295841759 -0.4162440710103755 -0.05122636069155361 0.0034030679844666597 -0.30314823530534823 -0.2041311631022813 1.0487170409377047 -0.15327002238079682 1
213 0.946536457508537 4.651888980771191 0.882745805896076 0.7557090546663399 0.1252311664629227 0.4824860140780502 0.6641665611896835 1.0108881988596734 -0.009560466894930265 -0.44478884426693255 0.4743510515376613 -0.6545307788140655 0.0672948440155937 0.1905990705787655 -0.7270224467357024 0.13256222782579924 -0.19475494757359374 0.3153133537544161 -1.0028083410857782 -0.3918320277605277 1.292362764080395 3.125424542853501 1.0108952361220185 0.9271528228320143 0.18110386344858795 0.7585009115121926 0.24904672268652336 1.4007522013069322 -0.07725826459302326 0.05620176763481578 0
214 1.5088845658928007 -0.1092903599655335 1.4882417494050948 1.4564959386675993 0.8923946307022639 0.766758205239293 1.7175286366457274 1.8179819059106712 0.04155274067889539 -0.23356583969742162 0.5801009051253382 0.3468056180883233 0.3786690981299846 0.6029111092263232 -0.5843499955150601 0.1593892067532968 0.35366221184598023 -0.0058617840835640395 -0.4083128886032067 -0.2208624211331095 1.5926324325798296 0.767446442613029 1.3891753840772467 1.510779842925803 0.8342586445218161 0.7521395143468368 1.5419793132930342 1.3916162428757601 0.5908851279129979 0.3404849112274341 0
215 -1.2327044695785612 0.15134115819796284 -1.229899564347298 -1.024983591734588 0.4298192580162052 -0.972798089873404 -1.0291349463053354 -1.057092746343255 -1.6853434866368038 0.8650773048755341 -0.25326568850587633 1.4989139928537105 -0.3633817872714015 -0.44635042348990034 1.3630622942769761 -0.6062974834690271 -0.8815032066968234 -1.0618467069751043 -0.3066069456122983 0.7081228750548095 -1.1077237586150877 0.09978689765543637 -1.1453016072227786 -0.9044164308900294 -0.03369200415267572 -1.0148657762740265 -1.2075293954360842 -1.3825175347496155 -1.5639986464647748 0.3288475895598999 1
216 -0.5473782142597596 -0.9493615926175164 -0.5749753805518282 -0.5602572246655709 -0.6853432173669562 -0.7370416860036803 -0.8645267201872878 -0.8253854030885692 -0.6338717879752364 -0.21371938289223355 -0.5329794650603118 -0.7430707610007597 -0.4490220829181259 -0.469232201515165 -0.5460151079207287 -0.6314477762135561 -0.7090203733654676 -1.0793653508571759 -0.8732543422759307 -0.6543384591751922 -0.5216801987161909 -0.6997761183791438 -0.481077410419505 -0.5229493725757157 -0.2967073522358551 -0.39100355626758926 -0.7459596568748508 -0.8990730677667642 -0.3878721419808102 -0.24027285579998015 1
217 1.8014191879310786 0.3212170584295274 1.7600970709805726 1.8319174836682741 -0.3416141327402384 0.5109132331941745 0.7972492548706617 1.3562696222349648 1.2938263262376375 -1.2202182637268117 1.546286427494659 0.9419104163923342 1.13953114673701 1.321486946058193 -0.7010213925412864 0.30246642769995 0.29961626445457124 0.8424947668723128 0.9223398655278441 -0.40696208144437007 1.4414621856801142 0.2398325583050776 1.3325822910760707 1.3437781353688454 -0.9936980246562792 -0.005502888047031452 0.17756362212979965 0.7109873397534467 0.5164672197888407 -1.1130719808650347 0
218 -0.6467831829135435 -0.4257714891640644 -0.6767151751414388 -0.631928610529336 -0.8995511976415774 -0.9081735450827483 -0.777395220739553 -0.673716786998449 0.23140179738167885 -0.8006074627028187 -0.715244571073202 0.03836715555270804 -0.8079192756572887 -0.582100971966711 0.18468118431209302 -0.5856183538790812 -0.5893235205538193 -0.5220129399423782 -0.31750401093275316 -0.7606270863041845 -0.6645671444159218 0.011851250270778003 -0.6824296781500043 -0.6377410726122351 0.19863821998746584 -0.4991473080786367 -0.6744765563181272 -0.3533518174780906 0.32395132703286816 -0.7689397544108135 1
219 1.719055071046515 0.05825847313957088 1.7230258907657356 1.6925564555998418 1.2055225752897503 0.8444592708233658 1.563102492091385 1.9856427910443077 -0.31989065573601827 -0.32145729126325845 0.10079781446173793 -0.3916323480998853 0.07026502767964204 0.26738503722124024 0.6820346824924624 0.09343955022319878 0.7813878077657206 1.1847571612350083 0.48040332753163517 0.0794691444911607 1.192963149680582 -0.09888252791731045 1.1538672605460418 1.051964625321951 1.4961806038644838 0.2540421162994827 1.24069483577879 1.5636767933294993 0.2123244648466328 -0.1770988238905094 0
220 2.874992849391946 0.21184490348591684 3.0575883784998994 3.145892891170636 3.440117452573175 3.455973133624647 4.243588822363916 3.927929660361665 3.079137647923426 0.8466484521278581 3.983946875041313 3.452962370211697 3.4359781496569775 4.23891364427944 5.429893847762571 4.056566791366628 3.179966847210218 1.0420126555292395 3.018208762161919 2.2998045225950228 2.0192224443790265 -0.2747538226866278 2.1933930214623762 2.096164775730718 1.6320718670407925 1.0822960272287996 1.4781722503799857 1.6778762737191493 0.5197027810116298 -0.21367326341704546 0
221 -0.7717494292211575 -1.0168465392848505 -0.7595074776212437 -0.7192425607681293 -0.41064461143338865 -0.43192286749061326 -0.33885008014742424 -0.6528236613125651 -2.3534661284946754 -0.08897022583104548 -0.25543121451791084 -0.1974975510921741 -0.4772388277265843 -0.38650577326997737 0.10501128748561275 0.6596005846722602 0.9037372224125301 0.8635820233970284 0.13411880734830423 0.3741269399839901 -0.8074540901156531 -1.2990412709264463 -0.8382096130953458 -0.7266914557952041 -0.8884918854230075 -0.5932959861259017 -0.5151987752118705 -0.7863962471156429 -1.7629856616663255 -0.5361933210601318 1
222 2.602339221084424 1.7174573343053994 2.756899916757326 2.9297410925338836 1.2624549288511109 1.972072295762961 3.3082434752664756 2.9168055530941963 1.4179584017740732 -0.07195897714088428 0.5367903848846514 0.622585890473109 0.8915208107889814 0.9421774718701514 0.7620379261675889 1.43814186896401 1.9127054304619642 2.0850208051748007 0.14622665770436466 0.52958824158547 1.8328481673793775 1.1403587250405622 2.0772282516178575 1.943226369862767 0.9306976054856475 1.0333132690555606 2.480374915232305 2.416366246905552 0.48087604633815617 0.20360784209024774 0
223 1.764497342431102 0.5166906970521494 1.8095253112670238 1.7323738921908225 1.468834710511046 1.5759863760782964 2.105477243696881 2.6175953580864757 2.7651565156842075 0.553204412222565 0.5956205082115845 -0.3517167823599821 0.567275760797048 0.6319533659506977 -0.518680666331727 -0.06528674176449477 0.00020834731075287884 0.3072028704756793 0.8642221838187535 -0.1701767412922377 1.8701230227793073 1.0068268160490437 1.9014918049299956 1.8588465597287254 1.176178597029949 1.2400586769296218 1.2579659204770584 2.3432785794561766 4.298838289229705 1.022653624214788 0
224 -0.26336401810609117 -0.432752690543444 -0.32289135509093075 -0.32220583590377927 -1.7229353610227627 -1.1200510848949277 -0.570489296978938 -0.976796079355407 -1.1851642410929335 -0.9140157873038983 -0.8740498119557202 0.6969739902611102 -0.9866253261108581 -0.5891415190514078 -0.2600035117821516 -0.5470545716708036 -0.03659594815210838 -1.0402728214536643 -0.11167055487972435 -0.5843619608874214 -0.482334518016265 0.34893789857863566 -0.5653713331528353 -0.48972482233543685 -0.9761636681174006 -0.6581822372125303 -0.20335974593757294 -0.9883009284445441 -0.21638739717296948 -0.6630955430537175 1
225 0.5801581444703049 -0.7492338197419749 0.5902953842012433 0.38000309940430094 0.17362366699007967 0.7478067258285435 -0.2798417159681226 0.13028164217315832 0.6512602881666802 0.4142792145862436 -0.832543896725062 -1.3205764235012678 -0.7509907554296974 -0.5594392110378431 -0.8436938437619284 -0.41124299085034755 -0.41060716690983484 0.02658014903138352 -0.14557253587669367 -0.037410520216521206 0.14512554788255383 -1.0645462112340234 0.1739131764730504 -0.03354647379827361 -0.3887627240649674 0.0046753474175376675 -0.29163417883983567 0.15978451440606964 0.4080759188253944 0.31333116066985434 1
226 1.7928987620464691 0.5795215094665636 1.7230258907657356 1.8148528679864253 -0.3458840592573408 0.16599630791853365 0.11538877432217846 0.7462419401718104 -0.7068906559378453 -1.02458890378995 0.6241332673700363 -0.5444001042498782 0.6692520665960379 0.7063191445328079 -0.27767089476040874 -0.3587068237839983 -0.2700213896462923 0.4564357628044375 -0.737646418288053 -0.7144804225684654 1.6651113180796928 0.11281440097168238 1.606612004555448 1.5810963513708378 0.014527476329241236 -0.10601296325965216 -0.009539795434778803 0.9424316200098037 -0.47199673377333556 -0.9196707779141118 0
227 1.332795764277526 0.623735784869299 1.3070048683547764 1.2943820896900353 0.3871199928451841 0.6549444767158706 0.8863895496947131 0.993606230699745 0.479665948454549 -0.20946657071969274 1.4939528822038295 1.2957074763596579 0.8053854845315825 1.3984929297970645 0.3443543248136994 0.8608029266284912 0.7067845061518123 1.0614778153982078 0.39806994511042365 0.2723773289601504 1.3234251435803361 0.8553820899976874 1.1330171736508723 1.2699458015015588 0.29069359181657933 0.5854709086145164 0.5709605513681444 0.85564001491367 0.17187994956176467 -0.04465502015047875 0
228 2.153596791161628 -0.4746398988197201 2.0154763124605677 2.5344108292377183 -0.17935692509035883 -0.35479034628886275 0.3515477807504049 0.9216410200039225 -0.3454472595229316 -1.737643744719236 2.8939654489840296 -0.30091515323646895 2.409284663117634 4.043098428486309 -0.49101287789407927 -0.8024697668763525 -0.36252948364753845 0.02820224568713083 -0.9580092947683543 -0.7534403108043595 2.9987228112771827 0.12421346637339742 2.7474096161054655 3.9771313766353984 0.17233668517914838 -0.5818454712282614 0.0667408286492418 1.0261779056288804 -0.6321570143014136 -1.053222898003431 0
229 -0.47637466522134253 -0.6701135374423421 -0.375614811396478 -0.5067880955291111 -0.08684185055314729 0.8861525255270148 0.8236146941848179 -0.01184320045550872 0.9871470807946806 1.4817350698939018 -0.04717979636060849 -0.0178775052626099 1.0583461265863576 -0.2232530877435697 0.0643429719507569 2.751546045622741 2.6361916710021758 2.5002775490461286 1.4260264403399616 2.2059981897552 -0.5154677228162027 -0.7567714453877185 -0.28121443461008966 -0.5273441543535304 -0.6517780721481468 0.9658824591027897 1.0430368664541578 0.2983465506121786 0.5342628065141825 1.0780694416792358 1
230 -0.6183817632981767 -1.007538270779011 -0.607103736738021 -0.6489932262111849 1.3834361801690038 0.30813240349915477 -0.9678541323565756 -0.8008811198767302 2.3635527418898583 0.427037651103864 -0.15942622798438844 -0.3027294971337371 -0.20348690002347106 -0.30113913986802837 -0.4136764090081238 -0.07311127728501475 -0.7983453931645204 -0.20700176939623835 0.8230554926081477 -0.2575528013164271 -0.7163377769158243 -1.2957843950973849 -0.7199598345613101 -0.6757119871725539 -0.13451455425122757 -0.4183575640786189 -1.1560519679881887 -1.0193631871105286 0.3611602810949472 -0.44586553859308214 1
231 -0.07875479060620653 -0.48394816732555906 -0.14536159206209576 -0.18824860280126574 -0.605637922381051 -0.8145532367936457 -0.9365922543126476 -0.9675102457172364 -0.7214944295303675 -0.5525267526379575 -0.6737386558425439 -0.6545307788140655 -0.6787162862711901 -0.49343408211881035 -0.8140259742324024 -0.9115102583087433 -0.7548765360908165 -1.1325701211656898 -0.9773818553380511 -0.7893741883034849 -0.161356596516869 -0.341519777182387 -0.20734555532434432 -0.2719194374269416 -0.7306826765731004 -0.7586923124251509 -0.9165116182702551 -0.9678972879482599 -0.8683529835650433 -0.6719620738480296 1
232 0.30182423223970917 -1.4147750179094738 0.23400015213641254 0.16186042893799962 -1.190617855224036 -0.6633204310958647 -0.6888826744706006 -0.5764734736209398 -0.3308434859304094 -1.043017756537625 -0.8188288986488446 -1.4593737316422948 -0.7564360921471192 -0.49761440695034914 -0.6763537257414556 -0.5940017847939242 -0.5432352586678939 -0.42841796290575485 -0.4930678410956306 -0.7670573591198175 -0.014328000217145946 -1.6198435400889966 -0.08224503395332405 -0.10808197275001044 -0.8665739397494092 -0.5125062421258839 -0.6524079480925615 -0.49983168432454805 -0.6693659683634922 -0.9024918745001327 1
233 0.4608721820857637 0.22348023911821593 0.4378916433180206 0.30264350831325265 0.43693580221137457 0.30434210761700475 0.32518234143624875 0.40498755396903957 0.45045840126950565 0.032943723115114724 -0.20887240525917247 -0.5369612942710779 -0.30793835887583426 -0.17924966846421464 -0.7583570505084601 -0.0971437792408979 -0.26703725758173597 -0.5124425696734687 -0.341719711644874 -0.2511225285007941 0.6814693005815443 0.7511620634677216 0.5551719082704456 0.36462075527173593 1.0008350316411627 1.2324250003311952 0.6016647019428445 0.5069509347906056 1.767011632396962 1.2443168940725788 0
234 -0.8711543978749413 -1.007538270779011 -0.8435354861082098 -0.7991618442114549 0.49386815577273635 -0.25339993144135303 -0.43728105358694014 -0.4000426344956977 -0.1300415990332348 0.889176573853264 -0.8845165210138862 -0.7154927337622812 -0.7480205717656492 -0.649866237656918 0.12501209840439442 -0.3749147902193615 -0.14302999178795078 -0.2751298289376281 0.3556924688642119 -0.33206831570935064 -0.9006412286154776 -0.9407849297296894 -0.819146676505476 -0.7745066815378278 0.4134340875887295 -0.21161215620455745 -0.20287999358484332 -0.10820359957497537 0.6475074493118133 0.3798301416271922 1
235 1.1623872465853244 -0.13721516548305118 1.1669581875431663 1.0753861884396416 1.3122707382173024 0.8368786790590658 1.1098680353099406 1.4723425427120973 1.023656514775985 0.04286695151770925 1.5466473484966647 0.6824592390829636 0.99547723903067 1.2865042277311056 -1.0473687682848545 0.2309278172266234 -0.12346734825363706 -0.41754991531224755 0.7504083904717846 0.5034888989808421 0.8968351317811395 -0.25195569188319766 0.8292016217498227 0.7742144169640636 -0.19150121300258288 -0.1562680008659626 -0.04744023130042429 0.27246133505719117 0.1945288781212901 -0.2258647432592239 0
236 1.5344458435466308 3.0671562676520754 1.484122729381224 1.6157656850315218 -0.8653917855047613 0.16410115997745864 0.32267134721585305 0.4501270230434802 -1.4005699015826292 -1.3704842938232427 1.2055770016012564 0.188957699025979 0.9187474943760906 1.5305031876351298 -0.5006799365048238 0.05375797722627549 -0.17419759335109464 -0.16482725634680667 -0.8744651273115367 -0.582092452834845 2.4085376007782933 3.2133601902381597 2.172542934567206 2.8063615110255693 0.36959819624153295 0.9887834888980703 0.6107799966447086 0.7292592566157908 -0.30374755018828486 -0.4580570184352606 0
237 1.6082895345465842 1.3567619297041325 1.5829792099541253 1.5275985040086362 0.3657703602596741 1.0339740649308609 2.080367301492923 1.7019089854335383 1.4252602885703343 -0.23640104781244947 0.3252906777092978 -0.032392256440756516 -0.05002741071431177 0.5058835697153451 -0.6693534419198819 0.35276701318900766 0.519115756314159 -0.2216006392979647 -0.5766120085524482 -0.21594515368586076 1.3172126676803477 1.286918137348326 1.2342890242845546 1.2453350235457967 -0.21341915867618116 0.8386545157956748 1.415804444525126 0.8921838486383578 0.6539785717573924 0.03902286422083744 0
238 0.26206224477819595 -0.05111368180403884 0.21793597404331608 0.13370381306294907 -0.299626521988735 -0.34815732849510034 -0.17500770726659737 -0.1436504501528753 -0.914994429631281 -0.5170866512001201 -0.06919597748295758 -0.03420660033802505 -0.11685654315539737 -0.0406388977342458 -0.6963545366602373 -0.512961952617109 -0.073731813844365 -0.38494577253172513 -1.092406433720626 -0.7855916748825243 0.27144589118231593 0.3880204085273725 0.19476326336822053 0.15191331722550566 -0.34054324358305105 -0.2809513853069349 0.06913959041289025 -0.03968391134118535 -1.001010993699411 -0.7983101376669702 0
239 -0.8484332621826479 -1.2146472450339323 -0.8538330361678871 -0.768729946245491 -1.6809477502712593 -0.8281983019693853 -0.5492713958165933 -0.8823901040340056 -0.44402273127245284 -0.27892916953785346 0.061457425243114226 -0.7396235075959499 0.22966488431689783 -0.25295539575713444 -0.500013242807531 0.46901725520816334 0.4362231989653719 0.47265672936191144 1.2686243857111748 0.3919047530625049 -0.8592247226155556 -1.60518759885822 -0.8233166938845101 -0.7507748599376285 -1.9168818964282384 -0.8184894457794949 -0.7296480768820414 -1.1478756690423482 -0.5253834939493619 -0.7628440144897235 1
240 -0.3372077091060449 -0.7259631484773766 -0.3620220453177036 -0.41890532476758946 0.17291201257056293 -0.3028632927034092 -0.7010609964395202 -0.645343406437372 -0.27973027835658376 -0.11306949480877533 -0.9361282243007044 -0.5658093622376443 -0.924994015081857 -0.6375452802586985 -1.3847157791149711 -0.705780863658497 -0.5226779044453947 -0.7280192152222947 -0.22306277815548076 -0.6895158339901256 -0.4989011204162338 -0.43271230039610675 -0.5233733009782786 -0.5268167805401928 -0.6649288395523055 -0.37191936477152204 -0.437478894069661 -0.4678558298154462 0.6410363268662342 -0.3106509439798286 1
241 -0.25200345025994414 0.19555543360069827 -0.21003020643686826 -0.3185085025060455 -0.9621767865590751 0.34034991849742907 0.15317923733913563 -0.5310760647232167 -0.7689566937060631 0.21581464653435503 -0.4481630295889668 -0.7318218288376962 0.2489710781332115 -0.36362399524471267 -0.7040215141791034 2.29660519464393 1.4899533879831506 0.3055807738199317 -0.6395728304039628 1.640890684663689 -0.17171072301684967 -0.028859697592489825 0.23050626947422637 -0.25855930082238493 -0.5378047546454356 1.9741639098116741 1.8394257719854408 0.32118644669010815 -0.09020050948418142 2.2695095171648654 1
242 -0.30596614752914103 -0.1628129038741087 -0.28334876286176996 -0.406391273267567 0.8425788213360734 0.4938569017244997 0.09078103096229963 0.1834172457693571 0.8155527410825494 0.3136293265027854 -0.3413304129952729 0.5318686956096926 -0.13665776758238568 -0.4129078248375904 0.25535071622512123 0.7736152451141245 0.6374863282082265 1.1296058749395974 0.9756144070945103 0.7262789394754201 -0.43056388551636243 -0.13470816203698596 -0.3884434529281068 -0.5087102796155961 0.08466490248475525 0.07337843680337948 -0.07142784893690873 0.17044313257577037 0.34336469436960537 -0.04299254562654596 1
243 -0.07875479060620653 0.07222087589833014 -0.13547594400480525 -0.17715660260806404 -0.6775150187522692 -0.7777873667367917 -0.9463851317721913 -0.6703635692957762 -0.9369000900200632 -0.8601468331183848 -0.2283621393674816 0.8366784703507713 -0.26487069574713484 -0.2355740451417892 -0.4016759224568547 -0.8119709885798413 -0.8647920671353079 -0.7716536152618991 -0.04870973302820929 -0.555614858888121 -0.13236504231692345 0.3798782189547194 -0.18947405227134118 -0.23113586252882135 -0.9016426528271668 -0.891645513181086 -1.0778043592579762 -0.8482162324999067 -0.6273036724672291 -0.8221389391766829 1
244 -0.2349625984907239 0.5306530998109079 -0.277170232825964 -0.30940737414239267 -0.7501037695430052 -0.7696382305901694 -0.6950346103105703 -0.6365734524457664 0.012345193493852012 -0.8275419397955753 -0.5163770989680486 0.5844846686304739 -0.41486497078157114 -0.4258888335250002 -0.5143471572993243 -0.2810203639731203 -0.46233212269547785 -0.875467801229731 -0.27270496461532895 -0.6955678554636625 -0.42849306021636635 0.573662330783874 -0.4265693261078463 -0.45597289828182 -0.8052036918633342 -0.5570360222833741 -0.7243708010020148 -0.890241641283298 -0.4266988766542838 -0.9623409573617363 1
245 -0.39969083225985164 -1.2821321917012662 -0.4196883256518962 -0.4629889152790323 0.02204127563295614 -0.3868183464930293 -0.95316481616726 -0.7655433640870253 -0.6338717879752364 -0.2548299005601246 -0.8101667946007072 -0.9502688340688025 -0.7554460309257698 -0.5931018267865498 -0.3256728409654846 -0.7644648800623978 -0.8398579858847929 -0.6193387392872206 -0.8236121558160825 -0.9089016124058393 -0.5734508312160934 -1.3348669050461217 -0.5576270151632006 -0.5746320062828163 -0.11259660857762929 -0.681083267007811 -1.0547762463269514 -0.7792397463445583 -0.8602640805080697 -0.8160431992555937 1
246 -0.6041810534904931 2.080479806033126 -0.6260512288478274 -0.6040564049156496 -0.8532936603729717 -0.7550455914438922 -0.6057687657754991 -0.7601266277980924 -0.7178434861322364 -0.24915948433007085 -0.7722700893901062 0.8856657555770162 -0.6683206434470212 -0.5825410061595045 0.09767765681539302 0.023018730538517853 -0.08235263980863883 -0.42663365658443264 -0.37441090760623735 0.19180979309369015 -0.6583546685159336 1.9871464405965336 -0.660983874486401 -0.6273693876165923 -0.5071196307023977 -0.43680561585815064 -0.43699914171693127 -0.6615381485562923 -0.7340771928192812 -0.1111540011078166 1
247 1.5514866953158506 1.3288371241866146 1.4717656693096115 1.5247544013949947 0.486751611577566 -0.10671548080215167 0.9629748734167856 1.0758890343268679 -0.5425982030219751 -1.2599111773371898 0.22459371814970094 0.28693226947846867 0.024722211497568935 0.3485713457916505 1.619739367734674 -0.3458522297145724 0.5695144311822213 0.5180754357228378 -0.5003325513092667 -0.7519273054359752 1.070784456980812 0.8602674037412797 0.9691950623316792 0.9500056880766505 0.8956288924078906 -0.4438031527400419 0.6021444542955742 0.487156358189733 -0.9832154069740687 -1.276548642385156 0
248 1.8497016012772027 -0.4513692275551219 1.7642160910044444 1.9343051777593672 -0.13523435108030427 0.0617631711594113 0.8022712433114535 1.0444203758864008 -0.8784849956499765 -1.1365796243335158 0.752621144084074 -1.014859476811555 0.6202440361392417 0.8070869746825311 -0.2766708542144695 -0.3648546731215498 -0.16856089945137712 0.08497562863828885 -0.9422690893054756 -0.7882394342771967 1.88461879987928 -0.4082857316781457 1.7734126997168087 1.8729098614177322 1.0446709229883593 0.3259259042680024 0.6894593824923775 1.4707945492792507 -0.34257428486175845 -0.7423401620278781 0
249 0.03769102981679758 0.0838562115306284 0.24141438817937982 -0.07107157511923715 -1.2802863120831807 2.2544493389831284 2.655384977963564 0.749595157874483 -0.3929095236986272 2.111151271429892 -0.15292964994828534 0.49558181766432613 0.2638219964534526 -0.24393469480486665 -0.5810165270285966 2.7375736607646695 3.700532107360599 1.8043980837305051 0.6196436066263309 3.4742749398032835 -0.20070227721679484 -0.317093208464426 -0.007780437899145382 -0.30162816224496874 -1.8796213887831212 1.0498529016854854 1.9483295560550804 0.5465400879923508 -0.8133484427776225 1.3440653655085857 1
250 -0.37412955460602154 -1.4496810248063707 -0.43987152376886324 -0.4154924016312197 -0.6383740256788338 -1.2621871804755487 -0.9994549946202568 -0.9187596191168407 -1.2618340524536724 -0.2080489666621788 -0.4196502704305148 -0.4117715653595635 -0.5386226234502479 -0.4080674487168614 0.4976938751910252 -1.0682804164163069 -0.8525902826935666 -0.7117982486648211 -1.1977447318183525 -0.1679072332396614 -0.5465301023161439 -1.551449147678707 -0.6124329578590761 -0.5447474901936765 -0.7087647308995021 -1.2711028540945557 -1.1735149536275493 -1.1375215828203533 -1.8082835187853783 -0.5960424039217355 1
251 0.8386110629701423 1.8291565563754686 0.7921273653709165 0.7850033115868469 0.1864334465413859 0.12619820115595962 0.1494127460085418 0.3969914194472818 -0.06797556126501803 0.0017564338498181988 1.8909659844101248 -0.1176664196123681 1.5766431759627766 1.6471122487254213 0.5663633260121753 -0.1837725653609418 -0.1552980902755712 0.4515694728371953 -0.011175396924421953 0.2353086974347367 1.3855499025802194 1.4351059875706216 1.3355608749182377 1.349051873502223 1.211247310107706 -0.06275546253523315 -0.039764193656749054 0.6226730749187841 0.1767332913959483 0.3687469781343023 0
252 -1.3411978925092631 0.5609049724548849 -1.333286966946457 -1.0912511826324343 0.5721501419196082 -0.8101943965291732 -0.8578725855032389 -0.9375892262164646 0.7790433071012459 0.45538973225413465 0.0903311054035721 3.0138911470727625 -0.05299759437836013 -0.3337016701347511 2.5664444178903367 -0.48837055526690276 -0.6042441808766009 -0.5064408120472036 1.1983988536460235 0.3007461796173549 -1.1222195357150606 0.9058636653481392 -1.1476844742965124 -0.9161944460545729 0.8868617141384522 -0.8585662479212359 -1.0112147326990957 -1.1710200970679838 -0.04652043297652329 -0.0501966018969237 1
253 -0.9052361014133818 -0.1628129038741087 -0.8888447063707893 -0.8102538444046565 0.28748837411280226 -0.5636356493953223 -0.4941550726789053 -0.5055400222182476 -1.1888151844910635 0.4752361890593237 -0.09229492161132392 0.9546108236732127 0.07521533378638902 -0.3202806272545478 0.82604052110769 -0.23127867387838527 -0.39767592796342405 -0.03992581385425891 0.029991294286183807 -0.4137706056020992 -0.8012416142156645 -0.0158321942762444 -0.7297891612404617 -0.7175503096973496 0.17233668517914838 -0.5716672357636923 -0.628420330456077 -0.5441410827157324 -1.0511621926526473 -0.36717507779356584 1
254 -1.5706813630014271 -0.16048583674764855 -1.5602449702617425 -1.233456313314508 0.7856464677747116 -0.8693230122907117 -1.1148728439607505 -1.261819584082589 1.2828734960432464 1.5299336078493615 -0.24676911046977343 2.8306424134486616 -0.31882903231067794 -0.49563425308277814 4.569858978254962 -0.639831207128399 -1.0575006844597676 -1.9134474512424755 4.954254034095996 1.1442466724915645 -1.5152621776543207 -0.5271616994388878 -1.5074974024303038 -1.1259134324918891 0.10219925902363315 -1.1233912119149954 -1.3058306525103973 -1.7450628184932908 0.3902803321000517 -0.15437833873008613 1
255 -1.6780387291475138 0.3281982598089062 -1.5940209344574836 -1.2826592885305057 -0.1644121822805024 0.49575204966557496 0.5436388386106845 -0.7026060472060909 1.4982791565329432 2.808612467726531 -0.7639689063439746 1.3519521371749756 -0.8034640001612163 -0.6628472463443277 1.7964131975172448 1.6030160102892548 1.5131633040408112 -0.25566466906865953 0.3084718524755757 3.0203733292880135 -1.486270623454375 0.658341102339471 -1.4649036534873137 -1.1088616791939683 1.3427549841492958 1.1242812485201474 1.275716757528057 -0.5453592105065552 0.6814808421511023 3.582864391072281 1
256 -1.010321353990239 -0.22564371628852284 -1.03589372122298 -0.8930172304616235 -1.0632317141304906 -1.1318010021295923 -0.8646522698983076 -0.975248440415712 2.0459206662525093 -0.7254744476546032 -0.8061966635786443 2.404271597590604 -0.7866329593982764 -0.598822271292866 1.2263900863319688 -0.6800716755196452 -0.39668121727523864 -0.11129806670714326 -0.4083128886032067 0.2636775480919412 -1.1035821080150956 -0.38548760087471623 -1.1292172544750763 -0.9040648483478044 -1.5092081068993106 -1.2013183271906032 -1.1146013647123434 -1.4067278245922212 -0.3263964787478112 -0.9191166197394668 1
257 1.812779755777226 1.9827429867218145 1.7477400109089607 1.8887995359411036 -0.33947916948168716 0.0579728752772613 0.836169665286797 0.8893985420936078 -1.3275510336200202 -0.9749727617769783 0.4288750052849404 -0.05053569541343979 0.44599326118174487 0.6528549901083914 -0.6736869509522846 -0.2715191422696316 0.08873759855925722 -0.14373999982209082 -0.9156318185221425 -0.3434158559722324 1.6982445228796303 1.9057245448699978 1.6512907621879551 1.7428243207944178 -0.44136579368160295 0.1389008276065438 0.6832226019068917 0.6348543528270133 -0.7502549989332284 -0.036896805705455976 0
258 -0.26336401810609117 -0.8074104979034695 -0.32536276710525336 -0.3344354771424378 -0.8006312333287123 -0.9822738295787787 -1.0965300311807589 -1.17770540771016 -0.6557774483640186 -0.5468563364079038 -0.7755183784081577 -1.1672643641820943 -0.82277019397753 -0.5464582023504333 -1.1363723768734328 -0.9846137758861739 -1.020099562583995 -1.5264151891811524 -0.859935706884264 -0.45764776128524187 -0.3850057289164481 -0.8512208444305001 -0.45456801422421744 -0.428373668717144 -0.8578067614799703 -0.7612368712912932 -1.2520983890046722 -1.3643978838611244 -0.40404994809475747 -0.005309789750721381 1
259 -0.49341551699056224 -0.4211173549111449 -0.4666451539240242 -0.5460367115973636 0.5579170535292675 0.48059086613697544 -0.37513394663214367 -0.5189528930289384 -0.11908876883884369 0.43696087950645857 -0.5210690719941231 -0.6238683669502308 -0.3708072464315222 -0.4650518766836263 -0.10866404249670418 0.6467459906028342 0.5197788967729492 -0.20862386605198566 -0.2618078992948745 1.1684547583857123 -0.4326347108163585 -0.414799483336269 -0.35835975612221843 -0.49236169140212566 0.45288638980120566 0.6681690717641412 0.23225539034098425 -0.2522472108397871 -0.1322628053804441 1.5435623083805976 1
260 2.5966589371613504 0.6400252547545175 2.4768065551341056 2.9325851951475252 -0.8518703515339372 0.19252837909358292 0.5474053299412782 1.2407125814043964 -0.03876801407997364 -1.0302593200200039 0.9348862500969641 -0.6545307788140655 0.8598388517058001 1.265382586477015 -0.7103551043033842 -0.002131562206010979 -0.12180949710666139 0.7192154210355123 -0.11893526509336036 -0.020767461164294735 2.431316679078251 0.41407541515986396 2.2916862882538918 2.676275970402255 -0.41944784800800466 0.6618076745987854 0.5882316360664132 1.8270969280949585 1.1134282653934937 0.43912506631415077 0
261 1.1623872465853244 -0.0976550243332344 1.1010538671612324 1.0583215727577928 0.0782619747748002 0.13946423674348413 0.30383889056288443 0.7888020110134258 -0.01686235369119136 -0.8729052696360062 -0.0038692761199216794 -1.2093571425987195 -0.15794408384139796 0.1883988996147977 -0.7400229738329105 -0.49675398618174577 -0.2590795720762524 -0.05939097372322744 -0.9434798743410818 -0.5083334411261137 1.1536174689806558 -0.11028159331902548 1.0019594845955175 1.0625121015887062 0.4835715137442435 0.1401731070396148 0.5426551625570927 0.9591808771336193 -0.14358726966020682 -0.10893736840923877 0
262 -0.6865451703750568 -0.6096097921543874 -0.7104911393371803 -0.6578099443134734 0.6219659512857986 -0.822323343352053 -0.6638982819776623 -0.5911760435480433 -1.7255038640162395 -0.47455852947471516 0.1578233327786423 2.342583905083482 0.19402268034831888 -0.13128594144971753 -0.15433256076125554 -0.6526858011978249 -0.1748607338098849 0.206632877819342 -0.8417739313501734 -0.033249755453464674 -0.6086548613160271 -0.032116573421551185 -0.6285173106067788 -0.5869373952606973 -0.23095351521506027 -0.9635293011496057 -0.8040096915551431 -0.6840735126865165 -1.9231459421944037 -0.5827426077302684 1
263 1.1226252591238108 0.593483912225322 1.0475066068509111 1.0497892649168683 -1.6119172715781092 -0.3396291627602632 0.26994046858754084 0.22855671484379755 -0.15194725942201812 -1.3322089842703775 0.8338283695353615 0.15992819666968577 0.7157849439994606 0.792565846320344 -0.5036800581426408 1.5359485629705112 0.9683934171445838 0.42886011965673215 0.10384918145815289 0.46944627819219664 0.7228858065814668 -0.159134730754947 0.6504865912197939 0.6107285348293577 -1.9352929707940605 -0.36873866618884416 -0.08965843834063676 -0.34710891255012294 -0.8602640805080697 -1.0177567748261842 0
264 -0.024792093337009664 -0.7701774238801129 -0.09016672374222583 -0.12425629399433254 -0.8383489175631142 -0.8602263021735519 -0.6711801652168101 -0.5024447443388572 -0.35640008971732273 -0.5411859201778499 -0.057646505418774516 -0.3099868727228104 -0.10992611460595135 -0.16714872816239187 0.31168633364635634 -0.7001919097152683 -0.5243357555923704 -0.4460988164534012 -0.05960679834866415 -0.3649761824717076 -0.12615256641693529 -0.6672073600885297 -0.1805383007448398 -0.2295537410888081 -0.5641062894537536 -0.8210340046456371 -0.7699472745113352 -0.6102245153678764 -0.2843341828515476 -0.6431458487665164 1
265 0.43531090443193354 0.9099650414238529 0.7509371651322078 0.33734156019967876 1.0347255146056669 3.9240746750701594 2.872585978027802 2.290011782517678 2.494986704222554 2.5860486306969124 3.200748300688894 2.2446093346309923 3.59092273079816 2.1597520833299084 1.7730789181119992 1.9266164436021935 1.671985443921087 2.991772835737583 0.342373833472545 0.8499671283408311 0.7415232342814317 0.9710011819293681 1.0853598321761972 0.6072127094071059 0.7904227531746195 1.672633684173812 1.6595186397118078 2.0037254577642836 0.6086807146383397 0.9949457154825638 0
266 -0.8257121264903544 3.3789832625976874 -0.8723686262753055 -0.7624729204954797 -1.3208506139956504 -1.3000901392970476 -1.0525123024972205 -1.0958611017826172 0.12187349543776543 -0.6404182042037943 -0.6542489217342349 0.7804338095354533 -0.6816864699352383 -0.5473382707360204 -0.8940292179075288 -1.04318601321121 -0.9506355995257116 -1.3588526046424485 -0.16736666651760257 -0.47693857973214093 -0.8095249154156492 2.6222372272635113 -0.8584639832220826 -0.7201871787640384 -1.4215363242049175 -1.179498734913433 -1.1946240571476554 -1.2879603649869853 0.016573010867871187 -0.6026923020174697 1
267 -0.62406204722125 0.5213448313050689 -0.6359368769051174 -0.6151484051088513 0.09391837200417437 -0.4899143944875066 -0.697043405686887 -0.7438764189312937 -0.451324618068714 -0.12157511915385594 -0.3369993609712041 -0.533695475255995 -0.42872582788046293 -0.34206231979782864 0.2540173288305359 -0.022810691795957082 -0.4490693135196719 -0.6626487199956757 -0.9398475192342636 0.023109694518848097 -0.5382468011161596 0.0769887668520063 -0.5874128535848719 -0.5231251638468284 0.7728883966357404 -0.09138174977933398 -0.5847628663576754 -0.6415913059815668 -0.7486372183218339 0.08113888549381768 1
268 -0.7717494292211575 -1.9709440611333628 -0.7673336156665983 -0.7155452273703954 -0.1871851237050469 -0.7105096148286307 -0.6739422588592455 -0.5852434276125454 -0.527994429429454 -0.23640104781244947 -0.9541742744009906 -1.3719223557939615 -0.8727682856556754 -0.6564667505488212 -0.3336731653329971 -0.5694103874437182 -0.5555033571555142 -0.8655730116296722 -0.859935706884264 -0.6010050199396479 -0.7142669516158283 -1.5807610301402593 -0.7005990395872239 -0.6505738354034539 0.9833006751022837 -0.09710700722815423 -0.2973912070725919 -0.3810642247193121 0.18643997506431648 0.07116403835021706 1
269 -0.39969083225985164 -0.3769030795084087 -0.4526404858428631 -0.43682317123353076 -1.2382987013316762 -1.1204301144831426 -0.9388521491110038 -0.7885000083591692 -1.2873906562405857 -1.043017756537625 -0.39619040530014277 -0.6046363216391865 -0.37476749131691983 -0.37616496973932895 0.09867769736133193 -0.7678182524283349 -0.8790164299763598 -1.0013425017157271 -0.13830782566305724 -0.9890908969302036 -0.507184421616218 -0.7681705107894334 -0.547797688484049 -0.5164450955445501 -1.1208221095631492 -1.0064687320157568 -1.1394045613484685 -1.1950781209367367 -1.1902913252325935 -1.3131230819116917 1
270 -1.010321353990239 0.21649903773883633 -0.8987303544280792 -0.9004118972570913 -0.40068144956015034 1.1685295687471824 1.7476605672904775 0.2706009060388479 1.3741470809965075 3.076539634596581 -1.0599241279886675 0.025666748271829954 -0.24902971620554418 -0.7284563444898462 0.4860267354884025 2.8476760534462735 4.032102336755747 2.8214526868841086 -0.5293913921638119 3.179238892968358 -1.1222195357150606 -0.4652810586867209 -0.9159506513759084 -0.9293787913880169 -0.7920529244591754 0.6847087043940661 1.5870760344496246 0.4856336984512041 -0.49141010111007283 1.9979720115890705 1
271 -0.24348302437533428 -0.5281624427282953 -0.30559147099067296 -0.30855414335830034 -0.8476004250168359 -1.030979131664405 -0.6686691709964143 -0.6283193781007259 -1.152305750509759 -0.8587292290608719 -0.4059352723542972 -0.5917544799685813 -0.4069444810107758 -0.3444825078581932 -0.3363399401221681 -0.8069409300309355 -0.30848353625612945 -0.444314510132079 -0.6928473719706291 -0.4913121307317911 -0.23383548201673252 -0.3382629013533251 -0.25083287941998444 -0.301979744787194 -0.209035569541462 -0.7835017613700384 -0.44899295053517346 -0.2714327235452482 -0.6386281367469927 -0.42757831882981373 1
272 1.1027442653930548 0.295619320038469 1.08869680708962 1.0014395204849633 0.2661387415272912 0.4654296826083754 0.35405877497080074 0.7403093242363123 1.1112791563311162 -0.287434793882935 1.2618806779141494 0.1290843504161244 1.2311118097118305 1.08694872129923 0.31868661746793 0.08505611930835577 0.18157726278989866 0.7597678374291967 1.020413453411934 0.07606488241229638 1.0894218846807768 0.0623328256212299 1.0764240806496963 0.95879525163228 -0.06437712809571355 -0.13718380936989538 -0.0853406671660695 0.5221775321758922 0.566618418742077 -0.4264700024805252 0
273 -1.343470006078492 0.5562508382019654 -1.327108436910651 -1.0980770289051738 -1.1863479287069345 -0.8302829647045677 -0.6459446733018321 -1.129548042703314 -1.9628151848947175 0.6297550313282934 -1.0342987368462613 -0.06323610269431829 -0.8376211122977713 -0.7378290727963489 -0.5086802608723364 0.07052483905596131 0.1809141223311084 -1.0816362861752222 -0.1249891902713908 0.2980984202226825 -1.3054875747647154 0.3766213431256575 -1.210830451750456 -1.0188565483843237 -1.0419175051381955 -0.4170852846455477 -0.4096532576113391 -1.354652861534541 -0.8489396162283066 0.4496540716323964 1
274 0.17969812789363182 -1.0587337475611265 0.11949139547280206 0.03927960629005229 -0.5415890246245199 -0.502990915280924 -0.5363397755815549 -0.35180788754186704 -1.0610321655564978 -0.5213394633726609 -0.22511385034943004 -1.4855002837629585 -0.16289438994814515 -0.24811501963640542 -0.7696908433624364 -0.582264981513144 -0.442437908931769 -0.1826703195600276 0.1316972372770922 -0.38275399555022244 0.20725030688243704 -1.2615871988922398 0.2066775987368893 0.00038124152645560187 -0.45451656108576227 -0.3394762392282078 -0.2738833417888371 0.15978451440606964 0.3368935719240263 -0.11503310833032798 1
275 1.3839183195851863 -0.08834675582739546 1.2946478082831638 1.3740169628719965 -1.0098576326667144 -0.455991246342265 0.049098526903729074 0.18960780152813747 0.49061877864894016 -1.7518197852943715 1.0265601846064178 0.22705892086861407 1.163292616049396 0.8997141722655738 -0.87102828535093 0.10238187653236464 0.2820430422966283 0.2942260972297003 -0.029337172458512827 -0.41944437573354 1.2530170833804688 0.008594374441716646 1.2193961050737188 1.1556814752783773 -1.3268507988949731 -0.17726061151163652 0.23273514269371387 0.10953674303462392 -0.09667163192975961 -1.0271774637951405 0
276 -0.7433480096057907 1.0798409416554173 -0.7187291793849222 -0.7149764068476671 -0.2668904186909522 -0.04246996559971104 0.28123994257932194 -0.20297660950785426 -1.546607637507847 0.41144400647121576 -0.600471692435382 3.0610640884017384 -0.46040778696364426 -0.5141156891801073 0.38635602774314115 0.24266462050740345 0.8450492918095889 0.14174901158944717 -0.6855826617569926 0.3567273782475714 -0.7846750118156958 1.8698989107503212 -0.7440863636828641 -0.714386066817323 -0.11259660857762929 -0.01631726322813643 0.43567038789837215 -0.27523937289156986 -1.2760336976365139 0.18698309685091288 1
277 -0.4394528197213654 -0.20702717927684494 -0.5000092161173784 -0.471805633381321 -0.8846064548317201 -1.178421641480036 -1.0915205977110694 -1.1863979797547808 -0.4184661274855406 -0.6021428946509301 -0.4810068407714878 0.2415736720467607 -0.5668393682587063 -0.3935463203546742 -0.21933519624729572 -0.976398013589628 -0.9958286217922703 -1.4391463891019436 0.6256975318043614 -0.6732510262799951 -0.5734508312160934 -0.4229416729089227 -0.6463888136597816 -0.5563497140871072 -1.252329783604739 -1.1961019815150116 -1.279065268751608 -1.6114951062295562 -0.6402459173583872 -1.0881348630060328 1
278 -1.2156636178093414 -0.8399894376739067 -1.1932402861348472 -1.028680925132322 -0.10249824778252145 -0.3818909618462345 -0.8223420172846381 -0.6386369710320265 -1.5502585809059781 0.8664949089330471 -0.5607703822147525 -0.0015484101871951572 -0.4406065625366559 -0.5521786468567494 0.5636965512230047 -0.2826970501560888 -0.7053731008421211 -0.8102595156686867 -0.2787588897933594 -0.11381729131992493 -1.0414573490152124 -0.4375976141396991 -0.9811816375193692 -0.8861341386943205 0.41781767672344866 -0.19061954555888352 -0.901207518218178 -0.7510705411817779 -0.6450992591925717 0.45131654615632993 1
279 -1.2642300453516186 -1.4310644877946923 -1.1471072618674933 -1.0875538492347003 2.0737409671005076 2.1994900486919553 0.376657722954363 0.5535608921797698 0.8958734958414194 4.671344199299258 -0.47198381572134473 0.3141474279374934 -0.5341673479541756 -0.49871449243233296 4.909872763874249 1.3079192420867827 0.6630172358716528 0.43859269959121655 0.6995554189763304 2.9068979266591963 -1.1739901682149632 -1.243674381832402 -1.1256429538644757 -0.9712171139128125 2.990984498803885 0.7126988519216314 0.09168795099118553 -0.10820359957497537 -0.08534716764999689 2.9067914180060157 1
280 -0.5019359428751726 -0.1744482395064078 -0.5337851803131194 -0.5352291216655259 -0.8248274835922913 -0.6858726915946565 -0.7830449577354437 -0.7663171835568727 -0.765305750307932 -0.3030284385155833 -1.029606763820187 -0.5850414075486887 -0.998803079133456 -0.6844749269201308 -1.1947080753865458 -0.8387979675073387 -0.6705582267556305 -1.0118861299780852 -0.972538715195627 -0.9225186607212974 -0.6169381625160117 0.29519944739912185 -0.6463888136597816 -0.5915079683096246 -0.6123257699356695 -0.36873866618884416 -0.37655034527299047 -0.4596334672273914 0.13305321488829108 -0.670299599324096 1
281 -0.7092663060673502 2.327148921437863 -0.7043126093013737 -0.6819848165294259 -0.19857159441731864 -0.35251616875957287 -0.21593691305904913 -0.7415549605217511 -0.046069900876234735 -0.16126803276423404 -0.3308637039371069 2.193807705507479 -0.35447123627925686 -0.37858515779969343 0.9400451433447453 -0.07255238189069191 0.35996204620448813 -0.4186853829712707 0.5094621683861805 -0.6305086246231404 -0.6521421926159454 2.1385911666478896 -0.6320916112173792 -0.6201619455009765 0.3608310179720934 -0.3254811654644251 0.09648547451848241 -0.704324887208948 -0.027107065639786942 -0.6509040632115392 1
282 1.0743428457776876 0.4026644078556194 1.3358380085218726 0.9644661865076241 1.895827362221254 2.9044850827718363 2.888907440460375 1.8282994988419718 1.100326326136724 1.18403821781607 -0.007839407141984597 -0.8022183720517071 0.1271935479072335 0.02580626537758039 0.03934195830228004 0.6540116307290313 0.9866297797613169 -0.20862386605198566 -0.5608718030895693 0.4932761127442485 0.9382516377810614 0.342424146920513 1.261096278864059 0.7443299008749238 2.4079671438861707 2.1465577729928147 3.0282521020496094 1.2454409079770081 0.5569117350737088 1.9868888480961813 0
283 0.44951161423961716 -1.2472261848043693 0.41317752317479556 0.3037811493587095 -0.12384788036803249 -0.1842270315921173 -0.2190756558345439 0.2685373874525879 0.01599613689198307 -0.7892666302427102 -0.33736028197321 -0.7281931410431595 -0.44258668497935477 -0.27275693443284427 -0.6080176217689516 -0.5772349229642383 -0.5011258395347101 0.14337110824519447 -0.46643057031229734 -0.5541018535197367 0.2548792887823475 -1.0466333941741857 0.20965618257905624 0.07421357539374214 -0.44136579368160295 -0.3776446222203423 -0.48593388169535956 0.34707166224509556 -0.2875697440743376 -0.7334736312335668 1
284 0.19105869573977882 -0.3792301466348688 0.16109349771389755 0.05662863223326503 -0.32524608109134745 -0.29262949382160425 -0.6040110698212221 -0.6788755834640994 0.2971187785480267 -0.5581971688680112 -0.666881156804435 -1.0790872507748537 -0.6851516842099613 -0.4529509363818036 -0.7483566450490694 -0.7694949386113036 -0.47460022118309836 -0.7946873877735118 0.24187867551724304 -0.6898940853322216 0.03330098168276449 -0.4783085620029669 -0.04054486016298383 -0.08979968055430144 -0.4282150262774442 -0.4209021229447613 -0.31754080588723893 -0.4800371077236754 1.1312238521188356 -0.6148837818596481 1
285 -0.271884443990701 0.5865027108459424 -0.2697559967829961 -0.35093127230155824 0.05548903335025568 0.006803880868237755 -0.07795778064829915 0.09288036779719328 -0.23956990097714823 -0.14567438813158579 -0.7628861433379575 -1.0968678209680833 -0.758416214589818 -0.5686799290865077 -1.2303761881917061 -0.6504502196205335 -0.5760607113780135 -0.8018246130588004 -1.1396270501092622 -0.7848351721983323 -0.008115524317157405 0.6860245468864934 -0.05245919553165258 -0.2459023293022786 0.7860391640398992 0.8660085236067047 0.4826861184658818 0.7018513813222749 1.2816774489785454 0.6779672395859216 0
286 0.23934110908590245 -0.5444519126135139 0.17509816579505869 0.08819817124468547 0.1558323065021543 -0.4830918618996368 -0.788192495887255 -0.28654911225138996 -0.11543782544071364 -0.8927517264411953 -0.4831723667835221 0.00026593371007337146 -0.4816941032226566 -0.3532831917140642 -0.653686140033503 -0.6582747551410536 -0.8162501855518584 -0.44171915548288343 -0.8526709966706278 -0.7901306909876771 -0.03296542791711084 -0.4359691762251681 -0.07926645011115707 -0.1527329556126075 -0.4720509176246408 -0.5761202137794411 -0.9868912884157004 -0.4530860303517182 -0.8036417591092543 -1.0897973375299663 1
287 0.18537841181670509 1.0821680087818775 0.22370260207673534 0.03814196524459544 1.4830677989013858 0.8255077914126162 0.4758419946599977 1.0671190803352621 0.5161753824358535 0.53052274730235 -0.1713366210505772 0.11638394313524592 -0.20596205307684456 -0.11214445406319792 -0.11266420468046046 -0.1329130844775613 -0.2899156034100011 0.007114989162414985 -0.18673922708729943 -0.21594515368586076 0.21553360808242128 1.2559778169722429 0.2185919341055576 0.07825677462933175 1.4216595885742493 0.5555723419373446 0.14494046214418094 0.7125099994919752 0.6798630615397078 0.28617741011227465 0
288 0.6000391382010608 -0.1209256955978326 0.6932708847980152 0.4272152027907495 0.7287141142133509 1.437640576379825 1.3308355267047722 1.0730516962707604 0.2350527407798089 0.573050869027754 -0.42542500646260634 -0.543492932301244 -0.19903162452739875 -0.26945667798689266 -0.8260264607836713 0.5215534222745127 0.2263392437582435 0.047667405556099364 -0.8066611653175979 0.10821624649046133 0.4723159452819384 -0.0956256520882491 0.584957746692117 0.2644197307375613 0.18110386344858795 1.3761925762682348 1.1054046723090176 0.8921838486383578 -0.21153405533878494 1.2387753123261347 0
289 1.2305506536622055 -0.17910237375932728 1.1999103477341333 1.1948384982125837 0.16935374047297727 0.01817476851468752 0.5612157981534553 1.0067611616871532 1.169694250701203 -0.36540301704617634 1.0630132058089958 0.4683666592053014 0.9484493310165728 0.8858530951925768 -0.1900006735664159 -0.5023429401249744 -0.12711462077698366 0.38992979991879534 0.3823297396475448 -0.015093691032853766 1.379337426680231 0.3261397677752056 1.3385394587604047 1.2699458015015588 0.3257623048943364 -0.2885850619053619 0.20874752505722943 0.7551444721707782 1.2849130102013344 0.10219689613030816 0
290 -0.8029909907980609 -0.25589558893249986 -0.74303139752576 -0.7550782537000119 -0.031332805830819974 0.533655008487074 0.8286366826256094 -0.5256593284342839 0.8849206656470283 1.9693908656785428 -0.5860348523551532 0.7713620900491115 -0.24605953254149582 -0.5268766807711203 -0.1259980786263149 1.8813459166620414 1.8868429525691426 0.2179875544095737 -0.07171464870472459 1.8459029120797528 -0.7639667588157347 0.37173602938206574 -0.5987314721851075 -0.7166713533417867 0.10219925902363315 1.4665244160162862 2.261607842387567 0.10953674303462392 0.658831913591576 2.535505440994216 1
291 1.1879485242391545 -0.16513997100056885 1.0969348471373612 1.0981390093487735 -0.7458338430259027 -0.3726047369349672 -0.08925725464008029 0.23784254848196817 -0.6959378257434541 -1.211712639381731 -0.5322576230563004 -1.3447071973349365 -0.5193164296339344 -0.25119525898596023 -1.3917160629365448 -0.910839583835556 -0.5893235205538193 -0.8235607082458151 -1.1929015916759285 -1.024268271745137 1.043863728080862 0.11118596305715141 0.9513235592786756 0.930668648254266 -0.3931463131996872 -0.06211932281869764 0.39153317144724087 0.6470356307352426 0.49381829122931437 -0.8071766684612823 0
292 0.22514039927821883 -1.0145194721583908 0.18457191184996188 0.09104227385832694 -1.0945445085892398 -0.35725403861226024 -0.41945299462212976 -0.43099541328959984 -0.45497556146684504 -0.8658172493484395 -0.57953827431905 -1.4214539441893868 -0.5148611541378619 -0.3746248500645515 -1.2567105892347687 -0.4347165974119079 -0.2915734545569769 -0.5510484700802563 -1.09724957386305 -0.5355675377570298 0.18861287918247216 -1.2143624993708493 0.14114875420921197 0.04573538947350316 -1.1339728769673085 0.157985019102611 0.20586901094085133 0.0014279015990885247 -0.34419206547315295 -0.0673755053109028 1
293 -0.9165966692595283 -1.4729516960709685 -0.9588680467765943 -0.8193549727683093 -1.5094390351676592 -1.2728000089455684 -1.076077983255635 -1.0918888285040667 -1.3494566940088035 -0.7609145490924406 -0.44527566157292114 -0.826349145885376 -0.5237717051300067 -0.4795730050458135 -0.29967178677106854 -1.0811350104857327 -0.9966575473657581 -1.3333856871472147 -0.5051756914516911 -0.4273876539175573 -0.8095249154156492 -1.2176193751999105 -0.8694847434381012 -0.7217693002040516 -0.6693124286870253 -1.0898666488535704 -1.216884566314313 -1.1431554238529091 -0.2633030349034167 -0.39322051200185626 1
294 1.4322007329313104 1.2822957816574192 1.6653596104315431 1.3313554236673744 0.07399204825769778 2.6808576257249923 1.4777286885979273 1.6219476402159576 2.1371942512057704 2.155096997212811 1.9862491289396356 4.265788436187907 4.061201810939133 1.669113958365099 -1.3007123732560884 3.2131936413334268 1.8901586548630942 4.720927870764283 2.941929304918738 3.4213197519098353 0.971384842580999 0.6941667364591471 1.323646539549569 0.7935514567864481 -1.2567133727394586 0.8653723838901689 0.4399881590729394 0.9454769394868612 0.4452848728874726 1.0171120424683429 0
295 0.742046236277895 0.5353072340638273 0.7468181451083366 0.6103754111092604 -0.018523026279513743 0.5545016358388982 0.5775372605860282 0.2904622724316018 0.30807160874241785 -0.8842461020961147 0.20329937903136341 -0.5391385069478001 0.07026502767964204 0.10677255685159387 -0.4216767333756364 -0.027281854950540006 0.16765131315530235 0.024958052375636215 0.8896486695664808 -0.4273876539175573 0.7746564390813695 0.5443504483223212 0.7815442802751486 0.6124864475404835 1.0490545121230785 0.82211488316575 1.2891498234044885 1.0155192874591796 3.1744807643103723 0.13212143756110997 0
296 0.33306579381661305 1.3916679366010287 0.4296536032702793 0.22044894277901408 0.8425788213360734 1.238650042566955 0.998128792502327 0.9954118094627226 0.41759991068633123 0.3689158847458118 0.12209215358007565 -0.37167456522993353 0.31283002691024875 0.06958966756053882 -0.60268407219061 0.2845817750816183 0.1281944558572799 -0.15671677306806986 -0.34656285178729807 -0.31315574860454765 0.8284978968812677 1.7966192045964398 1.252160527337558 0.6828029559855183 1.3909744646312114 2.2693327382841804 1.7334005020321797 1.3368004922887282 1.822016173184383 0.8209400486441972 0
297 -0.5132965107213191 -1.6055945222791763 -0.5403756123513132 -0.5426237884609937 0.4582854347968856 -0.6544132357728124 -0.6143061461248449 -0.30744223793727404 0.5380810428246358 -0.46038248889958083 -0.6105774804915424 -1.0001632912436815 -0.5920859294031164 -0.5039949027458556 0.3346872662029551 -0.7644648800623978 -0.4994679883877343 0.09957449854001518 -0.15768038623275413 -0.5851184635716135 -0.5734508312160934 -1.6344994813197729 -0.604390781485225 -0.5827184047539953 0.26877564614298105 -0.8121280486141391 -0.7099782304201241 -0.3151330580410211 -0.11932056048928594 -0.8997210836269098 1
298 -0.7660691452980842 -0.4606774960609617 -0.7541527515902117 -0.7306189712226953 0.9137442632877749 -0.17967867653353736 -0.8598813808795556 -0.7817935729538238 -0.608315184188323 0.4001031740111083 -0.43625263652277807 1.2539775667224862 -0.45991275635296947 -0.4170881496691292 -0.12566473177766851 -0.4542779362132081 -0.6735423588201869 -0.3692114349709756 0.27578065651421235 -0.1017132483728511 -0.7225502528158129 0.1763234796383803 -0.732767745082629 -0.663758180736898 0.39151614191513123 -0.4775185577164273 -0.9360375390263534 -0.7702560538872392 -0.5124412490582038 -0.16546150222297526 1
299 -0.6950655962596671 -0.7259631484773766 -0.6787746851533747 -0.6666266624157621 1.1699398543138995 -0.22194047561950866 -0.5776456305070661 -0.45395205756174395 0.1510810426228088 0.17186892075143614 -0.12225136477779885 -0.11403773181783144 -0.15447886956667517 -0.28089756699952495 0.6523668129629366 -0.701868595898237 -0.4437641898493496 -0.020460653985290372 0.11837860188542576 -0.22010591844891728 -0.6107256866160231 -0.6655789221739987 -0.6163051168538937 -0.5814878658562073 0.8868617141384522 -0.6779025684251331 -0.5909996469431613 -0.25057228512740554 -0.156529514551365 -0.20536089079737765 1
300 -0.8427529782595746 0.49342002578755123 -0.8657781942371123 -0.7809595874841493 0.3871199928451841 -0.8444965742626299 -1.0024430777425277 -0.9842763342306002 -0.7178434861322364 -0.19245532202953056 -0.4283123744786522 0.8366784703507713 -0.44456680742205357 -0.46967223570795863 -0.04432810070795651 -0.896252414043729 -0.8263299205254708 -0.9143981209676679 0.7746240911839055 -0.6562297158856724 -0.8095249154156492 0.5280660691770144 -0.8340395957163118 -0.7428642527375621 -0.1827340347331433 -0.9126381238267597 -1.133983359762623 -1.0894055350828473 0.12172875060852745 -0.7046574061520535 1
301 0.11437486277828796 0.01171713061037531 0.09395347132480242 0.013682682767279014 -0.8881647269293057 -0.49920061939877397 -0.007901041899255931 -0.507345600981225 -1.23627744866676 -0.7566617369199008 -0.5474163051405407 0.248831047635834 -0.4316960115445112 -0.3805653116672644 -0.9646987498205573 -0.27934367779015157 0.06287512066643586 -0.4782163302371992 -0.7993964551039616 -0.5552366075460249 0.006380252782815369 0.4417588597068864 0.024983984364693065 -0.08804176784317558 -1.0287667377340368 0.0676531793545596 0.5071534884550959 -0.28422306534888914 -0.6952504581458081 -0.5162436267729306 1
302 -0.16111890749077015 -1.2542073861837486 -0.1391830620262892 -0.26617701441504243 0.6219659512857986 0.28160033232410553 -0.12805211534519556 -0.11372943065210322 0.549033873019028 0.032943723115114724 -0.5351449910723461 -1.304065894036126 -0.4232804911630411 -0.4247887480430163 -0.3966757197271592 -0.13067750290026975 -0.21398602087851232 -0.5573746470376711 -0.25696475915245054 -0.3316900643672545 -0.2669686868166702 -1.391862232054697 -0.1835168845870072 -0.3410054069741882 0.2293233439305037 0.09882402546480246 -0.06950883952598993 -0.3609651161707339 0.2657112250226582 -0.12057469007677293 1
303 -0.7916304229519143 -0.15815876962118922 -0.7912239318050492 -0.7499588689954573 0.6077328628954579 -0.36672977831763504 -0.5747579871536108 -0.5927236824877384 0.4212508540844623 -0.09747585017612707 -0.5853130103511417 -0.37530325302447015 -0.6806964087138889 -0.4872736034197006 0.5120277896828186 -0.5068141032795573 -0.36153477295935293 -0.11778645333013277 0.4598199819263323 -0.9750955972726496 -0.7867458371156918 -0.43108386248157576 -0.8373160379426956 -0.7066512508883691 0.6983673813455059 -0.6161970159211823 -0.5267128316773831 -0.44440686984210476 0.2576223219656846 -0.8930711855311764 1
304 1.741776206738809 0.8704049002740369 1.6653596104315431 1.7323738921908225 -0.3971231774625657 0.5109132331941745 0.7244304224791831 0.9778719014795113 1.0346093449703762 -0.8941693304987092 1.2719864659703097 0.5300543517124241 0.8355823517827397 1.045805524273033 -0.34167348970051 0.5221123176688354 0.3457045263404968 0.14499320490094178 0.7298250448664817 0.23303918938216037 1.6464738903797278 0.9628589923567145 1.4547042286049237 1.5283589700370617 -0.5860242351273519 0.6338175270712201 0.6601944889758664 0.6500809502123001 1.2752063265329663 -0.014730478719676948 0
305 -0.13839777179847665 -0.6864030073275608 -0.1960255383557077 -0.23631393697180691 -1.3884577838497663 -0.8291458759399228 -0.8817270305969991 -0.8173892685668114 -1.6743906564424127 -0.4632176970146077 -0.7867069294703352 -0.5324254345279071 -0.7014876943622267 -0.567359826508127 -0.8546942897672583 -0.7661415662453664 -0.6997364069424035 -0.622907351929865 -0.8829406225607792 -0.4705083069165079 -0.33116427111654945 -0.4050288558490844 -0.33304179346379786 -0.39356699703685166 -1.0287667377340368 -0.6111078981888978 -0.8020906821442244 -0.43770716699257844 -0.8974730345701484 -0.20480673262273338 1
306 -0.13839777179847665 -0.858605974685585 -0.18902320431512717 -0.22635957782406177 -0.15160240272919615 -0.7209329285045432 -0.5241614536126352 -0.29944610341551586 -0.3454472595229316 -0.8785756858660609 -0.29224515672249457 -1.0081464043916621 -0.4307059503231618 -0.28925821666260243 -0.1903340204150623 -0.726459993248443 -0.4573585692545506 -0.12427483995312229 -0.18916079715851145 -0.7568445728832239 -0.29388941571661964 -1.0792021524647997 -0.3917198951544906 -0.3466307276497911 -0.20026839127202242 -0.7962245557007498 -0.5703702957757848 -0.34086600762215546 -0.5998014020735191 -1.044356367209119 1
307 0.1314157145475082 0.7889575508479441 0.18210049983563925 0.0062880159718111134 -0.8276741012703592 0.5431307481924488 0.17703368243289586 -0.2981564042991034 -1.305645373231238 -0.18820250985699075 -0.648835106704149 -0.1974975510921741 -0.3178389710893284 -0.45757129540613595 -0.9330307991991529 1.1687542889003895 1.123568284501513 0.691639777887807 -0.503964906416085 0.23114793267168016 -0.16342742181686506 0.2593738132794463 -0.04054486016298383 -0.25855930082238493 -1.3049328532213749 0.3997181113861289 0.45102246318572237 -0.06252380741911535 -1.0398377283728841 -0.21644405429026756 1
308 0.4608721820857637 -0.016207674907142363 0.6232475443922102 0.29496443125642086 1.9883424367584654 2.5027137192639466 2.54364573515595 1.9417930210862797 2.0568734964469004 1.8758289978826532 0.4158818492127342 0.1944007307177842 0.3024343840860797 0.23944286597884967 0.7627046198648818 2.2418334460002884 2.2426178087101354 1.7897992138287788 4.224150657625547 1.337154856960554 0.22588773458240194 -0.2454419402250744 0.361563958529581 0.06102923006029811 0.9920678533717232 1.59248007989033 1.9910275154480228 1.5058157232654101 2.1746923464684325 1.166734749622352 0
309 -1.2665021589208483 -0.27683919307063787 -1.2731492745979422 -1.048305233166448 -0.9429621172321153 -0.9487297110217521 -0.92918482136248 -1.1130141000309048 -0.48053216525375736 0.1874625653840844 -0.22944490237349863 0.17262860395056426 -0.2925924099449185 -0.4258888335250002 1.3130602669800224 -0.7214299346995372 -0.7156517779533705 -1.2753146268714588 0.7734133061482995 -0.30861673249939503 -1.0600947767151774 -0.1721622340711924 -1.0767941788529345 -0.8796298616631548 0.2819264135471398 -0.8191255854960304 -0.99835736964594 -1.3643978838611244 0.25276898013150095 -0.2879304588194053 1
310 -0.317326715375288 0.6819124630307937 -0.410214579596993 -0.36543619563112983 -2.408970221437165 -1.6101363424569097 -1.0948476650530938 -1.214049128810667 -1.5210510337209338 -1.4824750143668082 -0.8375967907531421 -0.13580985858505137 -0.8737583468770248 -0.5719801855324593 -1.2077086024837538 -1.2980982025618684 -1.0046152328712417 -1.613035150598062 -0.5342345323062364 -1.0691667060519392 -0.46990956621628827 0.5443504483223212 -0.5683499169950023 -0.477771015899781 -2.2408291334840205 -1.3991577790331664 -1.26756080733315 -1.6040797533029216 -0.9799798457512792 -1.4139798696969865 1
311 0.602879280162598 0.05127727176019208 0.734461085036724 0.45764710075671305 0.4440523464065449 1.6100990390176455 1.6924186944417694 1.1096791511768775 1.2390621752656819 0.4227848389313252 -0.32653265191303826 -0.4193918097280905 0.10095692554147383 -0.15878807849931448 0.7187028358435622 1.6331963615826894 1.6212551988236292 1.6794966412379573 0.8702761089967839 0.9683597984168977 0.23210021048239046 -0.42782698665251445 0.44198572226809363 0.1039223002117695 0.23370693306522286 1.2209744854335547 1.5232689715365761 0.9576582173950904 0.6750097197055233 0.41086299940728255 0
312 -0.9023959594518453 0.4794576230287928 -0.8266475040103388 -0.8071253315296508 1.874477729635744 0.3308741787920543 0.19586613908586448 0.20044127410600313 0.3044206653442878 0.8367252237252636 -0.6084119544795079 0.38309249603368983 -0.5168412765805608 -0.5141156891801073 0.3410208563272359 -0.4380699697778451 -0.1970759391793598 -0.23133321923244882 -0.8441955014213854 -0.2855434006315353 -0.7101253010158362 1.5735232103057324 -0.5969443218798071 -0.6444211409145134 2.565776352736078 0.09882402546480246 0.6242130625211397 0.4232046491715289 0.1023153832717911 0.6713173414901882 0
313 -1.5780657321014224 -1.4403727563005317 -1.5421212821567107 -1.2331719030531438 0.5152177883582464 -0.5310391048088331 -0.7928378351949873 -0.8723304509259875 -0.48783405205001845 1.1996318624487183 -1.0050641356837975 -0.9753067798511055 -0.8895993264186155 -0.7278843000392147 0.2853519326032936 -0.4391877605664908 -0.46034270131910693 -0.726072699235398 -0.5596610180539633 0.04920903712347597 -1.4073721795245235 -1.1769084273366428 -1.3094215769261888 -1.0635075312469207 1.3909744646312114 -0.19570866329116807 -0.46434502582252357 -0.44897484905769064 0.13305321488829108 1.1611931678759069 1
314 0.37850806520120006 1.084495075908337 0.48731988360447126 0.21732042990400838 1.5613497850482576 1.5665106363729218 1.4337862897410008 0.9358277102844608 -0.01686235369119136 1.138674887975638 -0.2601231875439851 1.3501377932777077 0.035117854321737745 -0.17198910428312092 0.8323741112319708 1.3369818025915716 0.9382205262696254 1.3972518231379145 0.06147170521194113 0.834080571972797 0.1741171020824994 1.7347385638442723 0.31092803321273943 0.05065754506465552 1.7898810758906998 1.5422250422840194 1.5299855044747916 1.5484501959442127 0.18158663323013283 1.2609416393119137 0
315 -1.207427206120885 -0.46998576456680063 -1.1965355021539439 -1.0224238993823107 0.8923946307022639 -0.6068450224518313 -0.8944075514099981 -0.7583210490351148 0.4468074578713746 0.007426850079871933 -0.6910628639388186 0.22705892086861407 -0.6678256128363467 -0.6162036219082113 0.8927098908369622 -0.7259010978541202 -0.7930734265171375 -0.6924952984614273 0.18860413395057685 -0.5003901629420965 -1.211265023614893 -0.40014354210549263 -1.1968311076922704 -0.965064419423872 0.4002833201845696 -0.824214703228315 -1.0077605157594418 -0.8942005566034725 0.14275989855665924 -0.5622387552684223 1
316 0.38702849108580994 0.15832235957734164 0.4296536032702793 0.25543140492680444 1.3976692685593446 0.9828050705218372 1.2592721914234914 1.0887860254909938 0.42855274088072237 0.658107112478564 0.8728078377519798 0.20710113799866228 0.8954810556743791 0.5846496902253908 0.07601011165337962 0.21248426921396885 0.5910664960929058 0.7451689675274699 -0.24485690879639008 0.1653321991469658 1.0210846497809052 0.607859526989019 1.037702490701523 0.8410150999868466 1.5663180300199977 0.8717337810555246 1.3582341621975633 1.484498486926009 0.46308045961281435 0.9949457154825638 0
317 1.4975239980466533 -0.25822265605896 1.4511705691902572 1.393925681167487 0.5223343325534168 0.7553873175928429 0.9265654572210461 1.1793229034631576 0.2971187785480267 -0.5496915445229306 0.23722595321990125 -0.40233697709376826 0.01828681355879779 0.28212618267982414 -0.4623450489104922 -0.19495047324739923 -0.0432273527400114 0.5180754357228378 -0.5221266819501755 -0.6921635933847979 1.5574284024798957 0.4840982454846846 1.3444966264447396 1.3138936192797057 0.851793001060694 0.7674068675436907 0.7647805018709385 1.6839669126732641 1.1150460460048883 -0.3366963781881198 0
318 -1.4908733738822462 -0.8842037130766426 -1.4510909396291642 -1.1771430815644068 -0.9557718967834216 -0.5185311283977383 -0.5221526582363185 -0.6476648648469147 0.4322036842788534 0.4837418134044053 0.47976486656774736 -0.030577912543488392 0.6984588726258457 -0.22347310483996652 1.2963929245477046 0.19627630277860567 0.008166032816236556 0.5294301123130695 0.947766351275571 0.1433936213053945 -1.3021742542847217 -1.2990412709264463 -1.250743475235496 -1.0170986356731977 -1.3531523337032907 -0.8235785635117795 -0.8528964562982984 -1.0199722510059404 -0.7551083407674125 -0.533976688361554 1
319 -0.37696969656755813 -0.4257714891640644 -0.36737677134873614 -0.41691445293804047 -1.1329738472431585 -0.2916819198510669 -0.1870604795244973 -0.20865128562006977 -0.8675321654555843 -0.750991320689846 -0.14895951892622242 0.08735444077895267 -0.09804537994975837 -0.21489243808049224 -0.5400148646450943 0.5193178406972214 0.4494860081411778 0.33153432031188973 -0.22427356319108718 0.10292072770111647 -0.5237510240161869 -0.7518861316441267 -0.4926938874039569 -0.5090618621578213 -1.6231814244020217 -0.4647957633857158 -0.39382142997125935 -0.48186429940990977 -1.4766384934494596 -0.7434484783771673 1
320 1.5117247078543368 0.00939006348391516 1.422337429023161 1.4621841438948824 0.508101244163076 0.27401974055980577 0.6164576710021631 0.9541414377375196 -0.1300415990332348 -0.8970045386137361 0.6883772057270552 -1.0571336896179069 0.4608441795019862 0.6746366826516722 -0.7973586318000841 -0.41794973558222204 -0.1460141238525071 0.14174901158944717 -0.8345092211365369 -0.47088655825860387 1.952956034779151 -0.1803044236438461 1.663205097556624 1.918615591907005 0.7597376292315816 0.3933567142207732 0.7652602542236682 1.2987339988255115 0.7736943370006013 0.3077895789234094 0
321 -0.5416979303366859 0.17461182946256024 -0.5148376882033135 -0.5739089172110499 0.9422104400684553 0.20579441468110743 -0.0885039563739615 -0.703121926852656 1.1404867035161597 0.870747721105588 -0.8087231105926843 -0.7637542814296187 -0.9308353762878185 -0.6107031944982919 -0.2563366964470417 -0.19550936864172205 0.25750684532138746 -0.3085450200460239 -0.8889945477388094 0.006844886808717569 -0.6438588914159609 -0.2454419402250744 -0.6591967241811005 -0.6421358543900498 0.34329666143321425 -0.14481748596832214 0.3900939143890517 -0.5135356219713062 -0.31021867263386393 0.24627802153787223 1
322 1.7502966326234184 -1.1518164326195182 1.7765731510760563 1.826229278440991 0.2803718299176319 0.5393404523102987 1.3710114342311053 1.4284927727540695 -0.009560466894930265 -0.562449981040552 1.2705427819622865 -0.7902437023297363 1.2731894116191806 1.1903567566057145 1.483067159789666 -0.04851987993480875 0.8284707803398315 1.1442047448413237 -0.3610922722145709 0.49932813421778527 1.2985752399803827 -1.4667703761231092 1.3385394587604047 1.2207242455900345 0.22055616566106412 -0.31339451085024933 0.6131787584083571 0.7292592566157908 -0.8683529835650433 -0.39709961922436765 0
323 1.5401261274697042 2.2061414308619542 1.714787850717993 1.5702600432132583 -0.26760207311046896 1.9322741890003872 1.1249340006323156 1.6890119942694124 0.2971187785480267 -0.06770616496834349 1.5787693176751743 -0.032392256440756516 2.1246420619796775 1.4534972038962584 -0.2283355611607475 1.2391751085850702 0.22335511169368716 0.5505173688377853 -0.14315096580548167 0.5511485680849452 1.8183523902794048 1.7249679363570887 2.1248855930925314 1.837751607195215 -0.1871176238678637 1.7725076196698974 0.7335965989435087 1.210419733990849 -0.13388058599183866 0.9173635710323369 0
324 -0.8995558174903081 -0.38853841514070775 -0.8723686262753055 -0.8227678959046789 0.03627436402329585 -0.12926774130094376 -0.454104714863592 -0.54268335677093 -0.7032397125397152 0.18179214915403066 -0.9184430952024242 0.6643158001102804 -0.8420763877938435 -0.665487451501089 0.8200402778320558 0.4639871966592576 0.4017398951082766 0.2698946473934895 -0.8865729776675971 -0.09868723763608273 -0.9627659876153607 0.13561253177511245 -0.918333518449642 -0.8316388446494185 0.4572699789359261 -0.020770241243885306 -0.2873164076652685 -0.24356805033017365 -0.9896865294196477 -0.06460471443767996 1
325 0.21946011535514556 0.7540515439510476 0.4172965431986662 0.0856384788924082 0.2213045130977199 2.239288155454529 2.316400758210129 1.2430340398139395 0.8374584014713327 0.8764181373356417 -0.5492209101505694 -0.620421113545421 0.2969890473686581 -0.35526334558163514 -0.025327330335114053 2.0484556395645774 1.5705249537261716 1.7103164776971573 -0.6722640263653261 0.7523782820800483 0.016734379282796027 0.3082269507153678 0.5402789890596098 -0.08417435987869858 0.41781767672344866 2.8927496604890424 3.021055816758664 2.0235200343651565 -0.05622711664489147 1.7486008329990554 0
326 -0.14691819768308703 1.3241829899336952 -0.1614257701551922 -0.2053132184831146 -0.1053448654605894 -0.3644556007883449 -0.032006586415055806 -0.1039277173673676 -0.7397491465210196 -0.5794612297307141 0.18525332893107724 0.13271303821066105 -0.0025044720895398267 0.061669052090254896 -0.3896754359055859 -0.5923250986109555 -0.17983428725081216 -0.3041653590755061 -0.7134307175759319 -0.5446455699673353 0.14926719848254594 1.5621241449040175 0.039876903575528796 0.045559598202390535 -0.25725505002337773 -0.38146146051955565 0.21450455328998586 0.05776631192464928 -0.40404994809475747 -0.5528180662994666 0
327 -1.047243199490216 -0.8911849144560218 -1.0441317612707213 -0.9251555899957721 0.6361990396761393 -0.5139827733391586 -1.0314701709303036 -0.9481647589710476 -0.08623027825567027 0.2413315195695978 -0.7719091683881005 -0.5699823532013616 -0.8207900715348312 -0.6265444254388597 -0.17600010592326892 -0.9734358679997166 -0.9640973508391546 -1.1069409940048813 -0.6686316712585079 -0.3683804445505721 -0.9834742406153217 -0.9570693088749962 -1.0064996001777897 -0.8529095884540415 0.0758977242153157 -0.8840118365826588 -1.1792240066250326 -1.0653475112140944 -0.46229005010496743 -0.06959213800948064 1
328 -0.35424856087526463 -0.24891438755312104 -0.3097104910145436 -0.46014481266539087 1.8104288318792128 1.170424716688257 -0.5090954882902603 0.10603529878460176 -0.37465480670797496 1.3796675777529308 0.13508530965228166 -0.08682257335880633 0.15343017027299297 -0.13128594144971753 -0.5893501982447555 -0.12229407198542673 -0.5916445121595854 0.10444078850725738 -0.28844517007820786 -0.18757630302865638 -0.2524729097166974 -0.21287318193446025 -0.2368335353617989 -0.36192456823658603 0.5800104747080762 0.26612877091365833 -0.7080592210092054 -0.07622774506587332 -0.5156768102809937 0.276202562968674 1
329 0.9351758896623905 1.4591528832683625 0.9280550261586554 0.8336374662801163 0.30172146250314197 0.19442352703465768 0.9968732953921289 0.43980943011217954 -1.838683109358283 -0.5865492500182818 0.44908658139726065 0.8167206874808198 0.44599326118174487 0.4002753634448928 8.02999926720418 3.357388653068726 3.7104792142424543 4.456526115877462 0.14622665770436466 3.315409376122939 0.37291633088212534 0.3896488464419035 0.3913497969512525 0.24684060362630264 -0.3536940109872104 -0.4768824179998918 0.03891519219091973 -0.0716597658502874 -2.0994840288364283 -0.8736756494186194 0
330 -1.332393452428499 -0.22564371628852284 -1.3242251228939412 -1.0702048232914874 0.323071095088653 -0.8486658997329947 -0.7746331270971176 -0.8991561925473692 -1.1157963165284546 0.9628919848439645 0.37076672396201893 0.05469625062812319 0.1984779558443912 -0.21687259194806321 -0.06832907381049445 -0.9219616021825808 -0.27897378583996124 -0.8485409967443247 -0.13588625559184525 -0.4092315894969464 -0.8799329756155165 -0.10702471748996413 -0.9373964550395117 -0.7752098466222781 0.04082901113755869 -0.9501703671023587 -0.7569939609876336 -0.9758151185886088 -0.722752728539518 -0.14329517523719623 1
331 -0.19804075299074728 0.07920207727770893 -0.2524561126827384 -0.2545161936991123 -0.41847281004807574 -0.7857469880893063 -0.3794026368068166 -0.3750224716372936 -0.7799095239004542 -0.8629820412334117 0.23289490119583267 -0.12673813909870954 0.1365991295100528 0.06738949659657102 -0.3460069987329127 -0.8298556411981728 -0.3442931210308053 -0.3817015792202305 -0.646837540617599 -0.7288539735681155 0.3542789031821605 0.682767671057432 0.2781636109489006 0.19867379534145385 0.3389130722984951 -0.6340089279841785 -0.037365431893100605 0.02122247819996132 -0.027107065639786942 -0.5672261788402229 0
332 -0.7177867319519606 -1.5008765015884862 -0.7261434154278895 -0.6890950730635296 -0.4647303473166825 -0.5513171877783352 -0.5880662565217087 -0.3977211760861551 -0.6995887691415842 0.42845525516137895 -0.6268189255817999 -1.2296777942481247 -0.6886168984846842 -0.5409577749405139 -0.29600497143595866 -0.6806305709139682 -0.49615228609378287 -0.7967961134259833 -0.4882247009532062 -0.4705083069165079 -0.6645671444159218 -1.3869769183111045 -0.7238319935561277 -0.6470580099812022 0.4704207463400848 -0.43998631444082853 -0.3837466305639358 -0.45856760541042135 -0.20829849411599585 0.20028289304238062 1
333 -0.33436756714450827 -0.760869155374274 -0.3636696533272522 -0.4015562988243764 0.2946049183079726 -0.47210000384140216 -0.34211437263393873 -0.3925623796205048 -0.297984995347236 0.26968360071986647 -0.7065824670250647 -0.8223575893113857 -0.8094043674893128 -0.49871449243233296 0.5613631232824801 -0.3044939705346806 -0.2832841988220982 -0.0772340369364484 0.691079923727088 0.3521883621424188 -0.5237510240161869 -0.935899615986097 -0.5495848387893494 -0.5189061733401263 0.6983673813455059 -0.30194399595260885 -0.23070563004316524 -0.13713413460701998 0.7753121176119968 0.659125861648009 1
334 -0.07591464864466992 -0.5491060468664334 -0.04156228746054976 -0.21612080841495238 0.4440523464065449 0.8975234131734643 0.1281948448461972 0.18315930594607452 1.0747697223498118 0.9019350103708844 -0.5373105170843806 -0.04146397592709836 -0.4618928787956683 -0.3882659100411515 -0.360340913224706 0.4975209203186296 0.23860734224586402 0.41426124975500583 -0.13951861069866325 0.28939863935447296 -0.1075151387169704 0.20400692418540212 -0.08522361779549104 -0.22937794981769546 0.5975448312469541 1.1624496315122819 0.918301254744439 0.7734163890331218 1.1797572704606774 1.2166089853403548 0
335 -1.5703973488052732 0.3933561393497805 -1.5367665561256787 -1.2317498517463232 1.9883424367584654 -0.27879491385175725 -0.7382237109013784 -1.022993101705306 0.05980745766954762 0.6765359652262402 -0.16953201604054857 1.5424582463881502 -0.18467573681783228 -0.4828732614917651 1.6297397731940646 0.34326579148551917 -0.06278999627432512 -0.4115481576859822 1.5773745697907182 -0.282517389894767 -1.3883205867645596 0.22191974124523986 -1.3463560165690611 -1.0664959828558347 1.3822072863617718 -0.5373156910707712 -0.8740055598184046 -1.3220679431300275 0.11525762816294927 -0.37825824128645574 1
336 0.5716377185856946 -1.0308089420436093 0.5079149837238256 0.4127102794611779 -0.10036328452397025 -0.3663507487294199 -0.4243494333519016 -0.09386806425934938 -0.27973027835658376 -0.5737908135006604 -0.6008326134373878 -1.051690657926102 -0.5628791233733086 -0.40718738033127433 -1.0277013042147194 -0.7275777840370887 -0.4503955944372526 -0.49459950646024775 -0.6710532413297201 -0.822282055065842 0.2983666200822658 -0.9928949429946723 0.25731352405373087 0.11833718444300151 -0.5158868089718374 -0.5220483378739175 -0.19760271770481666 -0.025979973694427394 -0.19859181044762766 -0.7661689635375907 1
337 -0.271884443990701 -0.14652343398889012 -0.2466894846493191 -0.3421145541992696 1.3834361801690038 0.3555111020260286 0.42436661314188345 0.6314587188110903 1.1550904771086807 0.7048880463765088 -0.4261468484666177 -0.5863114482767764 -0.4797139807799578 -0.3539432430032545 -0.16966651579898812 -0.11838180422516684 -0.09428916806686412 0.05739998549058349 -0.3768324776774494 -0.05745784134761233 -0.12408174111693923 0.3701075914675348 -0.13288095927016563 -0.21302936160422495 2.026594889165562 1.0326771293390251 1.0958096252544238 1.434250715554563 1.616558035537253 1.8815987949137303 0
338 0.8215702112009226 1.0914762772877165 0.8580316857528504 0.6951296689957762 1.6609814037806394 0.8577253064108905 1.9196636713875905 1.8411964900060978 1.5932036848843345 0.1449344436586804 0.7064232558273413 0.32866217911564 0.5608403628582771 0.6037911776119104 0.40902361345109317 0.2985541599396899 0.6142764121505662 -0.10967597005139595 0.05783935010512312 0.02235319183465588 0.9548182401810298 1.0442808880832506 0.8589874601714942 0.8146464093199586 1.3602893406881735 0.6465403214019315 1.3750254945431022 1.0672897185691546 1.0179792093212048 0.04844355318979378 0
339 0.38986863304734654 0.41662681061437784 0.4502487033896337 0.4215269975634665 1.1130075007525386 0.9998614019915114 0.7959937577604639 0.9257680571764426 0.9980999109890717 0.828219599380184 3.4822666822533583 -0.006991441878999937 3.246381425768564 2.9958170496376564 0.3856893340458483 0.7495827431582414 0.43224435621263013 1.5562172954011568 -0.043866592885785274 0.764104073685026 1.4290372338801378 0.3212544540316133 1.484490067026595 1.52484314461481 0.8474094119259747 0.9283502158271908 0.7144065048343211 1.5042930635268816 0.16540882711618557 1.1556515861294627 0
340 -0.15259848160616027 0.593483912225322 -0.19808504836764304 -0.2670302451991347 -1.1955994361606552 -0.4122133289034338 -0.6036344206881628 -0.7093124826114363 -0.6448246181696274 -0.5964724784208754 -0.24243805844570462 1.2684923179006327 -0.1361627369717108 -0.2987189518076638 -0.5350146619153988 -0.07925912662256619 -0.029964543564205467 -0.30448977840665536 -0.029337172458512827 -0.2972691922365132 -0.30424354221659994 0.7104511156044538 -0.285980168757557 -0.38512901602344757 -1.3969882250504873 -0.516959220141633 -0.6087504839941598 -0.8026887063178997 -0.7356949734306758 -0.7595190654418572 1
341 -0.5956606276058832 -0.3163993342204547 -0.6540605650101491 -0.5941020457679044 -1.3898810926888008 -1.2398244347708645 -1.0954628586370907 -1.1175796349030052 -1.5685132978966303 -0.29735802228552954 -0.6196005055416853 -0.5572819459204833 -0.6930721739807567 -0.5141156891801073 -0.7706908839083756 -1.039050187293221 -1.0182427692993823 -1.2725570625566882 -0.7122199325403259 -0.7715963752249702 -0.6624963191159258 -0.5581020198149717 -0.7303848780088954 -0.6278967614299302 -1.3619195119727303 -1.1473736792283866 -1.2687362005973377 -1.3193271556006758 -1.1805846415642254 -0.7523150091714786 1
342 -0.5388577883751493 0.06291260739249036 -0.5531445744253124 -0.5514405065632823 -0.035602732347922376 -0.44480987348992296 -0.5891962039208869 -0.20246072986128924 0.6110999107872447 -0.37816145356379777 -0.18685622413682337 0.19802941851232084 -0.27625639979265315 -0.2881581311806186 0.15768008957173774 -0.4296865388630021 -0.5929707930771659 -0.06425726369046937 -0.667420886222902 -0.17282450068691013 -0.3787932530164599 0.43687354596329403 -0.4501001384609665 -0.4257367996504552 0.4616535680706452 -0.3184836285825339 -0.6452116628016162 -0.10059030088233203 -0.37654767770104747 -0.1222371646007065 1
343 1.2277105117006684 0.6097733821105406 1.1628391675192957 1.1948384982125837 -0.14662082179257702 -0.13741687744756606 0.33271532409743626 0.504294385932809 -0.4367208444761928 -0.7835962140126564 0.6883772057270552 -0.026949224748951738 0.4454982305710702 0.6163321521065265 -0.3466736924302052 -0.6292121946362647 -0.11086767953662151 -0.429553430564778 -0.6807395216145685 -0.6013832712817441 1.2944335893803907 0.9302902340661003 1.1419529251773732 1.2470929362569225 0.6194627769205524 -0.1702630746297451 0.596387426062818 0.3546849609377389 0.3368935719240263 -0.43478237510019224 0
344 1.2731527830852554 0.22348023911821593 1.241100547972842 1.2488764478717715 -0.13950427759740666 0.042811691748661784 0.7558178502341308 0.7323131897145546 -0.4184661274855406 -0.8232891276230346 1.6159441808817636 1.146931276783655 1.369225350090074 1.170555217930005 1.2363904917913593 0.09735181798345886 0.627207651096977 1.1863792578907555 0.2890992919058788 0.15965842901552518 1.043863728080862 0.25774537536491593 0.9721736461738462 0.918363259276385 0.06274695681115697 -0.27077314984236583 0.3473959549961096 0.5237001919144207 -0.905561937627122 -0.5395182701079989 0
345 -0.749028293528864 -1.0936397544580234 -0.7405599855114379 -0.7109946631885691 0.5863832303099479 -0.418088287520766 -0.44845497786770144 -0.753936072039312 -0.11908876883884369 0.41711442270127147 -0.728237727145408 -0.09226560505061152 -0.6430740823026112 -0.5719801855324593 -0.6946878024170055 -0.24245658176484267 0.32050518890646545 -0.6096061593527365 -0.25575397411684453 -0.068427130268398 -0.8012416142156645 -0.6150973468235468 -0.751234964904065 -0.7259882907107537 0.12411720469723143 -0.33884009951167215 -0.06039354482412578 -0.6135743667926394 0.06510642920971206 0.43524595909164016 1
346 0.8300906370855329 -0.04878661467757951 0.882745805896076 0.682900027757118 1.2624549288511109 1.0017565499325867 1.2831266365172518 1.5497244896968527 1.166043307303073 0.06413101238041125 -0.39438580029011416 -0.9758510830202859 -0.3529861444472327 -0.18387002748854686 -0.5030133644453484 -0.3016994935630662 -0.04455363365759194 0.33153432031188973 -1.062136807830475 -0.5518323454671604 0.6876817764815328 -0.12819441037886323 0.7815442802751486 0.5421699390954487 1.6627569909838305 0.885092715102772 1.10156665348718 2.127060896585106 0.3368935719240263 0.36930113630894656 0
347 1.7559769165464916 1.8082129522373305 1.6859547105508974 1.800632354918218 0.25902219733212184 0.08450494645231056 0.7922272664298703 1.1455327866131475 0.008694250095721971 -1.003324842927248 -0.02696822024828802 -0.3335733433872988 -0.13814285941440965 0.2640847807752887 -0.6660199734334185 -0.5420245131218979 -0.3555665088302403 -0.5857613385132502 -0.9350043790918393 -0.7197759413578102 1.6692529686796849 2.1955864936564637 1.6393764268192872 1.6936027648828935 0.869327357599573 0.2559505354490892 0.5114712596296631 0.8388907577898544 0.40484035760260445 -0.21921484516348966 0
348 -0.1327174878754034 -0.9633239953762752 -0.15236392610267632 -0.21128583397176176 -0.9735632572713468 -0.5469583475138626 -0.5814121218376598 -0.6244502807514881 -0.07162650466314807 -0.542603524235363 -0.9563398004130251 -1.224960500115227 -0.8737583468770248 -0.6377652973550952 -0.6096843560121836 0.24378241129604913 -0.24747461404742224 -0.55802348569997 -0.2860236000069954 0.40590005272005897 -0.35808500001649896 -0.9831243155074877 -0.27704441723105566 -0.393039623223514 -0.21341915867618116 0.35709675037824556 -0.07334685834782728 -0.14017945408407742 0.7866365818917594 0.6890504030788108 1
349 -0.8143515586442078 0.1559952924508823 -0.7516813395758891 -0.7417109714158969 -1.1500535533115672 0.26075370497228095 0.04947517603678847 0.17954814842011924 2.860081044035599 -0.06628856091082956 0.2938905505347998 1.2485345350306813 0.005416017681255277 -0.12446541146141742 2.899791266536697 3.1936323025321265 1.6278866034115325 3.7428035873486167 1.6512324569626873 1.029636515836459 -0.9130661804154543 -0.5450745164987262 -0.8635275757537668 -0.7787256720445298 -1.2961656749519355 -0.4450754321731131 -0.5641335151902989 -0.3268575380276917 0.0877553577692384 -0.7678314380615242 1
350 -0.4053711161829254 -1.6567899990612918 -0.4567595058667343 -0.4547410176994721 -0.605637922381051 -0.8793672963784089 -0.8185755259540445 -0.6422481285579819 -0.834673674872411 -0.006749190495263386 -0.6491960277061547 -1.0362687347993211 -0.6628753067295996 -0.5053150053242362 -0.3033386021061784 -0.7180765623336 -0.7566007012836713 -0.5782996938968121 -0.4131560287456311 0.2341739434084487 -0.5423884517161518 -1.4260594282598413 -0.5701370673003026 -0.5514275584959549 -0.04245918242211527 -0.5952044052755083 -0.8555830694735846 -0.49282744952731633 -0.20344515228181131 0.5926268806906719 1
351 1.5514866953158506 -0.26520385743833963 1.5953362700257374 1.5901687615087488 1.1130075007525386 1.1799004563936317 2.0339139084156006 2.055286543330587 0.786345193897506 -0.28034677359536736 1.1954712135450964 -0.3063581849282737 0.9533996371233199 1.2482212529580665 -0.9946999661987297 -0.15135663249021583 0.27839576977328173 0.20014449119635247 -0.44584722470699445 -0.18038952752883117 2.16625104067875 0.11607127680074374 2.0146779909323476 2.375672896799731 0.5011058702831226 0.8291124200476413 1.961282869578782 1.6763536139806208 1.2007884184088091 0.4590747606013527 0
352 -1.5317714181283744 -0.5700496510045714 -1.511640533980066 -1.1961985690758048 0.5365674209437574 -0.5697001228067621 -1.1148728439607505 -1.261819584082589 0.6330055711760281 1.1599389488383403 0.4032496141425341 1.5642303731553702 0.1489748947769204 -0.25273537866073764 2.926459014428406 -0.3251731001246265 -1.0575006844597676 -1.9134474512424755 -0.2291167033335112 1.1124735597554956 -1.2630356561147955 -0.46853793451578224 -1.2882736316468018 -0.9907299450063097 0.5975448312469541 -0.7841379010865738 -1.3058306525103973 -1.7450628184932908 -0.7373127540420708 0.26068613407862923 1
353 1.1879485242391545 0.3002734542913885 1.1875532876625208 1.1294241380988297 0.7429472026036915 0.3877286170243026 0.8550021219397657 1.1759696857604847 0.17663764640972213 -0.48022894570476987 0.5043074947041366 -0.5340583440354487 0.17422145592133056 0.5945504595632458 -0.2883379939170922 -0.3749147902193615 -0.09163660623170293 -0.21673434933072247 -0.5996169242289631 -0.40469257339179376 1.1577591195806478 0.08513095642465998 1.04068107454369 1.0765754032777133 0.7378196835579833 -0.004230608613960444 0.4975584414005021 0.5541533866849941 0.2802712505252109 -0.2945803569151388 0
354 0.23366082516282868 -0.4001737507730069 0.20104799194544504 0.0660141708582821 1.447485077925535 0.49575204966557496 0.8173372086338284 0.9626534519058426 0.5307791560283757 -0.09038782988855941 3.215185140769123 0.4266367495681297 2.7488756620404837 1.3544895105177095 0.9863803553065894 0.5209945268801898 1.1232367142721176 2.6300452815059185 3.770106269273277 -0.3434158559722324 0.4723159452819384 -0.6916339288064901 0.4211356353729239 0.15964813315445944 0.38274896364569166 -0.24087458316519378 0.30373849089770794 0.7932109656339944 0.8303166583994167 -0.6913576099605858 0
355 0.034850887855260956 0.6656229931455752 0.18333620584280055 -0.026134753823701642 0.6077328628954579 1.828041052241265 1.5656134863117808 0.9701337067810356 0.5015716088433313 1.434954135995957 1.077089124887219 0.09279747247075786 1.241012421925325 0.4497792101341674 0.7887056740592978 2.5196044569787523 1.230002328137355 1.0841871685786713 -0.4288962342085096 0.8768229736296516 0.29008331888228156 0.6241439061343264 0.35262820700307923 0.13872897189206163 1.3865908754964924 2.356483879449554 2.015015133084507 0.972884814780377 -0.09181829009557596 1.6211444528308245 0
356 -0.3854901224521685 0.7400891411922883 -0.4221597376662188 -0.4226026581653234 -0.4134912291114566 -0.8856212845839563 -0.5234081553465165 -0.5643503019266615 -0.8273717880761499 -0.30444604257309626 -0.6080510334775022 0.2960039889648101 -0.697527449476829 -0.4503107312250423 0.15267988684204223 -0.7521691813872948 -0.2842789095102836 -0.466537234315818 -0.4930678410956306 -0.4410047022330154 -0.3684391265164792 1.252720941143181 -0.4533765806873504 -0.3990165264413419 0.41781767672344866 -0.6486401414644967 -0.26140978061786524 -0.3242690164721929 -0.11608499926649685 -0.18153208928766507 0
357 0.2762629545858791 -0.6747676716952616 0.3134972385971202 0.05577540144917272 1.3265038266076432 1.4471163160851999 0.31388286744446764 0.9394388678104161 0.6914206655461148 0.26543078854732766 0.09285755241761208 -0.2700713069829072 -0.034681461783396 -0.010936589720681044 0.6550335877521073 0.915015779877809 0.004850330522284985 1.7492467974350945 0.3617463940422419 0.4497772084032016 -0.03296542791711084 -1.1964496823110113 -0.04054486016298383 -0.20740404092862208 0.27315923527770025 0.21650987302388372 -0.3655160411602077 0.4216819894330004 -0.5027345653898355 -0.3411296435852754 1
358 -0.3854901224521685 2.3597278612083 -0.43740011175454124 -0.41805209398349713 -0.967870021915211 -1.1750103751861012 -0.8641500710542284 -0.8751677889820951 -0.99531518439015 -0.9111805791888704 -0.5928923513932619 0.27241751830032207 -0.6876268372633348 -0.4747326289250844 0.5980312766335799 -0.734843424163286 -0.6171754198230117 -0.40408651306954413 -0.19037158219411746 -0.7825656641457558 -0.4968302951162378 1.681000112664759 -0.5707327840687363 -0.5025575851266556 -0.3931463131996872 -0.940628271354325 -0.8907009416933979 -0.755638520397364 -0.7987884172750702 -1.0587644797498759 1
359 -0.32016685733682465 0.5888297779724025 -0.1840803802864819 -0.38420727288116363 2.20183876261357 1.6840098087195687 1.2190962838971586 1.150691583078798 1.965599911493639 1.5724617295747656 -0.3568500160815189 -0.3898180042026168 -0.2277433999465317 -0.3524031233284771 -0.43667734156472254 0.533290225555293 0.12056834058119148 0.07524304870380472 0.10748153656497132 -0.01736319908543009 -0.161356596516869 0.8228133317070733 -0.031609108636482475 -0.24836340709785498 1.6627569909838305 1.8183096792604587 1.2800345287026242 1.3916162428757601 2.3898571677839313 1.2886495480441378 0
360 -0.0049110996062527905 -1.4915682330826467 -0.07986917368254863 -0.10918255014203285 -0.23273100655413492 -0.9718505159028664 -0.8932776040108199 -0.5568700470514685 -1.6013717884798038 -0.8218715235655206 -0.5344231490683348 -0.24648483631841914 -0.6475293577986836 -0.3612038071843481 -0.11633102001557033 -0.7912918589898952 -0.8679419843145618 -0.838483997478691 -0.7727591843206283 -0.49887715757371226 -0.15307329531688477 -1.2501881334905247 -0.26393864832551983 -0.22972953235992072 -0.1871176238678637 -0.9120019841102242 -1.0512260789167516 -0.8482162324999067 -1.2954470649732506 -0.7268237331378326 1
361 -0.6865451703750568 -0.8935119815824819 -0.6977221772631805 -0.6671954829384903 1.3265038266076432 -0.5975587975405638 -0.611920701615469 -0.42351515841440684 0.7206282127311582 0.320717346790354 -0.21861727231332692 -0.8660832772355522 -0.25298996109094185 -0.3477827643041448 0.8317074175346779 -0.8108531977911955 -0.5100782357283791 -0.09507710014966962 -0.12256762020017879 -0.26284832010577197 -0.6645671444159218 -1.2241331268580333 -0.6880889874501218 -0.6402021504078114 0.5975448312469541 -0.9081851458110108 -0.7843398450932257 -0.5476432001143482 -0.21962295839575857 -0.3261673728698742 1
362 -0.41105140010599867 1.0588973375172794 -0.38220524343467127 -0.44336460724490623 1.1272405891428783 0.41426068819935213 0.3013278963424885 0.5110008213381544 0.34093009932559226 0.4397960876214864 0.07336781830930297 -0.07049347828339159 0.030167548214990778 -0.08530236830279131 0.24668369816031588 0.05599355880356685 -0.07174239246799408 0.17905723467163664 -0.5075972615229031 -0.07334439771564676 0.16997545148250726 1.2690053202884883 0.1351915865248776 0.013565586859899626 2.311528182922338 0.9658824591027897 0.6246928148738694 0.8678212928218993 0.7801654594461804 1.061444696439901 0
363 1.5344458435466308 -0.0906738229538556 1.5459080297392873 1.598701069349673 1.3265038266076432 1.1344169058078333 1.643454307144051 1.4775013391777478 -0.07162650466314807 0.38592713343597296 2.547481287058535 -0.10133732453695295 2.1637494802229793 2.0387426803116817 -0.32833961575465553 0.36618050265275665 0.8118922688700742 0.8976460531677235 -0.2061117876569963 0.3752616940102781 2.0005850166790617 0.09164470808278269 1.9014918049299956 2.0610065215082005 0.7509704509621421 1.0008701435122462 1.6307334985480264 1.2698034637934672 0.10878650571737018 0.8503104319003547 0
364 -0.11283649414464653 0.7726680809627255 0.06717984116964147 -0.21782726998313734 1.1912894868994104 2.3681582154476257 1.5568250065403952 0.8081474977596147 0.939684816618985 1.9878197184262187 -0.6968375999709101 -0.08682257335880633 -0.3985289606293058 -0.4648318595872295 -0.20400124120956314 1.8936416153371443 0.766467147442939 0.7273259043142488 -0.11288133991533035 1.6257606309798467 -0.2566145603166899 1.031253384767004 0.04583407125986318 -0.321492575880691 1.434810355978408 3.296698380489132 2.025089932491831 1.6169698841780027 1.1247527296732565 3.2780773950178173 0
365 1.0090195806623439 0.33750652831474515 1.0475066068509111 0.8782898773142875 1.0774247797766878 1.178005308452557 1.2140742954563668 1.4568661533151464 0.5818923636022013 -0.16126803276423404 1.465801044047383 0.3322908669101767 1.323682533908001 1.1786958504966853 0.6653673400601444 1.3448063381120916 0.6686539297713705 1.0728324919884396 -0.33445500143123763 0.44372518692966484 0.8699144028811896 -0.09236877625918773 0.7636727772221459 0.7408140754526721 0.4134340875887295 0.6077357986932616 0.4131220273200769 0.5617666853776374 -0.7081927030369658 -0.3638501287456987 0
366 -0.19520061102921066 0.5329801669373672 -0.23845144460157724 -0.2613420399718518 -1.048998625740151 -0.8344522901749326 -0.7244132426892014 -0.7379438029957958 -0.10083405184819144 -0.9820607820645451 -0.6015544554413993 -0.7082353581732079 -0.6405989292492377 -0.4357896028628551 -1.2537104675969515 -0.8080587208195812 -0.5966180656005127 -0.7972827424227077 -0.8163474456024463 -0.9489962546680214 -0.07024028331704062 0.7446483118095989 -0.141816710796667 -0.16292884933713767 -1.0068487920604385 -0.31784748886599823 -0.3055469970689967 -0.051865189249414814 0.15084880161363287 -0.6919117681352308 0
367 -0.8654741139518681 -0.10696329283907419 -0.7689812236761469 -0.8341443063592449 1.796195743488872 2.1047326516382077 1.0056617751635142 0.38048327075720056 1.403354628181551 2.3677376058398347 -0.6993640469849501 -0.3444594067709088 -0.5678294294800557 -0.5796807839063465 0.12134528306928455 1.1184537034113318 0.4637435280051691 0.2585399708032581 -0.3828864028554798 0.24211722159246565 -0.627292289015992 1.1631568558439922 -0.4617166154454184 -0.654792825910156 3.7712633647839837 4.348873471638971 2.7250486151244457 2.098130361553061 2.0274743108315127 3.1229131061173634 0
368 -0.6865451703750568 -0.4886023015784785 -0.7121387473467283 -0.6671954829384903 0.09818829852127578 -0.8136056628231082 -0.6366539946863677 -0.42635249647051454 -1.07928688254715 -0.2619179208476923 -0.5777336693090215 -0.8189103359065759 -0.5564437254345375 -0.49453416760079427 -0.04532814125389572 -0.9374988941447565 -0.4016547707161659 0.008737085818162292 -0.19037158219411746 -0.803369487961039 -0.6749212709159025 -0.6981476804646128 -0.6803446694604871 -0.6312367955810694 -0.0030068802096378773 -0.9558956245511789 -0.5761273240085409 -0.0716597658502874 -0.5318546163949409 -0.7190655186928098 1
369 -0.4735345232598054 -1.5032035687149459 -0.5411994163560873 -0.5050816339609262 -1.6112056171585922 -1.2112077008606326 -1.0248160362462546 -0.9654467271309763 -0.7251453729284975 -0.37816145356379777 -0.2799738426542999 0.4883244420752528 -0.3752625219275945 -0.3462426446293674 1.1163856262786698 -0.8633893648575447 -0.8447652252798411 -0.6328021415299241 0.9865114724149647 0.38812223964154413 -0.6376464155159727 -1.5172519514735618 -0.7154919587980596 -0.609262886691996 -1.6648255211818581 -1.2054532353480845 -1.2255201086634475 -1.3369900085676083 -1.0042465549222 -0.7573024327432794 1
370 -0.6354226150673965 -0.2186625149091432 -0.6033966187165377 -0.6333506618361567 -0.19430166790021625 0.20958471056325745 -0.28172496163341937 -0.4513726593289189 0.5672885900096801 0.04853736774776298 -0.39294211628209125 0.6280289221649138 -0.3856581647517633 -0.41532801289795496 0.6103651100334949 0.9189280476380691 0.9140158995237795 0.9819950792665869 0.8944918097089047 0.3707226779051255 -0.625221463715996 0.23169036873242452 -0.6273258770699118 -0.6141850422831483 0.35644742883737424 0.32020064681918214 0.04035444924910891 -0.012276036047669435 0.8028143880057067 -0.016392953243610512 1
371 -0.5274972205290027 -0.318726401346914 -0.558499300456345 -0.5369355832337107 -0.6768033643327525 -0.7406424670917227 -0.7117327218762025 -0.5775052329140699 0.5636376466115491 -0.9678847414894107 -0.2561530565219222 1.0235558917694088 -0.389618409637161 -0.32006061015815107 -0.384341886327244 -0.1329130844775613 -0.3747975821351589 -0.16969354631404887 0.6341730270536038 -0.5779316880717884 -0.44920131321632734 0.5215523175188911 -0.5439255294892318 -0.47530993810420463 -0.36684477839136914 -0.4756101385668206 -0.6452116628016162 -0.29366355572776676 0.8966456634666002 -0.8304513117963507 1
372 -0.07875479060620653 -0.956342793996896 -0.12270698193080604 -0.19194593619899986 -0.08541854171411381 -0.5204262763388133 -0.5525356883031078 -0.30460489988116635 1.089373495942333 -0.604978102765957 -0.5676278812528612 -0.5395013757272537 -0.5128810316951632 -0.460431517659294 -0.9353642271396775 -0.5627036427118438 -0.5744028602310377 -0.2216006392979647 -0.6371512603327506 -0.8328730926445316 -0.2669686868166702 -0.6411523534560383 -0.26483222347817004 -0.3701867579788777 -0.6079421808009502 -0.5207760584408463 -0.6073112269359707 -0.22346894178159524 0.0877553577692384 -0.8215847810020386 1
373 -0.6212219052597133 -0.24426025330020157 -0.6697128411008588 -0.6179925077224927 -0.978544838207966 -1.0770312266325264 -0.8672888138297232 -0.9138587624744728 0.2058451935947655 -0.24065385998498928 -0.6419776076660402 -1.0594923366843558 -0.6663405210043224 -0.5031148343602685 0.05634264758324435 -0.9556071049208172 -0.6228121137227293 -0.6157701266445765 -0.0705038636691186 -0.4387351941804389 -0.6562838432159376 -0.7079183079517974 -0.7026840482767407 -0.6212166931276518 -0.7876693353244557 -1.0509348982015936 -0.8643145622932649 -0.7863962471156429 -0.18726734616786406 -0.5467223263783775 1
374 -0.8143515586442078 0.1257434198069045 -0.8513616241535644 -0.7587755870977457 -0.8006312333287123 -1.1410872270408594 -1.0512568053870224 -1.115722468175371 -0.6375227313733663 0.08964788541565404 -0.9772732185293571 -0.2428561485238825 -0.9330630140358548 -0.6821647474079646 -0.9470313668423002 -1.0942131627128877 -0.929978774234394 -1.2540651606811681 -0.6867934467925988 -0.5673406504930987 -0.8985704033154814 0.12258502845886646 -0.9198228103707259 -0.7817141236534438 -0.9454785441743634 -1.126190226667752 -1.1843093815639671 -1.3138455805419726 -0.5561213255658618 -0.43311990057625865 1
375 1.3185950544698424 0.4980741600404707 1.2740527081638096 1.2431882426444887 -0.37008030952091875 0.6795813999498449 0.21595409284903086 0.3090339397079432 0.5161753824358535 -0.27892916953785346 0.855483629655705 0.5681555735550592 0.7440016888079186 1.0541661739361103 0.16901388242571402 0.7540539063128241 0.2402651933928398 1.0322800755947552 0.13775116245512264 0.2458997350134264 1.7127402999796033 1.4155647325962524 1.603633420713281 1.7445822335055436 0.7641212183663008 1.4531654819690394 0.9173417500389794 1.3733443260134164 1.259028520419019 0.81761509959633 0
376 2.5796180853921307 1.7872693480991924 2.534472835468298 2.8870795533292615 -0.09040012265073295 1.2102228234508308 1.333346520925168 1.9288960299221538 0.35553387291811345 0.04144934746019434 2.356193155995502 -0.4596702442474473 2.1686997863297264 2.540381660096331 -0.20433458805820956 0.1761560685829826 0.4335706371302109 0.8700704100200182 -0.5620825881251753 -0.2806261331842866 3.052564269077082 1.4383628633996823 2.9410175658463302 3.6273067471213505 0.6896002030760676 1.007231540677602 1.48632804037639 2.2031938835115383 0.3271868882556581 0.15650439724546683 0
377 0.8187300692393864 0.2258073062446761 0.7303420650128534 0.7093501820639836 -0.6148894298347716 -0.5931999572760916 -0.24230235237320505 0.12847606341018086 0.7826942504993759 -1.4980686589994565 0.6519241845244771 -0.6558008195421532 0.6138086382004706 0.618752340166891 -0.6676867076766502 -0.5839416676961127 -0.41226501805681054 -0.09183290683817473 0.2903100769414848 -0.45916076665362615 0.7311691077814512 -0.1021394037463718 0.6772938457992984 0.579086106029092 -0.9323277767702041 -0.6721773109763128 -0.3789491070366389 -0.07622774506587332 0.6054451534155506 -1.067076852369543 0
378 3.971287646545106 -0.19073770939162638 3.976129843823106 5.244840620038045 1.2695714730462813 0.8956282652323896 2.9039734057827498 2.852320597273567 -0.5973623539939319 -1.069952233630382 8.906909342399377 0.4701810031025695 9.46198577340019 10.676613884849099 2.1364269831365323 0.12529658769960209 1.06090151114583 0.36884254339407924 3.3039540305649475 0.25762552661840415 2.4520249320782117 -1.1736515515075814 2.4197653934670793 2.845035590670338 -0.7964365135938952 -0.6530931194802456 0.2298566285773358 0.6835794644599308 -2.0266839013236657 -1.590202169233931 0
379 -0.10147592629850004 -1.4008126151507154 -0.1610138681528049 -0.2053132184831146 -0.3117246471205235 -0.7984444792945086 -0.9814135011467129 -0.7673489428500029 -0.8018151842892365 -0.5213394633726609 -0.6715731298305095 -0.9475473182229001 -0.6866367760419854 -0.4971743727575556 -0.8976960332426387 -0.9682940303719463 -0.9158538824621607 -0.805717645032594 0.12080017195663777 -0.7538185621464554 -0.33116427111654945 -1.424430990345311 -0.38993274484919027 -0.3858321811078979 -0.6736960178217445 -0.9355391536220403 -1.1267870744716775 -0.861615638198959 -0.12579168293486503 -0.8869754456100871 1
380 -0.6922254542981305 1.198521365104867 -0.6425273089433106 -0.7067285092681069 1.938526627392275 0.9638535911110876 -0.5480158987063954 -0.09309424478950176 1.166043307303073 1.5951433944949824 -0.39510764229412554 1.380981639531269 -0.3505109913938592 -0.42654888481419057 1.9464192794081072 0.5293779577950329 -0.43912220663781754 0.9511752428073863 -0.5984061391933571 0.7675083357638907 -0.6811337468158906 1.0605652672285568 -0.6297087441436455 -0.6906542452171238 1.9476902847406081 0.4506092887089749 -0.6365761204524817 0.24657611950220373 -0.15814729516275955 0.8730309170607781 1
381 -0.7461881515673273 -0.19539184364454584 -0.7698050276809209 -0.7038844066544654 -0.2071114474515225 -0.8420328819392324 -0.7836727062905426 -0.7281420897110602 0.08171311805833091 -0.4901521741073644 -0.04501427034857419 -0.6784801182580075 -0.09012489017896305 -0.293658558590538 -0.22033523679323466 -0.8287378504095272 -0.644695748862809 -0.42517376959425995 0.28788850687027284 -0.8828022698012112 -0.6832045721158867 -0.5239048236098265 -0.71906625940866 -0.6533864957412554 -0.6167093590703892 -0.9501703671023587 -0.9169913706229846 -0.7486342856001321 -0.2600674736806267 -1.0571020052259423 1
382 -0.021951951375472536 1.8291565563754686 -0.024262403360292 -0.15497260222166068 0.20849473354641368 0.1565205682131589 -0.5546700333904444 -0.1516465846746333 -1.002617071186411 -0.15418001247666638 -0.14679399291418813 0.49921050545886275 0.010861354398677118 -0.2309536861174569 0.07167660262097693 0.07276042063325287 -0.37081873938241716 0.7240817110027542 0.03120207932178981 0.5708176378739402 -0.20070227721679484 1.2201521828525674 -0.2103241391665113 -0.3056713614805582 -0.36246118925664933 -0.17726061151163652 -0.6696790327908303 -0.14931541251524924 -1.0527799732640417 -0.04077591292796736 1
383 3.7753178511990755 1.6243746492470075 3.9102255234411722 5.250528825265327 0.8568119097264131 1.790138093419766 3.448859151608641 3.0947840311591333 0.9104772694339416 -0.9310270359940594 7.73030687586072 0.1617425405669543 7.813533839853414 11.041842264867746 0.20301526098764267 1.5795424037276948 1.6132975133181455 2.3007596603892013 -0.432528589315328 0.2886421366702811 4.094189394975121 0.9270333582370389 4.28733746250588 5.93017239869624 0.14603515037082973 1.0899297038272264 1.9723171736915648 2.2519189951444565 -0.42022775420870473 -0.5361933210601318 0
384 -0.2122414627984304 2.6599195205216124 -0.23186101256338398 -0.2778378351309722 -0.278276889403224 -0.570079152394977 -0.7609482085959605 -0.4199040008884516 -1.5940699016835427 -0.37390864139125796 -0.2323322703895445 1.2830070690787794 -0.286652042616822 -0.2509752418895635 -0.40000918821362297 -0.7275777840370887 -0.7943665504117786 -0.43279762387627263 -0.5935629990509326 -0.30634722444681867 -0.2524729097166974 2.594553782716489 -0.3148724320265783 -0.3076050654627967 -0.6649288395523055 -0.7135263925511252 -0.9698600798937965 -0.5630220634734877 -1.1401401262793571 -0.39876209374830124 1
385 0.7022842488163823 2.045573799136229 0.6726757846786608 0.5779526413137477 -0.8404838808216655 -0.03867966971756104 0.04658753268333319 0.10577735896131917 -0.8091170710854976 -0.8955869345562222 0.18489240792907136 -0.2573708997020291 0.2766927923309949 0.18069830124091052 -0.3793416835975485 0.6612772708552289 0.5108265005792803 0.6121570417561856 -0.8914161178100214 0.03672674283430619 0.5613614331817707 1.3748537847329845 0.5790005790077827 0.42790561287226725 -0.809587280998054 0.35073535321288984 0.32676660382873285 0.41406869074035707 -1.1045489528286732 -0.3184091584248514 0
386 -1.0330424896825325 -0.15815876962118922 -1.0342461132134313 -0.9117883077116572 0.7429472026036915 -0.7118362183873832 -0.8264851577482911 -0.8026866986397078 -1.2034189580835857 0.4539721281966217 -0.9263833572465502 0.6280289221649138 -0.9064303671815556 -0.6657074685974859 0.6113651505794339 -0.9007235771983121 -0.458021709713341 -0.4212807376204663 -0.31871479596835917 -0.18076777887092726 -1.0787322044151422 -0.18518973738743844 -1.0872192223005193 -0.888067842676559 0.39151614191513123 -0.9533510656850366 -0.9017352458061806 -0.7510705411817779 -1.1126378558856467 -0.30621767858267296 1
387 -0.7007458801827404 -0.5165271070959963 -0.7525051435806631 -0.6652046111089412 -1.4767029318698763 -1.289477310827028 -1.0105912539877124 -0.9620935094283037 -0.5133906558369318 -0.7779257977826027 -0.18685622413682337 -0.9878257527422569 -0.3173439404786537 -0.3147801998446284 -0.15266582651802352 -1.0332376751922632 -0.8602495549925945 -0.892175396783929 0.19586884416421285 -0.42625289989126913 -0.6190089878160078 -0.9668399363621809 -0.7044711985820411 -0.5943206286474261 -1.437317245089908 -1.2055168493197381 -1.1596980858689343 -1.0961052379323737 -0.2746274991831794 -0.869796542196108 1
388 -0.9705593665287252 0.2560591788886531 -0.9255039845832401 -0.8816408200070576 0.8425788213360734 0.4654296826083754 -0.054228885265558684 -0.5223061107316112 -0.5243434860313229 0.8253843912651561 -0.3081256808107464 0.493767473767058 -0.31486878742528024 -0.43116924383852284 0.6203655154928859 1.2503530164715275 1.37589322907122 0.9171112130366917 0.8157907823945113 1.4430652327474505 -0.948270210515388 -0.07608439711388038 -0.9159506513759084 -0.8265408977871536 0.049596189406998246 0.0046753474175376675 -0.0901381906933664 -0.4355754433586385 -0.4784678562189147 0.16980419343693454 1
389 -0.12135692002925691 -0.3838842808877883 -0.1733709282244174 -0.23830480880135577 0.2234394763562711 -0.4694467967238972 -0.5438727582427424 -0.4467297425098334 -0.2906831085509749 -0.2718411492502868 -0.5849520893491359 -0.4910583936701893 -0.6445591741346353 -0.4333694148024906 -1.2653776072995742 -0.9664496755706807 -0.4944944349468072 -0.41576560899092535 -0.9313720239850212 -0.8589724352491598 -0.2711103374166623 -0.34966196675504013 -0.34197754499029925 -0.34118119824530085 -0.5465719329148746 -0.7612368712912932 -0.4701020540552798 -0.362944573830821 -0.6192147694102554 -0.7949851886191039 1
390 -0.6070211954520297 1.303239385795557 -0.5914514606473119 -0.6074693280520193 0.4725185231872253 -0.23046864135434605 -0.4317568663020693 -0.15938477937310885 0.030599910484504247 0.8083731425749948 -0.5156552569640372 -0.023320536954415085 -0.49555496032154844 -0.46087155185208756 0.4263576495807039 -0.2921982718595775 -0.2836157690514933 0.7873434805769021 0.04815306982027469 -0.045732049742634444 -0.6811337468158906 0.7625611288694367 -0.6785575191551867 -0.644596932185626 -0.055609949826274 -0.4584343662203601 -0.5339091169683284 0.0851741872181652 -0.4881745398872828 -0.07956698515308123 1
391 0.96925759320083 0.007062996357455837 0.9527691463018805 0.8438762356892257 -0.4754051636094375 0.29297121997055525 0.1858221622042811 0.6696338126569028 -1.1157963165284546 -1.1181507715858405 -0.02913374626032232 -0.7051509735478517 0.10986747653361867 0.008644931858631856 -0.31700582290067925 0.011840822652060637 -0.1579506521107324 0.2682725507377422 -0.5572394479827513 -0.43003541331222955 0.8595602763812097 0.026507191501554398 0.9602593108051773 0.6300655746517423 0.25124128960410197 0.558116900803487 0.37714060086535023 1.2073744145137915 0.04407528126158116 -0.292363724216561 0
392 1.4378810168543836 -0.7794856923859523 1.414099388975419 1.4280549125311846 -0.6703984745570989 0.2683342967365807 0.38293520850535256 1.2316846875895087 -0.2578246179678005 -1.5646960497025904 2.1468589748321825 -1.058222295956268 2.032071337783507 1.7373192582480992 0.7883723272106512 0.2834639842929726 0.38284039203275316 2.618690604915687 1.3340067776339013 -0.16374646847660468 1.192963149680582 -1.2811284538666086 1.1717387635990446 1.0800912286999649 -0.8753411180188488 -0.33502326121245873 -0.21967132593038244 0.9607035368721478 -0.7405483152648603 -1.1878833344420394 0
393 -0.24064288241379767 0.23046144049759557 -0.19149461632944978 -0.31196706649466993 0.5508005093340972 0.7440164299463934 0.12141516045112853 0.3265738476911544 0.5928451937965925 0.7119760666640774 -0.1254996537958504 -0.7111383084088373 -0.2173477571223629 -0.19817113875433734 -0.6563529148226739 -0.22401303375218812 -0.3330197332313703 -0.3627230483479861 -0.40589131853199467 -0.18076777887092726 0.23002938518239405 0.37824978104018847 0.1739131764730504 0.04679013710017873 0.9043960706773301 0.7515033746303014 0.45198196789118167 0.5267455113914782 1.3560953571027026 1.0392783694541219 0
394 -1.1154066065670967 -0.4211173549111449 -1.1088003756454945 -0.9490460519503605 -1.1258573030479881 -0.8579521246442621 -0.389948812532479 -0.9855660333470128 0.556335759815288 0.04995497180527592 -0.17494583107063444 1.2793783812842427 -0.05893796170645662 -0.38606573907718383 -0.7870248794920471 0.31979218492395867 0.8569858200678142 -0.1761819329370381 0.6123788964126949 0.3094459604855641 -0.991757541815306 -0.19658880278915347 -0.9490129320239636 -0.8383189129516968 -1.6262499367963257 -0.728793745747979 -0.3823073735057468 -1.2013210258647045 -0.05299155542210237 -0.3245048983459406 1
395 -0.62406204722125 -1.950000456995225 -0.6520010549982137 -0.6034875843929213 -0.5437239878830711 -0.9839794627257462 -0.787690297043176 -0.7985596614671875 -0.7689566937060631 -1.047270568710166 -0.5521082781666152 -0.3118012166200789 -0.6024815722272852 -0.4705523040935457 -0.28867134076573864 -0.751051390598649 -0.6012600488120446 -0.9674406816106071 -1.160210395714565 -0.7330147383311723 -0.5113260722162102 -0.901702419780952 -0.584434269742705 -0.5116987312245102 0.22055616566106412 -0.6155608762046468 -0.5794855904776488 -0.6980819822809803 -0.7130460448711499 -0.6276294198764708 1
396 0.026330461970651087 0.891348504412175 0.09889629535344766 -0.12795362739206664 0.792763011969882 2.5955759683766195 1.3722669313413032 0.44522616640111246 2.089731987030075 1.7893551503743303 -0.43011697948868083 1.6204750339706877 -0.37328239948489567 -0.18959047199486306 0.30968625255447796 6.143482193768203 2.8086081902876523 0.7889655772326494 3.703513092314945 2.9976782487622495 -0.10958596401696645 1.873155786579383 -0.025651940952148095 -0.20775562347084733 0.9175468380814888 4.315794206379121 2.7663073174591997 0.9530902381795044 3.664668289562973 3.3612011212144894 0
397 0.020650178047577333 0.2886381186590902 0.018163502885578102 -0.10377875517611411 -0.5017363771315667 0.1224079052738096 -0.4792146570675502 -0.47303960448465027 -1.1157963165284546 -0.3838318697938525 -0.20706780024914387 -0.36078850184632355 -0.0579479004851071 -0.2052116858390341 -0.9780326237664114 0.4136866111701999 -0.12214106733605652 0.276383034016479 -0.5378668874130544 -0.39750579789196866 0.037442632282756606 0.25774537536491593 0.14412733805137895 -0.09155759326542731 -0.7482170331119788 0.5638421582523069 -0.10069274245341972 0.29377857139659225 -0.59333027962794 -0.29735114778836164 1
398 -0.30596614752914103 -1.2681697889425074 -0.3813814394298973 -0.3534909646538355 -0.9137842860319182 -1.269578257445741 -1.057634730706828 -1.0340845141064543 -1.309296316629368 -1.0798754620329765 -0.027690062252299388 -0.7046066703786713 -0.1480434716279038 -0.16120826655967901 -0.9643654029719109 -1.160665825097876 -0.9636331525180014 -1.1314346535066666 -0.7654944741069921 -0.5756621800192121 -0.31873931931657273 -1.3478944083623676 -0.39618777091774154 -0.36596776747217563 -1.3487687445685714 -1.2455300374898255 -1.2183238233725022 -1.2072593988449662 -1.2841226006934874 -1.005565294984006 1
399 0.3983890589319564 3.320806584436193 0.4832008635806006 0.25600022544953255 0.7073644816278408 1.128731461984608 1.0835025959957847 0.9046169916672762 1.020005571377855 0.5248523310722963 -0.5892831413732046 0.11094091144344113 -0.47674379711590953 -0.38100534586005796 -0.5653492251422176 0.004575182525863312 -0.0995942917371865 -0.25566466906865953 -1.282862919821458 -0.16488122250289283 0.4598909934819613 3.8859050489393443 0.5670862436391139 0.27145138158206483 2.4518030352333673 1.922000453055757 1.4301970151070167 1.3215738949034415 0.9888591583161002 2.0201383385748493 0
400 -0.28892529575992126 -0.867914243191424 -0.1960255383557077 -0.35462860569929205 3.0914067870098387 1.3675201025600516 1.485261671259115 1.2146606592528624 0.4139489672882012 2.001995759001354 -0.051871769386682975 -0.5316996969689999 -0.22576327750383288 -0.12490544565421104 0.04034199884821896 0.20354194290480299 0.7571831810198748 0.3380227069348793 -0.6141463446562357 1.2494005455942687 0.008451078082811059 -0.5336754510970111 -0.025651940952148095 -0.09384287978989087 2.359747663404255 0.9900557683311414 1.7530703484940968 1.2789394222246389 0.3983692351570253 3.1339962696102535 0
401 1.5401261274697042 0.9122921085503131 1.5211939095960623 1.4764046569630898 0.33018763928382333 0.5203889728995492 1.2153297925665647 1.3717460116319156 0.6476093447685493 -0.5610323769830381 0.7417935140239024 2.9376887033874923 1.245962728032072 0.6548351439759622 1.399730447628076 0.865832985177397 1.4189973588925895 3.668187141184238 0.8642221838187535 0.9248608940758508 0.9423932883810534 0.7755886321856826 1.0347239068593561 0.7601511152750566 -0.3186252979094534 -0.08183965403130038 0.5311411060915803 1.0337912043215238 -0.5253834939493619 -0.4392156404973479 0
402 1.8298206075464458 -0.35363240824381126 1.6859547105508974 1.9087082542365938 -0.8269624468508425 -0.48707167257589423 -0.023845855198769264 0.5481441558908369 0.0013923632994608738 -0.8686524574634664 0.49925460067605626 -0.8762436030602548 0.263326965842778 0.7424019483418791 -0.6053508469797809 -0.6929262695890712 -0.44078005778479334 0.2601620674590054 -0.8054503802819919 -0.09944374032027478 1.8059274384794277 -0.36920322172940884 1.535125992343437 1.8904889885289908 -0.3756119566608087 -0.4304442186927949 -0.14674896831546966 1.087084295170027 -0.24388966756667946 0.2811899865404747 0
403 -0.5843000597597362 -1.3612524740008989 -0.582389616594796 -0.5963773278588176 0.9706766168491356 -0.2700772333228124 -0.6401693865949218 -0.5401039585381048 -0.5645038634107584 0.46531296065672917 -0.5553565671846666 -1.293361265042243 -0.5703045825334292 -0.4795730050458135 0.09534422887486847 -0.7795550557091151 -0.46133741200729245 -0.6180410619626229 -0.11167055487972435 -0.5904139823609583 -0.583804957716074 -1.6133297884308737 -0.6058800734063085 -0.5813120745850947 0.8649437684648539 -0.579300912362119 -0.5276723363828424 -0.6193604737990485 -0.19373846861344313 -0.18984446190733287 1
404 -0.760388861375011 0.39102907222332034 -0.7479742215544052 -0.72066461207495 0.9849097052394764 -0.20317851100286685 -0.5384741206688913 -0.6858399586927273 0.1109206652433743 1.0281017714895855 -0.288996867704443 1.7365930433958607 -0.39060847085851047 -0.3458026104365738 1.109718689305743 -0.47048590264857126 -0.20006007124391612 -0.6959017014384968 -0.28844517007820786 0.0684998555703752 -0.6542130179159414 1.0556799534849646 -0.6770682272341032 -0.6249083098210162 1.022752977314761 -0.5513107648345539 -0.4638652734697939 -0.8121291966967774 -0.2244763002299431 0.25292791963360645 1
405 0.2819432385089523 -0.607282725027928 0.2805450784061533 0.1755121214834789 -0.5408773702050022 -0.16034816753457273 -0.16697252576133076 -0.2096830449131998 -0.7945132974929764 -0.4164367631166629 -0.4838942087875335 -1.5508166640646184 -0.44159662375800535 -0.3057594988923606 -0.5230141753641298 -0.3514411836578012 -0.3814289867230619 -0.5735956135951448 -0.6432051855107808 -0.3456853640248087 0.31079157188224216 -0.8854180406356452 0.31092803321273943 0.19146635322583774 0.7334360944232642 0.5015004660318209 0.29030542502127654 0.16130717414459855 0.8319344390108122 0.745574536892548 0
406 0.5687975766241574 -0.32803466985275376 0.6191285243683395 0.4331878182793966 0.5436839651389268 0.9771196266986124 0.5850702432472155 0.7377299260034875 0.6804678353517236 0.33347578330797445 -0.2568748985259336 -0.9636949789085882 -0.3381352261269916 -0.11676481308753024 -0.9520315695719953 0.178950545554597 -0.17419759335109464 -0.4426924134763317 -0.42526387910169156 0.008357892177101839 0.8160729450812914 0.25774537536491593 0.757715609537811 0.6687396542965114 0.5361745833608796 2.074673985024295 1.2243832557859802 1.093174934124142 2.215136861753301 2.1808442092217493 0
407 0.6170799899702816 -0.8353353034209873 0.5243910638193094 0.46902351121127894 -0.14875578505112722 -0.7053927153877285 -0.4210851408653871 -0.08484017044446136 -0.36735291991171387 -0.8828284980386008 -0.7163273340792192 -1.353960351211005 -0.851481969396663 -0.43270936351330025 0.11767846773417467 -0.7516102859929719 -0.23852221785375327 0.4077728631320163 -0.859935706884264 -0.46369978275877877 0.2176044333824177 -1.2892706434392616 0.07561990968153465 0.083706304033822 0.132884382966671 -0.7516947755432596 -0.3717528217456936 0.32118644669010815 -0.9718909426943055 -0.6453624814650941 1
408 -0.9449980888748951 0.6260628519957592 -0.9547490267527231 -0.8389792808024354 -0.5942514516687782 -0.8890325508778911 -0.6611361883352269 -0.8996720721939344 0.7461848165180714 -0.4291951996342843 -0.35179712205343894 0.7332608682064767 -0.30991848131853306 -0.44305016704394873 -0.16599970046387796 -0.2234541383578653 -0.06577412833888144 -0.21835644598647008 -0.2545431890812381 -0.4179313703651557 -0.726691903415805 1.0361386985105965 -0.7020883315083074 -0.6874900023370972 -0.09067866290403101 -0.5385879705038423 -0.38134786880028737 -0.6053520042045847 0.10393316388318564 -0.40596615001867975 1
409 -0.4280922518752189 -0.49791057008431827 -0.4674689579287982 -0.46071363318811925 -0.7493921151234875 -0.9483506814335371 -0.7424924010760513 -0.6757803055847091 -0.046069900876234735 -0.6432534123188212 -0.8516727098313653 -0.9968974722285986 -0.8663328877169042 -0.5944219293649304 -1.0510355836199645 -0.9467206681510837 -0.6410484763394624 -0.7961472747636845 -0.5402884574842665 -0.8158517822502089 -0.3995015060164208 -0.574386398960279 -0.4658866328244524 -0.43435057193497195 -0.432598615412164 -0.6524569797637101 -0.40053796290947496 -0.24509071006870237 0.597356250358577 -0.5899466640006462 1
410 1.7247353549695883 1.7546904083287553 1.7189068707418638 1.6470508137815782 0.19141502747800504 1.1855859002168565 0.9453979138740147 2.0011191804412585 0.23140179738167885 -0.3682382251612042 2.0605988553528145 1.2249480643661927 2.1097911436594363 1.391892416905161 0.4660259245696211 1.1883156277016895 0.9000899498891834 2.2001896677328645 2.0047816873596545 0.18575777162015306 1.64026141447974 1.3243722093825332 1.5708689984494424 1.3894838658581181 -0.20026839127202242 0.5555723419373446 0.4706923096476396 1.5317009388203975 0.5989740309699715 -0.4225908952580138 0
411 0.3529467875473694 0.8075740878596228 0.33903516274511986 0.2085037118017201 -0.31030133828149004 -0.014042746483586768 0.29379491368130106 0.66834411354049 -0.3454472595229316 -0.2590827127326644 -0.3330292299491412 -0.6813830684936366 -0.3915985320798598 -0.23975436997332789 0.9470454271663189 -0.05802110163829745 0.4448440249296459 0.9463089528401444 0.504619028243756 -0.6252131058337957 0.03330098168276449 0.026507191501554398 0.007112481311690353 -0.08733860275872526 -0.2923237631011347 -0.34710991582663475 0.05954454335829647 0.5023829555750197 -0.5577391061772564 -0.8681340676721753 0
412 2.6648223442382317 1.1589612239550502 2.600377155850232 3.106075454579655 0.7500637467988609 0.4540587949619259 1.7828144863760187 2.375131924200909 -0.053371787672495834 -1.0968867107231386 2.179341865012697 -0.5304296562409121 1.780100756950081 2.7229958501056544 -0.2496697594741145 -0.3223786231530123 0.1301838772336507 0.19690029788485786 -0.6964797270774472 -0.2560397959480428 2.9821562088772144 0.8228133317070733 2.833788547528313 3.560506064098567 0.8386422336565352 0.08610123113409097 1.006095935293972 1.4357733752930915 -0.4978812235556519 -0.3638501287456987 0
413 -1.0983657547978765 -1.0657149489405058 -1.0614316453709791 -0.9479084109049039 0.17504697582911413 -0.24165001420668814 -0.66527932879888 -0.7363961640561008 -0.6521265049658885 1.0281017714895855 -0.24243805844570462 2.3443982489807498 -0.2336837672746282 -0.4621916544304682 3.4398131613438006 1.186638941518721 -0.19177081550903743 0.18878981460612076 1.962404211113442 1.120795089281609 -1.116007059815072 -1.0091793221399792 -1.083347063305702 -0.9202376452901623 0.15918591777498967 -0.5767563534959769 -0.9622320174853942 -1.1247312410167125 -0.7551083407674125 0.05176850223766013 1
414 -0.4848950911059524 -0.9889217337673332 -0.5502612604086031 -0.5073569160518394 -1.2169490687461662 -1.3343923170305045 -0.9826689982569109 -0.9760222598855596 -0.9697585806032377 -0.7453209044597923 -1.04620912991245 -0.9840156305579935 -1.044048876949124 -0.6893373047504995 -1.2587106703266469 -1.1484260159622055 -0.8422121345134984 -1.3032146893503136 -0.40468053349638866 -0.9210056553529131 -0.6355755902159765 -0.8642483477467455 -0.69732259736084 -0.5927385072074128 -1.2567133727394586 -1.1228186861701133 -1.0063212587012529 -1.1280810924414755 0.00039520475392393085 -0.8930711855311764 1
415 0.48927360170113043 1.084495075908337 0.4832008635806006 0.36350730424518046 -0.8789132194755842 -0.07847777648013507 0.1328401841539294 0.12176962800483532 0.12917538223402653 -1.3350441923854053 -0.006756644135967547 -0.25192786801022393 0.01828681355879779 -0.08266216314603006 0.9093772332692801 0.3231455572898961 0.6172605442151224 1.317769087006293 1.1221193964028424 -0.29991695163118565 0.11820481898260471 0.3228828919461442 0.14114875420921197 -0.007177783131385559 -0.8446559940758109 -0.3935481151337316 -0.1918456894720605 -0.041206571079714066 -0.14844061149439136 -1.1679336401548384 0
416 -0.4650140973751955 -0.5677225838781113 -0.5263709442701521 -0.4928519927222678 -0.8006312333287123 -1.2508162928290991 -1.058714458221598 -1.0961448355882282 -2.178220845384414 -0.8601468331183848 -0.843010605783228 -0.9103532683288995 -0.900489999853459 -0.6082830064379273 -0.7043548610277498 -1.2556221525933307 -0.970629284358239 -1.3635566849441156 -0.8006072401395676 -0.92705767682645 -0.6065840360160311 -0.9717252501057726 -0.6785575191551867 -0.591332177038512 -0.963012900713242 -1.302400928148106 -1.2128546465513836 -1.3211543472869103 -1.5915009168584848 -1.230553513889664 1
417 -0.07023436472159615 -0.7282902156038368 -0.14824490607880508 -0.16578019215349815 -1.8574380463114786 -1.0618700431039267 -0.8581236849252786 -1.0423901764161514 -0.7470510333172797 -1.1422500405635705 -0.5452507791285065 -1.0796315539440342 -0.5727797355868027 -0.37880517489609017 -1.104371079403382 -0.6331244623965248 -0.39833906842221445 -0.7753844375701182 -0.4930678410956306 -0.6902723366743176 -0.1572149459168769 -0.9293858643279744 -0.22640849191421406 -0.23781593083109975 -2.083458283547585 -0.8331206592598129 -0.782420835682307 -1.0542320951228352 -0.5803880347367827 -0.9817364934742933 1
418 -1.2454851084054763 -0.8423165048003665 -1.2550255864929105 -1.0380664637573387 -0.4263010086627628 -1.0887811438671908 -0.9763915127059213 -0.8988982527240869 0.9834961373965505 0.045702159632735134 -0.4936390758416879 0.3486199619855918 -0.5524834805491398 -0.5268766807711203 2.253098380162758 -0.8276200596208814 -0.780739013983638 -0.37699749891856316 -0.3102393007191167 0.17630148806775167 -1.1429277887150215 -0.7811980141056795 -1.1667474108863822 -0.9235776794413014 0.6282299551899919 -1.0214180153543428 -1.1118667763017842 -0.9595226593863523 -0.09667163192975961 -0.12168300642606146 1
419 -0.9449980888748951 -2.229248512170399 -0.9555728307574978 -0.8455207168138108 -0.029909496991786494 -0.8903591544366436 -0.7971065253696602 -0.8238377641488743 -1.5721642412947605 0.1704513166939232 -0.8386795537591593 -1.4704412294156315 -0.8613825816101572 -0.6349050751019372 0.25601740992241406 -0.8753497262960539 -0.6931050023545006 -1.046598998411079 -0.9689063600888087 -0.633534635359909 -0.9669076382153529 -2.223994006379891 -1.0008402908776723 -0.8202124120271004 0.4923386920136831 -0.8178533060629593 -0.8035299392024133 -1.0441825408485461 -1.3116248710871978 -0.3854622975568335 1
420 1.9292255762002302 1.3497807283247527 2.101975732961856 1.968434409123065 0.9635600726539654 2.2601347828063534 2.8700749838074064 2.5402134111017203 1.2317602884694208 0.8494836602428859 2.0104308360740193 -0.34627375066817695 2.916691039059209 1.7263184034282604 -0.21400164666895383 0.9848777041681671 1.543667765145165 2.3429341734386333 0.0033540235028509165 0.9146481078392572 1.6609696674797008 0.607859526989019 2.1397785123033675 1.6496549471047468 0.3652146071068125 1.0453999236697364 1.8600551231528177 2.1255382368465767 0.045693061872975706 0.8192775741202637 0
421 0.45519189816269046 -1.863898973316213 0.4461296833657625 0.2625416614609081 0.5650335977244378 0.4843811620191249 0.38042421428495665 0.3402446583251277 -0.10083405184819144 -0.029430855415478324 -0.8740498119557202 -1.5054580666329103 -0.8529670612286872 -0.5823209890631078 -0.3356732464248753 -0.40677182769576464 0.04861760080244452 -0.1826703195600276 -1.064558377901687 -0.582092452834845 0.1534088490825388 -1.8689945410121958 0.1560416734200477 -0.04620344531837995 0.9526155511592458 0.27757928581129876 0.6150977678192756 0.4658391218503315 -0.5561213255658618 -0.11835805737819512 1
422 -0.35424856087526463 2.2410474377588514 -0.39003138148002586 -0.3998498372561918 -1.0767531481013144 -0.873681852555184 -0.33709238419314713 -0.6574665781316503 -0.8967397126406287 -0.8105306911054132 -0.6986422049809388 0.25971711101944395 -0.6752510719964672 -0.5171959285296622 0.45702555965616903 -0.2206596613862509 0.23496006972251743 -0.6774097995629768 -0.43495015938654 -0.3759454713924933 -0.4926886445162453 1.6386607268869609 -0.5486912636366992 -0.5007996724155297 -0.4238314371427244 -0.586934588960546 -0.13571466420268685 -0.7563998502666283 -0.8554107386738856 -0.6387125833693607 1
423 -1.3801078373823152 -1.4938953002091069 -1.2554374884952975 -1.1552434914393674 4.770911217069991 2.265820226629578 0.10672584426181296 0.09288036779719328 2.0678263266412924 4.567859103100772 0.008762958950278642 -0.2247127095511992 0.07323521134369018 -0.44657044058629713 0.9140440891503292 1.1145414356510717 0.09735842452353118 1.6357000315327783 0.590584765771786 2.517299044300256 -1.2402565778148384 -1.5139950756445004 -1.1381530060015776 -1.0202628785532242 2.5350912287930414 0.5714758348507339 -0.29883046413078096 -0.18433658650140872 0.22203114851500097 2.2861342624042003 1
424 -0.10715621022157329 1.0426078676320607 -0.14124257203822452 -0.18455126940353195 -1.1336855016626752 -0.6873888099475164 -0.5251658513007936 -0.6572086383083678 -0.14099442922762595 -1.2060422231516774 0.10657255049382945 -0.29002908985285897 -0.018345451631130476 -0.008956435853110144 -0.8966959926966998 0.06661257129570122 0.06022255883127455 -0.27999611890487003 0.6583887277657247 -0.2677655875530207 -0.260756210916682 0.10792908722809005 -0.2758529836941886 -0.30690190037834636 -1.6959490040383678 -0.7001674585038782 -0.6538472051507506 -0.8153267821476876 -0.3846365807580211 -1.1490922622169257 1
425 -0.5189767946443924 -0.7887939608917912 -0.5411994163560873 -0.5437614295064503 -1.107354288140546 -0.6028652117755737 -0.632259754800675 -0.835187116373305 -0.527994429429454 -1.1422500405635705 -0.6026372184474165 -0.691906263097793 -0.5836704090216464 -0.48441338116654253 -0.34834042667343723 -0.18768483312120188 -0.3555665088302403 -0.8699526726001899 -0.03539109763654284 -0.7829439154878519 -0.604513210716035 -0.9912665050801414 -0.6139222497801596 -0.5869373952606973 -0.9980816137909989 -0.5678503974644787 -0.6231430545760505 -1.0119021543917384 -0.6774548714204658 -1.1574046348365927 1
426 -0.36844927068294825 -0.8283541020416076 -0.3739672033869294 -0.4208961965971386 -0.4241660454042126 -0.4103181809623588 -0.3822902801602718 -0.46788080801899995 -0.38925858030049615 -0.519921859315147 -0.9213304632184698 -1.3232979393471702 -0.8272254694736023 -0.6313848015595888 -0.7226889377032997 -0.4201853171595134 0.04264933667333187 -0.5573746470376711 -0.5487639527335089 -0.5696101585456752 -0.45127213851632336 -1.030349015028878 -0.41822929134977826 -0.4830447540331586 0.01014388719452085 0.042843730409672126 0.3617885255780003 -0.2554447962906973 0.17026216895036922 -0.328384005568452 1
427 -0.6780247444904469 -1.0703690831934256 -0.6449987209576332 -0.6509840980407339 -1.0938328541697222 -0.1465135875647257 -0.27042548764163826 -0.5811163904400252 -1.1413529203153678 0.677953569283753 -0.7679390373660376 -1.0435261103883944 -0.7529708778723962 -0.6005824080640402 -0.019660433908125753 0.7646729188049587 0.2744169270205399 0.5651162387395117 0.24914338573087907 1.1450031751757566 -0.7908874877156843 -1.315325650071753 -0.7747657772571858 -0.7150892319017733 -1.098904163889551 0.15925729853568202 -0.015296823667534966 -0.13713413460701998 -0.4800856368303092 0.8226025231681308 1
428 -0.30596614752914103 0.004735929230995686 -0.38550045945376793 -0.36316091354021646 -1.1215873765308857 -1.2593444585639366 -1.106184803958181 -1.1543360597207641 0.026948967086374207 -1.1039747310107053 -0.004230197121927363 -0.005177097981731812 -0.13418261452901198 -0.16230835204166283 0.15001311205287157 -0.9437026330217403 -1.0345560245856233 -1.237519774792545 0.16438843323845553 -0.3044559677363383 -0.4222805843163778 -0.5581020198149717 -0.5069910898463593 -0.4508749514195551 -1.3268507988949731 -1.2236468312410018 -1.2969792216025346 -1.575895321542756 -0.7470194377104389 -1.166825323805549 1
429 -0.9222769531826016 -0.8539518404326656 -0.8880209023660153 -0.841823383416077 0.3088380066983123 0.048497135571886535 -0.472686072094521 -0.8565961217057539 0.18028858980785217 0.7899442898273188 -0.9274661202525672 -1.2316735725351198 -0.7747522247420834 -0.67633429435345 -0.8556943303131975 0.30470200927724134 -0.1433615620173459 -0.8281025788819077 -1.0197593315842628 0.33176278966923156 -0.8964995780154854 -1.030349015028878 -0.7887651213153712 -0.7866362792445962 0.03644542200283952 0.862191685307491 0.30853601442500483 -0.5321120707813559 -0.5172945908923883 1.3329822020156958 1
430 1.5912486827773644 0.12341635268044518 1.5953362700257374 1.5674159405996169 0.7002479374326704 1.5267125296103479 1.9196636713875905 1.2505142946891323 -0.28703216515284385 0.5914797217754302 1.302664751140796 -0.792602349396185 0.6182639136965432 1.15449396989304 0.4803598390614145 1.4023725637273465 1.1971768754272356 1.283705057235598 -0.7110091475047197 1.3102990116717341 1.8659813721793153 -0.014203756361713431 1.5649118307651084 1.850056996173096 1.6934421149268684 2.1707310822211667 2.766787069811929 2.0722451459980733 -0.2455074481780749 2.535505440994216 0
431 -1.3130804870900499 -1.5939591866468776 -1.3028062187698126 -1.0835721055756025 0.4298192580162052 -0.7470859700913773 -0.7437478981862491 -0.7263365109480825 0.012345193493852012 0.8863413657382362 -0.4615171066631787 -0.4355394704137786 -0.4737736134518613 -0.5420578604224978 0.8550416969399234 -0.623623240693036 -0.39933377911039986 0.39155189657454265 -0.032969527565330836 -0.3127774972624515 -1.2506107043148187 -1.6312426054907117 -1.25491349261453 -0.9944215616996741 0.0013767089250812925 -0.8871925351653367 -0.8804342413449825 -0.7969025993114908 -0.7292238509850971 -0.34445459263314254 1
432 -0.7348275837211808 -1.9942147323979607 -0.7512694375735018 -0.6990494322112748 -0.7394289532502492 -0.8462022074095973 -0.9432463889966965 -1.0320725834848508 0.07806217466019987 -0.2548299005601246 -0.9888226905935402 -1.554263917469428 -0.8707881632129766 -0.6798325661861587 -0.9723657273394234 -0.6750416169707395 -0.7249357443764347 -1.1564149420051761 -0.026915602387300404 -0.6970808608320468 -0.8136665660156412 -2.0855767836447807 -0.775361494025619 -0.7256367081685285 -1.0156159703298775 -0.5831177506613325 -0.9064847940982046 -1.0271287517770251 0.7914899237259441 -0.5323142138376205 1
433 -1.2417929238554786 2.0734986046537465 -1.2476113504499429 -1.0352223611436973 -1.1756731124141795 -1.100720575895963 -0.9214007392792529 -0.9927883483989232 -0.6959378257434541 -0.46463530107212064 -0.8195507406528559 0.8530075654261864 -0.8034640001612163 -0.6393054170298726 -0.15099909227479177 -0.71416429457334 -0.5767238518368037 -0.9233196525742786 -0.5814551486948721 -0.5775534367296923 -1.1594943911149902 1.8308164008015848 -1.1685345611916824 -0.9328946168102686 -0.9367113659049239 -0.9120019841102242 -0.9608887108977512 -1.004136589725242 -0.9379175498550165 -0.6558914867833397 1
434 -0.6751846025289102 0.20719076923299737 -0.6536486630077624 -0.668617534245311 0.8923946307022639 0.1849477873292829 -0.2557361714523227 -0.2976405246525384 0.6622131183610714 0.24558433174213862 0.34875054283966983 0.8638936288097964 0.5247031282790234 -0.04393915418019741 0.7973726921241032 -0.07981802201688923 0.3241524614298121 -0.04479210382150083 1.62580597121496 0.47890256174459833 -0.6107256866160231 0.08675939433919094 -0.5466062549471824 -0.5918595508518499 0.1504187395055501 -0.4139045860628699 -0.36743505057112646 -0.5407912312909693 0.4323426279963153 -0.2258647432592239 1
435 -0.794470564913451 -1.1937036408957942 -0.8311784260365968 -0.7346007148817932 -0.1829151971879445 -1.2436147306530145 -1.0962036019321075 -1.175848240982526 0.5198263258339836 -0.6503414326063888 -0.6051636654614565 0.11456959923797778 -0.6440641435239607 -0.511475484023346 0.4616924155372181 -0.9210673695516641 -1.0081961913487092 -1.3728026358818761 0.36780031922027234 -0.8200125470132656 -0.8426581202155868 -1.0889727799519844 -0.8903348303332709 -0.7428642527375621 -0.28355658483169516 -1.1500454660378359 -1.2820589234326414 -1.575895321542756 -0.23094742267552218 -1.1130719808650347 1
436 -0.3854901224521685 0.49342002578755123 -0.40980267759460626 -0.4194741452903179 -0.6312574814836635 -0.7264288575336605 -0.7241621432671619 -0.5230799302014587 -0.4294189576799317 0.010262058194897816 1.1763424004387928 0.9636825431595542 1.1147796162032746 0.29290702040326616 -0.8233596859945003 -0.42353868952545065 -0.3360038652959266 0.93657637290566 1.5967471303604153 0.7867991542107896 -0.5216801987161909 -0.35454728049863243 -0.5427340959523648 -0.5292778583357689 -1.6871818257689282 -1.0463546922425373 -1.0570310823847808 -1.0182973252935588 -1.1676423966730671 -0.8443052661624627 1
437 0.13425585650904484 0.9309086455619909 0.0824202152579639 0.02790319583548639 -0.6789383275913037 -0.7197958397398981 -0.061510768504706506 0.09778122443956118 -0.6740321653546708 -1.2244710758993524 0.0379975601127422 0.7441469315900867 0.02373215027621963 -0.16120826655967901 0.4236908747915332 -0.450365668452948 0.06619082296038743 0.6429768782153855 -0.3804648327842678 -0.3494678774457693 -0.09923183751698617 0.9824002473310832 -0.15075246232316836 -0.2151388568575759 -0.05122636069155361 -0.6117440379054334 -0.0224931089584803 0.3242317661671656 -0.6855437744774394 -0.8637008022750189 0
438 0.24502139300897569 0.6563147246397362 0.2290573281077673 0.11038217163108918 -0.7977846156506444 -0.03488937383541129 -0.2537273760760061 -0.2620448290395508 0.48331689185267906 -0.519921859315147 -0.312456732834815 0.21617285748500412 -0.2752663385713036 -0.26021595993822805 -0.8640280015293564 0.14541682189522517 0.04065991529696084 0.02658014903138352 -0.179474516873663 0.08325165791212145 0.10163821658263625 0.9563452406985917 0.08753424505020341 -0.023702162615968695 -1.0813698073506723 0.5104064220633189 0.18811817388985297 0.24657611950220373 0.42425372493934166 0.4745911894913975 1
439 1.0573019940084678 -1.4101208836565542 0.9321740461825261 0.9590623915417054 -1.2795746576636629 -0.7992025384709385 -0.5568043784777807 -0.18414700240823062 -2.159966128393762 -1.469716577849187 0.2823410784706167 -0.3099868727228104 0.1469947723342216 0.2335024043761368 -0.8906957494210653 -0.9615313961006396 -0.6752002099671627 -0.7070941683631536 -0.9107886783797182 -0.9402964737998122 0.7353107583814432 -1.1817937410802344 0.5909149143764509 0.579086106029092 -1.479399700783217 -0.982867948532287 -0.8030501868496837 -0.4750123305865309 -1.8082835187853783 -1.3984634408069414 1
440 1.5770479729696807 0.5562508382019654 1.562384109834771 1.5332867092359193 0.11455635017016767 0.560187079662123 1.22411827233795 1.58325666672358 0.9871470807946806 -0.8006074627028187 0.7847431132625835 1.9361708720953763 1.1420062997903835 0.601150972455149 -0.7616905189949238 0.45839824271602914 0.38317196226214845 1.0160591090372815 2.060477798997533 -0.19173706779171293 1.3420625712803012 1.462789432117643 1.4993829862374308 1.159197300700629 -0.46328373935520123 0.5822902100318387 0.9653169853119483 1.68853489188885 1.8511362241894884 -0.2641016573096927 0
441 -0.1781597592599904 -1.531128374232463 -0.2586346427185449 -0.25224091160819895 -1.6083589994805234 -1.2925095475327482 -1.0802462336614922 -1.1478359761740446 -1.6305793356648473 -1.339297004557945 -0.6524443167242062 -0.9624249381805003 -0.6717858577217443 -0.43886984221241 -1.2343763503754626 -1.2145992306500326 -0.9901919278925527 -1.387563715449177 -0.695268942041841 -0.8430858788811252 -0.2690395121166662 -1.4228025524307801 -0.3509132965168006 -0.3197346631695651 -1.8471828291861956 -1.2462297911780147 -1.2396728030689732 -1.4085550162784555 -1.0252777028703315 -1.2205786667460634 1
442 -0.5502183562212962 -1.3961584808977958 -0.53090186629641 -0.566229840154218 0.7287141142133509 -0.17531983626906508 -0.7564284189992481 -0.5184370133823734 0.24965651437233108 0.2711012047773814 -0.738704436203574 -0.7267416659253448 -0.44209165436868 -0.5521786468567494 -0.08932992527521504 -0.05131435690642316 -0.7199621909355074 -0.6005224180805512 0.7358789700445122 0.13166782970041677 -0.6065840360160311 -1.2811284538666086 -0.47303523404565384 -0.5895742643273861 0.45288638980120566 0.02694023749628277 -0.830156194778911 -0.4984612905598723 0.9192945920261266 0.46904960774495336 1
443 0.08313330120138458 0.11178101704814608 0.1034272173797056 -0.03523588218735449 0.08253190129190162 0.1849477873292829 0.06378784309304464 0.24429104406403113 0.24600557097420103 0.15627527611878786 -0.4174847444184805 1.1505599645781917 -0.24259431826677305 -0.2967387979400928 0.32135339225710063 0.1940407212013143 0.04364404736151739 0.39641818654178457 -0.7170630726827502 0.24854749440809884 0.012592728682803176 0.8439830245959723 0.06668415815503329 -0.09524920995879167 0.4704207463400848 0.30747785248847065 0.22649836210822807 0.6378996723040707 -0.29565864713131124 0.5311153233051348 0
444 2.0570319644693806 -0.9749593310085743 2.0319523925560516 2.0793544110550823 0.2661387415272912 0.8937331172913143 1.3107475729416058 1.9753251981130069 0.5891942503984624 -0.1371687637865042 -0.2301667443775102 0.16718557225875907 -0.22724836933585704 -0.028097923239629577 -0.8716949790482226 0.07108373445028415 0.08210619397135432 0.2650283574262473 -0.4591658600986609 0.2163961303299339 1.3296376194803248 -0.6248679743107308 1.3355608749182377 1.1504077371449997 -0.5772570568579124 0.18915586521285388 0.6246928148738694 1.2484862274540656 -0.276245279794574 0.1504086573243776 0
445 1.3895986035082595 1.2334273720017634 1.2369815279489713 1.1976826008262251 -0.4319942440188997 0.30813240349915477 0.7281969138097771 0.8716006942871142 0.5161753824358535 -0.9225214116489788 0.5209098607963997 -1.0037919790382182 0.09353146638135337 0.3809138589619765 -1.0563691331983063 -0.39447612902066176 0.1726248665962297 0.03306853565437303 -0.10924898480851193 -0.1732027520290061 1.7168819505795954 0.7707033184420904 1.3593895456555751 1.3051040557240763 -0.32739247617889233 0.421983001464874 1.4551441374489604 1.233259630068779 1.7071537497753577 0.4950950419532437 0
446 -0.32016685733682465 1.3590889968305917 -0.38550045945376793 -0.3830696318357068 -0.9016861609001287 -1.016007462929913 -0.9634598924708828 -0.8073296154587931 -0.527994429429454 -1.1776901420014076 -0.5163770989680486 0.027481092169098078 -0.5985213273418876 -0.4212684745006679 -0.3290063094519481 -0.9224087184980392 -0.8691356371403844 -0.8856870101609395 -1.016126976477445 -0.8627549486701201 -0.3995015060164208 1.010083691878105 -0.4825667023405885 -0.4431401354906013 -0.46328373935520123 -0.9221802195747933 -1.0917651527224104 -0.8434959873104679 -0.9621842590259373 -1.1657170074562604 1
447 0.5403961570087912 -0.8795495788237231 0.5697002840818889 0.393370381688416 -0.10320990220203918 0.6208318137765215 0.3967456767175294 0.5543347116496173 -0.10813593864445255 -0.4306128036917972 -0.2456863474637562 -0.8513870916676788 -0.11735157376607203 -0.15548782205336273 -0.4006758819109158 0.38965410921431676 0.1742827177432055 0.45319156949294287 -0.7110091475047197 -0.25490504192175467 0.5158032765818567 -0.6020698435073008 0.5075145667957709 0.33297832647147024 0.4879551028789627 1.2311527208981237 1.0718220076179392 1.2713261235319957 0.19129331689850101 0.40421310131154903 0
448 0.017810036086040707 1.0519161361378997 0.03711099499538448 -0.12567834530115327 -0.12313622594851477 0.4976471976066497 0.2850064339099158 0.40498755396903957 1.5457414207086388 0.217232250591868 0.05604361021302837 1.1396739011945816 0.330651128894538 -0.2054317029354309 1.2797255821153866 0.6495404675744487 0.16533032154953653 0.7257038076585015 2.960091080452829 0.36807491851045304 0.12234646958259683 1.4937297524937272 0.23050626947422637 -0.12179369189679236 1.0315201555842006 0.9646101796697184 0.49036215610955675 0.9530902381795044 2.9496092593265053 1.0337367877076769 0
449 -0.2804048698753109 0.33750652831474515 -0.2466894846493191 -0.33557311818789437 -0.6839199085279228 0.08640009439338557 0.24734152060397854 -0.35645080436095233 -0.9113434862331499 -0.3682382251612042 -0.32472804690300966 -0.7773618606591312 -0.27427627734995436 -0.2846378576382702 0.08467712971818497 0.35276701318900766 0.4726959241988381 0.12066175506473131 -0.5971953541577508 -0.21367564563328442 -0.30424354221659994 -0.03537344925061254 -0.18947405227134118 -0.3366106251963735 0.11973361556251226 0.6401789242365759 0.8549739441841201 0.053198332709063156 -0.5464146418974937 -0.1222371646007065 1
450 1.287353492892939 -0.5048917714636971 1.2122674078057463 1.2005267034398666 0.6433155838713087 0.10724672174521009 0.7143864455975999 0.9732289846604261 0.5636376466115491 -0.0946406420611002 1.1102938570717455 0.6606871123157437 1.0043877900228146 1.1030099693361946 0.35368803657579756 -0.24972222189103982 0.05060702217881532 0.6835292946090699 -0.011175396924421953 0.2931811527754337 1.238521306280496 -0.12656597246433285 1.1359957574930393 1.175018515100762 0.7860391640398992 -0.160084839165176 0.26391904562114366 0.8038695838036952 -0.010929259525839688 0.034035440649036755 0
451 -0.29744572164453115 -0.833008236294527 -0.2611060547328675 -0.38363845235843524 0.792763011969882 0.42942187172795165 -0.5413617640223466 -0.4596267336739594 0.5672885900096801 0.7530865843319685 -0.7939253495104497 -0.8512056572779519 -0.7341597146667573 -0.5647196213513657 -0.9813660922528752 -0.3631779869385813 -0.4944944349468072 -0.86070672166243 -0.45553350499184286 -0.5181679760206112 -0.36636830121648317 -0.8447070927723773 -0.332743935079581 -0.43962431006834957 -0.05122636069155361 0.1484429233545774 -0.3990987058512859 -0.6361097309228636 0.45822711777863073 -0.11724974102890581 1
452 -1.4880332319207095 -1.0820044188257243 -1.3666510291398113 -1.1686107737234823 0.10459318829692939 0.9240554843485138 -0.03439203092443178 -0.5210164116151985 0.3299772691312011 3.8278697850787315 0.4368152673290662 -0.661606720013412 0.1494699253875953 -0.3277612085320382 3.3898111340468464 3.811770608653214 0.8228340864401141 0.9511752428073863 0.5893739807361796 6.859624451563005 -1.3535307217246249 -1.6296141675761808 -1.3314630973582253 -1.0480378993890132 -0.5115032198371176 -0.0678445802675177 -0.6178657786960239 -1.0163178676334714 -1.0463088508184633 1.3551485290014749 1
453 -0.7064261641058136 -0.2233166491620635 -0.6919555492297612 -0.6893794833248938 1.2695714730462813 -0.050050557364010796 -0.22723638705083027 -0.3628992999430153 -0.03876801407997364 0.3405638035955411 -0.3579327790875361 0.7985772485081365 -0.3519960832258834 -0.4338094489952841 0.49969395628290364 -0.1329130844775613 -0.08102635889105818 0.3542436734923529 -0.5923522140153267 0.017057673045311184 -0.6480005420159529 0.5834329582710586 -0.6478781055808651 -0.6308852130388442 1.5970031539630356 0.07465071623645085 0.07249785688199796 0.10953674303462392 -0.153293953328575 0.38925083059614773 1
454 0.04621145570140746 -0.5747037852574909 -0.06874781961809742 -0.06339249806240503 -2.282295734763136 -1.4704639391996859 -1.023849303471402 -1.1006071945310156 -1.1084944297321944 -1.2811752381998918 -0.9924319006135974 -0.9018258520117383 -1.001030716881492 -0.6505262889461083 -1.183040935683923 -1.2166112540695948 -0.8974848917536695 -1.3281949778488231 -0.6274649800479022 -0.913062377168896 -0.2814644639166429 -0.8186520861398859 -0.3818905684753391 -0.34452123239643995 -2.0470744937294123 -1.2971209685008604 -1.1203583929450998 -1.2375603276416867 -0.7162816060939394 -1.2604780553204662 1
455 -0.04183294510622941 0.0768750101512496 -0.03497185542235591 -0.15753229457393794 0.6860148490423298 0.1697866038006834 0.29881690212209283 0.40524549379232233 -0.5206925426331929 0.3745863009758655 -0.6654374727964122 -0.4781765519995842 -0.6257480109289965 -0.47275247505751344 -0.5756829774502548 -0.4229797941311278 -0.3330197332313703 -0.3615875806889629 -1.0064406961925965 -0.3589241609981707 0.1596213249825266 0.8342123971087883 0.19774184721038793 -0.0198347546514919 1.2682339688590614 0.6522655788507518 0.6462816707467054 1.0368365237985813 0.4501382147216571 1.1944426583545757 0
456 -0.5530584981828329 0.2863110515326301 -0.6075156387404084 -0.5579819425746577 -1.1550351342481853 -1.2121552748311701 -0.8156878826005892 -0.8052660968725329 -0.2651265047640616 -0.8544764168883311 -0.7679390373660376 0.6425436733430604 -0.8331658368016988 -0.5644996042549689 -0.653686140033503 -1.0831470339052949 -0.7030521092363551 -0.8109083543309856 -0.7352248482168408 -0.8559464245123912 -0.6065840360160311 1.1664137316730543 -0.6755789353130198 -0.5850036912784591 -0.8797247071535685 -1.05373391295435 -0.7565142086349039 -0.6135743667926394 -0.3344853818047848 -0.8404261589399513 1

View File

@ -0,0 +1,72 @@
from function.optimize_manager import OptimizeManager
import pandas as pd
import numpy as np
from sklearn.datasets import load_breast_cancer
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import StandardScaler
import os
import time
import json
from datetime import datetime
# 创建优化管理器实例
manager = OptimizeManager()
# 准备测试数据
print("--------------------------------------------准备测试数据---------------------------------------------------")
# 加载乳腺癌数据集
data = load_breast_cancer()
X = pd.DataFrame(data.data, columns=data.feature_names)
y = pd.Series(data.target, name='target')
# 数据预处理
scaler = StandardScaler()
X_scaled = scaler.fit_transform(X)
X_scaled = pd.DataFrame(X_scaled, columns=X.columns)
# 分割数据集
X_train, X_test, y_train, y_test = train_test_split(X_scaled, y, test_size=0.2, random_state=42)
# 保存数据集
os.makedirs('dataset/dataset_processed/test_optimize', exist_ok=True)
train_data = pd.concat([X_train, y_train], axis=1)
train_data.to_csv('dataset/dataset_processed/test_optimize/train.csv', index=False)
test_data = pd.concat([X_test, y_test], axis=1)
test_data.to_csv('dataset/dataset_processed/test_optimize/test.csv', index=False)
print("测试数据准备完成")
print("--------------------------------------------准备测试数据 end---------------------------------------------------")
print("--------------------------------------------获取优化方法---------------------------------------------------")
# 获取所有优化方法
methods = manager.get_optimize_methods()
print("优化方法列表:")
print(methods)
print("--------------------------------------------获取优化方法 end---------------------------------------------------")
print("--------------------------------------------获取方法详细信息---------------------------------------------------")
# 获取特定方法的详细信息
method_details = manager.get_optimize_method_details('GridSearchCV')
print("\nGridSearchCV方法详情:")
print(method_details)
print("--------------------------------------------获取方法详细信息 end---------------------------------------------------")
print("---------------------------------------------测试优化模型-----------------------------------------------------------")
run_id = "bd3697dc238c4d1587e0f4f319d04448" # 运行id
method = "GridSearchCV"
parameters = {
"max_depth": [3, 5, 7, 10, None],
"n_estimators": [50, 100, 200],
"min_samples_split": [2, 5, 10]
}
data_path = "dataset/dataset_processed/test_optimize/train.csv"
output_dir = None
experiment_name = "测试模型优化方法"
back = manager.run_optimization(run_id=run_id, method=method, parameters=parameters,
data_path=data_path,
output_dir=output_dir,
experiment_name=experiment_name)
print(back)
print("---------------------------------------------测试优化模型end--------------------------------------------------------")

Binary file not shown.

View File

@ -1,12 +1,25 @@
from typing import Dict, List, Optional
from typing import Dict, List, Optional, Any, Union
from pathlib import Path
import logging
from datetime import datetime
import yaml
import mlflow
from mlflow.tracking import MlflowClient
import pandas as pd
import numpy as np
import os
import json
import time
import uuid
from sklearn.model_selection import GridSearchCV, RandomizedSearchCV
from sklearn.metrics import (
accuracy_score, precision_score, recall_score, f1_score, roc_auc_score,
mean_absolute_error, mean_squared_error, r2_score, explained_variance_score
)
import importlib
from hyperopt import fmin, tpe, hp, STATUS_OK, Trials
from optuna import create_study
import optuna
class OptimizeManager:
@ -16,17 +29,20 @@ class OptimizeManager:
self.logger = logging.getLogger(__name__)
self._setup_logging()
self._load_method_config()
self._load_parameter_config()
self.method_config = self._load_method_config()
self.parameter_config = self._load_parameter_config()
# 初始化MLflow客户端
self.mlflow_uri = self.config.get('mlflow_uri', 'http://127.0.1.202:5000')
self.mlflow_uri = self.config.get('mlflow_uri', 'http://127.0.0.1:5000')
mlflow.set_tracking_uri(self.mlflow_uri)
self.client = MlflowClient()
pass
# 优化任务存储目录
self.optimize_dir = Path('optimized_models')
self.optimize_dir.mkdir(exist_ok=True)
def _setup_logging(self):
"""设置日志"""
# 相对于程序运行目录
log_dir = Path('.log')
log_dir.mkdir(exist_ok=True)
@ -42,32 +58,522 @@ class OptimizeManager:
self.logger.addHandler(file_handler)
self.logger.setLevel(logging.INFO)
def _load_method_config(self):
def _load_method_config(self) -> Dict:
"""加载模型优化方法配置文件"""
config_path = Path('optimize/method.yaml')
if not config_path.exists():
raise FileNotFoundError(f"Method config file not found at {config_path}")
with open(config_path, 'r', encoding='utf-8') as f:
config_optimize = yaml.safe_load(f)
self.logger.info("Successfully loader optimize method config")
config = config_optimize
config = yaml.safe_load(f)
self.logger.info("Successfully loaded optimize method config")
return config
def _load_parameter_config(self):
def _load_parameter_config(self) -> Dict:
"""加载优化方法参数配置文件"""
config_path = Path('optimize/parameter.yaml')
if not config_path.exists():
self.logger.error("error load optimize parameter config")
self.logger.error("Error loading optimize parameter config")
raise FileNotFoundError(f"Parameter config file not found at {config_path}")
with open(config_path, 'r', encoding='utf-8') as f:
config_parameter = yaml.safe_load(f)
config = yaml.safe_load(f)
self.logger.info("Successfullu load optimize parameter config")
self.logger.info("Successfully loaded optimize parameter config")
return config
def get_optimize_methods(self) -> Dict:
"""获取所有优化方法列表"""
try:
methods = []
for name, details in self.method_config['optimization_methods'].items():
methods.append({
'name': name,
'description': details.get('description', ''),
'advantages': details.get('advantages', []),
'disadvantages': details.get('disadvantages', []),
'applicable_scenarios': details.get('applicable_scenarios', [])
})
return {
'status': 'success',
'methods': methods
}
except Exception as e:
error_msg = f"Error getting optimization methods: {str(e)}"
self.logger.error(error_msg)
return {
'status': 'error',
'message': error_msg
}
def get_optimize_method_details(self, method_name: str) -> Dict:
"""获取指定优化方法的详细信息"""
try:
if method_name not in self.method_config['optimization_methods']:
return {
'status': 'error',
'message': f"Method {method_name} not found"
}
method_details = self.method_config['optimization_methods'][method_name]
parameters = []
if method_name in self.parameter_config['optimization_methods']:
parameters = self.parameter_config['optimization_methods'][method_name].get('parameters', [])
return {
'status': 'success',
'method': {
'name': method_name,
'description': method_details.get('description', ''),
'advantages': method_details.get('advantages', []),
'disadvantages': method_details.get('disadvantages', []),
'applicable_scenarios': method_details.get('applicable_scenarios', []),
'parameters': parameters
}
}
except Exception as e:
error_msg = f"Error getting optimization method details: {str(e)}"
self.logger.error(error_msg)
return {
'status': 'error',
'message': error_msg
}
def _get_model_from_run(self, run_id: str):
"""从MLflow运行中获取模型"""
try:
run = self.client.get_run(run_id)
model_uri = f"runs:/{run_id}/model"
model = mlflow.sklearn.load_model(model_uri)
dataset = run.data.params.get('dataset', None)
# 获取模型类型
model_type = run.data.params.get('algorithm', 'Unknown')
return model, model_type, dataset
except Exception as e:
error_msg = f"Error loading model from run {run_id}: {str(e)}"
self.logger.error(error_msg)
raise ValueError(error_msg)
def _load_data(self, dataset: str):
"""加载数据集"""
try:
if not os.path.exists(dataset):
raise FileNotFoundError(f"Data file not found at {dataset}")
dataset_train_name = 'train_'+dataset.split('/')[-1]+'.csv'
dataset_val_name = 'val_'+dataset.split('/')[-1]+'.csv'
data_train = pd.read_csv(os.path.join(dataset, dataset_train_name))
data_val = pd.read_csv(os.path.join(dataset, dataset_val_name))
X_train = data_train.drop('target', axis=1)
y_train = data_train['target']
X_val = data_val.drop('target', axis=1)
y_val = data_val['target']
return X_train, y_train, X_val, y_val
except Exception as e:
error_msg = f"Error loading data from {dataset}: {str(e)}"
self.logger.error(error_msg)
raise ValueError(error_msg)
def _calculate_metrics(self, y_true, y_pred, task_type: str) -> Dict:
"""计算评估指标"""
metrics = {}
if task_type == 'classification':
# 分类指标
metrics['accuracy'] = float(accuracy_score(y_true, y_pred))
metrics['precision'] = float(precision_score(y_true, y_pred, average='weighted'))
metrics['recall'] = float(recall_score(y_true, y_pred, average='weighted'))
metrics['f1'] = float(f1_score(y_true, y_pred, average='weighted'))
# 如果是二分类问题计算ROC AUC
if len(np.unique(y_true)) == 2:
metrics['roc_auc'] = float(roc_auc_score(y_true, y_pred))
elif task_type == 'regression':
# 回归指标
metrics['mae'] = float(mean_absolute_error(y_true, y_pred))
metrics['mse'] = float(mean_squared_error(y_true, y_pred))
metrics['rmse'] = float(np.sqrt(metrics['mse']))
metrics['r2'] = float(r2_score(y_true, y_pred))
metrics['explained_variance'] = float(explained_variance_score(y_true, y_pred))
return metrics
def _get_optimizer(self, method: str, model, parameters: Dict, scoring: str, cv: int, n_jobs: int, verbose: int):
"""获取优化器实例"""
if method == 'GridSearchCV':
return GridSearchCV(
estimator=model,
param_grid=parameters.get('param_grid', {}),
scoring=scoring,
cv=cv,
n_jobs=n_jobs,
verbose=verbose,
return_train_score=True
)
elif method == 'RandomizedSearchCV':
return RandomizedSearchCV(
estimator=model,
param_distributions=parameters.get('param_distributions', {}),
n_iter=parameters.get('n_iter', 10),
scoring=scoring,
cv=cv,
n_jobs=n_jobs,
verbose=verbose,
random_state=parameters.get('random_state', 42),
return_train_score=True
)
else:
raise ValueError(f"Unsupported optimization method: {method}")
def run_optimization(self, run_id: str, method: str, parameters: Dict, data_path: str,
output_dir: str, experiment_name: str) -> Dict:
"""执行模型优化"""
try:
# 生成优化任务ID
task_id = f"opt_{datetime.now():%Y%m%d}_{uuid.uuid4().hex[:6]}"
task_dir = self.optimize_dir / task_id
task_dir.mkdir(exist_ok=True)
# 记录开始时间
start_time = datetime.now()
# 加载原始模型
model, model_type, dataset = self._get_model_from_run(run_id)
# 加载数据
X_train, y_train, X_val, y_val = self._load_data(dataset)
# 获取任务类型
run = self.client.get_run(run_id)
task_type = run.data.params.get('task_type', 'classification')
# 设置MLflow实验
mlflow.set_experiment(experiment_name)
with mlflow.start_run(run_name=f"optimize_{method}_{task_id}") as opt_run:
# 记录原始模型信息
mlflow.log_param('original_run_id', run_id)
mlflow.log_param('original_model', model_type)
mlflow.log_param('optimization_method', method)
mlflow.log_param('data_path', dataset)
# 记录优化参数
for param_name, param_value in parameters.items():
if isinstance(param_value, dict):
mlflow.log_param(param_name, json.dumps(param_value))
else:
mlflow.log_param(param_name, param_value)
# 获取优化器
optimizer = self._get_optimizer(
method=method,
model=model,
parameters=parameters,
scoring=parameters.get('scoring', 'accuracy'),
cv=parameters.get('cv', 5),
n_jobs=parameters.get('n_jobs', -1),
verbose=parameters.get('verbose', 1)
)
# 执行优化
self.logger.info(f"Starting optimization with {method} for model {model_type}")
optimizer.fit(X_train, y_train)
# 记录最佳参数和得分
mlflow.log_param('best_params', json.dumps(optimizer.best_params_))
mlflow.log_metric('best_score', optimizer.best_score_)
# 保存CV结果
cv_results = pd.DataFrame(optimizer.cv_results_)
cv_results_path = task_dir / 'cv_results.csv'
cv_results.to_csv(cv_results_path, index=False)
mlflow.log_artifact(str(cv_results_path))
# 计算CV结果摘要
cv_results_summary = {
'mean_fit_time': float(cv_results['mean_fit_time'].mean()),
'mean_score_time': float(cv_results['mean_score_time'].mean()),
'param_combinations': len(cv_results),
'score_range': [float(cv_results['mean_test_score'].min()),
float(cv_results['mean_test_score'].max())]
}
# 使用最佳参数重新训练模型
best_model = optimizer.best_estimator_
# 保存优化后的模型
mlflow.sklearn.log_model(best_model, "optimized_model")
# 记录结束时间和执行时间
end_time = datetime.now()
execution_time = end_time - start_time
mlflow.log_param('execution_time', str(execution_time))
mlflow.log_param('start_time', start_time.isoformat())
mlflow.log_param('end_time', end_time.isoformat())
# 保存优化任务信息
print("run_id: ", opt_run.info.run_id)
task_info = {
'id': task_id,
'run_id': opt_run.info.run_id,
'experiment_id': opt_run.info.experiment_id,
'task_id': task_id,
'method': method,
'original_model': model_type,
'parameters': parameters,
'best_params': optimizer.best_params_,
'best_score': float(optimizer.best_score_),
'cv_results_summary': cv_results_summary,
'cv_results_file': str(cv_results_path),
'optimized_model_id': run_id,
'execution_time': str(execution_time),
'experiment_name': experiment_name,
'status': 'completed',
'start_time': start_time.isoformat(),
'end_time': end_time.isoformat()
}
# 保存任务信息到文件
with open(task_dir / 'task_info.json', 'w') as f:
json.dump(task_info, f, indent=2)
self.logger.info(f"Optimization completed. Task ID: {task_id}, Run ID: {opt_run.info.run_id}")
return {
'status': 'success',
'optimization': {
'id': task_id,
'run_id': opt_run.info.run_id,
'experiment_id': opt_run.info.experiment_id,
'task_id': task_id,
'method': method,
'original_model': model_type,
'best_params': optimizer.best_params_,
'best_score': float(optimizer.best_score_),
'cv_results_file': str(cv_results_path),
'optimized_model_id': run_id,
'execution_time': str(execution_time),
'status': 'completed',
'timestamp': end_time.isoformat()
}
}
except Exception as e:
error_msg = f"Error running optimization: {str(e)}"
self.logger.error(error_msg)
return {
'status': 'error',
'message': error_msg,
'details': {
'error_type': type(e).__name__,
'error_message': str(e)
}
}
def get_optimization_tasks(self, experiment_name: Optional[str] = None,
page: int = 1, page_size: int = 10, status:str = 0) -> Dict:
"""获取优化任务列表"""
try:
tasks = []
# 遍历优化任务目录
for task_dir in sorted(self.optimize_dir.glob('*'), reverse=True):
if not task_dir.is_dir():
continue
task_info_path = task_dir / 'task_info.json'
if not task_info_path.exists():
continue
with open(task_info_path, 'r') as f:
task_info = json.load(f)
# 如果指定了实验名称,则过滤
if experiment_name and task_info.get('experiment_name', None) != experiment_name:
continue
# 添加简化的任务信息
tasks.append({
'id': task_info['id'],
'run_id': task_info['run_id'],
'task_id': task_info['task_id'],
'method': task_info['method'],
'original_model': task_info['original_model'],
'best_score': task_info['best_score'],
'status': task_info['status'],
'start_time': task_info['start_time'],
'end_time': task_info['end_time'],
'experiment_name': task_info.get('experiment_name', None),
'optimized_model_id': task_info['optimized_model_id']
})
# 分页
total_count = len(tasks)
start_idx = (page - 1) * page_size
end_idx = start_idx + page_size
paginated_tasks = tasks[start_idx:end_idx]
return {
'status': 'success',
'tasks': paginated_tasks,
'total_count': total_count,
'page': page,
'page_size': page_size
}
except Exception as e:
error_msg = f"Error getting optimization tasks: {str(e)}"
self.logger.error(error_msg)
return {
'status': 'error',
'message': error_msg
}
def get_optimization_task(self, task_id: str) -> Dict:
"""获取优化任务详情"""
try:
task_dir = self.optimize_dir / task_id
task_info_path = task_dir / 'task_info.json'
if not task_info_path.exists():
return {
'status': 'error',
'message': f"Task {task_id} not found"
}
with open(task_info_path, 'r') as f:
task_info = json.load(f)
return {
'status': 'success',
'task': task_info
}
except Exception as e:
error_msg = f"Error getting optimization task {task_id}: {str(e)}"
self.logger.error(error_msg)
return {
'status': 'error',
'message': error_msg
}
def cancel_optimization_task(self, task_id: str) -> Dict:
"""取消优化任务"""
try:
task_dir = self.optimize_dir / task_id
task_info_path = task_dir / 'task_info.json'
if not task_info_path.exists():
return {
'status': 'error',
'message': "任务不存在",
'details': {
'reason': "任务不存在"
}
}
with open(task_info_path, 'r') as f:
task_info = json.load(f)
if task_info['status'] == 'completed':
return {
'status': 'error',
'message': "无法取消任务",
'details': {
'reason': "任务已完成"
}
}
# 更新任务状态
task_info['status'] = 'cancelled'
task_info['cancel_time'] = datetime.now().isoformat()
with open(task_info_path, 'w') as f:
json.dump(task_info, f, indent=2)
# 如果有MLflow运行ID尝试终止运行
if 'optimized_model_id' in task_info:
try:
self.client.set_terminated(task_info['optimized_model_id'])
except:
pass
return {
'status': 'success',
'message': "优化任务已取消",
'task_id': task_id,
'cancel_time': task_info['cancel_time']
}
except Exception as e:
error_msg = f"Error cancelling optimization task {task_id}: {str(e)}"
self.logger.error(error_msg)
return {
'status': 'error',
'message': error_msg
}
def delete_optimization_task(self, task_id: str) -> Dict:
"""删除优化任务"""
try:
task_dir = self.optimize_dir / task_id
task_info_path = task_dir / 'task_info.json'
if not task_info_path.exists():
return {
'status': 'error',
'message': "删除任务失败",
'details': {
'reason': "任务不存在"
}
}
with open(task_info_path, 'r') as f:
task_info = json.load(f)
if task_info['status'] == 'running':
return {
'status': 'error',
'message': "删除任务失败",
'details': {
'reason': "任务正在运行中"
}
}
# mlflow 删除实验
self.client.delete_run(task_info['run_id'])
# 收集要删除的文件
deleted_files = []
for file_path in task_dir.glob('*'):
deleted_files.append(str(file_path))
# 删除任务目录
import shutil
shutil.rmtree(task_dir)
config = config_parameter
return config
return {
'status': 'success',
'message': "优化任务已删除",
'details': {
'task_id': task_id,
'deleted_files': deleted_files
}
}
except Exception as e:
error_msg = f"Error deleting optimization task {task_id}: {str(e)}"
self.logger.error(error_msg)
return {
'status': 'error',
'message': error_msg
}

10
main.py
View File

@ -16,6 +16,7 @@ import time
from api.data_api import router as data_router
from api.model_api import router as model_router
from api.system_api import router as system_router
from api.optimize_api import router as optimize_router
# 设置watchfiles 日志级别为warning
@ -153,6 +154,13 @@ app.include_router(
responses={404: {"description": "Not found"}},
)
app.include_router(
optimize_router,
prefix="/optimize",
tags=["模型优化"],
responses={404: {"description": "Not found"}},
)
# 健康检查
@app.get("/health")
async def health_check():
@ -174,7 +182,7 @@ if __name__ == "__main__":
port=config.get('port', 8992),
# reload=True 支持热重载
# reload=config.get('debug', False),
workers=config.get('workers', 4),
workers=config.get('workers', 1),
log_level=config.get('log_level', 'warning'),
access_log=True
)

View File

@ -0,0 +1,2 @@
mean_fit_time,std_fit_time,mean_score_time,std_score_time,params,split0_test_score,split1_test_score,split2_test_score,split3_test_score,split4_test_score,mean_test_score,std_test_score,rank_test_score,split0_train_score,split1_train_score,split2_train_score,split3_train_score,split4_train_score,mean_train_score,std_train_score
0.13159947395324706,0.014510434802840732,0.006738471984863281,0.0020981337714673955,{},0.9607843137254902,0.9607843137254902,0.9607843137254902,0.9215686274509803,0.9411764705882353,0.9490196078431372,0.015686274509803956,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0
1 mean_fit_time std_fit_time mean_score_time std_score_time params split0_test_score split1_test_score split2_test_score split3_test_score split4_test_score mean_test_score std_test_score rank_test_score split0_train_score split1_train_score split2_train_score split3_train_score split4_train_score mean_train_score std_train_score
2 0.13159947395324706 0.014510434802840732 0.006738471984863281 0.0020981337714673955 {} 0.9607843137254902 0.9607843137254902 0.9607843137254902 0.9215686274509803 0.9411764705882353 0.9490196078431372 0.015686274509803956 1 1.0 1.0 1.0 1.0 1.0 1.0 0.0

View File

@ -0,0 +1,20 @@
artifact_path: optimized_model
flavors:
python_function:
env:
conda: conda.yaml
virtualenv: python_env.yaml
loader_module: mlflow.sklearn
model_path: model.pkl
predict_fn: predict
python_version: 3.9.19
sklearn:
code: null
pickled_model: model.pkl
serialization_format: cloudpickle
sklearn_version: 1.5.2
mlflow_version: 2.20.1
model_size_bytes: 96534
model_uuid: 5fe0768e25244e3d9a2ecc2b8385fe47
run_id: 1d283117a78943d6a7cd3297b189ec8b
utc_time_created: '2025-03-18 02:53:24.438851'

View File

@ -0,0 +1,15 @@
channels:
- conda-forge
dependencies:
- python=3.9.19
- pip<=24.0
- pip:
- mlflow==2.20.1
- cloudpickle==3.1.0
- numpy==1.26.4
- pandas==2.2.2
- psutil==6.0.0
- scikit-learn==1.5.2
- scipy==1.13.1
- xgboost==2.1.4
name: mlflow-env

View File

@ -0,0 +1,7 @@
python: 3.9.19
build_dependencies:
- pip==24.0
- setuptools==60.2.0
- wheel==0.43.0
dependencies:
- -r requirements.txt

View File

@ -0,0 +1,8 @@
mlflow==2.20.1
cloudpickle==3.1.0
numpy==1.26.4
pandas==2.2.2
psutil==6.0.0
scikit-learn==1.5.2
scipy==1.13.1
xgboost==2.1.4

View File

@ -0,0 +1,2 @@
mean_fit_time,std_fit_time,mean_score_time,std_score_time,params,split0_test_score,split1_test_score,split2_test_score,split3_test_score,split4_test_score,mean_test_score,std_test_score,rank_test_score,split0_train_score,split1_train_score,split2_train_score,split3_train_score,split4_train_score,mean_train_score,std_train_score
0.09886403083801269,0.009114179383532501,0.005813694000244141,0.0016351179571628893,{},0.9607843137254902,0.9607843137254902,0.9607843137254902,0.9215686274509803,0.9411764705882353,0.9490196078431372,0.015686274509803956,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0
1 mean_fit_time std_fit_time mean_score_time std_score_time params split0_test_score split1_test_score split2_test_score split3_test_score split4_test_score mean_test_score std_test_score rank_test_score split0_train_score split1_train_score split2_train_score split3_train_score split4_train_score mean_train_score std_train_score
2 0.09886403083801269 0.009114179383532501 0.005813694000244141 0.0016351179571628893 {} 0.9607843137254902 0.9607843137254902 0.9607843137254902 0.9215686274509803 0.9411764705882353 0.9490196078431372 0.015686274509803956 1 1.0 1.0 1.0 1.0 1.0 1.0 0.0

View File

@ -0,0 +1,20 @@
artifact_path: optimized_model
flavors:
python_function:
env:
conda: conda.yaml
virtualenv: python_env.yaml
loader_module: mlflow.sklearn
model_path: model.pkl
predict_fn: predict
python_version: 3.9.19
sklearn:
code: null
pickled_model: model.pkl
serialization_format: cloudpickle
sklearn_version: 1.5.2
mlflow_version: 2.20.1
model_size_bytes: 96534
model_uuid: 61e622d8e8284809b090595b3eb8249b
run_id: 1eb67ea443284056bcf263b060183752
utc_time_created: '2025-03-18 02:33:11.079709'

View File

@ -0,0 +1,15 @@
channels:
- conda-forge
dependencies:
- python=3.9.19
- pip<=24.0
- pip:
- mlflow==2.20.1
- cloudpickle==3.1.0
- numpy==1.26.4
- pandas==2.2.2
- psutil==6.0.0
- scikit-learn==1.5.2
- scipy==1.13.1
- xgboost==2.1.4
name: mlflow-env

View File

@ -0,0 +1,7 @@
python: 3.9.19
build_dependencies:
- pip==24.0
- setuptools==60.2.0
- wheel==0.43.0
dependencies:
- -r requirements.txt

View File

@ -0,0 +1,8 @@
mlflow==2.20.1
cloudpickle==3.1.0
numpy==1.26.4
pandas==2.2.2
psutil==6.0.0
scikit-learn==1.5.2
scipy==1.13.1
xgboost==2.1.4

View File

@ -0,0 +1,2 @@
mean_fit_time,std_fit_time,mean_score_time,std_score_time,params,split0_test_score,split1_test_score,split2_test_score,split3_test_score,split4_test_score,mean_test_score,std_test_score,rank_test_score,split0_train_score,split1_train_score,split2_train_score,split3_train_score,split4_train_score,mean_train_score,std_train_score
0.11665167808532714,0.01410450350966376,0.004927492141723633,7.809081647548583e-05,{},0.9607843137254902,0.9607843137254902,0.9607843137254902,0.9215686274509803,0.9411764705882353,0.9490196078431372,0.015686274509803956,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0
1 mean_fit_time std_fit_time mean_score_time std_score_time params split0_test_score split1_test_score split2_test_score split3_test_score split4_test_score mean_test_score std_test_score rank_test_score split0_train_score split1_train_score split2_train_score split3_train_score split4_train_score mean_train_score std_train_score
2 0.11665167808532714 0.01410450350966376 0.004927492141723633 7.809081647548583e-05 {} 0.9607843137254902 0.9607843137254902 0.9607843137254902 0.9215686274509803 0.9411764705882353 0.9490196078431372 0.015686274509803956 1 1.0 1.0 1.0 1.0 1.0 1.0 0.0

View File

@ -0,0 +1,20 @@
artifact_path: optimized_model
flavors:
python_function:
env:
conda: conda.yaml
virtualenv: python_env.yaml
loader_module: mlflow.sklearn
model_path: model.pkl
predict_fn: predict
python_version: 3.9.19
sklearn:
code: null
pickled_model: model.pkl
serialization_format: cloudpickle
sklearn_version: 1.5.2
mlflow_version: 2.20.1
model_size_bytes: 96534
model_uuid: 4b1dc876bcf34df3b69bcecbdcbb2433
run_id: 263dffa53a4741e68b9f7dd598a92775
utc_time_created: '2025-03-18 02:58:27.086121'

View File

@ -0,0 +1,15 @@
channels:
- conda-forge
dependencies:
- python=3.9.19
- pip<=24.0
- pip:
- mlflow==2.20.1
- cloudpickle==3.1.0
- numpy==1.26.4
- pandas==2.2.2
- psutil==6.0.0
- scikit-learn==1.5.2
- scipy==1.13.1
- xgboost==2.1.4
name: mlflow-env

View File

@ -0,0 +1,7 @@
python: 3.9.19
build_dependencies:
- pip==24.0
- setuptools==60.2.0
- wheel==0.43.0
dependencies:
- -r requirements.txt

View File

@ -0,0 +1,8 @@
mlflow==2.20.1
cloudpickle==3.1.0
numpy==1.26.4
pandas==2.2.2
psutil==6.0.0
scikit-learn==1.5.2
scipy==1.13.1
xgboost==2.1.4

View File

@ -0,0 +1,2 @@
mean_fit_time,std_fit_time,mean_score_time,std_score_time,params,split0_test_score,split1_test_score,split2_test_score,split3_test_score,split4_test_score,mean_test_score,std_test_score,rank_test_score,split0_train_score,split1_train_score,split2_train_score,split3_train_score,split4_train_score,mean_train_score,std_train_score
0.12402424812316895,0.021315426297943304,0.005871343612670899,0.0015934169405603148,{},0.9607843137254902,0.9607843137254902,0.9607843137254902,0.9215686274509803,0.9411764705882353,0.9490196078431372,0.015686274509803956,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0
1 mean_fit_time std_fit_time mean_score_time std_score_time params split0_test_score split1_test_score split2_test_score split3_test_score split4_test_score mean_test_score std_test_score rank_test_score split0_train_score split1_train_score split2_train_score split3_train_score split4_train_score mean_train_score std_train_score
2 0.12402424812316895 0.021315426297943304 0.005871343612670899 0.0015934169405603148 {} 0.9607843137254902 0.9607843137254902 0.9607843137254902 0.9215686274509803 0.9411764705882353 0.9490196078431372 0.015686274509803956 1 1.0 1.0 1.0 1.0 1.0 1.0 0.0

View File

@ -0,0 +1,20 @@
artifact_path: optimized_model
flavors:
python_function:
env:
conda: conda.yaml
virtualenv: python_env.yaml
loader_module: mlflow.sklearn
model_path: model.pkl
predict_fn: predict
python_version: 3.9.19
sklearn:
code: null
pickled_model: model.pkl
serialization_format: cloudpickle
sklearn_version: 1.5.2
mlflow_version: 2.20.1
model_size_bytes: 96534
model_uuid: 409e32e09454429ca8f50063356671a9
run_id: 27d04cc4ecf34c33b9dbdce350a40b92
utc_time_created: '2025-03-18 02:44:12.094128'

View File

@ -0,0 +1,15 @@
channels:
- conda-forge
dependencies:
- python=3.9.19
- pip<=24.0
- pip:
- mlflow==2.20.1
- cloudpickle==3.1.0
- numpy==1.26.4
- pandas==2.2.2
- psutil==6.0.0
- scikit-learn==1.5.2
- scipy==1.13.1
- xgboost==2.1.4
name: mlflow-env

View File

@ -0,0 +1,7 @@
python: 3.9.19
build_dependencies:
- pip==24.0
- setuptools==60.2.0
- wheel==0.43.0
dependencies:
- -r requirements.txt

View File

@ -0,0 +1,8 @@
mlflow==2.20.1
cloudpickle==3.1.0
numpy==1.26.4
pandas==2.2.2
psutil==6.0.0
scikit-learn==1.5.2
scipy==1.13.1
xgboost==2.1.4

View File

@ -0,0 +1,2 @@
mean_fit_time,std_fit_time,mean_score_time,std_score_time,params,split0_test_score,split1_test_score,split2_test_score,split3_test_score,split4_test_score,mean_test_score,std_test_score,rank_test_score,split0_train_score,split1_train_score,split2_train_score,split3_train_score,split4_train_score,mean_train_score,std_train_score
0.1234919548034668,0.02111802375015912,0.007743406295776367,0.002167678316605068,{},0.9607843137254902,0.9607843137254902,0.9607843137254902,0.9215686274509803,0.9411764705882353,0.9490196078431372,0.015686274509803956,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0
1 mean_fit_time std_fit_time mean_score_time std_score_time params split0_test_score split1_test_score split2_test_score split3_test_score split4_test_score mean_test_score std_test_score rank_test_score split0_train_score split1_train_score split2_train_score split3_train_score split4_train_score mean_train_score std_train_score
2 0.1234919548034668 0.02111802375015912 0.007743406295776367 0.002167678316605068 {} 0.9607843137254902 0.9607843137254902 0.9607843137254902 0.9215686274509803 0.9411764705882353 0.9490196078431372 0.015686274509803956 1 1.0 1.0 1.0 1.0 1.0 1.0 0.0

View File

@ -0,0 +1,20 @@
artifact_path: optimized_model
flavors:
python_function:
env:
conda: conda.yaml
virtualenv: python_env.yaml
loader_module: mlflow.sklearn
model_path: model.pkl
predict_fn: predict
python_version: 3.9.19
sklearn:
code: null
pickled_model: model.pkl
serialization_format: cloudpickle
sklearn_version: 1.5.2
mlflow_version: 2.20.1
model_size_bytes: 96534
model_uuid: e8db502a00864fb5842b96744f765fb4
run_id: 396eb46d2da14409b023601374c854d9
utc_time_created: '2025-03-18 03:07:44.056414'

View File

@ -0,0 +1,15 @@
channels:
- conda-forge
dependencies:
- python=3.9.19
- pip<=24.0
- pip:
- mlflow==2.20.1
- cloudpickle==3.1.0
- numpy==1.26.4
- pandas==2.2.2
- psutil==6.0.0
- scikit-learn==1.5.2
- scipy==1.13.1
- xgboost==2.1.4
name: mlflow-env

View File

@ -0,0 +1,7 @@
python: 3.9.19
build_dependencies:
- pip==24.0
- setuptools==60.2.0
- wheel==0.43.0
dependencies:
- -r requirements.txt

View File

@ -0,0 +1,8 @@
mlflow==2.20.1
cloudpickle==3.1.0
numpy==1.26.4
pandas==2.2.2
psutil==6.0.0
scikit-learn==1.5.2
scipy==1.13.1
xgboost==2.1.4

View File

@ -0,0 +1,2 @@
mean_fit_time,std_fit_time,mean_score_time,std_score_time,params,split0_test_score,split1_test_score,split2_test_score,split3_test_score,split4_test_score,mean_test_score,std_test_score,rank_test_score,split0_train_score,split1_train_score,split2_train_score,split3_train_score,split4_train_score,mean_train_score,std_train_score
0.17565064430236815,0.04894339206468253,0.023302555084228516,0.0008791832567045095,{},0.9607843137254902,0.9607843137254902,0.9607843137254902,0.9215686274509803,0.9411764705882353,0.9490196078431372,0.015686274509803956,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0
1 mean_fit_time std_fit_time mean_score_time std_score_time params split0_test_score split1_test_score split2_test_score split3_test_score split4_test_score mean_test_score std_test_score rank_test_score split0_train_score split1_train_score split2_train_score split3_train_score split4_train_score mean_train_score std_train_score
2 0.17565064430236815 0.04894339206468253 0.023302555084228516 0.0008791832567045095 {} 0.9607843137254902 0.9607843137254902 0.9607843137254902 0.9215686274509803 0.9411764705882353 0.9490196078431372 0.015686274509803956 1 1.0 1.0 1.0 1.0 1.0 1.0 0.0

View File

@ -0,0 +1,20 @@
artifact_path: optimized_model
flavors:
python_function:
env:
conda: conda.yaml
virtualenv: python_env.yaml
loader_module: mlflow.sklearn
model_path: model.pkl
predict_fn: predict
python_version: 3.9.19
sklearn:
code: null
pickled_model: model.pkl
serialization_format: cloudpickle
sklearn_version: 1.5.2
mlflow_version: 2.20.1
model_size_bytes: 96534
model_uuid: efbad4618fe64fe8941ec1085a2adbf3
run_id: 47be246200ad47c196c8be7a1a89470b
utc_time_created: '2025-03-17 10:06:58.129063'

View File

@ -0,0 +1,15 @@
channels:
- conda-forge
dependencies:
- python=3.9.19
- pip<=24.0
- pip:
- mlflow==2.20.1
- cloudpickle==3.1.0
- numpy==1.26.4
- pandas==2.2.2
- psutil==6.0.0
- scikit-learn==1.5.2
- scipy==1.13.1
- xgboost==2.1.4
name: mlflow-env

View File

@ -0,0 +1,7 @@
python: 3.9.19
build_dependencies:
- pip==24.0
- setuptools==60.2.0
- wheel==0.43.0
dependencies:
- -r requirements.txt

View File

@ -0,0 +1,8 @@
mlflow==2.20.1
cloudpickle==3.1.0
numpy==1.26.4
pandas==2.2.2
psutil==6.0.0
scikit-learn==1.5.2
scipy==1.13.1
xgboost==2.1.4

View File

@ -0,0 +1,2 @@
mean_fit_time,std_fit_time,mean_score_time,std_score_time,params,split0_test_score,split1_test_score,split2_test_score,split3_test_score,split4_test_score,mean_test_score,std_test_score,rank_test_score,split0_train_score,split1_train_score,split2_train_score,split3_train_score,split4_train_score,mean_train_score,std_train_score
0.10500946044921874,0.026090921300319283,0.005679130554199219,0.0017117005940453925,{},0.9607843137254902,0.9607843137254902,0.9607843137254902,0.9215686274509803,0.9411764705882353,0.9490196078431372,0.015686274509803956,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0
1 mean_fit_time std_fit_time mean_score_time std_score_time params split0_test_score split1_test_score split2_test_score split3_test_score split4_test_score mean_test_score std_test_score rank_test_score split0_train_score split1_train_score split2_train_score split3_train_score split4_train_score mean_train_score std_train_score
2 0.10500946044921874 0.026090921300319283 0.005679130554199219 0.0017117005940453925 {} 0.9607843137254902 0.9607843137254902 0.9607843137254902 0.9215686274509803 0.9411764705882353 0.9490196078431372 0.015686274509803956 1 1.0 1.0 1.0 1.0 1.0 1.0 0.0

View File

@ -0,0 +1,20 @@
artifact_path: optimized_model
flavors:
python_function:
env:
conda: conda.yaml
virtualenv: python_env.yaml
loader_module: mlflow.sklearn
model_path: model.pkl
predict_fn: predict
python_version: 3.9.19
sklearn:
code: null
pickled_model: model.pkl
serialization_format: cloudpickle
sklearn_version: 1.5.2
mlflow_version: 2.20.1
model_size_bytes: 96534
model_uuid: 3a12610b08324dfcbf0b49f252ac35d8
run_id: 968cd016f618493d9c013d3afd64877c
utc_time_created: '2025-03-18 01:53:38.975428'

View File

@ -0,0 +1,15 @@
channels:
- conda-forge
dependencies:
- python=3.9.19
- pip<=24.0
- pip:
- mlflow==2.20.1
- cloudpickle==3.1.0
- numpy==1.26.4
- pandas==2.2.2
- psutil==6.0.0
- scikit-learn==1.5.2
- scipy==1.13.1
- xgboost==2.1.4
name: mlflow-env

View File

@ -0,0 +1,7 @@
python: 3.9.19
build_dependencies:
- pip==24.0
- setuptools==60.2.0
- wheel==0.43.0
dependencies:
- -r requirements.txt

View File

@ -0,0 +1,8 @@
mlflow==2.20.1
cloudpickle==3.1.0
numpy==1.26.4
pandas==2.2.2
psutil==6.0.0
scikit-learn==1.5.2
scipy==1.13.1
xgboost==2.1.4

View File

@ -0,0 +1,2 @@
mean_fit_time,std_fit_time,mean_score_time,std_score_time,params,split0_test_score,split1_test_score,split2_test_score,split3_test_score,split4_test_score,mean_test_score,std_test_score,rank_test_score,split0_train_score,split1_train_score,split2_train_score,split3_train_score,split4_train_score,mean_train_score,std_train_score
0.1131591796875,0.03328052198121982,0.006854724884033203,0.0023337632563497205,{},0.9607843137254902,0.9607843137254902,0.9607843137254902,0.9215686274509803,0.9411764705882353,0.9490196078431372,0.015686274509803956,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0
1 mean_fit_time std_fit_time mean_score_time std_score_time params split0_test_score split1_test_score split2_test_score split3_test_score split4_test_score mean_test_score std_test_score rank_test_score split0_train_score split1_train_score split2_train_score split3_train_score split4_train_score mean_train_score std_train_score
2 0.1131591796875 0.03328052198121982 0.006854724884033203 0.0023337632563497205 {} 0.9607843137254902 0.9607843137254902 0.9607843137254902 0.9215686274509803 0.9411764705882353 0.9490196078431372 0.015686274509803956 1 1.0 1.0 1.0 1.0 1.0 1.0 0.0

View File

@ -0,0 +1,20 @@
artifact_path: optimized_model
flavors:
python_function:
env:
conda: conda.yaml
virtualenv: python_env.yaml
loader_module: mlflow.sklearn
model_path: model.pkl
predict_fn: predict
python_version: 3.9.19
sklearn:
code: null
pickled_model: model.pkl
serialization_format: cloudpickle
sklearn_version: 1.5.2
mlflow_version: 2.20.1
model_size_bytes: 96534
model_uuid: a96686b0149a4c33bddfd33f5535a5dc
run_id: a0b3af77e41e40d686b6326bd03ba5c1
utc_time_created: '2025-03-18 03:20:25.171414'

View File

@ -0,0 +1,15 @@
channels:
- conda-forge
dependencies:
- python=3.9.19
- pip<=24.0
- pip:
- mlflow==2.20.1
- cloudpickle==3.1.0
- numpy==1.26.4
- pandas==2.2.2
- psutil==6.0.0
- scikit-learn==1.5.2
- scipy==1.13.1
- xgboost==2.1.4
name: mlflow-env

View File

@ -0,0 +1,7 @@
python: 3.9.19
build_dependencies:
- pip==24.0
- setuptools==60.2.0
- wheel==0.43.0
dependencies:
- -r requirements.txt

View File

@ -0,0 +1,8 @@
mlflow==2.20.1
cloudpickle==3.1.0
numpy==1.26.4
pandas==2.2.2
psutil==6.0.0
scikit-learn==1.5.2
scipy==1.13.1
xgboost==2.1.4

View File

@ -0,0 +1,2 @@
mean_fit_time,std_fit_time,mean_score_time,std_score_time,params,split0_test_score,split1_test_score,split2_test_score,split3_test_score,split4_test_score,mean_test_score,std_test_score,rank_test_score,split0_train_score,split1_train_score,split2_train_score,split3_train_score,split4_train_score,mean_train_score,std_train_score
0.07573518753051758,0.02302757525425295,0.011832571029663086,0.0004904383086414701,{},0.9607843137254902,0.9607843137254902,0.9607843137254902,0.9215686274509803,0.9411764705882353,0.9490196078431372,0.015686274509803956,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0
1 mean_fit_time std_fit_time mean_score_time std_score_time params split0_test_score split1_test_score split2_test_score split3_test_score split4_test_score mean_test_score std_test_score rank_test_score split0_train_score split1_train_score split2_train_score split3_train_score split4_train_score mean_train_score std_train_score
2 0.07573518753051758 0.02302757525425295 0.011832571029663086 0.0004904383086414701 {} 0.9607843137254902 0.9607843137254902 0.9607843137254902 0.9215686274509803 0.9411764705882353 0.9490196078431372 0.015686274509803956 1 1.0 1.0 1.0 1.0 1.0 1.0 0.0

View File

@ -0,0 +1,20 @@
artifact_path: optimized_model
flavors:
python_function:
env:
conda: conda.yaml
virtualenv: python_env.yaml
loader_module: mlflow.sklearn
model_path: model.pkl
predict_fn: predict
python_version: 3.9.19
sklearn:
code: null
pickled_model: model.pkl
serialization_format: cloudpickle
sklearn_version: 1.5.2
mlflow_version: 2.20.1
model_size_bytes: 96534
model_uuid: cb323d26111440a081d4099ae6aec142
run_id: daf33b024dee4ed1aa5535c51d6f05df
utc_time_created: '2025-03-18 02:41:49.685822'

View File

@ -0,0 +1,15 @@
channels:
- conda-forge
dependencies:
- python=3.9.19
- pip<=24.0
- pip:
- mlflow==2.20.1
- cloudpickle==3.1.0
- numpy==1.26.4
- pandas==2.2.2
- psutil==6.0.0
- scikit-learn==1.5.2
- scipy==1.13.1
- xgboost==2.1.4
name: mlflow-env

View File

@ -0,0 +1,7 @@
python: 3.9.19
build_dependencies:
- pip==24.0
- setuptools==60.2.0
- wheel==0.43.0
dependencies:
- -r requirements.txt

View File

@ -0,0 +1,8 @@
mlflow==2.20.1
cloudpickle==3.1.0
numpy==1.26.4
pandas==2.2.2
psutil==6.0.0
scikit-learn==1.5.2
scipy==1.13.1
xgboost==2.1.4

View File

@ -0,0 +1,2 @@
mean_fit_time,std_fit_time,mean_score_time,std_score_time,params,split0_test_score,split1_test_score,split2_test_score,split3_test_score,split4_test_score,mean_test_score,std_test_score,rank_test_score,split0_train_score,split1_train_score,split2_train_score,split3_train_score,split4_train_score,mean_train_score,std_train_score
0.0989774227142334,0.03284481919159879,0.005786466598510742,0.001540293338309289,{},0.9607843137254902,0.9607843137254902,0.9607843137254902,0.9215686274509803,0.9411764705882353,0.9490196078431372,0.015686274509803956,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0
1 mean_fit_time std_fit_time mean_score_time std_score_time params split0_test_score split1_test_score split2_test_score split3_test_score split4_test_score mean_test_score std_test_score rank_test_score split0_train_score split1_train_score split2_train_score split3_train_score split4_train_score mean_train_score std_train_score
2 0.0989774227142334 0.03284481919159879 0.005786466598510742 0.001540293338309289 {} 0.9607843137254902 0.9607843137254902 0.9607843137254902 0.9215686274509803 0.9411764705882353 0.9490196078431372 0.015686274509803956 1 1.0 1.0 1.0 1.0 1.0 1.0 0.0

View File

@ -0,0 +1,20 @@
artifact_path: optimized_model
flavors:
python_function:
env:
conda: conda.yaml
virtualenv: python_env.yaml
loader_module: mlflow.sklearn
model_path: model.pkl
predict_fn: predict
python_version: 3.9.19
sklearn:
code: null
pickled_model: model.pkl
serialization_format: cloudpickle
sklearn_version: 1.5.2
mlflow_version: 2.20.1
model_size_bytes: 96534
model_uuid: 36f451de2db34b339ed16d01deace57a
run_id: f01134c150fe44919959d9cea4635a50
utc_time_created: '2025-03-18 03:05:22.018624'

View File

@ -0,0 +1,15 @@
channels:
- conda-forge
dependencies:
- python=3.9.19
- pip<=24.0
- pip:
- mlflow==2.20.1
- cloudpickle==3.1.0
- numpy==1.26.4
- pandas==2.2.2
- psutil==6.0.0
- scikit-learn==1.5.2
- scipy==1.13.1
- xgboost==2.1.4
name: mlflow-env

View File

@ -0,0 +1,7 @@
python: 3.9.19
build_dependencies:
- pip==24.0
- setuptools==60.2.0
- wheel==0.43.0
dependencies:
- -r requirements.txt

View File

@ -0,0 +1,8 @@
mlflow==2.20.1
cloudpickle==3.1.0
numpy==1.26.4
pandas==2.2.2
psutil==6.0.0
scikit-learn==1.5.2
scipy==1.13.1
xgboost==2.1.4

View File

@ -0,0 +1,2 @@
mean_fit_time,std_fit_time,mean_score_time,std_score_time,params,split0_test_score,split1_test_score,split2_test_score,split3_test_score,split4_test_score,mean_test_score,std_test_score,rank_test_score,split0_train_score,split1_train_score,split2_train_score,split3_train_score,split4_train_score,mean_train_score,std_train_score
0.07530484199523926,0.021996884245246307,0.011873292922973632,0.0004649350186977138,{},0.9607843137254902,0.9607843137254902,0.9607843137254902,0.9215686274509803,0.9411764705882353,0.9490196078431372,0.015686274509803956,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0
1 mean_fit_time std_fit_time mean_score_time std_score_time params split0_test_score split1_test_score split2_test_score split3_test_score split4_test_score mean_test_score std_test_score rank_test_score split0_train_score split1_train_score split2_train_score split3_train_score split4_train_score mean_train_score std_train_score
2 0.07530484199523926 0.021996884245246307 0.011873292922973632 0.0004649350186977138 {} 0.9607843137254902 0.9607843137254902 0.9607843137254902 0.9215686274509803 0.9411764705882353 0.9490196078431372 0.015686274509803956 1 1.0 1.0 1.0 1.0 1.0 1.0 0.0

View File

@ -0,0 +1,20 @@
artifact_path: optimized_model
flavors:
python_function:
env:
conda: conda.yaml
virtualenv: python_env.yaml
loader_module: mlflow.sklearn
model_path: model.pkl
predict_fn: predict
python_version: 3.9.19
sklearn:
code: null
pickled_model: model.pkl
serialization_format: cloudpickle
sklearn_version: 1.5.2
mlflow_version: 2.20.1
model_size_bytes: 96534
model_uuid: 41e1e074fe01452e96eb7480161a6655
run_id: f9f45d32b5584131855000b5002a8e55
utc_time_created: '2025-03-18 02:51:48.704754'

View File

@ -0,0 +1,15 @@
channels:
- conda-forge
dependencies:
- python=3.9.19
- pip<=24.0
- pip:
- mlflow==2.20.1
- cloudpickle==3.1.0
- numpy==1.26.4
- pandas==2.2.2
- psutil==6.0.0
- scikit-learn==1.5.2
- scipy==1.13.1
- xgboost==2.1.4
name: mlflow-env

View File

@ -0,0 +1,7 @@
python: 3.9.19
build_dependencies:
- pip==24.0
- setuptools==60.2.0
- wheel==0.43.0
dependencies:
- -r requirements.txt

View File

@ -0,0 +1,8 @@
mlflow==2.20.1
cloudpickle==3.1.0
numpy==1.26.4
pandas==2.2.2
psutil==6.0.0
scikit-learn==1.5.2
scipy==1.13.1
xgboost==2.1.4

View File

@ -0,0 +1,2 @@
mean_fit_time,std_fit_time,mean_score_time,std_score_time,params,split0_test_score,split1_test_score,split2_test_score,split3_test_score,split4_test_score,mean_test_score,std_test_score,rank_test_score,split0_train_score,split1_train_score,split2_train_score,split3_train_score,split4_train_score,mean_train_score,std_train_score
0.14056363105773925,0.02594316186162652,0.006799936294555664,0.0024630721660586475,{},0.9607843137254902,0.9607843137254902,0.9607843137254902,0.9215686274509803,0.9411764705882353,0.9490196078431372,0.015686274509803956,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0
1 mean_fit_time std_fit_time mean_score_time std_score_time params split0_test_score split1_test_score split2_test_score split3_test_score split4_test_score mean_test_score std_test_score rank_test_score split0_train_score split1_train_score split2_train_score split3_train_score split4_train_score mean_train_score std_train_score
2 0.14056363105773925 0.02594316186162652 0.006799936294555664 0.0024630721660586475 {} 0.9607843137254902 0.9607843137254902 0.9607843137254902 0.9215686274509803 0.9411764705882353 0.9490196078431372 0.015686274509803956 1 1.0 1.0 1.0 1.0 1.0 1.0 0.0

View File

@ -0,0 +1,20 @@
artifact_path: optimized_model
flavors:
python_function:
env:
conda: conda.yaml
virtualenv: python_env.yaml
loader_module: mlflow.sklearn
model_path: model.pkl
predict_fn: predict
python_version: 3.9.19
sklearn:
code: null
pickled_model: model.pkl
serialization_format: cloudpickle
sklearn_version: 1.5.2
mlflow_version: 2.20.1
model_size_bytes: 96534
model_uuid: 49edd7850fbd4bad8d67537b8481622e
run_id: 0e7f80468ba3451d98e2ed54dafe71a6
utc_time_created: '2025-03-18 03:30:54.057164'

View File

@ -0,0 +1,15 @@
channels:
- conda-forge
dependencies:
- python=3.9.19
- pip<=24.0
- pip:
- mlflow==2.20.1
- cloudpickle==3.1.0
- numpy==1.26.4
- pandas==2.2.2
- psutil==6.0.0
- scikit-learn==1.5.2
- scipy==1.13.1
- xgboost==2.1.4
name: mlflow-env

View File

@ -0,0 +1,7 @@
python: 3.9.19
build_dependencies:
- pip==24.0
- setuptools==60.2.0
- wheel==0.43.0
dependencies:
- -r requirements.txt

View File

@ -0,0 +1,8 @@
mlflow==2.20.1
cloudpickle==3.1.0
numpy==1.26.4
pandas==2.2.2
psutil==6.0.0
scikit-learn==1.5.2
scipy==1.13.1
xgboost==2.1.4

View File

@ -0,0 +1,2 @@
mean_fit_time,std_fit_time,mean_score_time,std_score_time,params,split0_test_score,split1_test_score,split2_test_score,split3_test_score,split4_test_score,mean_test_score,std_test_score,rank_test_score,split0_train_score,split1_train_score,split2_train_score,split3_train_score,split4_train_score,mean_train_score,std_train_score
0.12129182815551758,0.020657317735719265,0.005704736709594727,0.0015915376592795297,{},0.9607843137254902,0.9607843137254902,0.9607843137254902,0.9215686274509803,0.9411764705882353,0.9490196078431372,0.015686274509803956,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0
1 mean_fit_time std_fit_time mean_score_time std_score_time params split0_test_score split1_test_score split2_test_score split3_test_score split4_test_score mean_test_score std_test_score rank_test_score split0_train_score split1_train_score split2_train_score split3_train_score split4_train_score mean_train_score std_train_score
2 0.12129182815551758 0.020657317735719265 0.005704736709594727 0.0015915376592795297 {} 0.9607843137254902 0.9607843137254902 0.9607843137254902 0.9215686274509803 0.9411764705882353 0.9490196078431372 0.015686274509803956 1 1.0 1.0 1.0 1.0 1.0 1.0 0.0

View File

@ -0,0 +1,20 @@
artifact_path: optimized_model
flavors:
python_function:
env:
conda: conda.yaml
virtualenv: python_env.yaml
loader_module: mlflow.sklearn
model_path: model.pkl
predict_fn: predict
python_version: 3.9.19
sklearn:
code: null
pickled_model: model.pkl
serialization_format: cloudpickle
sklearn_version: 1.5.2
mlflow_version: 2.20.1
model_size_bytes: 96534
model_uuid: fada1afa964f4580bf542e0ecfaf81c6
run_id: 903ab190690e496aa74e6aaefac8a7cb
utc_time_created: '2025-03-18 03:36:30.653861'

View File

@ -0,0 +1,15 @@
channels:
- conda-forge
dependencies:
- python=3.9.19
- pip<=24.0
- pip:
- mlflow==2.20.1
- cloudpickle==3.1.0
- numpy==1.26.4
- pandas==2.2.2
- psutil==6.0.0
- scikit-learn==1.5.2
- scipy==1.13.1
- xgboost==2.1.4
name: mlflow-env

View File

@ -0,0 +1,7 @@
python: 3.9.19
build_dependencies:
- pip==24.0
- setuptools==60.2.0
- wheel==0.43.0
dependencies:
- -r requirements.txt

View File

@ -0,0 +1,8 @@
mlflow==2.20.1
cloudpickle==3.1.0
numpy==1.26.4
pandas==2.2.2
psutil==6.0.0
scikit-learn==1.5.2
scipy==1.13.1
xgboost==2.1.4

View File

@ -0,0 +1,15 @@
artifact_uri: mlflow-artifacts:/780687096365534715/0e7f80468ba3451d98e2ed54dafe71a6/artifacts
end_time: 1742268656503
entry_point_name: ''
experiment_id: '780687096365534715'
lifecycle_stage: active
run_id: 0e7f80468ba3451d98e2ed54dafe71a6
run_name: optimize_GridSearchCV_opt_20250318_b50499
run_uuid: 0e7f80468ba3451d98e2ed54dafe71a6
source_name: ''
source_type: 4
source_version: ''
start_time: 1742268652828
status: 3
tags: []
user_id: admin-root

View File

@ -0,0 +1 @@
1742268654037 0.9490196078431372 0

View File

@ -0,0 +1 @@
/home/admin-root/haotian/MLPlatform/dataset/dataset_processed/breast_cancer_20250219_144629

View File

@ -0,0 +1 @@
2025-03-18T11:30:56.488706

View File

@ -0,0 +1 @@
0:00:03.902550

View File

@ -0,0 +1 @@
[3, 5, 7]

View File

@ -0,0 +1 @@
[50, 100, 200]

View File

@ -0,0 +1 @@
XGBClassifier

View File

@ -0,0 +1 @@
bd3697dc238c4d1587e0f4f319d04448

Some files were not shown because too many files have changed in this diff Show More