From 20469b87a97b464b805d974250d4cf089b5aea92 Mon Sep 17 00:00:00 2001 From: Christof Kaufmann <christof.kaufmann@hs-bochum.de> Date: Tue, 20 May 2025 14:25:47 +0000 Subject: [PATCH] Notebooks from applied-cs/data-science@bfb5dcac --- 06-clustering/04-chain-clusters.ipynb | 98 + ...istency.ipynb => 05-knn-consistency.ipynb} | 0 06-clustering/chain.csv | 3600 +++++++++++++++++ 06-clustering/demo/clustering_demo.py | 25 +- .../solutions/04-chain-clusters-sol.ipynb | 240 ++ ...sol.ipynb => 05-knn-consistency-sol.ipynb} | 0 06-clustering/solutions/chain.csv | 3600 +++++++++++++++++ .../solutions/demo/clustering_demo.py | 25 +- 8 files changed, 7552 insertions(+), 36 deletions(-) create mode 100644 06-clustering/04-chain-clusters.ipynb rename 06-clustering/{04-knn_consistency.ipynb => 05-knn-consistency.ipynb} (100%) create mode 100644 06-clustering/chain.csv create mode 100644 06-clustering/solutions/04-chain-clusters-sol.ipynb rename 06-clustering/solutions/{04-knn_consistency-sol.ipynb => 05-knn-consistency-sol.ipynb} (100%) create mode 100644 06-clustering/solutions/chain.csv diff --git a/06-clustering/04-chain-clusters.ipynb b/06-clustering/04-chain-clusters.ipynb new file mode 100644 index 0000000..4d82536 --- /dev/null +++ b/06-clustering/04-chain-clusters.ipynb @@ -0,0 +1,98 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Kettenglied Cluster\n", + "\n", + "Im Startcode werden die Kettenglied-Daten geladen.\n", + "\n", + "- Versuchen Sie mit einem Plot über $\\varepsilon$ herauszukriegen, wie\n", + " viele Cluster es gibt\n", + "- Clustern Sie die Daten anschließend mit `DBSCAN` mit den gefundenen\n", + " Parametern. Speichern Sie die Labels in `labels`.\n", + "\n", + "Hier ist Ihr Startcode" + ], + "id": "0003-63fa5c481c78bbdf737c04550a38235a19937a13865b411b2a2f4b0f35b" + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "style": "python" + }, + "outputs": [], + "source": [ + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "import pandas as pd\n", + "import seaborn as sns\n", + "\n", + "from sklearn.cluster import DBSCAN, HDBSCAN\n", + "from plotly import graph_objects as go\n", + "\n", + "X = np.loadtxt('chain.csv', delimiter=',')" + ], + "id": "0004-172ec8d8337c3342d2de94c7d0b95e0d58501261b0b2b053c81d4df3ebb" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Tests\n", + "\n", + "Wir geben hier die Anzahl gefundener Cluster und den Anteil an Rauschen\n", + "aus." + ], + "id": "0006-d062c7158819e9aa5c6c8293c56a7e567d66fc80cdc9e14a22c7dbcbf3f" + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "n_clusters: 18, noise_lvl: 0.0%" + ] + } + ], + "source": [ + "noise_lvl = np.mean(labels < 0)\n", + "n_clusters = labels.max() + 1\n", + "print(f'n_clusters: {n_clusters}, noise_lvl: {noise_lvl:.1%}')" + ], + "id": "0007-e7e44b3c247a9f8e162855e55d1ae41b0da010167820ecc81de8d505942" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Außerdem plotten wir die Daten mit den gefundenen Labels." + ], + "id": "0008-02aa760645262825d3fe0fac5bed63b93cdb9024bd5568fbd9c82870756" + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "style": "python" + }, + "outputs": [], + "source": [ + "fig = go.Figure(data=[\n", + " go.Scatter3d(x=X[:, 0], y=X[:, 1], z=X[:, 2], marker=dict(size=3, color=labels), mode='markers', hovertemplate='label: %{marker.color}<br>x: %{x}<br>y: %{y}<br>z: %{z}<extra></extra>')\n", + "])\n", + "fig.show()" + ], + "id": "0009-b26d9437b5037dc028a307b8f9e18e3423e9bdd9d750ce887210662533a" + } + ], + "nbformat": 4, + "nbformat_minor": 5, + "metadata": {} +} diff --git a/06-clustering/04-knn_consistency.ipynb b/06-clustering/05-knn-consistency.ipynb similarity index 100% rename from 06-clustering/04-knn_consistency.ipynb rename to 06-clustering/05-knn-consistency.ipynb diff --git a/06-clustering/chain.csv b/06-clustering/chain.csv new file mode 100644 index 0000000..28dd32f --- /dev/null +++ b/06-clustering/chain.csv @@ -0,0 +1,3600 @@ +0.016759,-2.444887,-1.202291 +0.051731,-0.616300,-1.017629 +0.007031,-0.829608,-0.591907 +-0.046917,-1.102943,-2.325805 +0.003632,-1.975426,-2.144800 +-0.047261,-2.270725,-1.906729 +0.048315,-1.964829,-0.583087 +-0.037451,-0.744975,-2.217516 +-0.023558,-0.734820,-2.099692 +0.020099,-1.220865,-0.388617 +0.117791,-1.904107,-0.551867 +-0.044758,-0.521793,-1.873733 +-0.006267,-0.992218,-2.336353 +0.035783,-2.129634,-0.732703 +-0.036603,-0.482404,-1.819362 +0.012028,-0.601960,-2.049014 +0.037340,-1.583664,-0.401811 +0.034721,-1.417353,-2.415609 +-0.025870,-2.279466,-0.879306 +0.082222,-1.983448,-0.502417 +-0.092558,-2.147387,-2.075596 +0.032242,-0.484576,-0.874612 +-0.019180,-1.488220,-2.350838 +-0.010522,-2.446080,-1.244188 +-0.050570,-1.826647,-0.501160 +0.037977,-1.732516,-0.440224 +0.034407,-2.293321,-0.893124 +-0.036406,-1.929009,-0.560254 +-0.065771,-2.080323,-2.132924 +0.000687,-1.909386,-2.219769 +0.036596,-0.445123,-1.144290 +-0.004385,-0.648475,-0.943764 +-0.072748,-1.611283,-0.390324 +-0.049801,-2.127906,-0.621436 +-0.019595,-1.359437,-2.451349 +-0.011299,-2.444366,-1.543980 +0.046217,-1.948993,-2.267113 +0.013075,-1.829826,-2.397288 +0.003967,-1.003343,-2.292030 +0.001202,-2.040871,-0.728617 +-0.056292,-2.180295,-0.774993 +0.074755,-0.358507,-1.474480 +0.080482,-1.097257,-0.505410 +-0.050962,-0.692471,-0.791171 +0.034933,-2.182735,-2.118318 +-0.055857,-0.395068,-1.510338 +0.109820,-0.626831,-0.587052 +-0.054425,-0.690182,-0.823192 +-0.044712,-1.640988,-2.409582 +-0.007743,-2.246198,-0.965583 +-0.008725,-2.361788,-1.917887 +-0.026747,-0.741646,-2.052875 +0.007165,-0.358261,-1.271027 +-0.065172,-2.137629,-2.168856 +0.117066,-2.305918,-1.862925 +-0.049661,-2.010075,-0.628717 +-0.008615,-1.711259,-2.387070 +0.024534,-2.423051,-1.404618 +-0.070287,-0.753084,-2.083663 +0.008800,-2.398640,-1.258946 +0.071830,-0.825851,-2.249682 +0.060846,-2.371980,-1.221425 +0.010078,-0.905262,-0.648168 +0.090801,-0.375422,-1.041749 +-0.021075,-0.865630,-0.569881 +-0.049210,-2.191698,-1.983787 +-0.000282,-1.160299,-0.412850 +0.077412,-0.454137,-1.703321 +-0.112759,-2.353736,-1.137361 +-0.067035,-1.874078,-2.323204 +0.050375,-1.504362,-0.398809 +-0.026629,-2.079334,-2.094959 +0.029596,-0.958319,-2.338274 +-0.038277,-1.133321,-0.426369 +0.009712,-2.303969,-1.930850 +0.012553,-2.179294,-1.693921 +-0.046928,-0.731259,-0.751521 +-0.032489,-1.721380,-2.274559 +-0.040100,-2.435978,-1.518101 +-0.008947,-2.399314,-1.767857 +-0.048227,-0.407158,-1.433885 +-0.080687,-2.033002,-0.809496 +-0.060323,-1.173637,-0.248107 +-0.064436,-0.502499,-1.778362 +0.095078,-0.493983,-1.692481 +0.042754,-2.267094,-0.966698 +-0.007360,-1.136881,-2.353980 +-0.014651,-0.961451,-0.525716 +0.025935,-0.393244,-1.700468 +0.019347,-1.735814,-0.459115 +-0.039686,-0.612080,-0.767927 +0.115124,-1.592457,-2.339072 +-0.041968,-2.460689,-1.365898 +0.014451,-0.864551,-0.635210 +0.051009,-0.434126,-1.122336 +-0.025934,-0.403208,-1.584496 +-0.016069,-1.126701,-2.374152 +0.008391,-0.336781,-1.353785 +-0.013027,-0.728980,-0.633609 +-0.020455,-2.305637,-1.969746 +0.095004,-0.492248,-1.227156 +-0.018069,-0.867546,-0.613581 +-0.018395,-1.577187,-2.336537 +0.095277,-1.491677,-2.363539 +0.095916,-2.336149,-1.633452 +-0.016311,-1.583721,-2.420646 +0.054427,-0.513750,-1.047954 +-0.010486,-1.703706,-0.428926 +0.100136,-2.289584,-1.854587 +-0.003682,-1.589794,-2.420620 +0.083118,-0.883182,-2.314748 +-0.055754,-0.398197,-1.466911 +-0.036913,-0.384813,-1.399248 +0.033482,-1.431913,-2.378822 +0.003962,-1.965021,-0.502091 +-0.113478,-2.182622,-2.028812 +-0.086988,-1.744602,-0.474913 +0.046562,-1.244021,-0.372956 +0.058766,-0.990044,-2.304863 +0.014869,-0.810060,-0.637601 +-0.008389,-1.069896,-0.393953 +-0.058219,-2.375459,-1.567210 +-0.040897,-1.288789,-2.376562 +0.046441,-1.211990,-2.309194 +0.047124,-0.646593,-0.662417 +0.128021,-0.661173,-0.848882 +0.088234,-0.548867,-1.875820 +0.072025,-1.582233,-2.464403 +-0.088070,-2.270758,-0.813737 +0.028830,-1.046067,-0.536821 +-0.127056,-0.861184,-2.270276 +0.025266,-1.267284,-0.396835 +0.041807,-2.369681,-1.183465 +-0.038757,-1.284545,-2.381292 +0.045129,-1.203513,-0.395419 +-0.014621,-1.774589,-2.284153 +-0.109618,-0.475744,-1.387412 +-0.128349,-2.424993,-1.515216 +-0.015669,-1.483230,-0.344531 +0.073023,-1.912844,-2.186295 +0.005067,-0.637040,-2.020477 +-0.081430,-0.678334,-2.057115 +0.044197,-0.414351,-1.930010 +0.021606,-1.425819,-0.374385 +-0.007210,-2.309717,-0.761158 +-0.033275,-0.947611,-0.582530 +-0.035986,-0.400549,-1.192265 +0.018076,-2.331151,-1.636381 +-0.018853,-2.441521,-1.062312 +-0.018232,-2.199439,-0.869873 +-0.007213,-0.651849,-1.977241 +0.114234,-0.569103,-1.953273 +0.059193,-2.387392,-1.042943 +-0.001422,-0.414152,-1.197145 +-0.087426,-0.596259,-1.064308 +-0.025227,-1.695117,-0.333159 +0.060830,-0.840008,-2.171031 +-0.022389,-1.977723,-2.216888 +0.034054,-0.557917,-0.832447 +-0.062807,-2.037075,-0.486615 +0.012269,-0.614066,-2.102073 +0.031943,-1.884877,-2.285679 +-0.042872,-0.867292,-2.307577 +0.036607,-0.479567,-1.888882 +-0.015744,-1.772180,-0.499222 +0.051455,-1.626061,-0.426344 +-0.109495,-2.458145,-1.543131 +0.049235,-1.439571,-0.482638 +-0.163049,-0.437778,-1.392210 +0.023919,-1.679466,-0.405837 +-0.085853,-1.353562,-0.396502 +-0.004736,-2.286282,-1.012920 +0.036758,-0.647705,-0.737713 +0.089592,-1.671501,-0.472906 +0.073468,-1.101507,-2.273846 +-0.024339,-0.351389,-1.641458 +0.014203,-1.926848,-2.210052 +-0.051762,-1.027523,-0.457367 +-0.086117,-1.146796,-2.405549 +0.063130,-0.555768,-1.661404 +-0.092756,-0.445936,-1.354968 +-0.009857,-1.476726,-0.410728 +0.011186,-1.486880,-2.360630 +0.036447,-1.966608,-2.178408 +0.016303,-1.256660,-2.404297 +-0.016890,-2.437006,-1.550883 +-0.068446,-2.448390,-1.372477 +0.018386,-2.273494,-1.923858 +0.049510,-2.277087,-1.011633 +-0.035910,-2.054384,-0.660693 +-0.079647,-2.193894,-1.998495 +-0.049483,-0.390052,-1.511426 +0.073490,-0.522346,-0.826103 +0.019990,-0.602769,-1.831724 +-0.016158,-2.071874,-0.570553 +0.109851,-2.447001,-1.633442 +0.012950,-0.406562,-1.041451 +0.013697,-2.268412,-1.242157 +-0.070459,-0.633143,-2.041539 +0.044693,-2.384735,-1.560413 +0.028348,-2.419453,1.626529 +-0.034517,-0.544007,1.883753 +0.041961,-0.787569,2.116309 +0.029592,-1.208197,0.444357 +-0.078305,-2.012876,0.585124 +-0.070545,-2.251746,0.959300 +-0.033769,-1.882269,2.202845 +0.001766,-0.797425,0.556901 +0.025912,-0.744793,0.648391 +0.074945,-1.300798,2.254985 +0.088602,-1.741541,2.254017 +-0.106526,-0.572749,0.848431 +-0.010446,-1.007246,0.540869 +0.028848,-2.252706,2.075880 +0.112898,-0.485715,0.955668 +-0.007810,-0.616050,0.643501 +0.009041,-1.608857,2.483918 +-0.009580,-1.245476,0.341268 +0.032299,-2.226761,1.888029 +0.009757,-1.869138,2.226519 +-0.093058,-2.129935,0.665820 +-0.018829,-0.528181,1.787943 +-0.088861,-1.436277,0.373224 +-0.141061,-2.332750,1.633124 +-0.039263,-1.926416,2.336976 +0.019214,-1.577974,2.374167 +0.021324,-2.285488,1.926676 +0.034380,-1.840197,2.232069 +-0.023947,-2.133457,0.736387 +0.082411,-1.961063,0.532310 +0.017274,-0.453223,1.731354 +-0.123848,-0.601141,1.892794 +-0.127620,-1.609435,2.337355 +-0.011061,-2.045894,2.093628 +-0.056695,-1.403132,0.457705 +-0.053678,-2.442196,1.305387 +-0.012184,-1.818379,0.508243 +0.038592,-1.854077,0.481581 +-0.011588,-1.041095,0.409182 +0.037716,-2.148271,2.028322 +-0.005290,-2.128114,1.887466 +-0.082315,-0.455197,1.386257 +0.015542,-0.989673,2.267068 +-0.061574,-0.646402,2.087752 +0.030181,-2.180835,0.777874 +0.008697,-0.369534,1.287951 +-0.089093,-0.910693,2.245251 +0.065325,-0.629054,1.859792 +0.005447,-1.566947,0.522951 +0.028396,-2.325271,1.776657 +0.000630,-2.321287,0.918392 +0.112682,-0.640504,0.712372 +-0.050647,-0.365286,1.591614 +0.024340,-2.015816,0.705977 +0.040701,-2.225712,0.909702 +-0.098099,-2.056713,2.119521 +-0.070391,-1.616517,0.544038 +0.074757,-2.383990,1.537075 +0.000663,-0.751422,0.569346 +0.021835,-2.388793,1.453687 +-0.002816,-0.842302,0.671785 +0.049182,-2.394932,1.507792 +0.002432,-0.849077,2.167547 +-0.008308,-0.511259,1.699357 +0.028117,-0.924490,2.192738 +-0.006748,-2.172317,0.896174 +0.056421,-1.149170,2.322106 +-0.059603,-0.440166,1.082122 +0.070803,-2.290558,1.701744 +-0.068431,-1.843330,0.507121 +-0.011115,-1.463195,2.413415 +-0.027718,-2.095855,0.667019 +-0.022110,-1.018450,0.485250 +-0.062669,-1.147477,2.439371 +-0.063914,-2.360744,0.761772 +0.001601,-2.316054,0.996384 +0.066780,-0.862459,2.150745 +0.085879,-1.800766,0.438230 +-0.041409,-2.449189,1.382056 +0.078512,-2.239825,1.042785 +0.104778,-0.400017,1.559244 +-0.005131,-2.142903,2.081413 +0.174837,-1.227846,2.353215 +0.053295,-0.502146,0.975916 +0.049973,-0.437997,1.136331 +0.000769,-2.272494,1.877364 +-0.106533,-1.024601,0.405108 +-0.079326,-0.977433,2.309446 +-0.038143,-0.403237,1.017163 +-0.022382,-1.770906,2.338318 +0.015338,-0.684921,2.077260 +0.003465,-1.783048,0.331984 +-0.000678,-2.411660,1.362901 +-0.001539,-0.878553,2.312863 +-0.061111,-0.523578,1.678605 +0.015890,-0.349241,1.188895 +-0.137593,-1.214729,0.393889 +-0.030675,-0.440174,1.589503 +-0.017146,-0.680974,2.112930 +-0.047427,-2.182679,0.727754 +0.021433,-0.402245,1.517224 +0.087355,-0.898395,2.357644 +-0.012399,-1.718926,0.435262 +-0.059193,-1.597781,0.434148 +0.030557,-2.394513,1.175316 +0.063663,-1.508385,0.446830 +0.074989,-0.552387,1.691532 +-0.047685,-1.761567,2.298347 +-0.009139,-2.226257,1.022541 +0.022759,-1.538108,0.412050 +0.000331,-0.893589,0.587785 +0.090607,-0.382971,1.432425 +-0.063298,-0.406806,1.388925 +0.047628,-1.294253,0.453190 +0.026992,-1.921768,2.224932 +-0.019563,-2.131640,0.577505 +0.021059,-2.026442,2.210037 +0.024847,-1.186355,2.318354 +-0.039166,-0.927472,0.455624 +0.123361,-0.762682,2.192955 +0.088928,-1.083777,2.295928 +-0.006035,-2.370542,1.076249 +-0.014071,-1.284386,0.463151 +0.001904,-1.228172,0.411873 +0.012272,-0.658968,2.052123 +-0.057287,-0.589132,2.038633 +-0.077926,-0.499284,0.943732 +-0.084189,-1.481487,0.444895 +0.020591,-2.192322,1.884849 +0.018207,-1.077906,2.314327 +0.047881,-0.782813,0.654362 +0.072314,-1.311927,2.414962 +0.042175,-2.375622,1.594573 +0.045306,-1.277927,0.367775 +-0.022796,-1.146992,2.376081 +0.018712,-1.731270,0.449607 +0.041594,-0.383602,1.426194 +0.079327,-2.415229,1.152535 +-0.057477,-1.550266,2.398431 +-0.015062,-1.927567,0.573342 +0.018693,-0.573600,0.834755 +0.033887,-0.745424,0.742532 +-0.119912,-0.507010,0.945755 +0.057504,-1.303269,2.410659 +-0.027520,-2.182333,1.958750 +-0.000077,-0.864009,2.245629 +0.044312,-0.386826,1.565630 +0.053564,-2.312635,1.096589 +-0.041928,-2.407550,1.649420 +0.029843,-2.313301,1.933105 +-0.068297,-0.682255,0.721484 +0.134482,-0.648672,0.918877 +0.008241,-2.318266,1.745247 +0.024460,-0.439870,1.728663 +-0.025106,-0.419972,1.761708 +-0.003314,-1.737949,2.385320 +0.079482,-0.791348,0.599016 +-0.061304,-1.974694,0.485316 +-0.050208,-0.526785,1.981587 +0.154507,-2.069686,2.249455 +0.013406,-0.701212,0.716686 +0.003405,-1.875682,0.501235 +-0.076896,-0.975858,0.575186 +-0.015219,-0.572043,0.891426 +0.043721,-1.787228,2.281672 +0.067446,-1.438478,2.419315 +0.053551,-2.307609,1.244012 +0.033775,-1.367091,2.428581 +-0.060354,-0.369346,1.200097 +-0.043703,-1.576994,2.414795 +0.081807,-1.352152,2.334653 +-0.013224,-2.324165,1.772469 +0.062352,-0.629715,2.032269 +-0.054374,-1.593376,2.376088 +-0.041240,-1.103954,0.438814 +-0.014859,-0.333993,1.145896 +-0.013414,-2.128267,0.560664 +-0.014469,-1.040574,2.393749 +-0.009072,-1.110992,0.427477 +0.002048,-0.428967,1.182066 +0.094534,-0.528072,1.321326 +-0.029874,-1.461991,2.435982 +0.026020,-1.452544,0.456541 +0.056661,-1.977662,0.643929 +0.014995,-1.399471,0.438873 +0.006084,-2.395488,1.386904 +-0.134798,-2.477479,1.366122 +-0.019979,-2.290310,0.835343 +-0.054184,-2.365101,1.932306 +0.099096,-2.107193,2.108972 +-0.063206,-2.295102,0.780665 +-0.054882,-0.405160,1.280578 +-0.041909,-0.582809,2.007927 +0.022961,-0.542850,1.078883 +-0.044012,-1.978100,2.189570 +-0.075701,-2.399678,1.232714 +0.033713,-0.502927,1.910027 +0.055413,-2.382699,1.689947 +0.106359,-0.502018,0.719553 +-0.050959,-2.316356,1.279004 +-1.472740,-1.014429,0.179547 +-1.405632,0.855226,0.416909 +-1.439179,0.539412,0.934507 +-1.383637,0.297462,-0.995482 +-1.410228,-0.676669,-0.916357 +-1.475791,-0.990591,-0.577729 +-1.465745,-0.489211,0.824637 +-1.329019,0.610389,-0.765976 +-1.449549,0.713364,-0.688889 +-1.431716,0.187209,1.018829 +-1.430225,-0.543506,0.811180 +-1.395242,0.862313,-0.579416 +-1.398538,0.485370,-0.857006 +-1.314647,-0.700279,0.582353 +-1.307403,0.875623,-0.368311 +-1.396261,0.727443,-0.760735 +-1.409436,-0.273147,1.035489 +-1.316576,0.018960,-0.981418 +-1.439897,-0.878895,0.578424 +-1.402120,-0.440146,0.817805 +-1.345037,-0.723611,-0.640779 +-1.424594,0.873581,0.475401 +-1.445983,-0.026376,-0.962263 +-1.367354,-0.891384,0.297857 +-1.420622,-0.433473,0.856708 +-1.398715,-0.342003,1.040160 +-1.379997,-0.888298,0.547403 +-1.519384,-0.619817,0.904513 +-1.396674,-0.693332,-0.780059 +-1.401278,-0.425634,-0.798997 +-1.390666,0.936146,0.257290 +-1.517106,0.858498,0.582328 +-1.486659,-0.192812,0.924028 +-1.453094,-0.704165,0.592465 +-1.366215,0.041462,-1.013811 +-1.536439,-1.046918,-0.057524 +-1.552790,-0.473104,-0.955907 +-1.355749,-0.434279,-0.895537 +-1.368900,0.526772,-0.915989 +-1.379318,-0.810647,0.750020 +-1.441828,-0.820996,0.611683 +-1.485959,1.008144,-0.040898 +-1.383889,0.280735,0.922967 +-1.359188,0.625679,0.625435 +-1.351790,-0.755658,-0.614766 +-1.297728,1.013459,-0.120251 +-1.250909,0.601148,0.746271 +-1.376471,0.851225,0.533114 +-1.456782,-0.091102,-0.957940 +-1.440276,-0.854451,0.419776 +-1.413908,-0.873902,-0.496833 +-1.380606,0.766524,-0.724471 +-1.420692,0.959798,0.133866 +-1.413968,-0.705326,-0.678571 +-1.495327,-0.813332,-0.529924 +-1.379268,-0.723296,0.823186 +-1.331490,-0.256240,-1.034368 +-1.354398,-0.975760,-0.025499 +-1.401336,0.657473,-0.739929 +-1.390251,-0.976097,0.206382 +-1.332568,0.404395,-0.844540 +-1.409056,-1.091927,0.099288 +-1.331318,0.502322,0.845583 +-1.450370,0.892821,0.449381 +-1.429841,0.479412,0.788090 +-1.297573,-0.793935,-0.572121 +-1.368345,0.171150,1.033622 +-1.417819,0.929657,-0.365779 +-1.431936,-0.912850,0.323092 +-1.364154,-0.426263,-0.876601 +-1.423037,0.091224,0.913270 +-1.330648,-0.586077,-0.796980 +-1.277390,0.422877,-0.876364 +-1.398459,0.267044,0.948776 +-1.378521,-0.767263,-0.525855 +-1.450129,-0.872411,-0.346485 +-1.363994,0.725550,0.714068 +-1.451094,-0.386489,-1.030831 +-1.386968,-1.004590,-0.024199 +-1.562559,-1.009483,-0.277092 +-1.436554,1.017859,-0.013697 +-1.320871,-0.758033,0.677264 +-1.272082,0.208737,0.975254 +-1.432627,0.899850,-0.369103 +-1.405787,0.938555,-0.198296 +-1.406282,-0.764529,0.458981 +-1.301807,0.358390,-0.887918 +-1.439854,0.378823,0.930111 +-1.345630,0.953271,-0.379769 +-1.474814,-0.417230,0.843662 +-1.393978,0.832391,0.636686 +-1.524323,-0.289483,-0.969248 +-1.284720,-1.079649,-0.052898 +-1.306178,0.533790,0.891724 +-1.393698,0.959028,0.381506 +-1.444522,1.030580,-0.262896 +-1.381940,0.288822,-0.994190 +-1.401248,0.948048,0.128438 +-1.419449,0.600592,0.767865 +-1.463255,-0.769858,-0.652767 +-1.431146,0.957762,0.198216 +-1.381834,0.524181,0.871757 +-1.515896,-0.251062,-0.858720 +-1.392721,-0.152699,-0.957541 +-1.350742,-1.070154,-0.371519 +-1.388434,-0.226700,-0.910126 +-1.417335,0.844657,0.239276 +-1.551232,-0.381001,0.919415 +-1.423345,-0.870438,-0.302206 +-1.409371,-0.242741,-0.958164 +-1.369455,0.498770,-0.822325 +-1.464066,1.110482,-0.052769 +-1.358793,0.905223,-0.113955 +-1.316600,0.079759,-0.949366 +-1.386967,-0.593558,0.884029 +-1.413016,-0.848052,-0.705490 +-1.369684,-0.404026,0.818639 +-1.439839,0.155387,0.962186 +-1.475675,0.362587,-0.957828 +-1.357566,0.681926,0.762494 +-1.421562,0.316713,0.906145 +-1.463076,-1.020295,-0.283605 +-1.463991,0.165348,-0.947554 +-1.487290,0.188763,-0.994384 +-1.381217,0.706395,0.627159 +-1.469431,0.751729,0.717895 +-1.521780,0.895322,-0.416324 +-1.408416,-0.063847,-1.034231 +-1.406565,-0.916231,0.433144 +-1.348148,0.284563,0.915827 +-1.476254,0.458278,-0.853889 +-1.440127,0.114897,1.020452 +-1.382353,-0.969164,0.274159 +-1.458718,0.122312,-0.929817 +-1.330450,0.139946,0.958737 +-1.325303,-0.340180,-0.919037 +-1.411973,0.974453,0.109960 +-1.413881,-0.990030,-0.152112 +-1.437294,-0.064841,1.155845 +-1.497734,-0.491221,-0.902552 +-1.368243,0.811578,-0.545883 +-1.335347,0.781096,-0.575161 +-1.528936,0.978481,-0.433362 +-1.340719,-0.035682,0.953814 +-1.391973,-0.809954,0.603354 +-1.340352,0.384667,0.929867 +-1.399544,0.964709,0.137232 +-1.372332,-1.083832,-0.273355 +-1.482066,-0.957354,0.272437 +-1.335675,-0.870568,0.470864 +-1.427863,0.798977,-0.655051 +-1.421210,0.814076,-0.648278 +-1.378634,-1.037671,0.380087 +-1.392926,1.099866,0.188182 +-1.405646,1.016660,0.462674 +-1.438292,-0.266673,0.960404 +-1.384492,0.574480,-0.795068 +-1.487893,-0.554652,-0.802329 +-1.412508,0.771914,0.563411 +-1.379951,-0.677355,0.755080 +-1.482537,0.650709,-0.736686 +-1.332437,-0.516926,-0.841095 +-1.429607,0.522679,-0.868519 +-1.351982,0.831327,-0.595530 +-1.476007,-0.426401,0.849056 +-1.377438,-0.150950,1.122718 +-1.495574,-0.964717,-0.280181 +-1.427137,0.007778,0.872105 +-1.386975,1.096775,-0.150272 +-1.385711,-0.192319,0.959566 +-1.431953,-0.062375,1.033281 +-1.406224,-0.985474,0.375087 +-1.432102,0.761092,0.646253 +-1.473611,-0.160541,0.899044 +-1.436449,0.414779,-0.889052 +-1.394632,0.916854,-0.277800 +-1.395970,-0.610843,-0.795153 +-1.401696,0.385357,0.838446 +-1.428408,0.268448,-1.051175 +-1.410426,0.930830,-0.212019 +-1.421375,1.080763,0.059273 +-1.472149,-0.025873,0.955421 +-1.431735,-0.014151,-1.026553 +-1.350893,-0.630383,-0.843059 +-1.436100,0.000301,-0.939051 +-1.365416,-0.901515,0.030612 +-1.456689,-0.995634,-0.033280 +-1.442768,-0.910961,-0.539897 +-1.457854,-0.925690,0.330228 +-1.353683,-0.735024,0.883495 +-1.424826,-0.786194,-0.684151 +-1.306165,1.061079,-0.015080 +-1.474074,0.820604,0.526107 +-1.319570,0.974282,-0.362875 +-1.534001,-0.666995,0.827982 +-1.333291,-0.921283,-0.274942 +-1.383415,0.960680,0.334571 +-1.400435,-0.953522,0.232148 +-1.501869,0.772242,-0.630909 +-1.408144,-1.029018,-0.087156 +-0.002184,0.436647,-1.260309 +-0.022531,2.296086,-1.051660 +0.026237,1.987754,-0.588800 +0.052840,1.541285,-2.477144 +0.015059,0.762185,-2.161154 +-0.025417,0.545533,-1.802695 +0.026619,0.823571,-0.688842 +0.042308,2.054980,-2.173566 +-0.048380,2.121606,-2.081639 +0.085735,1.508248,-0.424767 +0.041100,0.921404,-0.585146 +0.022804,2.276154,-1.930989 +0.012077,1.839762,-2.209701 +-0.049538,0.597184,-0.761972 +0.048342,2.222472,-1.897846 +-0.112075,2.151909,-2.122819 +-0.021150,1.248994,-0.452998 +0.012721,1.446327,-2.361060 +0.026132,0.517616,-0.873449 +0.057406,0.885809,-0.632505 +0.036059,0.611378,-2.006859 +0.056325,2.292250,-0.909599 +-0.011497,1.374528,-2.418420 +0.012956,0.472040,-1.212756 +-0.033891,0.880319,-0.567539 +-0.100562,1.131124,-0.349453 +0.078393,0.434259,-0.878379 +0.078216,0.865834,-0.533678 +-0.110434,0.707564,-2.165603 +0.010980,0.778307,-2.214471 +0.056348,2.317219,-1.183540 +-0.118581,2.229675,-0.896161 +-0.085306,1.268482,-0.437060 +-0.059165,0.662392,-0.633971 +0.033162,1.392849,-2.365949 +-0.063850,0.409666,-1.517231 +-0.025841,0.969960,-2.333930 +0.028040,1.033204,-2.478198 +0.065467,1.658160,-2.338710 +0.056394,0.653581,-0.796093 +-0.060156,0.666325,-0.892776 +0.062095,2.392531,-1.559690 +-0.032071,1.712177,-0.422581 +0.040284,2.034415,-0.737650 +-0.047475,0.700630,-2.111679 +0.088233,2.385857,-1.620341 +-0.037250,1.968818,-0.679949 +0.005215,2.159545,-0.957837 +-0.020882,1.082700,-2.417286 +-0.050001,0.447256,-0.864168 +0.003103,0.508668,-1.923481 +-0.035968,2.073154,-2.206460 +0.049943,2.321540,-1.259316 +-0.032233,0.724491,-2.164196 +-0.014899,0.526271,-1.949433 +0.026680,0.751799,-0.654763 +-0.023675,1.134793,-2.364027 +-0.016868,0.407731,-1.243897 +-0.073720,2.079766,-2.274638 +0.011950,0.494515,-1.247790 +0.009384,1.931259,-2.225373 +-0.013863,0.361209,-1.321835 +0.010911,1.919886,-0.617265 +-0.074813,2.351266,-1.001883 +0.012741,1.907075,-0.504161 +0.021561,0.589630,-1.967118 +-0.029195,1.770468,-0.456274 +-0.036623,2.364751,-1.724886 +-0.077264,0.510691,-1.096164 +-0.061101,1.039604,-2.270415 +-0.069550,1.466334,-0.364260 +-0.000561,0.826150,-2.141350 +-0.001545,1.731808,-2.297775 +0.026213,1.679799,-0.483156 +0.007146,0.551833,-2.009168 +-0.080950,0.513329,-1.940252 +0.011298,2.058253,-0.599078 +-0.027141,1.097534,-2.362711 +0.006256,0.440526,-1.425441 +0.054811,0.404466,-1.722535 +0.050745,2.434329,-1.231805 +-0.041989,0.574036,-0.793377 +0.036324,1.552719,-0.402261 +-0.061763,2.359932,-1.864507 +0.063742,2.517453,-1.658836 +0.032071,0.481886,-1.045571 +-0.033150,1.678629,-2.420466 +0.094730,1.840787,-0.474290 +-0.016996,2.341549,-1.655967 +-0.001779,1.090450,-0.469899 +-0.018818,2.093133,-0.871352 +-0.014386,1.124116,-2.431031 +-0.001896,0.403450,-1.549991 +-0.050332,1.931441,-0.517970 +-0.063452,2.349595,-1.005030 +0.042739,2.377047,-1.613120 +-0.034614,1.704721,-2.349563 +0.034617,2.389540,-1.167587 +0.005203,2.104470,-0.601994 +-0.044249,0.491535,-1.902893 +0.014116,2.297818,-1.313927 +0.042453,1.920445,-0.583835 +0.077049,1.093709,-2.412482 +0.011626,1.265041,-2.360389 +0.050118,0.450628,-1.652075 +-0.014257,1.216067,-2.376373 +0.011830,2.393546,-1.060450 +0.002432,0.987374,-0.466502 +-0.001541,0.480849,-1.646766 +-0.028808,1.297893,-2.333349 +0.005390,2.010335,-2.297099 +0.017825,2.356066,-1.419334 +0.013691,2.444573,-1.445240 +0.069251,1.488885,-2.413831 +0.148719,0.833898,-0.630554 +-0.038185,0.598042,-2.009801 +-0.020041,0.981226,-0.498666 +0.040232,1.540810,-0.476869 +0.012336,1.830201,-2.299465 +-0.044520,2.074686,-0.670399 +-0.028685,1.657100,-0.377380 +0.034838,0.464691,-1.580093 +0.154696,1.462427,-2.428299 +-0.033890,1.540586,-2.441554 +-0.016481,2.040194,-0.674466 +0.002843,2.176568,-0.710763 +0.033165,2.255769,-1.765091 +0.012894,1.203455,-2.450693 +-0.095728,0.573873,-0.844616 +-0.025763,1.849339,-0.428925 +0.039935,1.884618,-2.299281 +0.002024,1.503624,-0.506535 +-0.009917,0.418487,-1.224452 +-0.044736,1.495659,-2.401842 +0.004994,1.651407,-0.364636 +-0.016189,1.006787,-2.305705 +0.033596,2.371681,-1.262420 +0.053877,0.483354,-1.458627 +-0.047653,1.306656,-0.403818 +-0.005394,0.855249,-2.342448 +0.005097,2.166757,-1.983056 +-0.043672,2.110032,-2.024538 +0.008301,2.322867,-1.733768 +0.015251,1.458090,-0.459759 +-0.070780,0.678039,-0.863006 +-0.057417,1.879603,-0.528654 +-0.049638,2.359143,-1.114241 +-0.044330,0.372291,-1.657174 +0.027076,0.405578,-1.208028 +-0.040954,0.536249,-0.826847 +-0.057012,2.124320,-2.047414 +-0.130970,2.283939,-2.027118 +0.018260,0.472687,-1.001610 +0.030301,2.237832,-1.194473 +0.007601,2.307031,-0.976584 +0.043415,1.154474,-0.451491 +-0.101549,1.987856,-2.167255 +-0.059975,0.872637,-2.177119 +0.006978,2.092234,-0.961253 +0.103740,0.732516,-0.738615 +0.067939,2.107841,-2.046335 +0.015233,0.943467,-2.256341 +0.038362,2.034300,-2.207337 +-0.086919,2.285308,-1.846260 +0.066149,0.979389,-0.418173 +0.051026,1.416155,-0.449135 +-0.027907,0.407247,-1.645105 +-0.048951,1.248053,-0.423908 +0.020315,2.364987,-1.418887 +0.000736,1.222317,-0.417039 +0.045452,1.478149,-0.326690 +0.003077,0.497510,-1.011727 +-0.015856,2.212429,-0.664202 +-0.014872,1.204927,-0.354905 +0.062714,1.709661,-2.482143 +0.028419,2.246512,-1.567843 +0.009321,0.842075,-2.239771 +-0.085388,1.811489,-0.484094 +-0.027035,1.622800,-2.223708 +0.045899,2.433639,-1.571727 +0.081370,2.389053,-1.481601 +-0.010372,1.381855,-0.455312 +-0.009700,1.330542,-2.316895 +0.041220,0.848049,-2.174829 +-0.002049,1.442276,-2.464692 +-0.120254,0.412692,-1.476289 +0.066510,0.486917,-1.282239 +-0.054891,0.504319,-1.855335 +0.139255,0.563651,-0.941285 +-0.021328,0.666877,-0.627641 +-0.060536,0.596731,-2.019220 +0.087610,2.379998,-1.565569 +0.027744,2.170571,-0.809870 +-0.004769,2.314723,-1.724656 +-0.084308,0.758657,-0.572223 +-0.033775,0.329228,-1.550611 +0.061770,2.302352,-1.082067 +0.038828,0.340123,-1.134326 +-0.048811,2.126364,-2.037212 +-0.010081,0.366542,-1.430412 +-0.024534,0.466222,1.571899 +-0.038366,2.243380,1.763378 +0.015990,1.968283,2.078546 +-0.029464,1.599133,0.518079 +-0.093653,0.683302,0.690535 +0.074622,0.468019,0.911245 +0.033893,0.709926,2.124715 +-0.015440,2.073029,0.567018 +0.005552,2.146906,0.786910 +-0.031727,1.555508,2.487901 +-0.083721,0.974763,2.220299 +0.005636,2.230984,0.811483 +-0.054071,1.869193,0.563748 +-0.007135,0.633343,2.068839 +-0.053439,2.345510,1.019285 +0.143199,2.129425,0.713494 +0.042293,1.257669,2.352857 +-0.022174,1.492553,0.356456 +-0.022579,0.560600,1.990603 +-0.033253,0.762842,2.138915 +-0.069268,0.598807,0.706949 +-0.065388,2.237655,1.839179 +-0.024228,1.409947,0.438380 +0.000887,0.398727,1.594315 +0.018026,0.978139,2.241088 +0.002006,0.979244,2.362701 +0.041918,0.508290,1.981663 +-0.048468,0.902918,2.258772 +-0.005516,0.686605,0.698784 +0.046638,0.939949,0.555548 +0.044842,2.321697,1.721119 +-0.041910,2.304314,2.057412 +-0.006715,1.122976,2.357544 +0.067753,0.723312,2.120797 +0.055477,1.426645,0.466975 +0.050568,0.491579,1.294401 +0.049789,0.929118,0.475913 +0.093872,1.014743,0.526514 +0.006806,1.793521,0.495777 +0.078980,0.701570,1.990416 +-0.011838,0.707871,2.001148 +-0.099026,2.499680,1.343423 +-0.003851,1.747697,2.389306 +-0.029809,2.192123,2.114368 +0.013458,0.637490,0.752953 +0.057510,2.340094,1.154360 +0.033794,2.047625,2.216568 +0.022425,2.209451,2.005395 +-0.002506,1.155066,0.406929 +0.111135,0.399749,1.853268 +-0.092351,0.489220,0.950371 +-0.114677,2.082709,0.628987 +-0.115456,2.433865,1.635360 +0.081957,0.735195,0.673565 +0.073049,0.631789,0.953305 +-0.051785,0.749762,2.174284 +-0.099529,1.116798,0.573958 +0.035196,0.483011,1.472851 +-0.004027,2.058394,0.584616 +-0.053008,0.477532,1.600812 +-0.054511,2.015323,0.568137 +0.018689,0.429750,1.548798 +0.004550,2.039642,2.244098 +0.034330,2.283947,1.886851 +0.025840,1.893205,2.202556 +-0.045249,0.641003,0.853696 +-0.105258,1.705796,2.338675 +0.077622,2.336050,1.072521 +0.064843,0.399581,1.654410 +-0.010807,1.019715,0.421975 +-0.091742,1.413894,2.366343 +-0.021572,0.636564,0.612545 +-0.000416,1.819295,0.427806 +0.091156,1.641341,2.322724 +0.084555,0.567302,0.833812 +-0.008532,0.556664,1.083493 +-0.044924,2.082213,2.133927 +-0.054243,1.058199,0.459412 +0.062712,0.466408,1.381893 +-0.011767,0.495655,1.029077 +0.032375,2.393192,1.409474 +-0.052626,0.729477,2.052709 +0.090219,1.497083,2.408131 +0.131597,2.259598,0.898472 +0.070762,2.314819,1.119870 +-0.032226,0.523742,1.801711 +-0.009897,1.763478,0.403662 +-0.038505,1.806673,2.226242 +-0.023241,2.357590,1.069008 +-0.014926,1.060167,2.304815 +0.038008,2.249492,2.011883 +0.026686,1.107830,0.459808 +0.086118,0.428470,1.271051 +0.024970,1.976849,2.248554 +0.054760,2.302924,1.657033 +0.007764,2.285681,1.199431 +0.070776,1.573954,0.369334 +-0.056762,2.378805,1.567267 +0.076953,2.113801,2.177351 +0.008010,0.612611,0.764806 +0.047147,2.330952,1.571279 +0.065238,1.947424,2.234636 +0.022017,0.993927,0.448041 +-0.006234,1.240781,0.451171 +-0.004112,0.376995,1.113232 +0.003716,1.218940,0.426618 +0.057165,2.291325,1.718681 +0.070946,0.936472,2.339657 +-0.032196,0.449834,0.982111 +-0.009325,1.375936,0.338342 +-0.064329,1.810147,0.618701 +-0.025429,2.398590,1.377847 +-0.051943,2.385093,1.472413 +0.076564,1.447197,0.440055 +-0.045734,0.714515,2.265090 +0.063805,0.707422,0.712846 +-0.009173,1.015458,2.326359 +-0.021650,1.498332,2.388550 +0.059346,1.731281,0.517377 +0.018235,2.078682,2.218472 +-0.038196,1.620084,2.321713 +0.048902,0.401607,1.113138 +-0.100174,1.652830,0.457726 +0.042344,1.640606,0.449432 +-0.013438,2.098100,2.083591 +0.144911,2.180686,2.035803 +0.025602,2.220709,1.000994 +-0.036359,1.333451,0.463067 +0.021162,0.578115,1.962677 +-0.003104,1.707020,2.316159 +0.081377,1.929857,0.512453 +-0.028396,1.554629,2.432720 +0.030818,0.403549,1.618916 +-0.035396,1.511054,0.461225 +0.048085,1.564138,2.328863 +0.005979,1.126813,0.364867 +0.015308,2.319880,1.459220 +-0.020044,0.389184,1.214207 +0.000396,1.276453,2.315127 +0.042893,0.932367,0.585633 +-0.084740,2.225457,0.849394 +-0.056716,2.171018,0.756181 +0.101318,2.396854,0.854470 +0.137166,1.381073,2.453444 +0.053377,0.536220,2.014915 +-0.005914,1.912242,2.288994 +0.065799,2.380064,1.608910 +0.060284,0.480865,1.131233 +-0.036552,0.382217,1.647766 +-0.034145,0.582499,1.962721 +-0.008532,2.207669,0.790719 +0.013387,2.181877,0.924562 +-0.003356,0.466058,1.720060 +-0.048938,2.287808,1.683498 +-0.043087,2.486029,1.737414 +-0.069156,1.149067,2.444406 +0.003552,2.044380,0.508450 +-0.037263,0.778868,0.468692 +0.006434,2.137387,1.836321 +-0.029546,0.716855,2.192316 +0.016807,2.156266,0.734274 +0.062745,0.918141,0.540384 +0.028133,1.916833,0.517412 +-0.018284,2.215776,0.914148 +-0.005171,0.966378,2.281331 +-0.066572,1.328503,2.396439 +-0.047454,0.468553,1.151032 +-0.077358,1.456167,2.370460 +-0.022489,2.394380,1.337509 +0.001102,1.085359,2.398496 +-0.026674,1.566626,2.397965 +-0.122927,0.489879,1.875077 +0.086676,2.290857,1.956820 +0.050168,1.142147,2.388253 +-0.070012,1.673572,0.411750 +0.049421,2.412623,1.166535 +-0.074273,0.769953,0.568809 +0.047832,1.861948,2.375856 +-0.041537,1.467469,0.326900 +0.078189,2.353848,1.140567 +0.090346,2.469090,1.432755 +-0.016137,1.329944,2.410521 +0.088003,1.391825,0.440425 +0.064310,0.747883,0.632500 +-0.016201,1.293026,0.283444 +-0.055996,0.433655,1.312151 +0.010140,0.507795,1.361611 +-0.001509,0.540437,0.877751 +0.001558,0.394248,1.874693 +-0.037489,0.827180,2.127183 +0.056543,0.606913,0.785402 +-0.032122,2.406058,1.386079 +-0.043134,2.202140,1.954230 +0.126482,2.324841,1.116863 +-0.010759,0.801354,2.117480 +-0.024589,0.429292,1.299849 +0.012209,2.380932,1.861019 +0.089507,0.428170,1.780152 +-0.026697,2.148000,0.720540 +0.128206,0.447043,1.318833 +1.468696,-0.949865,0.264571 +1.314869,0.876412,0.428552 +1.291447,0.646103,0.794145 +1.440680,0.378477,-0.988012 +1.376837,-0.630897,-0.716215 +1.368831,-0.925709,-0.395845 +1.420825,-0.674543,0.759684 +1.482568,0.609891,-0.850938 +1.390627,0.685275,-0.688503 +1.325296,0.110182,1.002701 +1.394509,-0.450301,0.808684 +1.419642,0.904365,-0.509052 +1.407651,0.448717,-0.936923 +1.396040,-0.701229,0.630877 +1.351061,0.877753,-0.414733 +1.379457,0.776803,-0.632555 +1.448894,-0.109086,1.037059 +1.348617,0.013096,-1.002194 +1.375185,-0.906936,0.511534 +1.373902,-0.572778,0.826960 +1.464815,-0.718011,-0.548598 +1.409378,0.860353,0.481981 +1.414107,-0.038852,-0.883808 +1.353507,-0.928669,0.229570 +1.313590,-0.411602,0.960726 +1.352855,-0.309508,0.856162 +1.330766,-0.818665,0.456101 +1.339016,-0.496421,0.832009 +1.374105,-0.666444,-0.771002 +1.350205,-0.527352,-0.791010 +1.468099,0.923715,0.330547 +1.356872,0.944769,0.473469 +1.473066,-0.192541,1.098417 +1.432523,-0.762988,0.678384 +1.442965,0.057895,-1.003889 +1.402456,-0.950405,-0.118084 +1.328857,-0.498704,-0.878075 +1.466852,-0.308269,-0.874881 +1.415801,0.466964,-0.941498 +1.391572,-0.774296,0.615866 +1.418345,-0.779952,0.650728 +1.430036,1.008907,-0.063494 +1.397652,0.390834,0.889839 +1.420334,0.765732,0.647715 +1.402851,-0.804811,-0.666382 +1.338129,1.057306,-0.097822 +1.429559,0.721378,0.779746 +1.566747,0.814566,0.576119 +1.378122,-0.197665,-0.929958 +1.393735,-0.807107,0.438933 +1.414877,-0.954822,-0.402762 +1.392629,0.627859,-0.792817 +1.546947,0.973197,0.076300 +1.361598,-0.687383,-0.698902 +1.430514,-0.823528,-0.544509 +1.418724,-0.709495,0.716031 +1.349526,-0.374378,-0.892525 +1.437874,-0.944310,0.064953 +1.442724,0.540553,-0.723043 +1.409742,-0.957624,0.146235 +1.345712,0.479691,-0.866244 +1.431070,-0.957607,0.018871 +1.346040,0.522305,0.807429 +1.325087,0.851564,0.322924 +1.404744,0.389058,0.884637 +1.458220,-0.898678,-0.573438 +1.456362,0.225685,0.937031 +1.463992,0.924040,-0.277991 +1.423593,-0.969913,0.335400 +1.417625,-0.369631,-0.934986 +1.402266,-0.034794,1.038235 +1.343615,-0.605378,-0.724463 +1.327569,0.434579,-0.806901 +1.455101,0.357475,0.964989 +1.308617,-0.945755,-0.521797 +1.367441,-0.968056,-0.400599 +1.433857,0.604645,0.704280 +1.483043,-0.397879,-0.893044 +1.373340,-0.969981,0.060353 +1.440770,-0.890877,-0.402076 +1.461251,0.951129,0.077065 +1.414204,-0.723429,0.679844 +1.353590,0.051091,1.040094 +1.410221,0.980970,-0.399608 +1.322716,1.013431,-0.299361 +1.418810,-0.926617,0.544427 +1.351789,0.320179,-0.934971 +1.339930,0.443958,0.993482 +1.373025,0.972789,-0.460236 +1.397859,-0.355955,0.895863 +1.459480,0.752570,0.627663 +1.379254,-0.384416,-1.022553 +1.452860,-1.115554,-0.073558 +1.378015,0.604941,0.903015 +1.369356,1.012629,0.298010 +1.455500,0.907549,-0.128352 +1.377663,0.222423,-0.972237 +1.415254,0.955076,0.217849 +1.367935,0.695432,0.774433 +1.396649,-0.833293,-0.579451 +1.430264,1.105514,0.177001 +1.453679,0.705695,0.872706 +1.426655,-0.209969,-1.024076 +1.375585,-0.184274,-0.952070 +1.390420,-0.952691,-0.219181 +1.447473,-0.196276,-1.019137 +1.462440,0.993621,0.220673 +1.382777,-0.359021,0.972612 +1.450056,-0.914162,-0.335936 +1.403528,-0.162395,-1.006484 +1.401045,0.479846,-0.980013 +1.378138,1.003091,-0.015475 +1.386425,1.024866,-0.122133 +1.310458,0.074959,-0.953536 +1.492815,-0.544768,0.728262 +1.387220,-0.735996,-0.651544 +1.429662,-0.476217,0.908399 +1.423118,0.232793,0.937973 +1.381016,0.248438,-0.951935 +1.371157,0.581347,0.779622 +1.396923,0.184760,0.962909 +1.348942,-0.941870,-0.319192 +1.401650,0.140860,-0.971018 +1.406858,0.173347,-1.066782 +1.318754,0.674993,0.706651 +1.366546,0.784498,0.645955 +1.346924,0.861011,-0.469331 +1.417869,0.009203,-1.032352 +1.395959,-0.803644,0.560795 +1.372466,0.253529,0.912785 +1.340946,0.440863,-0.888090 +1.342410,0.126217,1.028622 +1.350287,-0.996600,0.085178 +1.372811,0.147277,-0.946743 +1.360782,0.275995,0.892554 +1.331380,-0.329093,-0.837865 +1.427139,0.993343,-0.026627 +1.288765,-0.980571,-0.176128 +1.339179,-0.090504,1.001894 +1.451943,-0.501528,-0.793180 +1.400440,0.802674,-0.529248 +1.346186,0.925308,-0.616785 +1.420946,0.919887,-0.350748 +1.443588,-0.056867,1.076697 +1.381251,-0.803123,0.517426 +1.428941,0.445928,0.881816 +1.384375,1.081792,0.327168 +1.402558,-0.947538,-0.329556 +1.460830,-0.978384,0.255818 +1.453823,-0.890348,0.506965 +1.313028,0.767699,-0.577799 +1.439667,0.907480,-0.608619 +1.412998,-0.992755,0.326211 +1.442472,0.974183,0.170995 +1.327673,0.841791,0.424178 +1.513514,-0.204056,0.856014 +1.478159,0.664409,-0.875147 +1.383324,-0.501830,-0.796807 +1.328000,0.894333,0.391479 +1.387745,-0.574836,0.771525 +1.372558,0.756021,-0.653495 +1.472052,-0.433665,-0.816831 +1.440310,0.523645,-0.855819 +1.386951,0.794062,-0.561584 +1.384489,-0.383868,0.996999 +1.397701,-0.070142,1.051477 +1.387270,-0.943209,-0.231537 +1.472717,0.034971,0.934523 +1.408884,1.082761,-0.135301 +1.424624,-0.218667,0.911569 +1.428089,-0.013870,0.963617 +1.459165,-0.910155,0.351378 +1.424555,0.786850,0.613599 +1.436125,-0.258148,0.978135 +1.382825,0.221809,-1.001682 +1.486251,0.989743,-0.321487 +1.315281,-0.619076,-0.704290 +1.389728,0.469033,0.937111 +1.425919,0.144679,-0.924353 +1.381579,1.023387,-0.262923 +1.409738,1.018867,0.022939 +1.422250,-0.077442,0.962328 +1.488302,0.026282,-1.041354 +1.431264,-0.628633,-0.874175 +1.456860,-0.062315,-0.948529 +1.386100,-1.007197,-0.071572 +1.431966,-1.044955,0.070886 +1.406235,-0.945390,-0.491097 +1.475970,-0.825542,0.436602 +1.334531,-0.657564,0.775766 +1.439914,-0.746983,-0.592928 +1.396017,0.966046,-0.135797 +1.418680,0.819250,0.618452 +1.326435,0.965252,-0.255125 +1.404315,-0.616299,0.807150 +1.511779,-1.038588,-0.176205 +1.356019,0.874742,0.423052 +1.474103,-0.869529,0.273338 +1.379287,0.927256,-0.636423 +1.368588,-1.095649,0.013995 +-2.334435,0.132979,-1.319989 +-0.428794,0.003857,-0.901674 +-0.902842,0.080745,-0.547725 +-1.153450,0.035481,-2.410685 +-2.069293,-0.025489,-2.272413 +-2.243610,0.065538,-1.892564 +-1.942932,-0.014605,-0.554864 +-0.846731,-0.048588,-2.151153 +-0.718966,0.111216,-2.126422 +-1.294500,0.067482,-0.377618 +-1.841776,0.065483,-0.559597 +-0.562671,-0.009430,-2.006818 +-0.960507,0.073501,-2.277953 +-2.244547,-0.085571,-0.671013 +-0.500140,-0.035608,-1.840849 +-0.731141,0.078270,-2.082930 +-1.512174,0.002841,-0.339088 +-1.323091,0.046928,-2.358477 +-2.210047,0.019136,-0.876980 +-1.830478,-0.049882,-0.555435 +-2.128150,0.022134,-2.108168 +-0.506382,-0.009286,-1.005254 +-1.462265,-0.060531,-2.493418 +-2.368389,0.026834,-1.152888 +-1.822796,-0.106292,-0.583849 +-1.600473,-0.057596,-0.415347 +-2.314088,0.004382,-0.953075 +-1.878157,0.007523,-0.563914 +-2.164866,0.014728,-2.173806 +-1.912315,0.144457,-2.170069 +-0.400197,-0.004708,-1.227640 +-0.628398,0.070554,-0.907610 +-1.594893,-0.009111,-0.470724 +-2.174579,-0.002776,-0.741927 +-1.440756,-0.042966,-2.371270 +-2.404882,-0.009821,-1.492501 +-1.861803,-0.015304,-2.265132 +-1.760397,-0.008089,-2.313321 +-1.017219,-0.047338,-2.262524 +-2.104497,0.025041,-0.700006 +-2.187614,0.038303,-0.735662 +-0.354320,-0.005543,-1.417824 +-1.019310,0.034781,-0.454709 +-0.657446,-0.040466,-0.676879 +-2.014022,-0.020614,-2.033519 +-0.436853,-0.026841,-1.471490 +-0.824106,-0.026074,-0.697157 +-0.614588,-0.093962,-0.803167 +-1.464160,-0.020167,-2.467588 +-2.255327,-0.039981,-0.902757 +-2.320339,-0.034750,-1.835567 +-0.697010,-0.012508,-2.177431 +-0.423247,-0.069952,-1.221729 +-2.182817,-0.024427,-2.087202 +-2.244074,0.032468,-1.912619 +-1.996976,0.050858,-0.625351 +-1.658002,0.041273,-2.375227 +-2.471941,0.023120,-1.307175 +-0.702600,-0.051498,-2.220367 +-2.366820,-0.003914,-1.378384 +-0.817286,-0.101883,-2.279070 +-2.321219,0.100368,-1.372753 +-0.856033,0.002344,-0.474952 +-0.497331,-0.026229,-0.946696 +-0.966623,0.039721,-0.590236 +-2.236498,-0.091278,-2.020132 +-1.105154,-0.002745,-0.448968 +-0.500300,-0.012136,-1.722177 +-2.296996,-0.144383,-1.136730 +-1.817029,-0.005437,-2.282641 +-1.416696,-0.016768,-0.429470 +-2.074814,0.063181,-2.190372 +-1.035330,0.010084,-2.243957 +-1.137526,0.052734,-0.371947 +-2.247834,-0.011590,-1.953925 +-2.331825,0.046983,-1.784442 +-0.702512,-0.061887,-0.724243 +-1.620848,-0.009780,-2.383493 +-2.321290,0.015499,-1.368201 +-2.348473,-0.017527,-1.748065 +-0.478024,-0.004836,-1.320928 +-2.048336,0.004730,-0.867068 +-1.279836,0.150673,-0.360235 +-0.526844,0.032511,-1.837959 +-0.514166,-0.019160,-1.673957 +-2.393975,-0.063204,-0.945441 +-1.083712,0.021715,-2.407688 +-0.934944,-0.065107,-0.404823 +-0.543310,-0.060090,-1.686062 +-1.647205,0.017327,-0.428162 +-0.628522,-0.056452,-0.789534 +-1.745646,-0.070329,-2.338197 +-2.461281,0.017575,-1.503011 +-0.874658,-0.026878,-0.461894 +-0.441315,0.067968,-1.102823 +-0.414625,-0.053960,-1.610130 +-1.135425,-0.039922,-2.427146 +-0.495456,-0.128686,-1.270718 +-0.704176,-0.087917,-0.725136 +-2.110518,-0.035007,-1.970128 +-0.372558,0.036439,-1.358394 +-0.876881,-0.089002,-0.421125 +-1.736408,-0.057631,-2.425816 +-1.638751,0.074393,-2.254454 +-2.386460,-0.072623,-1.802022 +-1.600807,-0.017400,-2.418109 +-0.436768,0.021735,-1.073213 +-1.785511,-0.060589,-0.433603 +-2.329088,0.048860,-1.724670 +-1.603530,-0.078882,-2.433669 +-0.976341,0.041539,-2.256985 +-0.339545,0.021807,-1.388524 +-0.335988,0.025835,-1.459045 +-1.224467,0.006335,-2.412301 +-2.033866,0.038666,-0.522945 +-2.152893,0.071935,-2.169663 +-1.828829,-0.002205,-0.535158 +-1.081506,-0.003641,-0.440138 +-1.001424,-0.110155,-2.359547 +-0.708498,-0.034592,-0.675075 +-1.018959,0.073714,-0.420509 +-2.393615,-0.013171,-1.692918 +-1.298278,-0.057443,-2.421681 +-1.269528,-0.086004,-2.370220 +-0.679990,0.093544,-0.729652 +-0.633603,0.017199,-0.752649 +-0.482755,0.042638,-1.863746 +-1.508168,-0.019664,-2.470788 +-2.271406,-0.034210,-0.899735 +-1.037066,0.065815,-0.509063 +-0.848584,-0.056876,-2.261099 +-1.343860,0.033104,-0.441771 +-2.326646,-0.013515,-1.248347 +-1.343599,0.013926,-2.342878 +-1.166824,0.123136,-0.345445 +-1.785039,-0.017492,-2.303943 +-0.450529,0.064146,-1.286004 +-2.373583,0.037782,-1.461679 +-1.484706,-0.006217,-0.321458 +-1.855826,-0.017654,-2.260457 +-0.580237,0.019900,-2.062398 +-0.714323,-0.048806,-2.090485 +-0.544404,0.034909,-1.863282 +-1.357788,-0.067337,-0.425884 +-2.176718,0.032722,-0.852066 +-0.909355,0.120937,-0.524661 +-0.462209,-0.009557,-1.176787 +-2.359371,-0.001725,-1.788407 +-2.413238,-0.008213,-1.130099 +-2.291882,-0.009736,-0.887603 +-0.622114,-0.005457,-2.062596 +-0.602707,0.031465,-1.941418 +-2.293261,0.039240,-1.028882 +-0.436830,0.013472,-1.092817 +-0.518109,-0.034562,-0.992873 +-1.656151,-0.045326,-0.443818 +-0.792263,-0.121840,-2.202233 +-1.970736,-0.008816,-2.149205 +-0.606127,-0.045354,-1.034629 +-2.063874,-0.021760,-0.657536 +-0.631971,0.047334,-2.102825 +-1.902137,0.056440,-2.277393 +-0.935963,-0.094394,-2.285014 +-0.497753,0.125210,-1.905653 +-1.839242,-0.065173,-0.451888 +-1.622387,0.030269,-0.362911 +-2.351921,-0.012081,-1.587072 +-1.390598,-0.042797,-0.298227 +-0.427228,0.042666,-1.658357 +-1.578484,0.080782,-0.429776 +-1.306477,0.030718,-0.437326 +-2.299685,-0.044475,-1.065357 +-0.547863,0.053606,-0.825944 +-1.658490,-0.035508,-0.383788 +-1.145982,0.019619,-2.309980 +-0.436270,0.055554,-1.665427 +-2.024669,-0.053749,-2.134210 +-1.045011,0.019237,-0.486168 +-1.239760,-0.033501,-2.299859 +-0.412992,-0.055503,-1.601350 +-0.408530,0.189973,-1.352907 +-1.483725,0.078102,-0.503230 +-1.426223,0.109694,-2.405898 +-2.083117,-0.021775,-2.129019 +-1.347905,-0.046137,-2.437195 +-2.426345,0.019866,-1.420508 +-2.341623,0.025081,-1.441830 +-2.349343,0.029329,-1.955755 +-2.330161,0.016728,-1.065420 +-2.140882,-0.005177,-0.643331 +-2.131771,0.033388,-2.008856 +-0.441534,-0.058900,-1.459509 +-0.568437,0.018514,-0.927709 +-0.513436,0.066248,-1.763768 +-2.090843,0.129570,-0.611437 +-2.361149,0.021974,-1.607599 +-0.535190,0.116692,-0.919044 +-2.323377,0.031696,-1.206493 +-0.539581,-0.046372,-1.997326 +-2.488193,-0.112247,-1.445285 +-2.432189,-0.109404,1.586168 +-0.392389,0.076426,1.839838 +-0.811728,0.048824,2.270734 +-1.170205,0.001880,0.447951 +-2.006961,-0.007319,0.622882 +-2.215116,0.066524,0.972267 +-1.867532,-0.021255,2.316344 +-0.782376,0.179906,0.525396 +-0.753367,0.023034,0.692879 +-1.136308,-0.036761,2.437459 +-1.817818,0.038756,2.223452 +-0.478245,0.067613,0.897150 +-0.934770,0.012436,0.504663 +-2.135270,0.001712,1.990755 +-0.552845,-0.041362,0.986438 +-0.651372,0.011844,0.766233 +-1.621884,0.080611,2.367563 +-1.361048,0.026531,0.300965 +-2.287807,0.053959,1.840269 +-1.874360,0.083113,2.224008 +-2.112919,0.061550,0.689779 +-0.475966,-0.036913,1.855486 +-1.506754,0.018846,0.465662 +-2.386043,-0.069919,1.558594 +-1.832288,0.101426,2.312661 +-1.730296,0.042140,2.337884 +-2.297112,-0.052715,1.959218 +-2.048698,0.043882,2.235236 +-2.129676,0.093077,0.653616 +-1.973231,-0.007172,0.578434 +-0.464008,-0.086562,1.631378 +-0.485199,0.004113,1.960637 +-1.570813,-0.036272,2.479955 +-2.117457,-0.024385,2.167395 +-1.439730,-0.032710,0.400564 +-2.392100,0.014279,1.389709 +-1.835497,-0.130793,0.526940 +-1.795064,0.002390,0.495772 +-0.975798,-0.002894,0.528890 +-2.158783,-0.052123,2.250855 +-2.229527,0.005508,1.930646 +-0.398032,-0.051327,1.281556 +-0.974397,0.025961,2.361039 +-0.768448,0.101029,2.018994 +-2.086442,0.056185,0.794329 +-0.459336,0.008337,1.217665 +-0.785496,-0.013743,2.078031 +-0.511221,-0.004461,1.935419 +-1.648961,0.019715,0.374927 +-2.428862,0.022392,1.854330 +-2.315807,-0.063135,0.979112 +-0.819237,-0.056498,0.608601 +-0.365895,-0.019944,1.531802 +-1.977039,0.019385,0.689676 +-2.281076,-0.032800,0.770706 +-2.008031,0.024657,2.140257 +-1.716564,0.040488,0.363434 +-2.430470,-0.062497,1.560224 +-0.714415,-0.121148,0.546230 +-2.399394,-0.025984,1.452492 +-0.730955,0.017190,0.599034 +-2.433623,0.039725,1.473185 +-0.853500,0.033605,2.137486 +-0.382387,0.010031,1.838576 +-1.005158,-0.050774,2.227102 +-2.213314,0.003629,0.812374 +-1.207084,-0.069663,2.365917 +-0.484727,-0.037708,1.146352 +-2.355584,0.069852,1.679688 +-1.812317,-0.003051,0.401804 +-1.352852,-0.007433,2.440560 +-2.102673,-0.009066,0.602212 +-0.963896,0.017128,0.490411 +-1.046309,0.063599,2.402388 +-2.322523,-0.038262,0.808959 +-2.277740,0.009386,0.926374 +-0.725834,-0.082176,2.126045 +-1.829783,0.029086,0.479907 +-2.295063,0.046633,1.376740 +-2.295887,-0.076872,1.008326 +-0.383650,-0.118704,1.460747 +-2.206226,0.005572,2.002036 +-1.251333,0.001063,2.469135 +-0.481875,-0.042275,0.989273 +-0.513639,0.022338,1.153451 +-2.155201,-0.034201,1.839262 +-1.092929,0.011666,0.480112 +-0.977156,0.059748,2.270893 +-0.394704,0.029617,1.090321 +-1.756059,0.133467,2.295945 +-0.613100,-0.041262,2.135633 +-1.630216,-0.037309,0.467899 +-2.385333,-0.028414,1.410288 +-0.869547,0.011863,2.258436 +-0.435411,0.012616,1.741988 +-0.452969,0.093157,1.154846 +-1.097489,-0.017613,0.536481 +-0.467404,-0.040439,1.534041 +-0.720898,-0.075518,2.123792 +-2.327397,0.013223,0.784703 +-0.489728,0.059709,1.453412 +-0.820341,-0.038557,2.332414 +-1.607465,-0.055443,0.380977 +-1.523131,-0.014431,0.402998 +-2.290321,-0.041178,1.126030 +-1.534877,0.044501,0.408934 +-0.464833,-0.095635,1.650924 +-1.750615,-0.007584,2.333897 +-2.272618,-0.065303,1.018886 +-1.514954,-0.038729,0.486617 +-0.868274,0.015957,0.622376 +-0.482439,-0.000425,1.420149 +-0.452274,0.016539,1.276347 +-1.267911,0.058181,0.419416 +-2.089689,-0.053174,2.240076 +-2.148945,-0.148170,0.807044 +-1.818263,-0.045049,2.359550 +-1.249883,-0.037865,2.401997 +-0.904895,0.089297,0.502030 +-0.737145,0.043532,2.101379 +-1.055555,-0.040374,2.368573 +-2.381094,0.027566,1.157806 +-1.412582,0.009839,0.447630 +-1.188093,-0.005642,0.508032 +-0.675768,0.024072,2.164554 +-0.629946,-0.049391,1.927203 +-0.549935,0.041852,0.898826 +-1.450044,0.008180,0.475282 +-2.243317,0.025719,1.989907 +-0.978674,-0.093865,2.315668 +-0.817505,0.085024,0.568876 +-1.321990,0.041642,2.443341 +-2.402069,0.018167,1.652310 +-1.170692,0.040843,0.410313 +-1.184831,0.030657,2.369555 +-1.757694,-0.058183,0.541562 +-0.467148,-0.023766,1.499476 +-2.278184,-0.023248,1.206935 +-1.524403,0.091239,2.240883 +-1.964192,0.150221,0.571756 +-0.651812,-0.002305,0.815925 +-0.582950,0.101173,0.783946 +-0.538682,0.043290,0.907606 +-1.425423,-0.096795,2.313424 +-2.258321,-0.064778,2.005013 +-0.984213,-0.172902,2.218892 +-0.450036,-0.033300,1.701717 +-2.384801,0.048451,1.089939 +-2.362620,-0.045946,1.675758 +-2.302822,0.009351,1.896048 +-0.722986,0.054554,0.738929 +-0.597563,0.008002,0.833306 +-2.388598,0.003877,1.704582 +-0.483388,-0.089252,1.628966 +-0.451062,-0.038206,1.935787 +-1.630278,0.071738,2.404032 +-0.685185,-0.043285,0.469004 +-1.986620,0.030702,0.581253 +-0.524107,0.072650,1.930055 +-1.993484,-0.051676,2.110267 +-0.604117,0.005550,0.658616 +-1.915930,-0.035702,0.484701 +-0.961532,-0.082523,0.528533 +-0.571869,0.060894,0.907078 +-1.782555,-0.040872,2.311098 +-1.505478,0.039391,2.386951 +-2.316565,0.000439,1.225463 +-1.426942,-0.099692,2.414760 +-0.367992,0.031644,1.297887 +-1.667862,-0.044371,2.398928 +-1.313755,-0.030849,2.459045 +-2.378334,-0.032094,1.858128 +-0.562073,-0.019691,2.028713 +-1.609630,-0.151009,2.326061 +-1.093780,-0.019614,0.462534 +-0.369295,-0.017684,1.093139 +-1.995040,-0.017964,0.601261 +-1.018900,0.123301,2.194516 +-1.203215,-0.000203,0.381120 +-0.374593,0.044729,1.179230 +-0.415380,-0.006158,1.425647 +-1.467101,-0.010340,2.411911 +-1.389984,-0.067664,0.342707 +-2.083954,0.047652,0.604751 +-1.340800,-0.078622,0.498666 +-2.429049,0.009251,1.352883 +-2.453790,-0.030048,1.441265 +-2.119146,0.016562,1.006596 +-2.251443,0.020241,1.742742 +-2.026261,-0.082396,2.217017 +-2.179155,-0.145762,0.768365 +-0.364526,-0.013036,1.407915 +-0.637734,-0.071829,1.983856 +-0.468487,-0.019161,1.099376 +-2.059668,0.017224,2.193893 +-2.467907,-0.072547,1.213274 +-0.386207,0.031860,1.730869 +-2.539660,0.040318,1.643398 +-0.547075,-0.048439,0.806355 +-2.351487,-0.024611,1.313775 +-0.986299,-1.370153,0.155646 +0.944576,-1.425406,0.380929 +0.696519,-1.433255,0.777753 +0.245071,-1.396305,-0.989851 +-0.638383,-1.402187,-0.760898 +-1.020668,-1.296552,-0.462091 +-0.530149,-1.475796,0.801176 +0.550808,-1.319165,-0.841237 +0.726242,-1.435773,-0.753863 +0.142929,-1.329389,0.883746 +-0.554115,-1.507102,0.816494 +0.799690,-1.488796,-0.576205 +0.343181,-1.455989,-0.824983 +-0.748316,-1.389689,0.582271 +0.820342,-1.462654,-0.428156 +0.797861,-1.350370,-0.626628 +-0.227947,-1.398650,0.964613 +0.051725,-1.287958,-1.094937 +-0.857235,-1.333354,0.455203 +-0.571233,-1.429097,0.832047 +-0.816746,-1.367259,-0.647901 +0.904267,-1.447871,0.486512 +-0.112260,-1.418293,-0.879586 +-0.970654,-1.465314,0.228062 +-0.528339,-1.465946,0.833745 +-0.333454,-1.348467,0.982868 +-0.847542,-1.460441,0.451981 +-0.494081,-1.434558,0.845432 +-0.682832,-1.419182,-0.694674 +-0.448227,-1.409452,-0.779464 +0.991059,-1.480698,0.218374 +0.798480,-1.447016,0.530861 +-0.122629,-1.330966,1.004638 +-0.731619,-1.514523,0.710989 +0.001417,-1.389939,-0.884157 +-0.923882,-1.356822,-0.178247 +-0.482205,-1.405216,-0.933654 +-0.369622,-1.380370,-0.977612 +0.491604,-1.394373,-0.999926 +-0.731792,-1.384534,0.738051 +-0.808716,-1.354463,0.623200 +0.923234,-1.477834,-0.032368 +0.433904,-1.382240,1.012040 +0.787082,-1.362400,0.634425 +-0.675285,-1.370503,-0.658645 +0.950933,-1.385877,-0.248343 +0.651389,-1.452446,0.810538 +0.798391,-1.414543,0.520453 +-0.227011,-1.296084,-0.899738 +-0.885331,-1.401391,0.472210 +-0.842679,-1.445640,-0.430038 +0.561104,-1.338229,-0.636535 +0.992093,-1.516876,0.189923 +-0.734272,-1.436484,-0.694507 +-0.846742,-1.426846,-0.544770 +-0.654391,-1.422521,0.689103 +-0.327308,-1.381322,-0.960852 +-1.075770,-1.345601,-0.087844 +0.612874,-1.434111,-0.762363 +-0.961223,-1.338028,0.086151 +0.594345,-1.389230,-0.921215 +-0.891032,-1.479133,0.117181 +0.583531,-1.384840,0.799879 +0.975275,-1.485820,0.364504 +0.422977,-1.437251,0.914588 +-0.767819,-1.418879,-0.519146 +0.251426,-1.449100,0.954396 +0.924409,-1.438316,-0.315171 +-0.938151,-1.487486,0.218183 +-0.402422,-1.444841,-0.888215 +0.011540,-1.469902,0.921872 +-0.569218,-1.380664,-0.773169 +0.316758,-1.428074,-0.995258 +0.327579,-1.442721,1.020438 +-0.866363,-1.457384,-0.559273 +-1.062084,-1.406642,-0.406504 +0.729908,-1.503747,0.792871 +-0.293605,-1.331138,-0.943780 +-0.944236,-1.480918,0.039218 +-0.983295,-1.490827,-0.400566 +0.998331,-1.445336,0.083475 +-0.849564,-1.516990,0.736793 +0.175042,-1.457711,0.991950 +0.973828,-1.376944,-0.388996 +1.020527,-1.440189,-0.277276 +-0.891988,-1.415002,0.432551 +0.342746,-1.398108,-0.998544 +0.469878,-1.453701,0.892824 +0.934816,-1.380304,-0.425568 +-0.289738,-1.437234,1.007979 +0.744214,-1.402686,0.742682 +-0.294245,-1.331863,-0.958146 +-0.976659,-1.396152,0.015221 +0.471337,-1.454123,0.825620 +0.946365,-1.412145,0.377803 +1.054047,-1.453671,-0.227748 +0.199998,-1.288329,-0.943537 +1.008676,-1.473711,0.187317 +0.689321,-1.413902,0.809275 +-0.681866,-1.452088,-0.644000 +0.943838,-1.311659,0.182663 +0.528373,-1.397989,0.799418 +-0.199738,-1.420895,-0.982887 +-0.122951,-1.410340,-1.000611 +-0.959712,-1.356255,-0.188434 +-0.155180,-1.355818,-0.993279 +0.912128,-1.364031,0.318435 +-0.446369,-1.418044,0.925217 +-0.957852,-1.318505,-0.341733 +-0.049809,-1.385512,-0.987638 +0.430241,-1.399344,-0.875589 +0.924809,-1.429674,-0.017781 +1.020768,-1.374626,-0.094763 +0.119896,-1.410014,-1.153391 +-0.614444,-1.340656,0.716518 +-0.743913,-1.312811,-0.703146 +-0.425661,-1.471721,0.994325 +0.182798,-1.397436,1.056774 +0.433529,-1.448160,-0.953355 +0.664645,-1.434327,0.654065 +0.306089,-1.481412,1.039952 +-0.958860,-1.449785,-0.287115 +0.052518,-1.460470,-0.931791 +0.310130,-1.360048,-0.987350 +0.683349,-1.452607,0.820394 +0.739730,-1.283640,0.737955 +0.780563,-1.436627,-0.518551 +-0.098500,-1.403317,-0.830769 +-0.886328,-1.387407,0.595991 +0.338651,-1.393940,0.883416 +0.541684,-1.371873,-0.826310 +0.125469,-1.322307,1.047095 +-0.978366,-1.464447,0.154381 +0.113254,-1.386121,-1.018423 +0.166678,-1.465351,0.885102 +-0.381047,-1.480832,-0.984805 +0.973897,-1.473475,0.114995 +-0.946976,-1.430218,-0.180471 +-0.064550,-1.439270,0.952512 +-0.443234,-1.351370,-0.827657 +0.859927,-1.508750,-0.513324 +0.792077,-1.344407,-0.616130 +0.893697,-1.415142,-0.433798 +0.014265,-1.352267,0.912251 +-0.838804,-1.287535,0.553351 +0.468626,-1.448542,0.894778 +0.935422,-1.410209,0.264831 +-0.989489,-1.356626,-0.263794 +-0.902271,-1.392270,0.457260 +-0.802743,-1.382132,0.460866 +0.723630,-1.321552,-0.590523 +0.908389,-1.356814,-0.631145 +-0.914087,-1.468277,0.256927 +0.981737,-1.371224,0.298376 +0.945097,-1.370763,0.342992 +-0.284765,-1.482891,0.850108 +0.653642,-1.441422,-0.742168 +-0.501124,-1.434062,-0.794613 +0.824378,-1.501523,0.515823 +-0.663322,-1.424205,0.879157 +0.623185,-1.378942,-0.761821 +-0.431799,-1.383586,-0.855443 +0.457072,-1.442107,-0.809743 +0.958136,-1.373583,-0.558400 +-0.378506,-1.266489,0.923388 +-0.044932,-1.440718,0.989800 +-0.941841,-1.378147,-0.260295 +-0.044523,-1.345644,1.065535 +1.075283,-1.300784,-0.117929 +-0.265806,-1.325695,1.007802 +0.008755,-1.456850,1.025083 +-0.939527,-1.401454,0.427114 +0.831902,-1.326857,0.506673 +-0.204206,-1.361792,0.891955 +0.272998,-1.446227,-0.949863 +1.058115,-1.288758,-0.293476 +-0.583946,-1.369266,-0.768836 +0.419092,-1.383294,1.010571 +0.278779,-1.458308,-0.932152 +1.024997,-1.382677,-0.155915 +1.009851,-1.388974,0.038079 +-0.173794,-1.404422,0.961273 +-0.096665,-1.321129,-0.971775 +-0.589426,-1.431064,-0.792728 +0.085940,-1.445483,-0.999772 +-0.947818,-1.506480,-0.097275 +-1.023118,-1.407361,0.003821 +-0.868737,-1.294201,-0.499569 +-0.901711,-1.290289,0.366897 +-0.584740,-1.399707,0.826973 +-0.748894,-1.383109,-0.616517 +0.965184,-1.395831,0.017944 +0.808296,-1.417414,0.573992 +0.984363,-1.332616,-0.404818 +-0.649679,-1.379135,0.874169 +-0.919258,-1.468852,-0.201905 +0.853644,-1.414713,0.514022 +-1.046826,-1.489038,0.203119 +0.805957,-1.365858,-0.588847 +-0.933364,-1.496970,0.002568 +0.395146,0.040232,-1.316354 +2.291279,0.012995,-0.882443 +1.900596,0.001691,-0.650671 +1.676492,0.042747,-2.297789 +0.733149,0.050997,-2.095664 +0.418615,0.033679,-1.801272 +0.823687,-0.066593,-0.521057 +1.921812,-0.009809,-2.211224 +2.123902,-0.034465,-2.166621 +1.561875,0.055351,-0.286502 +0.835335,0.017344,-0.583453 +2.300363,-0.051620,-1.972932 +1.821581,-0.004191,-2.273231 +0.656090,-0.000317,-0.835720 +2.344855,-0.002913,-1.761884 +2.111185,-0.088125,-2.063183 +1.283896,0.008852,-0.428695 +1.414921,0.096677,-2.454655 +0.515775,0.031352,-0.966254 +0.934276,0.034331,-0.506214 +0.701728,-0.008862,-2.143020 +2.268603,-0.053638,-0.891508 +1.381582,0.081224,-2.377580 +0.474935,-0.016343,-1.208162 +0.972061,-0.021256,-0.494188 +1.032617,-0.048490,-0.413996 +0.572461,-0.054211,-0.881363 +0.861658,0.000908,-0.461326 +0.737305,0.043773,-2.002123 +0.825460,-0.054223,-2.284045 +2.346296,-0.129500,-1.132417 +2.214377,0.043107,-0.844790 +1.210527,0.032448,-0.372532 +0.650623,-0.027116,-0.815288 +1.340014,-0.040836,-2.395921 +0.355889,-0.028240,-1.592726 +0.955421,0.023414,-2.268876 +1.003532,-0.084759,-2.351852 +1.803377,-0.022181,-2.300703 +0.749436,0.044665,-0.769766 +0.647157,0.035217,-0.831427 +2.442250,-0.008821,-1.571656 +1.793161,0.011933,-0.482746 +2.126909,-0.039550,-0.681896 +0.627097,0.009155,-2.017781 +2.324186,-0.049186,-1.677981 +2.043968,-0.066672,-0.602554 +2.247485,0.033129,-0.904138 +1.178273,0.091865,-2.281629 +0.549476,0.018562,-1.029502 +0.534697,-0.008691,-1.794950 +2.026505,-0.009511,-2.141083 +2.401234,0.027155,-1.275421 +0.641572,0.089363,-1.992060 +0.563866,-0.072820,-1.951567 +0.766690,0.073761,-0.716598 +1.084145,0.010776,-2.303505 +0.383075,-0.086010,-1.303044 +2.099288,-0.004543,-2.148225 +0.381788,-0.046518,-1.218213 +1.983396,0.026970,-2.144464 +0.346422,-0.030361,-1.297205 +1.931046,0.043073,-0.583226 +2.275187,0.003617,-1.022507 +1.905398,0.021623,-0.483630 +0.590535,-0.010352,-2.001475 +1.664576,-0.018322,-0.338477 +2.414701,0.034806,-1.717922 +0.444106,-0.069362,-1.102872 +0.979798,0.012620,-2.279003 +1.419262,-0.038068,-0.438063 +0.818485,0.042404,-2.171603 +1.762228,-0.005649,-2.328040 +1.704989,0.139425,-0.429270 +0.592115,-0.092756,-1.962496 +0.549830,0.022127,-2.038549 +2.121618,0.105499,-0.780806 +1.144828,-0.152458,-2.289291 +0.399524,-0.129248,-1.375462 +0.522415,0.020014,-1.706572 +2.375385,-0.102376,-1.299157 +0.746125,0.062127,-0.848021 +1.442014,-0.046528,-0.495499 +2.320185,0.021638,-1.875812 +2.403036,0.033061,-1.709140 +0.499505,-0.107239,-0.964284 +1.739144,0.009281,-2.320043 +1.839213,-0.014539,-0.479432 +2.406168,-0.005252,-1.691549 +1.051023,-0.035572,-0.430361 +2.139976,0.021238,-0.761022 +1.104292,-0.018048,-2.388240 +0.309974,0.021059,-1.418676 +1.955773,-0.029230,-0.435012 +2.319995,-0.048131,-1.115915 +2.286922,0.084295,-1.511973 +1.712032,-0.049285,-2.260674 +2.362943,-0.014796,-1.133569 +2.097552,0.121061,-0.636209 +0.569146,-0.033649,-2.089370 +2.376792,0.062953,-1.241731 +1.936944,-0.054721,-0.543194 +1.207015,0.023690,-2.359413 +1.199733,0.047695,-2.559943 +0.460763,0.141368,-1.761952 +1.199343,-0.000435,-2.407729 +2.408057,0.025985,-1.082606 +1.075725,0.000921,-0.295331 +0.478548,0.010741,-1.862200 +1.244777,0.063106,-2.465565 +1.763088,0.001777,-2.200916 +2.402331,-0.018487,-1.502217 +2.422901,0.036370,-1.560786 +1.556508,0.042113,-2.333285 +0.844309,0.035953,-0.562343 +0.697655,-0.100032,-2.143870 +0.933740,-0.007140,-0.473825 +1.605239,0.061441,-0.354546 +1.749167,0.013122,-2.364385 +2.027070,0.017699,-0.816966 +1.841635,0.031152,-0.481707 +0.537422,-0.019109,-1.641401 +1.529643,0.090860,-2.393462 +1.595603,0.066208,-2.350105 +2.104118,0.061072,-0.553277 +2.167569,0.006422,-0.729304 +2.348380,-0.032956,-1.897061 +1.221332,-0.065113,-2.424041 +0.569843,0.097300,-0.808437 +1.688574,-0.040039,-0.383508 +1.997790,0.001548,-2.268667 +1.555980,-0.054633,-0.382876 +0.542709,0.011295,-1.255277 +1.547904,-0.025850,-2.468791 +1.656700,0.061481,-0.441183 +1.011127,-0.052886,-2.338023 +2.364632,-0.055607,-1.201822 +0.437969,0.031482,-1.507847 +1.348299,-0.022721,-0.389448 +0.876162,0.024115,-2.241949 +2.187971,-0.073111,-1.979742 +2.159278,-0.103970,-2.009503 +2.344100,0.139060,-1.875506 +1.401782,-0.061018,-0.389018 +0.602111,-0.044621,-0.821836 +1.772927,0.050951,-0.566081 +2.374011,-0.078468,-1.213886 +0.433566,-0.000621,-1.682632 +0.518855,0.040299,-1.068090 +0.618794,0.031334,-0.892977 +2.184470,0.059016,-2.048876 +2.147076,-0.046280,-1.977200 +0.501998,-0.001174,-0.998734 +2.440921,0.065954,-1.085005 +2.260720,0.026545,-1.036266 +1.030310,-0.015811,-0.366846 +2.038248,0.110980,-2.180407 +0.972546,0.009764,-2.225844 +2.190376,0.061081,-0.918575 +0.726988,0.070468,-0.565785 +2.169370,-0.019921,-2.109910 +0.914954,0.043038,-2.190861 +1.929289,0.108619,-2.211396 +2.247828,0.045579,-1.815215 +1.112758,0.065279,-0.480833 +1.262749,0.031684,-0.315817 +0.447941,0.024999,-1.615316 +1.381966,-0.008917,-0.392552 +2.486610,-0.013184,-1.522440 +1.103714,0.039415,-0.356249 +1.552138,0.011185,-0.370384 +0.461778,0.029041,-1.014607 +2.193360,0.007576,-0.762237 +1.165678,-0.013337,-0.330178 +1.858097,-0.066240,-2.420327 +2.315940,-0.005681,-1.599422 +0.819612,0.009462,-2.161064 +1.759083,-0.013427,-0.483351 +1.531011,-0.063872,-2.437603 +2.417943,0.013495,-1.584535 +2.298326,-0.081596,-1.332112 +1.184383,0.067355,-0.502256 +1.414973,-0.048872,-2.341817 +0.988664,-0.125025,-2.170771 +1.331962,0.023472,-2.410879 +0.411576,-0.050143,-1.451179 +0.320834,0.068290,-1.391098 +0.446545,0.087722,-1.885458 +0.587165,0.067175,-1.046750 +0.710778,0.006657,-0.587085 +0.633908,0.009696,-2.023900 +2.396726,0.071753,-1.431207 +2.187292,-0.031048,-0.842672 +2.252661,-0.041271,-1.685711 +0.775730,0.038743,-0.746177 +0.448970,-0.008874,-1.613861 +2.314780,-0.027270,-1.091034 +0.482140,0.013366,-1.168577 +2.137015,-0.080842,-2.000593 +0.490713,0.011174,-1.538842 +0.424693,-0.002934,1.603957 +2.324377,-0.164220,1.883979 +1.932594,-0.078195,2.198651 +1.671293,-0.090240,0.470169 +0.804560,0.002584,0.581767 +0.455128,0.056426,0.862892 +0.896462,-0.009086,2.221810 +1.893840,-0.008069,0.624730 +2.011045,0.027425,0.675927 +1.521028,0.047007,2.266564 +0.937314,0.089069,2.355504 +2.265767,-0.016592,0.829204 +1.837330,0.029909,0.464595 +0.671145,0.117324,2.034020 +2.230885,-0.073961,1.016932 +2.146825,0.048226,0.709338 +1.258303,-0.008706,2.342000 +1.440736,-0.065838,0.511388 +0.550371,0.035448,1.906299 +0.806317,-0.012863,2.304894 +0.642391,-0.047879,0.724003 +2.303753,0.090357,1.901210 +1.372629,0.039560,0.338557 +0.371100,-0.059614,1.544875 +0.989760,0.015953,2.295379 +0.948384,0.113051,2.301872 +0.636543,-0.079708,1.837072 +0.769802,0.019917,2.200173 +0.633878,-0.075488,0.735648 +0.903304,0.099662,0.517958 +2.372329,-0.070913,1.660564 +2.215791,0.025545,1.991763 +1.298074,-0.046355,2.442604 +0.690469,-0.017853,2.068139 +1.369204,0.095827,0.416908 +0.417489,-0.014424,1.409196 +1.017785,-0.039658,0.493945 +0.991069,0.008023,0.443678 +1.849914,0.079865,0.422923 +0.608983,-0.026574,2.060523 +0.719761,0.055094,2.064845 +2.381022,-0.015747,1.226048 +1.811120,0.027008,2.400506 +2.117373,-0.007798,2.093900 +0.678541,-0.080862,0.803059 +2.386561,-0.058225,1.128912 +2.005401,0.079624,2.282263 +2.246626,0.107910,1.959722 +1.234288,-0.024818,0.395780 +0.457910,-0.113329,1.896569 +0.459883,-0.044079,0.909322 +2.050072,0.096992,0.765047 +2.296341,-0.019495,1.499545 +0.769811,0.015763,0.636020 +0.543249,-0.026258,0.979742 +0.768771,0.036840,2.003431 +1.087310,0.114577,0.521881 +0.300383,-0.017238,1.396707 +2.131535,0.013435,0.587258 +0.409764,-0.143405,1.465660 +1.964088,0.046512,0.466147 +0.383474,0.055533,1.414278 +1.974688,0.003629,2.321371 +2.317119,-0.009438,1.815147 +1.781041,-0.012149,2.265942 +0.565279,0.046662,0.868396 +1.607512,0.007518,2.450557 +2.295156,0.007984,1.050638 +0.445478,-0.089686,1.786609 +0.931631,0.056434,0.460997 +1.334186,0.066722,2.454170 +0.750165,0.041863,0.634019 +1.767664,-0.036389,0.519947 +1.640853,0.081684,2.342923 +0.556800,0.041730,0.865486 +0.465860,-0.001651,1.052012 +2.048090,-0.006943,2.129534 +1.108814,-0.005491,0.558576 +0.391390,-0.013073,1.390593 +0.386704,-0.057020,1.032075 +2.460497,-0.001822,1.436135 +0.717348,0.085315,2.130358 +1.478413,-0.027239,2.491870 +2.331017,-0.014719,1.042361 +2.415695,-0.031430,1.133078 +0.559954,-0.063816,1.854669 +1.677446,-0.054097,0.428149 +1.852021,-0.017711,2.269164 +2.353892,-0.063083,1.114567 +1.123488,-0.004356,2.329735 +2.191052,-0.111566,2.066949 +1.291613,-0.006747,0.433154 +0.441392,0.090493,1.422212 +1.790483,0.030987,2.402198 +2.375115,-0.063503,1.754239 +2.311849,0.067804,1.160045 +1.683075,-0.047178,0.409652 +2.464026,0.005690,1.556625 +1.998324,-0.102944,2.081291 +0.597141,0.053913,0.781395 +2.478495,-0.039463,1.512243 +1.876450,0.054492,2.359691 +1.054410,-0.019039,0.500980 +1.163984,0.031168,0.479493 +0.444009,0.030264,1.217859 +1.319782,-0.003408,0.388432 +2.300458,0.053733,1.633569 +1.017984,0.005648,2.302111 +0.485614,0.141048,1.025188 +1.250719,0.055843,0.421062 +1.960917,0.009058,0.510030 +2.301895,-0.089085,1.299037 +2.418890,-0.074924,1.406266 +1.495772,-0.013430,0.358026 +0.846439,-0.044247,2.154821 +0.715248,0.019504,0.725767 +1.009500,0.000491,2.325893 +1.542455,0.113872,2.350408 +1.882729,-0.010388,0.526636 +2.077806,0.063077,2.124279 +1.768177,0.101554,2.336828 +0.433326,-0.028790,1.132256 +1.650563,-0.055233,0.360495 +1.675981,0.034350,0.534333 +2.082333,0.006945,2.070770 +2.157993,-0.097575,2.098984 +2.294098,-0.003166,0.896776 +1.256680,0.040024,0.340028 +0.601074,0.114095,2.043787 +1.655956,-0.029521,2.364061 +1.931961,-0.076967,0.576864 +1.493557,0.105288,2.381634 +0.481953,-0.069690,1.530841 +1.565025,0.059605,0.355229 +1.619467,-0.075987,2.365950 +1.077906,-0.023923,0.456527 +2.333423,-0.035660,1.590804 +0.416323,-0.055127,1.226253 +1.218033,-0.055779,2.470381 +0.883122,0.103990,0.534014 +2.207038,0.035249,0.665222 +2.181785,-0.002694,0.844308 +2.344064,-0.062353,1.014327 +1.416983,-0.049745,2.410347 +0.579831,0.084616,2.006519 +1.893065,0.049536,2.336415 +2.419015,0.078070,1.651621 +0.458164,0.068154,1.085984 +0.441535,0.094687,1.768197 +0.538808,-0.024945,1.989516 +2.172992,0.017357,0.697750 +2.245324,-0.001194,0.801378 +0.466217,0.014598,1.718091 +2.418294,0.070886,1.702034 +2.302561,0.041570,1.801436 +1.053043,0.037000,2.368331 +2.155552,0.080150,0.648958 +0.851621,0.009005,0.517717 +2.165098,-0.047991,1.906417 +0.646771,-0.029938,2.156895 +2.095258,-0.036395,0.674110 +1.013060,0.036418,0.492877 +1.905282,-0.001557,0.497020 +2.218440,0.055579,0.867870 +0.942644,-0.002373,2.324245 +1.166168,-0.002241,2.439854 +0.448901,0.122639,1.250668 +1.479691,0.154005,2.441699 +2.401084,0.053556,1.243909 +1.157233,-0.035625,2.390472 +1.426936,-0.037781,2.420768 +0.462649,-0.106014,1.688069 +2.127055,-0.048563,2.035700 +1.193898,0.058590,2.417321 +1.767972,0.033462,0.460476 +2.429048,0.050568,1.171995 +0.857002,-0.129018,0.593870 +1.780329,0.063398,2.404181 +1.538383,0.077614,0.359654 +2.313150,-0.012886,1.164355 +2.313794,0.035743,1.468778 +1.395182,-0.023840,2.395850 +1.366916,0.092840,0.244610 +0.759583,0.000305,0.531277 +1.417203,-0.006934,0.364321 +0.407984,0.034548,1.292897 +0.375568,-0.009117,1.431002 +0.427976,0.025385,0.893441 +0.551630,0.032508,1.861502 +0.659848,-0.020426,2.060633 +0.571059,0.068866,0.868905 +2.336359,-0.025205,1.364398 +2.241225,-0.096790,1.899620 +2.356706,-0.107197,1.007302 +0.796008,0.022862,2.182361 +0.397596,0.046451,1.228305 +2.269241,0.002075,1.846854 +0.525920,0.043248,1.715491 +2.156572,-0.028830,0.774147 +0.394077,-0.055441,1.406836 +-0.939104,1.383188,0.191729 +0.903266,1.439591,0.380054 +0.579774,1.396808,0.843317 +0.214126,1.262504,-1.028077 +-0.640782,1.403514,-0.677907 +-0.858955,1.404484,-0.455772 +-0.501353,1.367544,0.819365 +0.527876,1.478040,-0.787430 +0.645633,1.393705,-0.700938 +0.142645,1.370604,0.951703 +-0.463111,1.380307,0.851350 +0.770845,1.404270,-0.545794 +0.436300,1.410932,-0.849866 +-0.731927,1.430400,0.624187 +0.873642,1.342585,-0.458403 +0.751192,1.356754,-0.656029 +-0.240481,1.308645,1.027355 +0.036698,1.353963,-1.058188 +-0.821061,1.475620,0.513658 +-0.547683,1.458940,0.744753 +-0.620791,1.534426,-0.833396 +0.870944,1.360458,0.467191 +-0.085802,1.444647,-1.004218 +-1.026017,1.390530,0.246456 +-0.519095,1.309457,1.000607 +-0.344350,1.392446,0.929178 +-0.846162,1.497503,0.513650 +-0.592551,1.323873,0.838799 +-0.721860,1.305293,-0.662043 +-0.595574,1.482132,-0.744193 +0.946640,1.424143,0.211234 +0.878630,1.372599,0.476029 +-0.172348,1.374384,0.969805 +-0.654874,1.356808,0.802533 +-0.072878,1.488849,-1.055908 +-0.992170,1.373039,-0.144238 +-0.409916,1.482490,-0.825528 +-0.419415,1.410134,-0.960769 +0.371244,1.336953,-0.928894 +-0.715240,1.294850,0.681998 +-0.706774,1.461705,0.580722 +0.918734,1.425291,-0.221567 +0.429183,1.388253,1.030498 +0.633986,1.450498,0.679019 +-0.788721,1.324659,-0.604658 +1.024876,1.498182,-0.100992 +0.580243,1.344788,0.714888 +0.908108,1.357200,0.643496 +-0.189264,1.418145,-0.992795 +-0.868490,1.399149,0.405473 +-0.866547,1.392082,-0.469688 +0.694302,1.396481,-0.723221 +0.962726,1.333498,0.251864 +-0.599483,1.448608,-0.750298 +-0.877260,1.476028,-0.528502 +-0.696102,1.502973,0.747489 +-0.211754,1.323088,-0.922556 +-0.884117,1.401636,0.048270 +0.573198,1.459529,-0.812870 +-0.997329,1.332102,0.210962 +0.625602,1.398263,-0.890559 +-0.911087,1.379874,0.033322 +0.465167,1.364472,0.747075 +0.895521,1.440942,0.347478 +0.473554,1.360217,0.894591 +-0.721431,1.380833,-0.540940 +0.162586,1.483606,0.942337 +0.998660,1.393225,-0.305101 +-0.914151,1.375116,0.369072 +-0.467523,1.442786,-0.926288 +-0.012185,1.374590,1.002255 +-0.720420,1.413616,-0.747681 +0.338416,1.396973,-0.922406 +0.245091,1.392918,0.904988 +-0.715313,1.458252,-0.520807 +-0.853288,1.291141,-0.537820 +0.662586,1.324179,0.715955 +-0.327427,1.450623,-1.003485 +-0.978020,1.400791,0.019113 +-0.969468,1.476072,-0.344431 +1.095607,1.356529,0.103646 +-0.753393,1.381974,0.696089 +0.108879,1.253592,0.823657 +0.987738,1.467664,-0.293344 +0.959330,1.328905,-0.302068 +-0.890378,1.344613,0.544662 +0.461911,1.426305,-0.941478 +0.354556,1.485054,0.909024 +0.935152,1.426465,-0.341231 +-0.330660,1.320664,1.000671 +0.764771,1.463734,0.626361 +-0.286482,1.333323,-0.918507 +-1.047678,1.373247,-0.031353 +0.515709,1.306165,0.848048 +0.984618,1.379191,0.326378 +0.991220,1.393072,-0.244060 +0.276992,1.454674,-1.018108 +0.961691,1.324010,0.239157 +0.656232,1.353239,0.755186 +-0.875215,1.343158,-0.668093 +0.933442,1.474654,0.085012 +0.561469,1.354003,0.886102 +-0.305124,1.402158,-0.965676 +-0.028405,1.434673,-1.020298 +-0.922616,1.517600,-0.368621 +-0.233718,1.386971,-1.005227 +0.932755,1.328267,0.386235 +-0.446368,1.388988,0.987297 +-0.931437,1.346133,-0.442302 +-0.137983,1.358363,-0.980827 +0.404674,1.444717,-0.869951 +1.010441,1.479259,-0.024079 +0.958107,1.369873,-0.073379 +0.089105,1.354312,-1.106832 +-0.618636,1.419790,0.816511 +-0.684136,1.507552,-0.619549 +-0.349741,1.442173,0.998872 +0.289178,1.452314,1.021138 +0.385860,1.397726,-0.936336 +0.671593,1.360381,0.760002 +0.179483,1.494770,0.938930 +-0.943526,1.480178,-0.232174 +0.235873,1.331704,-0.855833 +0.247172,1.411506,-0.903908 +0.642832,1.384126,0.786541 +0.647423,1.430825,0.690582 +0.984614,1.312937,-0.393224 +-0.124879,1.375414,-1.062772 +-0.886912,1.422194,0.500905 +0.379454,1.363537,0.874164 +0.506797,1.418519,-0.859582 +0.095990,1.438291,1.055095 +-0.999342,1.342568,0.191567 +0.151219,1.319660,-1.041098 +0.178588,1.388570,0.934060 +-0.329237,1.311718,-1.016661 +0.977198,1.390339,0.014103 +-1.021060,1.377943,-0.178066 +-0.085755,1.363613,1.076843 +-0.482190,1.355609,-0.855544 +0.815838,1.466810,-0.620806 +0.812717,1.402302,-0.555388 +0.962006,1.410834,-0.468416 +0.059274,1.390075,1.091923 +-0.804701,1.377690,0.562506 +0.415037,1.430611,0.831206 +1.036315,1.328889,0.225142 +-0.887794,1.281626,-0.198012 +-0.983684,1.407760,0.310421 +-0.820805,1.415064,0.563898 +0.757518,1.496848,-0.655819 +0.935136,1.449559,-0.661400 +-0.797270,1.368411,0.420993 +0.970057,1.458360,0.210824 +0.952171,1.386075,0.483993 +-0.254864,1.451477,0.841269 +0.608201,1.422580,-0.777856 +-0.509220,1.379875,-0.824397 +0.925709,1.274672,0.541456 +-0.655788,1.349823,0.789023 +0.774617,1.457153,-0.714538 +-0.433588,1.447744,-0.881112 +0.470922,1.365062,-0.814660 +0.858424,1.342460,-0.601709 +-0.351397,1.369927,0.935926 +-0.057149,1.328009,0.989632 +-0.985305,1.420886,-0.149989 +-0.073120,1.431339,1.056734 +0.981864,1.392440,-0.102319 +-0.229725,1.432029,0.999454 +0.008782,1.454465,1.062200 +-0.919542,1.317821,0.361814 +0.800847,1.337047,0.593099 +-0.295659,1.433401,0.985044 +0.218499,1.419331,-0.954165 +0.996986,1.378466,-0.292771 +-0.655304,1.370401,-0.789120 +0.405286,1.389510,0.894472 +0.198816,1.537925,-1.018307 +0.945228,1.581162,-0.194988 +0.923608,1.446348,-0.018641 +-0.012792,1.388397,0.973838 +0.057093,1.431152,-0.945992 +-0.563865,1.375556,-0.775393 +0.097918,1.407411,-0.900416 +-0.948785,1.411659,-0.080277 +-0.991959,1.331182,0.026457 +-0.864141,1.377115,-0.463181 +-0.916583,1.442553,0.433619 +-0.675354,1.324803,0.827458 +-0.797959,1.395551,-0.631746 +0.972644,1.484923,0.044822 +0.833459,1.394087,0.621837 +0.933835,1.389538,-0.349529 +-0.637171,1.413875,0.801387 +-0.949126,1.365947,-0.148324 +0.854980,1.368509,0.396688 +-1.027546,1.455861,0.195392 +0.751715,1.469047,-0.644289 +-1.008375,1.344338,-0.016978 +-2.341118,-1.202924,0.029564 +-0.504946,-0.974850,-0.044823 +-0.741270,-0.548919,-0.038132 +-1.149119,-2.385089,-0.062052 +-2.027653,-2.193365,-0.052390 +-2.372359,-1.940000,-0.020428 +-1.966764,-0.621061,0.035791 +-0.815820,-2.177288,-0.010060 +-0.758744,-2.122692,-0.069447 +-1.213896,-0.463855,0.050503 +-1.900369,-0.465254,-0.061744 +-0.592949,-1.914875,0.064377 +-0.854346,-2.288731,0.101076 +-2.186445,-0.702144,-0.051820 +-0.472062,-1.954572,-0.061688 +-0.624222,-2.133496,0.023482 +-1.537526,-0.445285,-0.053292 +-1.363290,-2.451146,-0.005567 +-2.238713,-0.881004,0.092090 +-1.975394,-0.479143,-0.057268 +-2.124966,-2.019476,0.062225 +-0.546808,-0.887717,0.023165 +-1.492487,-2.364149,0.102437 +-2.349973,-1.150707,0.036969 +-1.934344,-0.483681,-0.055922 +-1.741461,-0.330037,-0.013929 +-2.317016,-0.854854,-0.052122 +-1.933649,-0.470560,0.002352 +-2.192995,-2.077187,-0.021806 +-1.851135,-2.277668,0.057817 +-0.342043,-1.167811,-0.010627 +-0.534298,-0.911327,0.014866 +-1.568805,-0.425790,0.002692 +-2.103187,-0.683880,-0.032935 +-1.430534,-2.406522,-0.002462 +-2.416251,-1.507517,-0.099812 +-1.894166,-2.306403,-0.047086 +-1.707542,-2.316717,0.009722 +-1.000798,-2.305695,-0.066839 +-2.138309,-0.766988,-0.015257 +-2.330950,-0.849133,0.080516 +-0.358766,-1.421561,0.076325 +-0.994861,-0.495131,-0.057049 +-0.607960,-0.711902,0.137171 +-2.190594,-1.928915,-0.008624 +-0.338829,-1.463116,-0.056262 +-0.813768,-0.666659,-0.067647 +-0.536231,-0.848731,0.002880 +-1.587550,-2.478073,0.070772 +-2.324027,-0.944939,0.034139 +-2.229433,-1.831546,-0.116800 +-0.735546,-2.139072,-0.056884 +-0.404200,-1.263422,-0.073851 +-2.047615,-2.159974,-0.022351 +-2.286184,-1.841090,-0.002250 +-2.056961,-0.674124,0.025458 +-1.634805,-2.315424,0.037778 +-2.364684,-1.413123,-0.048187 +-0.773850,-2.210436,-0.058550 +-2.495084,-1.348726,-0.014109 +-0.841735,-2.270699,0.004341 +-2.419423,-1.245910,-0.008889 +-0.799618,-0.561743,-0.077114 +-0.475210,-1.099835,-0.005947 +-0.986992,-0.487986,-0.073829 +-2.226272,-1.930601,0.049918 +-1.193339,-0.430441,0.010128 +-0.374027,-1.820211,-0.050111 +-2.196811,-1.106003,-0.104005 +-1.857820,-2.457115,0.013251 +-1.386873,-0.450635,-0.025890 +-2.010511,-2.246373,-0.072686 +-1.044422,-2.371155,-0.016163 +-1.190515,-0.427919,-0.008208 +-2.214122,-1.924805,0.011368 +-2.397302,-1.770055,-0.018198 +-0.724616,-0.613377,-0.039569 +-1.664423,-2.261435,0.041403 +-2.453934,-1.520246,0.059336 +-2.334755,-1.779724,0.064546 +-0.449359,-1.360538,0.028869 +-2.211359,-0.744710,0.059903 +-1.263056,-0.339277,0.062348 +-0.481820,-1.925669,-0.060817 +-0.397723,-1.764255,-0.017968 +-2.272390,-0.865183,-0.031626 +-1.096654,-2.343765,0.019300 +-0.982704,-0.437463,-0.043953 +-0.442335,-1.684530,-0.022013 +-1.692554,-0.450927,0.043387 +-0.618811,-0.741874,-0.034782 +-1.713684,-2.292952,0.034953 +-2.455770,-1.421463,-0.130558 +-0.922525,-0.486401,-0.006883 +-0.452634,-1.227163,-0.021574 +-0.399108,-1.561790,0.052930 +-1.132573,-2.369405,-0.073266 +-0.428961,-1.282005,-0.101633 +-0.798373,-0.566911,-0.014881 +-2.196924,-2.016028,-0.098480 +-0.356399,-1.394138,-0.030514 +-0.867177,-0.542995,-0.039956 +-1.749778,-2.412643,-0.041182 +-1.598955,-2.334335,-0.066748 +-2.343740,-1.670285,0.052825 +-1.594704,-2.338775,-0.009472 +-0.425052,-1.173645,-0.145105 +-1.747359,-0.446508,0.026153 +-2.358648,-1.686190,-0.025293 +-1.502185,-2.359410,0.094531 +-0.935683,-2.312232,-0.082398 +-0.314620,-1.376822,0.024918 +-0.230555,-1.444913,-0.071628 +-1.316666,-2.449175,-0.021773 +-2.009928,-0.623269,-0.076631 +-2.062523,-2.044875,-0.012401 +-1.784109,-0.469264,0.015163 +-1.174944,-0.410346,0.036862 +-0.961431,-2.308805,-0.012122 +-0.678404,-0.655771,0.021522 +-1.068218,-0.482469,-0.044430 +-2.388045,-1.675762,-0.080197 +-1.279398,-2.373046,0.069627 +-1.182127,-2.525262,0.035272 +-0.723592,-0.667974,-0.000777 +-0.660487,-0.744311,-0.001233 +-0.449751,-1.882835,0.059704 +-1.442413,-2.358874,-0.098264 +-2.165666,-0.863101,0.039365 +-1.114751,-0.524298,0.108701 +-0.916807,-2.181292,0.006513 +-1.328998,-0.406904,-0.071560 +-2.383044,-1.272169,-0.021749 +-1.223775,-2.378134,-0.081519 +-1.135025,-0.424474,-0.029820 +-1.727057,-2.338973,-0.064111 +-0.302809,-1.306842,-0.004476 +-2.409969,-1.491536,-0.028868 +-1.579082,-0.441765,0.072973 +-1.863274,-2.274768,0.075529 +-0.549846,-2.002448,-0.009125 +-0.611374,-2.083178,0.000248 +-0.492025,-1.946774,-0.010413 +-1.385257,-0.343950,-0.101447 +-2.230000,-0.838711,0.052804 +-0.920641,-0.424908,0.036422 +-0.446646,-1.168676,-0.019474 +-2.303790,-1.782288,-0.045303 +-2.335231,-1.053592,-0.121108 +-2.185146,-0.898666,-0.103613 +-0.836126,-2.168663,-0.001084 +-0.576544,-1.927257,-0.030222 +-2.401823,-1.083982,0.001849 +-0.418724,-1.194714,0.049580 +-0.516422,-1.050687,-0.029832 +-1.619875,-0.447010,-0.038198 +-0.736157,-2.072304,0.011533 +-1.894222,-2.170096,-0.033310 +-0.537793,-0.961499,-0.011272 +-2.071864,-0.651645,-0.041244 +-0.708684,-2.077834,-0.006572 +-1.984294,-2.317343,-0.083567 +-0.877535,-2.233060,0.014110 +-0.582565,-1.895464,-0.025856 +-1.859750,-0.441439,0.044992 +-1.473144,-0.441344,0.064865 +-2.403064,-1.582201,-0.028100 +-1.412319,-0.533165,-0.016605 +-0.402875,-1.547886,0.096590 +-1.712626,-0.462414,-0.049768 +-1.368217,-0.345246,0.081292 +-2.368320,-1.071641,-0.063642 +-0.537999,-0.725438,-0.005829 +-1.694929,-0.495950,0.009385 +-1.060769,-2.464694,-0.017672 +-0.342411,-1.660653,0.081930 +-1.977210,-2.249790,-0.016097 +-1.009930,-0.534634,-0.053343 +-1.098984,-2.429672,0.059314 +-0.448090,-1.619553,0.030901 +-0.433414,-1.337355,-0.112554 +-1.438607,-0.537742,-0.012477 +-1.384427,-2.365280,-0.071413 +-2.052117,-2.246894,0.010242 +-1.480346,-2.400234,0.017129 +-2.411129,-1.465216,0.012305 +-2.429298,-1.475080,0.007338 +-2.328726,-1.913563,0.026352 +-2.239801,-1.004945,0.030474 +-2.163993,-0.657528,-0.003295 +-2.122547,-2.042632,-0.013290 +-0.342259,-1.436473,-0.060986 +-0.450643,-0.871537,-0.003559 +-0.451156,-1.753406,-0.010436 +-2.023069,-0.622766,-0.061376 +-2.264025,-1.599481,0.032831 +-0.513579,-0.993733,-0.025049 +-2.453825,-1.160144,-0.022385 +-0.545411,-2.078726,-0.031743 +-2.447441,-1.383451,-0.047817 +-2.356762,1.609793,-0.008037 +-0.584718,1.778962,0.047287 +-0.881547,2.230578,0.006289 +-1.130568,0.457354,-0.051352 +-2.091078,0.668808,-0.034614 +-2.442265,0.981691,-0.056994 +-1.936391,2.303686,0.000922 +-0.757448,0.599442,0.087309 +-0.773869,0.670580,0.037024 +-1.254038,2.451060,-0.023762 +-1.767938,2.393028,0.015514 +-0.525279,0.929715,-0.065296 +-1.018170,0.578097,0.015069 +-2.182971,2.038036,-0.131232 +-0.505654,0.932803,0.050494 +-0.595162,0.770406,0.021750 +-1.669735,2.414773,0.034617 +-1.268724,0.518475,-0.093091 +-2.265694,1.895002,0.009488 +-1.935090,2.231453,0.056518 +-2.189546,0.658191,-0.056332 +-0.543511,1.814181,-0.002671 +-1.471892,0.358715,0.048057 +-2.379189,1.676589,-0.010728 +-1.855321,2.260053,-0.000388 +-1.669844,2.328433,0.028513 +-2.321008,1.923501,-0.031895 +-1.862199,2.264096,0.083652 +-2.170581,0.611703,-0.033892 +-2.011980,0.479622,0.034185 +-0.439936,1.652609,-0.021283 +-0.588520,2.026597,-0.040453 +-1.629152,2.431471,-0.011867 +-1.994974,2.078165,0.046529 +-1.340479,0.371327,-0.040861 +-2.351340,1.306286,-0.077584 +-1.916054,0.369490,0.032746 +-1.811548,0.473327,-0.093029 +-1.034616,0.468885,-0.036978 +-2.122488,2.116638,0.124829 +-2.191256,2.074254,-0.045649 +-0.496560,1.286515,-0.087875 +-1.031068,2.286852,-0.107485 +-0.575550,2.054981,-0.090069 +-2.121114,0.722502,0.059959 +-0.452648,1.213816,0.018966 +-0.754466,2.232422,-0.004936 +-0.543846,2.003093,0.011031 +-1.625989,0.344592,0.032955 +-2.302507,1.803030,0.070277 +-2.383358,1.064643,-0.001225 +-0.721225,0.628162,-0.091689 +-0.419990,1.574845,0.037192 +-2.095439,0.550442,-0.084791 +-2.147881,0.830869,0.078488 +-2.112687,2.140076,0.034386 +-1.754128,0.536515,0.004165 +-2.372680,1.448072,0.036230 +-0.675742,0.622266,0.095134 +-2.425752,1.567359,0.026901 +-0.896689,0.584679,0.000405 +-2.442488,1.513798,0.008046 +-0.841909,2.223309,-0.004951 +-0.490447,1.775815,-0.035415 +-0.799885,2.213493,-0.032160 +-2.254896,0.950144,-0.072607 +-1.127884,2.382245,0.018348 +-0.391120,1.128133,-0.024803 +-2.340386,1.606491,0.005450 +-1.869449,0.484922,-0.092695 +-1.409143,2.306195,0.008156 +-2.128770,0.603159,0.063510 +-0.999540,0.533430,0.085785 +-1.163515,2.442737,-0.080603 +-2.203292,0.837040,-0.051167 +-2.283959,1.054824,0.050340 +-0.703636,2.136226,0.028978 +-1.722031,0.488894,0.011220 +-2.353647,1.310504,-0.007220 +-2.416992,1.076481,0.090306 +-0.428048,1.469789,0.041607 +-2.263836,2.032596,0.020048 +-1.434001,2.338390,0.060547 +-0.427081,1.023440,0.048521 +-0.427876,1.151556,-0.017361 +-2.284637,1.819210,0.069492 +-0.977576,0.535014,-0.022446 +-1.026678,2.375061,0.029915 +-0.430871,1.056133,0.023412 +-1.798428,2.375754,0.075839 +-0.539779,2.076393,-0.076011 +-1.668138,0.557389,-0.047774 +-2.402762,1.446333,0.033942 +-0.754550,2.220434,-0.054437 +-0.391792,1.672965,-0.010822 +-0.421323,1.269598,0.033785 +-1.095870,0.417573,0.066825 +-0.196292,1.625402,0.005482 +-0.810071,2.115050,-0.011754 +-2.238420,0.811330,0.097791 +-0.339291,1.516597,-0.066455 +-0.790618,2.241630,-0.094958 +-1.609506,0.487830,-0.133425 +-1.601785,0.406237,0.040398 +-2.388660,1.075241,0.039994 +-1.613139,0.447526,-0.061133 +-0.523322,1.750557,0.013889 +-1.717389,2.300484,-0.043731 +-2.254937,0.948113,0.068830 +-1.452705,0.455190,-0.037829 +-0.963155,0.512140,-0.071227 +-0.452893,1.435460,0.035714 +-0.459700,1.374396,0.024987 +-1.222848,0.435741,0.058222 +-1.961546,2.262913,-0.070791 +-2.156807,0.736544,-0.013406 +-1.801366,2.339718,0.021574 +-1.222351,2.341822,0.060345 +-0.983617,0.426222,-0.010653 +-0.858457,2.172459,-0.010911 +-1.122579,2.438210,-0.063588 +-2.329732,1.271579,0.059250 +-1.245300,0.349938,-0.074913 +-1.235254,0.379928,-0.039575 +-0.710840,2.101483,0.026687 +-0.717968,2.023788,-0.008782 +-0.534445,1.019250,0.012774 +-1.582856,0.427438,0.030012 +-2.233963,1.895347,0.096693 +-1.120106,2.377223,0.011003 +-0.831129,0.649549,0.030890 +-1.336618,2.456392,-0.034710 +-2.373292,1.516262,-0.056830 +-1.271840,0.428130,-0.093631 +-1.154506,2.330848,0.070383 +-1.787483,0.408424,0.004169 +-0.454831,1.563900,0.000029 +-2.396031,1.276115,-0.055272 +-1.565012,2.418021,-0.060482 +-1.969542,0.585280,0.028879 +-0.659944,0.778162,-0.049705 +-0.531789,0.812407,-0.023146 +-0.477303,0.871419,-0.036996 +-1.362822,2.424379,-0.005360 +-2.195376,1.992094,-0.008997 +-0.934534,2.252862,0.012757 +-0.401488,1.629053,-0.064823 +-2.405998,1.112922,0.080942 +-2.351911,1.656349,0.012339 +-2.323267,1.981033,0.010263 +-0.707852,0.706279,-0.028987 +-0.500778,0.826793,0.008545 +-2.309326,1.697996,0.010654 +-0.416323,1.563216,0.013898 +-0.484762,1.804296,0.001960 +-1.664737,2.433848,-0.064873 +-0.805911,0.646509,0.026451 +-1.936816,0.724366,0.033777 +-0.477056,1.892152,-0.054610 +-2.054711,2.209671,0.022376 +-0.670714,0.681104,-0.020559 +-1.891646,0.563539,0.046240 +-0.946302,0.581187,-0.035790 +-0.513467,0.880400,0.086118 +-1.820142,2.327578,0.033363 +-1.573401,2.388108,-0.014662 +-2.404177,1.157672,0.061161 +-1.432920,2.431152,0.017303 +-0.484719,1.303221,-0.077743 +-1.614145,2.340688,0.000460 +-1.408395,2.404758,0.050982 +-2.374160,1.734730,0.025004 +-0.583466,1.879027,0.110847 +-1.589073,2.414247,-0.007895 +-1.193027,0.486053,-0.031085 +-0.401501,1.139276,0.013092 +-2.055532,0.657386,-0.065361 +-0.879346,2.440842,0.089798 +-1.111705,0.419433,0.064160 +-0.429373,1.096413,0.082676 +-0.338408,1.429687,-0.067385 +-1.495032,2.297864,0.051979 +-1.519593,0.416269,-0.046403 +-2.066254,0.604093,-0.018359 +-1.322489,0.330775,-0.041652 +-2.526882,1.185753,0.098901 +-2.284909,1.436511,-0.045311 +-2.292721,0.966293,-0.028291 +-2.304685,1.796446,-0.031285 +-2.113488,2.145101,-0.053729 +-2.165310,0.761156,0.007005 +-0.324375,1.359339,0.050589 +-0.689545,1.961915,0.001523 +-0.364440,0.924078,-0.005292 +-1.932789,2.146979,-0.011706 +-2.364042,1.222767,0.086117 +-0.470507,1.898807,-0.019800 +-2.409312,1.636275,-0.063751 +-0.583252,0.765870,-0.036948 +-2.370601,1.274305,0.042378 +-1.013997,0.220185,-1.421601 +0.925762,0.463866,-1.359085 +0.593832,0.717530,-1.344516 +0.243867,-0.925160,-1.362036 +-0.679955,-0.820827,-1.363955 +-0.907685,-0.402487,-1.409801 +-0.505796,0.850362,-1.384161 +0.567215,-0.796233,-1.334393 +0.681565,-0.699754,-1.397450 +0.163288,1.082476,-1.333905 +-0.477386,0.888102,-1.438603 +0.834814,-0.518810,-1.353216 +0.495198,-0.952016,-1.346266 +-0.775396,0.583139,-1.326499 +0.985307,-0.411273,-1.361016 +0.792321,-0.584544,-1.359956 +-0.260404,1.092827,-1.341389 +0.034767,-1.054656,-1.372235 +-0.859632,0.553977,-1.359113 +-0.566981,0.782942,-1.378780 +-0.758305,-0.676512,-1.473883 +0.862437,0.521076,-1.366674 +-0.106150,-1.062281,-1.399133 +-0.945060,0.240428,-1.428169 +-0.437610,0.973636,-1.388717 +-0.398840,0.962233,-1.287582 +-0.947113,0.483389,-1.412448 +-0.503768,0.871426,-1.337302 +-0.702444,-0.636858,-1.406471 +-0.555084,-0.881133,-1.499940 +0.975462,0.391961,-1.374797 +0.882099,0.513110,-1.413438 +-0.102279,1.098166,-1.318163 +-0.662818,0.709040,-1.388465 +-0.041443,-1.079649,-1.461974 +-0.989376,-0.141393,-1.480819 +-0.456043,-0.908520,-1.464507 +-0.417508,-0.935407,-1.433915 +0.476746,-1.009487,-1.509219 +-0.728788,0.689834,-1.377768 +-0.819799,0.562421,-1.400402 +0.971275,-0.008799,-1.417832 +0.365199,1.065924,-1.410712 +0.759557,0.720094,-1.359773 +-0.754591,-0.626763,-1.394482 +0.956009,-0.138531,-1.288424 +0.679495,0.806871,-1.352929 +0.779276,0.547755,-1.347868 +-0.136349,-1.018314,-1.426597 +-0.784851,0.431074,-1.299715 +-0.893450,-0.412239,-1.416802 +0.713152,-0.675433,-1.456925 +0.968304,0.206764,-1.407125 +-0.711683,-0.673444,-1.339310 +-0.885472,-0.497361,-1.466466 +-0.710563,0.756940,-1.398273 +-0.362195,-0.990435,-1.458577 +-0.972998,-0.045430,-1.455637 +0.534962,-0.747467,-1.499150 +-0.990370,0.215507,-1.307961 +0.462758,-0.810668,-1.454393 +-1.061184,0.087867,-1.332444 +0.595065,0.787748,-1.361223 +0.806373,0.326713,-1.445314 +0.458298,0.879851,-1.407781 +-0.836690,-0.560851,-1.370293 +0.256903,0.952944,-1.377904 +0.986318,-0.369319,-1.403267 +-0.887152,0.248365,-1.300741 +-0.499433,-0.923822,-1.452260 +0.088925,0.971822,-1.427546 +-0.681703,-0.744853,-1.418064 +0.360816,-1.123883,-1.396856 +0.279970,1.017415,-1.328002 +-0.854652,-0.490934,-1.460586 +-0.875551,-0.428634,-1.465158 +0.674340,0.805995,-1.390045 +-0.256431,-0.982061,-1.342368 +-1.035869,0.012393,-1.388082 +-0.904499,-0.324947,-1.440655 +1.046444,0.158032,-1.432109 +-0.851049,0.688774,-1.418215 +0.118123,1.022704,-1.425102 +0.902968,-0.402654,-1.319164 +0.961948,-0.346953,-1.465773 +-0.883349,0.391872,-1.485927 +0.373692,-0.903233,-1.420248 +0.441931,0.915174,-1.366867 +0.984318,-0.452335,-1.413227 +-0.310253,0.918306,-1.398009 +0.811802,0.641875,-1.317064 +-0.217007,-0.966815,-1.410893 +-1.156274,-0.049368,-1.474430 +0.521209,0.869150,-1.361728 +1.017698,0.337293,-1.274577 +0.995072,-0.259443,-1.430914 +0.258490,-0.927727,-1.452099 +0.965899,0.178524,-1.424647 +0.705940,0.785384,-1.335839 +-0.827223,-0.521646,-1.475020 +0.915754,0.058574,-1.399493 +0.601958,0.811210,-1.426218 +-0.260571,-0.937078,-1.426269 +-0.185772,-1.061685,-1.431445 +-0.895533,-0.273990,-1.440692 +-0.119393,-1.014474,-1.321902 +1.028255,0.312098,-1.482420 +-0.242202,0.951077,-1.417814 +-0.877189,-0.329498,-1.327898 +-0.161762,-0.974599,-1.465223 +0.518402,-0.877569,-1.384544 +0.991951,-0.013804,-1.447753 +1.041500,0.019143,-1.430617 +0.124553,-0.971792,-1.399555 +-0.671748,0.737429,-1.442954 +-0.867756,-0.583870,-1.379776 +-0.427427,0.784364,-1.500313 +0.187253,1.090664,-1.438425 +0.444657,-0.944149,-1.396962 +0.704232,0.751486,-1.437956 +0.387011,0.953562,-1.339984 +-1.006272,-0.171323,-1.384950 +0.180348,-0.980449,-1.427801 +0.187289,-1.006630,-1.347225 +0.695939,0.624799,-1.492368 +0.655142,0.695300,-1.463333 +0.892811,-0.474242,-1.403559 +-0.069996,-0.986855,-1.549035 +-0.844880,0.585464,-1.309784 +0.431493,0.865907,-1.419235 +0.449690,-0.760734,-1.344293 +0.113391,1.004697,-1.324065 +-0.915664,0.251074,-1.374883 +0.106126,-0.949923,-1.355118 +0.207658,0.956598,-1.337668 +-0.276598,-0.970993,-1.414486 +1.014863,0.120871,-1.428730 +-0.884095,-0.133219,-1.370774 +0.002630,0.970864,-1.404864 +-0.577974,-0.870221,-1.481891 +0.850149,-0.564685,-1.415239 +0.764990,-0.595543,-1.462469 +0.902236,-0.415517,-1.498025 +0.069082,0.907433,-1.406468 +-0.873004,0.666504,-1.463642 +0.390993,0.883641,-1.422754 +0.893163,0.247063,-1.509532 +-1.008050,-0.340654,-1.355878 +-0.889043,0.339644,-1.408430 +-0.994244,0.530538,-1.319118 +0.796827,-0.659085,-1.465423 +0.798189,-0.455724,-1.477920 +-1.004012,0.390578,-1.423714 +0.903587,0.332728,-1.374642 +0.896756,0.334130,-1.287393 +-0.280336,1.037147,-1.350850 +0.584257,-0.818367,-1.320453 +-0.481645,-0.930311,-1.369762 +0.854075,0.452209,-1.385604 +-0.711652,0.744858,-1.443916 +0.679618,-0.711038,-1.455856 +-0.395229,-0.849176,-1.301299 +0.500237,-0.890925,-1.303287 +0.828949,-0.518847,-1.360397 +-0.465223,0.956876,-1.367916 +-0.055520,1.041067,-1.328501 +-0.981990,-0.265590,-1.283951 +-0.083968,0.921542,-1.368918 +1.081489,-0.114908,-1.345038 +-0.358459,0.941108,-1.503067 +0.105713,0.912929,-1.470280 +-0.901505,0.426525,-1.408743 +0.821515,0.642485,-1.411848 +-0.278352,1.006986,-1.366280 +0.358188,-0.933893,-1.464267 +1.006552,-0.248766,-1.426551 +-0.629112,-0.828119,-1.351114 +0.319152,0.863113,-1.418083 +0.306900,-0.917931,-1.490246 +1.050241,-0.143925,-1.464570 +0.860826,0.027439,-1.338267 +0.024729,0.950131,-1.303641 +-0.153947,-1.019749,-1.422947 +-0.524407,-0.737610,-1.347518 +-0.042869,-0.952063,-1.372003 +-1.087480,-0.207794,-1.342911 +-1.009412,-0.039274,-1.411449 +-0.856284,-0.486310,-1.485359 +-0.814049,0.452380,-1.418446 +-0.700777,0.748740,-1.462129 +-0.772408,-0.686097,-1.403879 +0.935235,-0.092905,-1.309485 +0.812274,0.599193,-1.510626 +0.896941,-0.342758,-1.389323 +-0.731379,0.801548,-1.379839 +-0.911680,-0.223419,-1.523314 +0.850005,0.365441,-1.359481 +-1.118004,0.224030,-1.321581 +0.790552,-0.563610,-1.490299 +-1.086136,0.016258,-1.394433 +0.417992,-1.305064,0.005543 +2.227980,-0.880732,0.150031 +2.014402,-0.625905,-0.139351 +1.556044,-2.283066,-0.056606 +0.742180,-2.134470,0.081526 +0.498016,-1.876247,0.003939 +0.803397,-0.604479,0.022653 +1.997976,-2.091779,0.024137 +2.147860,-2.187889,0.028884 +1.516670,-0.390562,0.037868 +0.920989,-0.391290,0.078539 +2.309076,-1.893791,0.096985 +1.774957,-2.215641,-0.054518 +0.598448,-0.731699,0.067827 +2.241380,-1.853969,0.005364 +2.139861,-2.014340,0.188976 +1.235681,-0.458149,-0.071308 +1.444902,-2.449740,0.025715 +0.580533,-0.889647,0.109173 +0.823724,-0.562241,0.035154 +0.720094,-2.014280,0.023567 +2.334107,-0.954827,0.050495 +1.386970,-2.314818,-0.091764 +0.374188,-1.136584,-0.145825 +0.973070,-0.450704,-0.031701 +1.067323,-0.508021,-0.028685 +0.496602,-0.955803,-0.040572 +0.876053,-0.554829,0.103077 +0.671213,-2.088179,-0.031729 +0.831745,-2.338068,-0.086425 +2.293909,-1.110906,0.059190 +2.146061,-0.894372,-0.075179 +1.229030,-0.353144,-0.024579 +0.690280,-0.612856,0.025185 +1.358195,-2.391260,-0.045515 +0.431012,-1.496990,-0.075194 +0.955643,-2.297473,0.029957 +1.048576,-2.291495,-0.016676 +1.877112,-2.352846,-0.072629 +0.495291,-0.719311,-0.045185 +0.631721,-0.895510,-0.035595 +2.421427,-1.550749,0.022509 +1.737488,-0.472028,0.032734 +2.181372,-0.710366,-0.044771 +0.604295,-2.002391,-0.056169 +2.377895,-1.577658,-0.005685 +1.957397,-0.711702,0.028641 +2.280108,-0.936486,0.020291 +1.241432,-2.343142,-0.022917 +0.443281,-0.969767,0.013628 +0.500442,-1.835687,-0.059546 +2.084560,-2.124214,0.011045 +2.393793,-1.151207,-0.034341 +0.785932,-2.169340,0.060992 +0.607093,-1.925159,0.091353 +0.764485,-0.698139,-0.020579 +1.153285,-2.300288,-0.058192 +0.394314,-1.326016,-0.027918 +2.167103,-2.157662,-0.003400 +0.473382,-1.294754,0.055409 +1.870358,-2.252032,0.057699 +0.490799,-1.348423,-0.048940 +1.993293,-0.607186,-0.014772 +2.377979,-1.061801,-0.108098 +1.782431,-0.508446,-0.102488 +0.556576,-2.038649,0.090197 +1.767773,-0.489618,0.014122 +2.288059,-1.755750,0.099191 +0.423276,-1.106715,-0.051839 +1.037261,-2.484307,-0.024354 +1.366066,-0.436853,0.047495 +0.804800,-2.227773,0.115142 +1.689845,-2.258902,0.008241 +1.651288,-0.462221,-0.001843 +0.567135,-1.986435,-0.012867 +0.439858,-1.863976,-0.044952 +2.021299,-0.694140,0.023786 +1.067901,-2.232292,-0.121575 +0.425814,-1.399647,0.044862 +0.498525,-1.747812,0.009496 +2.357103,-1.303457,-0.103338 +0.692614,-0.739963,-0.026788 +1.512544,-0.416641,0.071352 +2.495597,-1.730055,-0.031093 +2.394932,-1.641958,-0.050884 +0.439650,-0.949490,0.044424 +1.650088,-2.380530,0.031496 +1.828074,-0.417278,-0.077625 +2.480426,-1.793607,-0.111604 +1.058022,-0.521514,-0.002132 +2.166458,-0.773344,-0.046333 +1.144805,-2.377747,0.060702 +0.390573,-1.484466,-0.092824 +1.899575,-0.609064,-0.074248 +2.369891,-1.159034,0.077671 +2.391072,-1.589793,-0.056912 +1.721032,-2.360453,-0.037735 +2.393278,-1.305172,-0.089943 +1.999702,-0.630665,-0.000179 +0.648677,-2.038385,0.031607 +2.385852,-1.326534,0.021192 +1.932196,-0.590274,0.002310 +1.144186,-2.377036,-0.022693 +1.171793,-2.383576,-0.044149 +0.383588,-1.692230,0.040371 +1.222827,-2.411500,-0.031424 +2.386026,-1.222803,0.043855 +0.928805,-0.548071,-0.028285 +0.589580,-1.675866,0.038857 +1.294277,-2.494540,0.008622 +1.851546,-2.321223,0.008514 +2.374089,-1.352189,-0.106478 +2.402152,-1.511141,-0.022530 +1.510863,-2.457014,0.009033 +0.800536,-0.627315,-0.025881 +0.641389,-2.103543,0.000390 +0.958921,-0.528793,0.087441 +1.610220,-0.438762,0.008022 +1.740673,-2.341777,-0.017604 +1.968850,-0.608182,-0.027809 +1.689466,-0.480223,0.162750 +0.394973,-1.762467,-0.087996 +1.598196,-2.314183,-0.037499 +1.657724,-2.341500,-0.010421 +2.092782,-0.682945,0.048260 +2.171962,-0.775913,-0.009581 +2.385276,-1.867937,0.047813 +1.335585,-2.380527,0.005978 +0.622276,-0.798391,0.014514 +1.700581,-0.437913,-0.003685 +1.918873,-2.096995,-0.084648 +1.546827,-0.451885,0.007216 +0.558985,-1.265549,-0.039813 +1.524370,-2.438712,0.048623 +1.588744,-0.388113,-0.073105 +0.932500,-2.342371,-0.086268 +2.479067,-1.390031,-0.057073 +0.435061,-1.588684,-0.083511 +1.418090,-0.459528,-0.010794 +0.879453,-2.221675,0.025429 +2.163543,-2.005706,-0.012481 +2.211706,-2.101682,0.110996 +2.249251,-1.854472,-0.063799 +1.360012,-0.448587,-0.053379 +0.568199,-0.866058,0.038255 +1.838690,-0.572853,-0.021613 +2.430523,-1.170039,-0.005483 +0.370126,-1.771866,-0.070313 +0.511583,-1.091828,-0.047389 +0.508218,-0.936350,-0.048722 +2.154285,-2.100362,0.114464 +2.295850,-1.890062,0.036925 +0.435873,-1.028384,-0.019186 +2.458248,-1.129075,0.014430 +2.324744,-0.907137,-0.078856 +1.222115,-0.449945,-0.077338 +1.971536,-2.280949,0.035951 +0.780811,-2.217804,0.062382 +2.223781,-0.905704,-0.071685 +0.741216,-0.487915,0.042786 +2.092547,-2.140750,-0.002345 +0.925399,-2.299356,0.029153 +1.856602,-2.313453,0.020361 +2.196467,-1.868945,-0.000785 +0.902317,-0.476223,-0.092683 +1.312802,-0.421565,0.101810 +0.483005,-1.676481,-0.111141 +1.358469,-0.467169,0.100416 +2.391547,-1.473995,-0.015677 +1.141428,-0.433211,0.060860 +1.479930,-0.460127,0.089238 +0.454119,-1.056929,-0.155623 +2.225047,-0.781537,0.005496 +1.159701,-0.455720,-0.020327 +1.734491,-2.315905,-0.012707 +2.420775,-1.653033,-0.027732 +0.798006,-2.264921,0.012800 +1.712328,-0.538770,-0.111028 +1.608512,-2.287387,-0.006439 +2.411314,-1.488766,0.022223 +2.357420,-1.403106,0.000036 +1.302400,-0.432668,0.054189 +1.425028,-2.490086,-0.044999 +0.786695,-2.176067,0.062869 +1.580019,-2.425119,-0.022865 +0.436809,-1.531630,-0.007753 +0.377666,-1.512780,0.006778 +0.513663,-1.811836,0.000302 +0.413234,-1.017048,-0.115010 +0.648852,-0.636079,-0.013604 +0.660583,-2.121086,-0.013335 +2.373353,-1.378839,0.037002 +2.244341,-0.727437,-0.020245 +2.403206,-1.825556,-0.059448 +0.828494,-0.692606,0.031502 +0.423285,-1.528429,-0.003269 +2.307910,-0.946211,-0.036446 +0.392575,-1.125216,-0.001611 +2.167753,-2.017460,0.087701 +0.377607,-1.488752,-0.093909 +0.409982,1.592563,0.045991 +2.296958,1.906561,0.040218 +2.048998,2.263154,0.086349 +1.639357,0.358429,0.036505 +0.805506,0.715837,0.070471 +0.615994,0.980101,0.012585 +0.761743,2.244026,-0.030388 +1.999418,0.593981,0.025945 +2.079194,0.722457,-0.149773 +1.566884,2.453825,0.102853 +0.958504,2.368975,0.009291 +2.244485,0.893291,-0.000176 +1.810961,0.480655,-0.061168 +0.658547,2.038051,-0.019816 +2.273659,1.001999,0.042925 +2.087933,0.667865,0.052498 +1.136986,2.412399,0.088930 +1.551848,0.442556,0.038985 +0.679527,1.807435,-0.025538 +0.910840,2.225777,0.068188 +0.668867,0.722699,-0.015107 +2.247569,1.851663,0.014914 +1.294608,0.454400,0.035927 +0.484551,1.556052,-0.093471 +0.945779,2.450441,0.069641 +1.060488,2.374405,0.040017 +0.448432,1.957083,-0.009208 +0.885971,2.262050,0.062950 +0.651358,0.599010,0.017763 +0.751772,0.539111,0.065278 +2.392144,1.736321,0.034119 +2.376896,1.903474,0.021897 +1.219469,2.440312,-0.003387 +0.787430,2.077912,0.077392 +1.432623,0.398215,0.029834 +0.422255,1.294244,-0.011378 +0.907422,0.490565,-0.092573 +1.049159,0.414311,-0.011971 +1.861422,0.541340,-0.097606 +0.665980,2.109833,0.002861 +0.683769,1.967708,-0.112697 +2.440130,1.276352,-0.096720 +1.759406,2.397457,-0.069479 +2.257448,2.038464,0.004786 +0.562434,0.764865,-0.007356 +2.305766,1.398986,-0.027244 +1.985712,2.243452,0.099784 +2.289035,1.896018,0.011765 +1.078381,0.473677,-0.089935 +0.450997,1.825603,0.024475 +0.480822,1.057770,0.039778 +2.096772,0.582272,0.093465 +2.343520,1.651999,0.111221 +0.743649,0.727792,-0.169561 +0.528533,0.951578,0.050848 +0.671603,2.133956,-0.139500 +1.113698,0.345360,0.062176 +0.467023,1.436700,0.028670 +2.025484,0.642792,-0.063099 +0.442122,1.435068,-0.100646 +1.955377,0.561301,0.014977 +0.368715,1.597821,0.008833 +1.974892,2.237928,0.055160 +2.361457,1.792436,0.040479 +1.753637,2.192730,-0.004183 +0.562047,0.869806,0.001101 +1.680692,2.300075,-0.000591 +2.267123,1.082539,-0.103306 +0.468101,1.628222,-0.021094 +1.023442,0.507679,-0.090511 +1.331608,2.316931,-0.093212 +0.745160,0.680705,0.024233 +1.801269,0.469568,-0.015036 +1.619972,2.336089,-0.072674 +0.509188,0.869064,-0.006479 +0.650805,0.928833,-0.006880 +2.006242,2.107640,-0.019090 +1.107730,0.434388,-0.010523 +0.376333,1.322942,-0.035866 +0.438113,1.065323,0.030742 +2.385124,1.448921,-0.094645 +0.679574,2.023037,0.041092 +1.597737,2.381779,-0.056282 +2.316836,1.022031,-0.017354 +2.329272,1.152003,0.027367 +0.489948,1.763017,0.025101 +1.696535,0.470908,0.008314 +1.721887,2.309287,0.028299 +2.386100,1.097438,-0.108745 +1.131502,2.363487,-0.066183 +2.127186,2.050141,0.037388 +1.094171,0.485110,-0.098602 +0.343158,1.255049,-0.049357 +1.991986,2.373921,0.012902 +2.305767,1.726548,0.026034 +2.296323,1.181131,0.078919 +1.621477,0.398510,0.000726 +2.397860,1.553006,0.004233 +2.094749,2.257991,-0.006943 +0.588712,0.896225,-0.030204 +2.319275,1.539097,0.059190 +1.955684,2.238992,-0.079662 +1.148100,0.499240,-0.067876 +1.230104,0.391000,-0.038374 +0.453342,1.145391,0.023805 +1.158894,0.327184,0.014431 +2.323231,1.810124,0.103648 +1.141363,2.278070,0.031315 +0.518126,1.073585,-0.019492 +1.345021,0.407911,0.007046 +1.797173,0.559155,-0.014323 +2.425563,1.412931,0.009952 +2.395512,1.380472,-0.010939 +1.414072,0.435731,-0.044495 +0.739380,2.152794,0.015583 +0.644580,0.621391,-0.021101 +1.038528,2.280006,-0.009101 +1.644746,2.426039,0.056196 +1.644657,0.577589,0.035002 +2.172805,2.127485,-0.096990 +1.709414,2.335911,0.035952 +0.490538,1.146509,-0.013239 +1.585184,0.398214,-0.018699 +1.644424,0.487001,0.059618 +2.097854,1.989418,-0.008151 +2.108422,2.054177,-0.036910 +2.275166,0.861086,-0.070439 +1.373140,0.351107,0.000018 +0.625418,2.012370,0.043717 +1.755396,2.380701,0.075520 +1.959203,0.454626,-0.029069 +1.532409,2.361072,0.089106 +0.414238,1.592070,0.061861 +1.515276,0.417581,0.049452 +1.537168,2.360225,0.045603 +1.035483,0.550927,-0.086676 +2.302612,1.536441,0.047619 +0.401683,1.265587,0.040986 +1.261129,2.356685,0.010435 +0.940683,0.475130,-0.010887 +2.195584,0.835202,-0.000478 +2.140490,0.831247,-0.029659 +2.274941,0.858477,-0.039249 +1.459795,2.417140,0.032973 +0.621287,2.102610,-0.041132 +1.792685,2.218526,-0.038701 +2.322329,1.623295,0.068896 +0.533625,1.118720,0.117770 +0.420106,1.589203,0.057925 +0.438135,1.867516,0.028606 +2.123338,0.704950,-0.064943 +2.226486,0.893118,0.001098 +0.413457,1.670123,-0.044528 +2.390162,1.667588,-0.044028 +2.196163,1.820249,-0.049374 +1.158907,2.318708,-0.054335 +2.021332,0.739518,0.041197 +0.845409,0.592656,-0.096311 +2.199013,1.770940,0.095143 +0.846582,2.192118,0.007431 +2.021769,0.680832,0.098582 +0.925474,0.492638,-0.096694 +1.984958,0.535403,-0.096620 +2.209907,0.820694,-0.007246 +1.014256,2.290078,0.042738 +1.279001,2.450542,-0.019646 +0.591576,1.150810,-0.049683 +1.343553,2.388398,-0.094574 +2.408316,1.169875,0.008892 +1.076991,2.347612,0.033250 +1.589513,2.338737,-0.008267 +0.430417,1.720282,-0.039324 +2.235479,1.986064,0.123712 +1.204736,2.320366,-0.020169 +1.664915,0.492947,-0.090133 +2.294831,1.118775,0.037562 +0.854911,0.685775,0.029139 +1.792589,2.361459,-0.062948 +1.516687,0.448098,-0.055312 +2.372325,1.188436,0.013647 +2.451085,1.477175,0.010725 +1.312899,2.403954,-0.032792 +1.357786,0.544493,0.010020 +0.836978,0.552182,0.056104 +1.473226,0.442698,0.011819 +0.461318,1.375834,0.015570 +0.394190,1.480612,-0.049727 +0.484206,0.915315,-0.095775 +0.527763,1.744188,-0.025932 +0.703723,2.131129,-0.018901 +0.606140,0.783813,-0.024587 +2.356981,1.428070,-0.115742 +2.197703,1.961996,0.023034 +2.249790,1.004387,-0.005630 +0.845947,2.208425,-0.065092 +0.390902,1.261352,-0.066043 +2.300502,1.825278,-0.021218 +0.579683,1.625990,0.024737 +2.148008,0.816119,0.047893 +0.369635,1.334201,-0.049240 +-1.050631,0.213458,1.369530 +0.758258,0.551085,1.355885 +0.574235,0.899267,1.392204 +0.239706,-1.036133,1.310084 +-0.646575,-0.750559,1.416804 +-0.917476,-0.452876,1.298953 +-0.536774,0.835958,1.508551 +0.588197,-0.860864,1.397210 +0.666518,-0.705060,1.401479 +0.087137,0.897722,1.414460 +-0.405682,0.880671,1.444731 +0.900032,-0.521153,1.355203 +0.464732,-0.824618,1.429144 +-0.729360,0.611984,1.388871 +0.898297,-0.428603,1.464238 +0.621017,-0.659632,1.395628 +-0.262814,1.019234,1.360152 +0.043154,-0.896344,1.455549 +-0.812731,0.556770,1.390943 +-0.425861,0.888447,1.358775 +-0.805974,-0.653371,1.396927 +0.797715,0.505326,1.385204 +-0.033604,-0.973731,1.366545 +-0.941110,0.190758,1.376191 +-0.483265,0.953210,1.384569 +-0.233533,1.049148,1.359370 +-1.036961,0.539202,1.381192 +-0.556682,0.828363,1.377185 +-0.635761,-0.698312,1.470598 +-0.508645,-0.861336,1.378530 +0.991182,0.324115,1.454824 +0.829943,0.545463,1.432122 +-0.177553,0.925267,1.355655 +-0.720364,0.743528,1.469244 +-0.074583,-1.032854,1.380318 +-0.948405,-0.154379,1.376365 +-0.531650,-0.864419,1.391123 +-0.433120,-0.932028,1.461985 +0.370511,-0.951118,1.468874 +-0.724801,0.721384,1.422096 +-0.792098,0.593751,1.445736 +1.059490,-0.034478,1.334799 +0.439895,0.910090,1.358473 +0.719656,0.730259,1.429726 +-0.784559,-0.591352,1.407692 +0.956175,-0.195376,1.422563 +0.608369,0.714502,1.446594 +0.800665,0.649650,1.322836 +-0.228082,-1.014416,1.346352 +-0.931601,0.523161,1.407885 +-0.948371,-0.526354,1.305325 +0.631806,-0.784964,1.387677 +0.862718,0.151392,1.456525 +-0.595291,-0.833163,1.355923 +-0.907725,-0.501027,1.332913 +-0.568787,0.752505,1.393227 +-0.221418,-0.951939,1.422017 +-1.039321,-0.012587,1.366430 +0.757708,-0.735697,1.415099 +-1.045815,0.175452,1.325327 +0.475895,-0.857819,1.507497 +-0.891178,0.069290,1.362919 +0.471863,0.831372,1.408911 +0.973202,0.418213,1.389142 +0.484572,0.852471,1.429537 +-0.854978,-0.536813,1.420818 +0.252474,1.012283,1.313628 +0.882310,-0.353591,1.320621 +-0.973434,0.288412,1.472033 +-0.417940,-0.848208,1.416592 +-0.060872,1.006861,1.440118 +-0.595675,-0.757388,1.309387 +0.273645,-0.947729,1.271415 +0.377722,0.993125,1.365038 +-0.905359,-0.479280,1.338750 +-0.973757,-0.439275,1.406275 +0.718691,0.794566,1.457473 +-0.338695,-0.884752,1.363095 +-1.100148,-0.036912,1.355656 +-0.975640,-0.391504,1.374639 +1.032128,0.157130,1.305106 +-0.820936,0.617782,1.442116 +0.114061,0.952289,1.439420 +0.970356,-0.398180,1.355108 +0.975159,-0.291821,1.386744 +-0.919189,0.504865,1.413743 +0.395701,-0.867383,1.425244 +0.397923,0.962045,1.425612 +1.094242,-0.291961,1.438373 +-0.322765,0.935430,1.385766 +0.786697,0.666089,1.463491 +-0.262004,-0.985753,1.382023 +-1.072268,0.059956,1.370235 +0.562251,0.875952,1.416705 +0.934421,0.295409,1.346731 +1.077353,-0.181113,1.461890 +0.355161,-0.982890,1.423293 +0.984763,0.123735,1.389799 +0.693625,0.722664,1.382134 +-0.818552,-0.471651,1.299127 +1.019705,0.111400,1.364764 +0.520544,0.881034,1.439849 +-0.238459,-0.908482,1.469786 +-0.111534,-1.017729,1.427194 +-0.932838,-0.323851,1.313681 +-0.298634,-0.978445,1.416392 +0.886059,0.366549,1.408372 +-0.293905,0.950156,1.341352 +-0.904571,-0.331268,1.369881 +-0.204648,-0.986598,1.344954 +0.543402,-0.898701,1.494853 +0.883171,0.007414,1.478617 +0.949060,-0.071547,1.377833 +0.056501,-0.982108,1.328752 +-0.593889,0.837397,1.388170 +-0.805122,-0.604652,1.440164 +-0.483045,0.833651,1.347644 +0.217371,0.997444,1.443455 +0.379210,-0.968615,1.450537 +0.606984,0.780773,1.314754 +0.277677,1.006573,1.360605 +-0.923785,-0.376896,1.369233 +0.147010,-0.891849,1.335702 +0.224286,-0.924156,1.360318 +0.686563,0.714896,1.318518 +0.725080,0.731498,1.428746 +0.867685,-0.475535,1.431950 +-0.051626,-1.026165,1.484410 +-0.754681,0.599333,1.353637 +0.282626,0.922918,1.403342 +0.438560,-0.817120,1.470810 +0.125814,0.958379,1.356308 +-0.965795,0.178950,1.424367 +0.158428,-0.932061,1.337733 +0.230332,0.955926,1.394575 +-0.320582,-0.876255,1.476914 +1.018969,0.088057,1.386092 +-1.083100,-0.082749,1.382296 +-0.066284,1.032907,1.331508 +-0.559825,-0.775656,1.415974 +0.777085,-0.594734,1.459743 +0.821901,-0.718058,1.489886 +0.944145,-0.462377,1.334455 +0.089381,1.025710,1.319821 +-0.821781,0.759725,1.400908 +0.440945,0.820839,1.497465 +1.022544,0.295552,1.413650 +-0.882085,-0.355675,1.408943 +-0.944506,0.355026,1.417536 +-0.895145,0.512565,1.307797 +0.601315,-0.638823,1.379389 +0.812703,-0.516381,1.476836 +-0.911484,0.444782,1.427648 +0.985205,0.261911,1.329298 +0.970335,0.262647,1.367756 +-0.277730,0.916857,1.375153 +0.714073,-0.729434,1.362279 +-0.587910,-0.897316,1.438775 +0.847006,0.400886,1.405543 +-0.613280,0.823486,1.395965 +0.686610,-0.597862,1.400362 +-0.442178,-0.905981,1.437945 +0.428982,-0.886156,1.333545 +0.827468,-0.440266,1.366322 +-0.357644,1.001204,1.398483 +-0.070676,1.021324,1.406404 +-0.934649,-0.116947,1.364950 +-0.052756,0.944015,1.454694 +1.054230,-0.154870,1.282519 +-0.285802,0.998715,1.396330 +0.072710,0.969243,1.455775 +-0.910901,0.400380,1.408749 +0.818995,0.638128,1.348956 +-0.197625,1.019450,1.463533 +0.331903,-1.004145,1.355378 +0.944650,-0.238269,1.393277 +-0.674712,-0.852290,1.284581 +0.225577,0.910507,1.527613 +0.316966,-1.029719,1.408245 +0.895365,-0.290309,1.334139 +0.987104,0.021375,1.413899 +-0.026314,0.979498,1.401991 +-0.091570,-1.073454,1.317557 +-0.552077,-0.827602,1.297088 +0.027941,-1.068192,1.491321 +-1.027397,-0.056625,1.459893 +-1.052028,0.035593,1.430441 +-0.869952,-0.461893,1.326870 +-0.887283,0.370409,1.419220 +-0.633948,0.765753,1.419180 +-0.754838,-0.575044,1.482253 +0.997634,-0.022393,1.451264 +0.782046,0.514346,1.427128 +0.918445,-0.434539,1.427530 +-0.534195,0.700519,1.456228 +-1.121826,-0.209397,1.501228 +0.886769,0.430726,1.441958 +-1.062989,0.252655,1.403532 +0.892583,-0.680873,1.379015 +-1.049086,-0.119683,1.462007 diff --git a/06-clustering/demo/clustering_demo.py b/06-clustering/demo/clustering_demo.py index a770258..17dafe8 100644 --- a/06-clustering/demo/clustering_demo.py +++ b/06-clustering/demo/clustering_demo.py @@ -32,13 +32,12 @@ from sklearn.metrics import confusion_matrix from scipy.optimize import linear_sum_assignment # # Install these with from terminal with: -# mamba install hdbscan scikit-learn-extra -# pip install hdbscan scikit-learn-extra +# mamba install hdbscan +# pip install hdbscan # # Install these with from this script with: -# !mamba install -y hdbscan scikit-learn-extra -# !pip install hdbscan scikit-learn-extra +# !mamba install -y hdbscan +# !pip install hdbscan -from sklearn_extra.cluster import CommonNNClustering # from sklearn.cluster import HDBSCAN # does not have soft clustering and tree plot from hdbscan import HDBSCAN import hdbscan @@ -188,6 +187,7 @@ fig_dbscan = plt.figure('DBSCAN', figsize=(8, 8)) ax_dbscan = fig_dbscan.add_subplot(2, 1, 1) sc_dbscan = ax_dbscan.scatter(*X.T, alpha=0.8) sc_dbscan.set_edgecolor(cm((y + 1) % cm.N)) +ax_dbscan.set_title('DBSCAN') ax_dbscan.set_xticks([]) ax_dbscan.set_yticks([]) @@ -204,14 +204,11 @@ dbscan_samples_slider = Slider(ax=ax_dbscan_samples_slider, label='min_samples', ax_dbscan_show = fig_dbscan.add_axes([0.99 - 0.3, 0.95 - 0.05, 0.3, 0.05]) dbscan_show_button = CheckButtons(ax=ax_dbscan_show, labels=['Show Ground Truth']) -ax_dbscan_button = fig_dbscan.add_axes([0.99 - 0.25, 0.95 - 0.05 - 0.05, 0.25, 0.05]) -dbscan_button = CheckButtons(ax=ax_dbscan_button, labels=['DBSCAN / CNNC']) - ax_dbscan_bars = fig_dbscan.add_subplot(2, 1, 2) ax_dbscan_bars.bar([0,1], [0, 1]) ax_dbscan_bars.set_xticks([]) -# merge small clusters to the nearest large cluster (useful for CommonNNClustering) +# merge small clusters to the nearest large cluster (was useful for CommonNNClustering) def merge_small_clusters(X, labels, limit=15, inplace=False): noise_labels = labels == -1 clusters, counts = np.unique(labels[~noise_labels], return_counts=True) @@ -236,14 +233,7 @@ def merge_small_clusters(X, labels, limit=15, inplace=False): def update_dbscan(val=None): - if dbscan_button.get_status()[0]: - alg = CommonNNClustering(eps=dbscan_eps_slider.val, min_samples=int(dbscan_samples_slider.val)) - alg_name = 'Common Nearest Neighbor Clustering' - else: - alg = DBSCAN(eps=dbscan_eps_slider.val, min_samples=int(dbscan_samples_slider.val)) - alg_name = 'DBSCAN' - - ax_dbscan.set_title(alg_name) + alg = DBSCAN(eps=dbscan_eps_slider.val, min_samples=int(dbscan_samples_slider.val)) labels = alg.fit_predict(X) merge_small_clusters(X, labels, inplace=True) matched_labels = match_labels(labels) @@ -261,7 +251,6 @@ def update_dbscan(val=None): dbscan_eps_slider.on_changed(update_dbscan) dbscan_samples_slider.on_changed(update_dbscan) -dbscan_button.on_clicked(update_dbscan) dbscan_show_button.on_clicked(update_dbscan) update_dbscan() plt.show() diff --git a/06-clustering/solutions/04-chain-clusters-sol.ipynb b/06-clustering/solutions/04-chain-clusters-sol.ipynb new file mode 100644 index 0000000..1d9d4af --- /dev/null +++ b/06-clustering/solutions/04-chain-clusters-sol.ipynb @@ -0,0 +1,240 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Kettenglied Cluster\n", + "\n", + "Im Startcode werden die Kettenglied-Daten geladen.\n", + "\n", + "- Versuchen Sie mit einem Plot über $\\varepsilon$ herauszukriegen, wie\n", + " viele Cluster es gibt\n", + "- Clustern Sie die Daten anschließend mit `DBSCAN` mit den gefundenen\n", + " Parametern. Speichern Sie die Labels in `labels`.\n", + "\n", + "Hier ist Ihr Startcode" + ], + "id": "0003-63fa5c481c78bbdf737c04550a38235a19937a13865b411b2a2f4b0f35b" + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "style": "python" + }, + "outputs": [], + "source": [ + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "import pandas as pd\n", + "import seaborn as sns\n", + "\n", + "from sklearn.cluster import DBSCAN, HDBSCAN\n", + "from plotly import graph_objects as go\n", + "\n", + "X = np.loadtxt('chain.csv', delimiter=',')" + ], + "id": "0004-172ec8d8337c3342d2de94c7d0b95e0d58501261b0b2b053c81d4df3ebb" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Lösung\n", + "\n", + "Zunächst definieren wir die Bereiche für die Parameter `eps` und\n", + "`min_samples`. Für jede Kombination von `eps` und `min_samples` führen\n", + "wir `DBSCAN` aus und speichern die Anzahl der gefundenen Cluster\n", + "zusammen mit `eps` und `min_samples` in einer Liste. Diese Liste wandeln\n", + "wir anschließend in ein DataFrame um." + ], + "id": "0006-1e1baaf19132e8389263dc7101c2161704a6858a2a3509b8b9784e04a23" + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "style": "python" + }, + "outputs": [], + "source": [ + "min_samples_range = np.arange(2, 10)\n", + "eps_range = np.arange(0.16, 0.39, 0.02)\n", + "records = []\n", + "for min_samples in min_samples_range:\n", + " for eps in eps_range:\n", + " clusterer = DBSCAN(eps=eps, min_samples=min_samples)\n", + " labels = clusterer.fit_predict(X)\n", + " noise_lvl = np.mean(labels < 0)\n", + " n_clusters = labels.max() + 1\n", + "\n", + " records.append((min_samples, eps, n_clusters, noise_lvl))\n", + "\n", + "df = pd.DataFrame.from_records(records, columns=['min_samples', 'eps', 'n_clusters', 'noise_lvl'])" + ], + "id": "0007-03594f919e9a4e5881b9b1e6714a3597c78e3e46cebe932b3748e93124f" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Dann lässt sich das z. B. mit Seaborns `lineplot` plotten. Wir\n", + "verschieben die y-Achse um den Wert von `min_samples` und multiplizieren\n", + "mit einem Faktor, damit die Kurven nicht übereinander liegen. Außerdem\n", + "setzen wir die Grenzen der x- und y-Achse, damit wir uns auf den\n", + "interessanten Bereich konzentrieren." + ], + "id": "0008-1c28662b4a9b50bbbcf045db605e433969f0abb64225270c4c3d8df12b3" + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "style": "python" + }, + "outputs": [], + "source": [ + "plt.figure()\n", + "df_plt = df.copy()\n", + "df_plt['n_clusters'] = df_plt['n_clusters'] + (df_plt['min_samples'] - 5.5) * 0.07\n", + "ax = sns.lineplot(df_plt, x='eps', y='n_clusters', hue='min_samples', palette='rainbow', legend='full')\n", + "ax.set_ylim(bottom=0, top=25) # zoom in y-Achse\n", + "ax.set_xlim(left=0.16, right=0.38) # zoom in x-Achse" + ], + "id": "0009-18c3413612249d6d54e5becb70cce1c4583afe097ca75b232a62eadb882" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Alternativ lassen sich die Daten auch als Heatmap darstellen. Hierbei\n", + "ist `vmax` auf 25 gesetzt, damit die Ausreißer die Farben nicht\n", + "beeinflussen. Außerdem setzen wir `annot=True`, damit die Anzahl der\n", + "Cluster in die Zellen geschrieben wird." + ], + "id": "0010-e08d4bcdda9e99f64a3fde59e80ff5c65cfce2c7645844a3edf9115ae2d" + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "style": "python" + }, + "outputs": [], + "source": [ + "df_clusters = df.pivot(index='eps', columns='min_samples', values='n_clusters')\n", + "\n", + "plt.figure()\n", + "sns.heatmap(df_clusters, vmax=25, annot=True, fmt='d', cbar_kws={'label': 'n_clusters'}, yticklabels=df_clusters.index.values.round(2))" + ], + "id": "0011-dfcc852ce6bddb3c8367b16667188a4905ce5926e84840a6a47458df55d" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Wir sehen, dass ein `eps` zwischen 0.22 und 0.32 gewählt werden kann und\n", + "wir 18 Cluster erhalten sollten. Wir wählen `eps=0.32` um möglichst\n", + "wenig Rauschen zu erhalten und `min_samples=5` und führen `DBSCAN` aus.\n", + "Die Labels werden in der Variable `labels` gespeichert." + ], + "id": "0012-11a2a41b09d2c97379afb6ee828f545b345a9f604a9e223c2274921b3ce" + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "style": "python" + }, + "outputs": [], + "source": [ + "clusterer = DBSCAN(eps=0.32, min_samples=5)\n", + "labels = clusterer.fit_predict(X)" + ], + "id": "0013-a4adbdcc1b97ce2d982515e21498cee223de6225681964c629986667b42" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Alternativ können wir auch `HDBSCAN` verwenden. Hierbei ist die Wahl von\n", + "`min_samples` nicht so wichtig, da `HDBSCAN` die Parameter automatisch\n", + "anpasst. Wir verwenden hier den Standardwert von 5. In der Tat erhalten\n", + "wir mit `HDBSCAN` ohne Einstellung der Parameter die gleiche Anzahl an\n", + "Clustern wie mit `DBSCAN`." + ], + "id": "0014-93102c00a0113d350231e3596456f2b8581bfdade70ec4ad4e642129496" + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "style": "python" + }, + "outputs": [], + "source": [ + "clusterer = HDBSCAN()\n", + "labels = clusterer.fit_predict(X)" + ], + "id": "0015-10e195334248e3113087be5a111beaf458fbde346a80448174f3230cea8" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Tests\n", + "\n", + "Wir geben hier die Anzahl gefundener Cluster und den Anteil an Rauschen\n", + "aus." + ], + "id": "0017-d062c7158819e9aa5c6c8293c56a7e567d66fc80cdc9e14a22c7dbcbf3f" + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "n_clusters: 18, noise_lvl: 0.0%" + ] + } + ], + "source": [ + "noise_lvl = np.mean(labels < 0)\n", + "n_clusters = labels.max() + 1\n", + "print(f'n_clusters: {n_clusters}, noise_lvl: {noise_lvl:.1%}')" + ], + "id": "0018-e7e44b3c247a9f8e162855e55d1ae41b0da010167820ecc81de8d505942" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Außerdem plotten wir die Daten mit den gefundenen Labels." + ], + "id": "0019-02aa760645262825d3fe0fac5bed63b93cdb9024bd5568fbd9c82870756" + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "style": "python" + }, + "outputs": [], + "source": [ + "fig = go.Figure(data=[\n", + " go.Scatter3d(x=X[:, 0], y=X[:, 1], z=X[:, 2], marker=dict(size=3, color=labels), mode='markers', hovertemplate='label: %{marker.color}<br>x: %{x}<br>y: %{y}<br>z: %{z}<extra></extra>')\n", + "])\n", + "fig.show()" + ], + "id": "0020-b26d9437b5037dc028a307b8f9e18e3423e9bdd9d750ce887210662533a" + } + ], + "nbformat": 4, + "nbformat_minor": 5, + "metadata": {} +} diff --git a/06-clustering/solutions/04-knn_consistency-sol.ipynb b/06-clustering/solutions/05-knn-consistency-sol.ipynb similarity index 100% rename from 06-clustering/solutions/04-knn_consistency-sol.ipynb rename to 06-clustering/solutions/05-knn-consistency-sol.ipynb diff --git a/06-clustering/solutions/chain.csv b/06-clustering/solutions/chain.csv new file mode 100644 index 0000000..28dd32f --- /dev/null +++ b/06-clustering/solutions/chain.csv @@ -0,0 +1,3600 @@ +0.016759,-2.444887,-1.202291 +0.051731,-0.616300,-1.017629 +0.007031,-0.829608,-0.591907 +-0.046917,-1.102943,-2.325805 +0.003632,-1.975426,-2.144800 +-0.047261,-2.270725,-1.906729 +0.048315,-1.964829,-0.583087 +-0.037451,-0.744975,-2.217516 +-0.023558,-0.734820,-2.099692 +0.020099,-1.220865,-0.388617 +0.117791,-1.904107,-0.551867 +-0.044758,-0.521793,-1.873733 +-0.006267,-0.992218,-2.336353 +0.035783,-2.129634,-0.732703 +-0.036603,-0.482404,-1.819362 +0.012028,-0.601960,-2.049014 +0.037340,-1.583664,-0.401811 +0.034721,-1.417353,-2.415609 +-0.025870,-2.279466,-0.879306 +0.082222,-1.983448,-0.502417 +-0.092558,-2.147387,-2.075596 +0.032242,-0.484576,-0.874612 +-0.019180,-1.488220,-2.350838 +-0.010522,-2.446080,-1.244188 +-0.050570,-1.826647,-0.501160 +0.037977,-1.732516,-0.440224 +0.034407,-2.293321,-0.893124 +-0.036406,-1.929009,-0.560254 +-0.065771,-2.080323,-2.132924 +0.000687,-1.909386,-2.219769 +0.036596,-0.445123,-1.144290 +-0.004385,-0.648475,-0.943764 +-0.072748,-1.611283,-0.390324 +-0.049801,-2.127906,-0.621436 +-0.019595,-1.359437,-2.451349 +-0.011299,-2.444366,-1.543980 +0.046217,-1.948993,-2.267113 +0.013075,-1.829826,-2.397288 +0.003967,-1.003343,-2.292030 +0.001202,-2.040871,-0.728617 +-0.056292,-2.180295,-0.774993 +0.074755,-0.358507,-1.474480 +0.080482,-1.097257,-0.505410 +-0.050962,-0.692471,-0.791171 +0.034933,-2.182735,-2.118318 +-0.055857,-0.395068,-1.510338 +0.109820,-0.626831,-0.587052 +-0.054425,-0.690182,-0.823192 +-0.044712,-1.640988,-2.409582 +-0.007743,-2.246198,-0.965583 +-0.008725,-2.361788,-1.917887 +-0.026747,-0.741646,-2.052875 +0.007165,-0.358261,-1.271027 +-0.065172,-2.137629,-2.168856 +0.117066,-2.305918,-1.862925 +-0.049661,-2.010075,-0.628717 +-0.008615,-1.711259,-2.387070 +0.024534,-2.423051,-1.404618 +-0.070287,-0.753084,-2.083663 +0.008800,-2.398640,-1.258946 +0.071830,-0.825851,-2.249682 +0.060846,-2.371980,-1.221425 +0.010078,-0.905262,-0.648168 +0.090801,-0.375422,-1.041749 +-0.021075,-0.865630,-0.569881 +-0.049210,-2.191698,-1.983787 +-0.000282,-1.160299,-0.412850 +0.077412,-0.454137,-1.703321 +-0.112759,-2.353736,-1.137361 +-0.067035,-1.874078,-2.323204 +0.050375,-1.504362,-0.398809 +-0.026629,-2.079334,-2.094959 +0.029596,-0.958319,-2.338274 +-0.038277,-1.133321,-0.426369 +0.009712,-2.303969,-1.930850 +0.012553,-2.179294,-1.693921 +-0.046928,-0.731259,-0.751521 +-0.032489,-1.721380,-2.274559 +-0.040100,-2.435978,-1.518101 +-0.008947,-2.399314,-1.767857 +-0.048227,-0.407158,-1.433885 +-0.080687,-2.033002,-0.809496 +-0.060323,-1.173637,-0.248107 +-0.064436,-0.502499,-1.778362 +0.095078,-0.493983,-1.692481 +0.042754,-2.267094,-0.966698 +-0.007360,-1.136881,-2.353980 +-0.014651,-0.961451,-0.525716 +0.025935,-0.393244,-1.700468 +0.019347,-1.735814,-0.459115 +-0.039686,-0.612080,-0.767927 +0.115124,-1.592457,-2.339072 +-0.041968,-2.460689,-1.365898 +0.014451,-0.864551,-0.635210 +0.051009,-0.434126,-1.122336 +-0.025934,-0.403208,-1.584496 +-0.016069,-1.126701,-2.374152 +0.008391,-0.336781,-1.353785 +-0.013027,-0.728980,-0.633609 +-0.020455,-2.305637,-1.969746 +0.095004,-0.492248,-1.227156 +-0.018069,-0.867546,-0.613581 +-0.018395,-1.577187,-2.336537 +0.095277,-1.491677,-2.363539 +0.095916,-2.336149,-1.633452 +-0.016311,-1.583721,-2.420646 +0.054427,-0.513750,-1.047954 +-0.010486,-1.703706,-0.428926 +0.100136,-2.289584,-1.854587 +-0.003682,-1.589794,-2.420620 +0.083118,-0.883182,-2.314748 +-0.055754,-0.398197,-1.466911 +-0.036913,-0.384813,-1.399248 +0.033482,-1.431913,-2.378822 +0.003962,-1.965021,-0.502091 +-0.113478,-2.182622,-2.028812 +-0.086988,-1.744602,-0.474913 +0.046562,-1.244021,-0.372956 +0.058766,-0.990044,-2.304863 +0.014869,-0.810060,-0.637601 +-0.008389,-1.069896,-0.393953 +-0.058219,-2.375459,-1.567210 +-0.040897,-1.288789,-2.376562 +0.046441,-1.211990,-2.309194 +0.047124,-0.646593,-0.662417 +0.128021,-0.661173,-0.848882 +0.088234,-0.548867,-1.875820 +0.072025,-1.582233,-2.464403 +-0.088070,-2.270758,-0.813737 +0.028830,-1.046067,-0.536821 +-0.127056,-0.861184,-2.270276 +0.025266,-1.267284,-0.396835 +0.041807,-2.369681,-1.183465 +-0.038757,-1.284545,-2.381292 +0.045129,-1.203513,-0.395419 +-0.014621,-1.774589,-2.284153 +-0.109618,-0.475744,-1.387412 +-0.128349,-2.424993,-1.515216 +-0.015669,-1.483230,-0.344531 +0.073023,-1.912844,-2.186295 +0.005067,-0.637040,-2.020477 +-0.081430,-0.678334,-2.057115 +0.044197,-0.414351,-1.930010 +0.021606,-1.425819,-0.374385 +-0.007210,-2.309717,-0.761158 +-0.033275,-0.947611,-0.582530 +-0.035986,-0.400549,-1.192265 +0.018076,-2.331151,-1.636381 +-0.018853,-2.441521,-1.062312 +-0.018232,-2.199439,-0.869873 +-0.007213,-0.651849,-1.977241 +0.114234,-0.569103,-1.953273 +0.059193,-2.387392,-1.042943 +-0.001422,-0.414152,-1.197145 +-0.087426,-0.596259,-1.064308 +-0.025227,-1.695117,-0.333159 +0.060830,-0.840008,-2.171031 +-0.022389,-1.977723,-2.216888 +0.034054,-0.557917,-0.832447 +-0.062807,-2.037075,-0.486615 +0.012269,-0.614066,-2.102073 +0.031943,-1.884877,-2.285679 +-0.042872,-0.867292,-2.307577 +0.036607,-0.479567,-1.888882 +-0.015744,-1.772180,-0.499222 +0.051455,-1.626061,-0.426344 +-0.109495,-2.458145,-1.543131 +0.049235,-1.439571,-0.482638 +-0.163049,-0.437778,-1.392210 +0.023919,-1.679466,-0.405837 +-0.085853,-1.353562,-0.396502 +-0.004736,-2.286282,-1.012920 +0.036758,-0.647705,-0.737713 +0.089592,-1.671501,-0.472906 +0.073468,-1.101507,-2.273846 +-0.024339,-0.351389,-1.641458 +0.014203,-1.926848,-2.210052 +-0.051762,-1.027523,-0.457367 +-0.086117,-1.146796,-2.405549 +0.063130,-0.555768,-1.661404 +-0.092756,-0.445936,-1.354968 +-0.009857,-1.476726,-0.410728 +0.011186,-1.486880,-2.360630 +0.036447,-1.966608,-2.178408 +0.016303,-1.256660,-2.404297 +-0.016890,-2.437006,-1.550883 +-0.068446,-2.448390,-1.372477 +0.018386,-2.273494,-1.923858 +0.049510,-2.277087,-1.011633 +-0.035910,-2.054384,-0.660693 +-0.079647,-2.193894,-1.998495 +-0.049483,-0.390052,-1.511426 +0.073490,-0.522346,-0.826103 +0.019990,-0.602769,-1.831724 +-0.016158,-2.071874,-0.570553 +0.109851,-2.447001,-1.633442 +0.012950,-0.406562,-1.041451 +0.013697,-2.268412,-1.242157 +-0.070459,-0.633143,-2.041539 +0.044693,-2.384735,-1.560413 +0.028348,-2.419453,1.626529 +-0.034517,-0.544007,1.883753 +0.041961,-0.787569,2.116309 +0.029592,-1.208197,0.444357 +-0.078305,-2.012876,0.585124 +-0.070545,-2.251746,0.959300 +-0.033769,-1.882269,2.202845 +0.001766,-0.797425,0.556901 +0.025912,-0.744793,0.648391 +0.074945,-1.300798,2.254985 +0.088602,-1.741541,2.254017 +-0.106526,-0.572749,0.848431 +-0.010446,-1.007246,0.540869 +0.028848,-2.252706,2.075880 +0.112898,-0.485715,0.955668 +-0.007810,-0.616050,0.643501 +0.009041,-1.608857,2.483918 +-0.009580,-1.245476,0.341268 +0.032299,-2.226761,1.888029 +0.009757,-1.869138,2.226519 +-0.093058,-2.129935,0.665820 +-0.018829,-0.528181,1.787943 +-0.088861,-1.436277,0.373224 +-0.141061,-2.332750,1.633124 +-0.039263,-1.926416,2.336976 +0.019214,-1.577974,2.374167 +0.021324,-2.285488,1.926676 +0.034380,-1.840197,2.232069 +-0.023947,-2.133457,0.736387 +0.082411,-1.961063,0.532310 +0.017274,-0.453223,1.731354 +-0.123848,-0.601141,1.892794 +-0.127620,-1.609435,2.337355 +-0.011061,-2.045894,2.093628 +-0.056695,-1.403132,0.457705 +-0.053678,-2.442196,1.305387 +-0.012184,-1.818379,0.508243 +0.038592,-1.854077,0.481581 +-0.011588,-1.041095,0.409182 +0.037716,-2.148271,2.028322 +-0.005290,-2.128114,1.887466 +-0.082315,-0.455197,1.386257 +0.015542,-0.989673,2.267068 +-0.061574,-0.646402,2.087752 +0.030181,-2.180835,0.777874 +0.008697,-0.369534,1.287951 +-0.089093,-0.910693,2.245251 +0.065325,-0.629054,1.859792 +0.005447,-1.566947,0.522951 +0.028396,-2.325271,1.776657 +0.000630,-2.321287,0.918392 +0.112682,-0.640504,0.712372 +-0.050647,-0.365286,1.591614 +0.024340,-2.015816,0.705977 +0.040701,-2.225712,0.909702 +-0.098099,-2.056713,2.119521 +-0.070391,-1.616517,0.544038 +0.074757,-2.383990,1.537075 +0.000663,-0.751422,0.569346 +0.021835,-2.388793,1.453687 +-0.002816,-0.842302,0.671785 +0.049182,-2.394932,1.507792 +0.002432,-0.849077,2.167547 +-0.008308,-0.511259,1.699357 +0.028117,-0.924490,2.192738 +-0.006748,-2.172317,0.896174 +0.056421,-1.149170,2.322106 +-0.059603,-0.440166,1.082122 +0.070803,-2.290558,1.701744 +-0.068431,-1.843330,0.507121 +-0.011115,-1.463195,2.413415 +-0.027718,-2.095855,0.667019 +-0.022110,-1.018450,0.485250 +-0.062669,-1.147477,2.439371 +-0.063914,-2.360744,0.761772 +0.001601,-2.316054,0.996384 +0.066780,-0.862459,2.150745 +0.085879,-1.800766,0.438230 +-0.041409,-2.449189,1.382056 +0.078512,-2.239825,1.042785 +0.104778,-0.400017,1.559244 +-0.005131,-2.142903,2.081413 +0.174837,-1.227846,2.353215 +0.053295,-0.502146,0.975916 +0.049973,-0.437997,1.136331 +0.000769,-2.272494,1.877364 +-0.106533,-1.024601,0.405108 +-0.079326,-0.977433,2.309446 +-0.038143,-0.403237,1.017163 +-0.022382,-1.770906,2.338318 +0.015338,-0.684921,2.077260 +0.003465,-1.783048,0.331984 +-0.000678,-2.411660,1.362901 +-0.001539,-0.878553,2.312863 +-0.061111,-0.523578,1.678605 +0.015890,-0.349241,1.188895 +-0.137593,-1.214729,0.393889 +-0.030675,-0.440174,1.589503 +-0.017146,-0.680974,2.112930 +-0.047427,-2.182679,0.727754 +0.021433,-0.402245,1.517224 +0.087355,-0.898395,2.357644 +-0.012399,-1.718926,0.435262 +-0.059193,-1.597781,0.434148 +0.030557,-2.394513,1.175316 +0.063663,-1.508385,0.446830 +0.074989,-0.552387,1.691532 +-0.047685,-1.761567,2.298347 +-0.009139,-2.226257,1.022541 +0.022759,-1.538108,0.412050 +0.000331,-0.893589,0.587785 +0.090607,-0.382971,1.432425 +-0.063298,-0.406806,1.388925 +0.047628,-1.294253,0.453190 +0.026992,-1.921768,2.224932 +-0.019563,-2.131640,0.577505 +0.021059,-2.026442,2.210037 +0.024847,-1.186355,2.318354 +-0.039166,-0.927472,0.455624 +0.123361,-0.762682,2.192955 +0.088928,-1.083777,2.295928 +-0.006035,-2.370542,1.076249 +-0.014071,-1.284386,0.463151 +0.001904,-1.228172,0.411873 +0.012272,-0.658968,2.052123 +-0.057287,-0.589132,2.038633 +-0.077926,-0.499284,0.943732 +-0.084189,-1.481487,0.444895 +0.020591,-2.192322,1.884849 +0.018207,-1.077906,2.314327 +0.047881,-0.782813,0.654362 +0.072314,-1.311927,2.414962 +0.042175,-2.375622,1.594573 +0.045306,-1.277927,0.367775 +-0.022796,-1.146992,2.376081 +0.018712,-1.731270,0.449607 +0.041594,-0.383602,1.426194 +0.079327,-2.415229,1.152535 +-0.057477,-1.550266,2.398431 +-0.015062,-1.927567,0.573342 +0.018693,-0.573600,0.834755 +0.033887,-0.745424,0.742532 +-0.119912,-0.507010,0.945755 +0.057504,-1.303269,2.410659 +-0.027520,-2.182333,1.958750 +-0.000077,-0.864009,2.245629 +0.044312,-0.386826,1.565630 +0.053564,-2.312635,1.096589 +-0.041928,-2.407550,1.649420 +0.029843,-2.313301,1.933105 +-0.068297,-0.682255,0.721484 +0.134482,-0.648672,0.918877 +0.008241,-2.318266,1.745247 +0.024460,-0.439870,1.728663 +-0.025106,-0.419972,1.761708 +-0.003314,-1.737949,2.385320 +0.079482,-0.791348,0.599016 +-0.061304,-1.974694,0.485316 +-0.050208,-0.526785,1.981587 +0.154507,-2.069686,2.249455 +0.013406,-0.701212,0.716686 +0.003405,-1.875682,0.501235 +-0.076896,-0.975858,0.575186 +-0.015219,-0.572043,0.891426 +0.043721,-1.787228,2.281672 +0.067446,-1.438478,2.419315 +0.053551,-2.307609,1.244012 +0.033775,-1.367091,2.428581 +-0.060354,-0.369346,1.200097 +-0.043703,-1.576994,2.414795 +0.081807,-1.352152,2.334653 +-0.013224,-2.324165,1.772469 +0.062352,-0.629715,2.032269 +-0.054374,-1.593376,2.376088 +-0.041240,-1.103954,0.438814 +-0.014859,-0.333993,1.145896 +-0.013414,-2.128267,0.560664 +-0.014469,-1.040574,2.393749 +-0.009072,-1.110992,0.427477 +0.002048,-0.428967,1.182066 +0.094534,-0.528072,1.321326 +-0.029874,-1.461991,2.435982 +0.026020,-1.452544,0.456541 +0.056661,-1.977662,0.643929 +0.014995,-1.399471,0.438873 +0.006084,-2.395488,1.386904 +-0.134798,-2.477479,1.366122 +-0.019979,-2.290310,0.835343 +-0.054184,-2.365101,1.932306 +0.099096,-2.107193,2.108972 +-0.063206,-2.295102,0.780665 +-0.054882,-0.405160,1.280578 +-0.041909,-0.582809,2.007927 +0.022961,-0.542850,1.078883 +-0.044012,-1.978100,2.189570 +-0.075701,-2.399678,1.232714 +0.033713,-0.502927,1.910027 +0.055413,-2.382699,1.689947 +0.106359,-0.502018,0.719553 +-0.050959,-2.316356,1.279004 +-1.472740,-1.014429,0.179547 +-1.405632,0.855226,0.416909 +-1.439179,0.539412,0.934507 +-1.383637,0.297462,-0.995482 +-1.410228,-0.676669,-0.916357 +-1.475791,-0.990591,-0.577729 +-1.465745,-0.489211,0.824637 +-1.329019,0.610389,-0.765976 +-1.449549,0.713364,-0.688889 +-1.431716,0.187209,1.018829 +-1.430225,-0.543506,0.811180 +-1.395242,0.862313,-0.579416 +-1.398538,0.485370,-0.857006 +-1.314647,-0.700279,0.582353 +-1.307403,0.875623,-0.368311 +-1.396261,0.727443,-0.760735 +-1.409436,-0.273147,1.035489 +-1.316576,0.018960,-0.981418 +-1.439897,-0.878895,0.578424 +-1.402120,-0.440146,0.817805 +-1.345037,-0.723611,-0.640779 +-1.424594,0.873581,0.475401 +-1.445983,-0.026376,-0.962263 +-1.367354,-0.891384,0.297857 +-1.420622,-0.433473,0.856708 +-1.398715,-0.342003,1.040160 +-1.379997,-0.888298,0.547403 +-1.519384,-0.619817,0.904513 +-1.396674,-0.693332,-0.780059 +-1.401278,-0.425634,-0.798997 +-1.390666,0.936146,0.257290 +-1.517106,0.858498,0.582328 +-1.486659,-0.192812,0.924028 +-1.453094,-0.704165,0.592465 +-1.366215,0.041462,-1.013811 +-1.536439,-1.046918,-0.057524 +-1.552790,-0.473104,-0.955907 +-1.355749,-0.434279,-0.895537 +-1.368900,0.526772,-0.915989 +-1.379318,-0.810647,0.750020 +-1.441828,-0.820996,0.611683 +-1.485959,1.008144,-0.040898 +-1.383889,0.280735,0.922967 +-1.359188,0.625679,0.625435 +-1.351790,-0.755658,-0.614766 +-1.297728,1.013459,-0.120251 +-1.250909,0.601148,0.746271 +-1.376471,0.851225,0.533114 +-1.456782,-0.091102,-0.957940 +-1.440276,-0.854451,0.419776 +-1.413908,-0.873902,-0.496833 +-1.380606,0.766524,-0.724471 +-1.420692,0.959798,0.133866 +-1.413968,-0.705326,-0.678571 +-1.495327,-0.813332,-0.529924 +-1.379268,-0.723296,0.823186 +-1.331490,-0.256240,-1.034368 +-1.354398,-0.975760,-0.025499 +-1.401336,0.657473,-0.739929 +-1.390251,-0.976097,0.206382 +-1.332568,0.404395,-0.844540 +-1.409056,-1.091927,0.099288 +-1.331318,0.502322,0.845583 +-1.450370,0.892821,0.449381 +-1.429841,0.479412,0.788090 +-1.297573,-0.793935,-0.572121 +-1.368345,0.171150,1.033622 +-1.417819,0.929657,-0.365779 +-1.431936,-0.912850,0.323092 +-1.364154,-0.426263,-0.876601 +-1.423037,0.091224,0.913270 +-1.330648,-0.586077,-0.796980 +-1.277390,0.422877,-0.876364 +-1.398459,0.267044,0.948776 +-1.378521,-0.767263,-0.525855 +-1.450129,-0.872411,-0.346485 +-1.363994,0.725550,0.714068 +-1.451094,-0.386489,-1.030831 +-1.386968,-1.004590,-0.024199 +-1.562559,-1.009483,-0.277092 +-1.436554,1.017859,-0.013697 +-1.320871,-0.758033,0.677264 +-1.272082,0.208737,0.975254 +-1.432627,0.899850,-0.369103 +-1.405787,0.938555,-0.198296 +-1.406282,-0.764529,0.458981 +-1.301807,0.358390,-0.887918 +-1.439854,0.378823,0.930111 +-1.345630,0.953271,-0.379769 +-1.474814,-0.417230,0.843662 +-1.393978,0.832391,0.636686 +-1.524323,-0.289483,-0.969248 +-1.284720,-1.079649,-0.052898 +-1.306178,0.533790,0.891724 +-1.393698,0.959028,0.381506 +-1.444522,1.030580,-0.262896 +-1.381940,0.288822,-0.994190 +-1.401248,0.948048,0.128438 +-1.419449,0.600592,0.767865 +-1.463255,-0.769858,-0.652767 +-1.431146,0.957762,0.198216 +-1.381834,0.524181,0.871757 +-1.515896,-0.251062,-0.858720 +-1.392721,-0.152699,-0.957541 +-1.350742,-1.070154,-0.371519 +-1.388434,-0.226700,-0.910126 +-1.417335,0.844657,0.239276 +-1.551232,-0.381001,0.919415 +-1.423345,-0.870438,-0.302206 +-1.409371,-0.242741,-0.958164 +-1.369455,0.498770,-0.822325 +-1.464066,1.110482,-0.052769 +-1.358793,0.905223,-0.113955 +-1.316600,0.079759,-0.949366 +-1.386967,-0.593558,0.884029 +-1.413016,-0.848052,-0.705490 +-1.369684,-0.404026,0.818639 +-1.439839,0.155387,0.962186 +-1.475675,0.362587,-0.957828 +-1.357566,0.681926,0.762494 +-1.421562,0.316713,0.906145 +-1.463076,-1.020295,-0.283605 +-1.463991,0.165348,-0.947554 +-1.487290,0.188763,-0.994384 +-1.381217,0.706395,0.627159 +-1.469431,0.751729,0.717895 +-1.521780,0.895322,-0.416324 +-1.408416,-0.063847,-1.034231 +-1.406565,-0.916231,0.433144 +-1.348148,0.284563,0.915827 +-1.476254,0.458278,-0.853889 +-1.440127,0.114897,1.020452 +-1.382353,-0.969164,0.274159 +-1.458718,0.122312,-0.929817 +-1.330450,0.139946,0.958737 +-1.325303,-0.340180,-0.919037 +-1.411973,0.974453,0.109960 +-1.413881,-0.990030,-0.152112 +-1.437294,-0.064841,1.155845 +-1.497734,-0.491221,-0.902552 +-1.368243,0.811578,-0.545883 +-1.335347,0.781096,-0.575161 +-1.528936,0.978481,-0.433362 +-1.340719,-0.035682,0.953814 +-1.391973,-0.809954,0.603354 +-1.340352,0.384667,0.929867 +-1.399544,0.964709,0.137232 +-1.372332,-1.083832,-0.273355 +-1.482066,-0.957354,0.272437 +-1.335675,-0.870568,0.470864 +-1.427863,0.798977,-0.655051 +-1.421210,0.814076,-0.648278 +-1.378634,-1.037671,0.380087 +-1.392926,1.099866,0.188182 +-1.405646,1.016660,0.462674 +-1.438292,-0.266673,0.960404 +-1.384492,0.574480,-0.795068 +-1.487893,-0.554652,-0.802329 +-1.412508,0.771914,0.563411 +-1.379951,-0.677355,0.755080 +-1.482537,0.650709,-0.736686 +-1.332437,-0.516926,-0.841095 +-1.429607,0.522679,-0.868519 +-1.351982,0.831327,-0.595530 +-1.476007,-0.426401,0.849056 +-1.377438,-0.150950,1.122718 +-1.495574,-0.964717,-0.280181 +-1.427137,0.007778,0.872105 +-1.386975,1.096775,-0.150272 +-1.385711,-0.192319,0.959566 +-1.431953,-0.062375,1.033281 +-1.406224,-0.985474,0.375087 +-1.432102,0.761092,0.646253 +-1.473611,-0.160541,0.899044 +-1.436449,0.414779,-0.889052 +-1.394632,0.916854,-0.277800 +-1.395970,-0.610843,-0.795153 +-1.401696,0.385357,0.838446 +-1.428408,0.268448,-1.051175 +-1.410426,0.930830,-0.212019 +-1.421375,1.080763,0.059273 +-1.472149,-0.025873,0.955421 +-1.431735,-0.014151,-1.026553 +-1.350893,-0.630383,-0.843059 +-1.436100,0.000301,-0.939051 +-1.365416,-0.901515,0.030612 +-1.456689,-0.995634,-0.033280 +-1.442768,-0.910961,-0.539897 +-1.457854,-0.925690,0.330228 +-1.353683,-0.735024,0.883495 +-1.424826,-0.786194,-0.684151 +-1.306165,1.061079,-0.015080 +-1.474074,0.820604,0.526107 +-1.319570,0.974282,-0.362875 +-1.534001,-0.666995,0.827982 +-1.333291,-0.921283,-0.274942 +-1.383415,0.960680,0.334571 +-1.400435,-0.953522,0.232148 +-1.501869,0.772242,-0.630909 +-1.408144,-1.029018,-0.087156 +-0.002184,0.436647,-1.260309 +-0.022531,2.296086,-1.051660 +0.026237,1.987754,-0.588800 +0.052840,1.541285,-2.477144 +0.015059,0.762185,-2.161154 +-0.025417,0.545533,-1.802695 +0.026619,0.823571,-0.688842 +0.042308,2.054980,-2.173566 +-0.048380,2.121606,-2.081639 +0.085735,1.508248,-0.424767 +0.041100,0.921404,-0.585146 +0.022804,2.276154,-1.930989 +0.012077,1.839762,-2.209701 +-0.049538,0.597184,-0.761972 +0.048342,2.222472,-1.897846 +-0.112075,2.151909,-2.122819 +-0.021150,1.248994,-0.452998 +0.012721,1.446327,-2.361060 +0.026132,0.517616,-0.873449 +0.057406,0.885809,-0.632505 +0.036059,0.611378,-2.006859 +0.056325,2.292250,-0.909599 +-0.011497,1.374528,-2.418420 +0.012956,0.472040,-1.212756 +-0.033891,0.880319,-0.567539 +-0.100562,1.131124,-0.349453 +0.078393,0.434259,-0.878379 +0.078216,0.865834,-0.533678 +-0.110434,0.707564,-2.165603 +0.010980,0.778307,-2.214471 +0.056348,2.317219,-1.183540 +-0.118581,2.229675,-0.896161 +-0.085306,1.268482,-0.437060 +-0.059165,0.662392,-0.633971 +0.033162,1.392849,-2.365949 +-0.063850,0.409666,-1.517231 +-0.025841,0.969960,-2.333930 +0.028040,1.033204,-2.478198 +0.065467,1.658160,-2.338710 +0.056394,0.653581,-0.796093 +-0.060156,0.666325,-0.892776 +0.062095,2.392531,-1.559690 +-0.032071,1.712177,-0.422581 +0.040284,2.034415,-0.737650 +-0.047475,0.700630,-2.111679 +0.088233,2.385857,-1.620341 +-0.037250,1.968818,-0.679949 +0.005215,2.159545,-0.957837 +-0.020882,1.082700,-2.417286 +-0.050001,0.447256,-0.864168 +0.003103,0.508668,-1.923481 +-0.035968,2.073154,-2.206460 +0.049943,2.321540,-1.259316 +-0.032233,0.724491,-2.164196 +-0.014899,0.526271,-1.949433 +0.026680,0.751799,-0.654763 +-0.023675,1.134793,-2.364027 +-0.016868,0.407731,-1.243897 +-0.073720,2.079766,-2.274638 +0.011950,0.494515,-1.247790 +0.009384,1.931259,-2.225373 +-0.013863,0.361209,-1.321835 +0.010911,1.919886,-0.617265 +-0.074813,2.351266,-1.001883 +0.012741,1.907075,-0.504161 +0.021561,0.589630,-1.967118 +-0.029195,1.770468,-0.456274 +-0.036623,2.364751,-1.724886 +-0.077264,0.510691,-1.096164 +-0.061101,1.039604,-2.270415 +-0.069550,1.466334,-0.364260 +-0.000561,0.826150,-2.141350 +-0.001545,1.731808,-2.297775 +0.026213,1.679799,-0.483156 +0.007146,0.551833,-2.009168 +-0.080950,0.513329,-1.940252 +0.011298,2.058253,-0.599078 +-0.027141,1.097534,-2.362711 +0.006256,0.440526,-1.425441 +0.054811,0.404466,-1.722535 +0.050745,2.434329,-1.231805 +-0.041989,0.574036,-0.793377 +0.036324,1.552719,-0.402261 +-0.061763,2.359932,-1.864507 +0.063742,2.517453,-1.658836 +0.032071,0.481886,-1.045571 +-0.033150,1.678629,-2.420466 +0.094730,1.840787,-0.474290 +-0.016996,2.341549,-1.655967 +-0.001779,1.090450,-0.469899 +-0.018818,2.093133,-0.871352 +-0.014386,1.124116,-2.431031 +-0.001896,0.403450,-1.549991 +-0.050332,1.931441,-0.517970 +-0.063452,2.349595,-1.005030 +0.042739,2.377047,-1.613120 +-0.034614,1.704721,-2.349563 +0.034617,2.389540,-1.167587 +0.005203,2.104470,-0.601994 +-0.044249,0.491535,-1.902893 +0.014116,2.297818,-1.313927 +0.042453,1.920445,-0.583835 +0.077049,1.093709,-2.412482 +0.011626,1.265041,-2.360389 +0.050118,0.450628,-1.652075 +-0.014257,1.216067,-2.376373 +0.011830,2.393546,-1.060450 +0.002432,0.987374,-0.466502 +-0.001541,0.480849,-1.646766 +-0.028808,1.297893,-2.333349 +0.005390,2.010335,-2.297099 +0.017825,2.356066,-1.419334 +0.013691,2.444573,-1.445240 +0.069251,1.488885,-2.413831 +0.148719,0.833898,-0.630554 +-0.038185,0.598042,-2.009801 +-0.020041,0.981226,-0.498666 +0.040232,1.540810,-0.476869 +0.012336,1.830201,-2.299465 +-0.044520,2.074686,-0.670399 +-0.028685,1.657100,-0.377380 +0.034838,0.464691,-1.580093 +0.154696,1.462427,-2.428299 +-0.033890,1.540586,-2.441554 +-0.016481,2.040194,-0.674466 +0.002843,2.176568,-0.710763 +0.033165,2.255769,-1.765091 +0.012894,1.203455,-2.450693 +-0.095728,0.573873,-0.844616 +-0.025763,1.849339,-0.428925 +0.039935,1.884618,-2.299281 +0.002024,1.503624,-0.506535 +-0.009917,0.418487,-1.224452 +-0.044736,1.495659,-2.401842 +0.004994,1.651407,-0.364636 +-0.016189,1.006787,-2.305705 +0.033596,2.371681,-1.262420 +0.053877,0.483354,-1.458627 +-0.047653,1.306656,-0.403818 +-0.005394,0.855249,-2.342448 +0.005097,2.166757,-1.983056 +-0.043672,2.110032,-2.024538 +0.008301,2.322867,-1.733768 +0.015251,1.458090,-0.459759 +-0.070780,0.678039,-0.863006 +-0.057417,1.879603,-0.528654 +-0.049638,2.359143,-1.114241 +-0.044330,0.372291,-1.657174 +0.027076,0.405578,-1.208028 +-0.040954,0.536249,-0.826847 +-0.057012,2.124320,-2.047414 +-0.130970,2.283939,-2.027118 +0.018260,0.472687,-1.001610 +0.030301,2.237832,-1.194473 +0.007601,2.307031,-0.976584 +0.043415,1.154474,-0.451491 +-0.101549,1.987856,-2.167255 +-0.059975,0.872637,-2.177119 +0.006978,2.092234,-0.961253 +0.103740,0.732516,-0.738615 +0.067939,2.107841,-2.046335 +0.015233,0.943467,-2.256341 +0.038362,2.034300,-2.207337 +-0.086919,2.285308,-1.846260 +0.066149,0.979389,-0.418173 +0.051026,1.416155,-0.449135 +-0.027907,0.407247,-1.645105 +-0.048951,1.248053,-0.423908 +0.020315,2.364987,-1.418887 +0.000736,1.222317,-0.417039 +0.045452,1.478149,-0.326690 +0.003077,0.497510,-1.011727 +-0.015856,2.212429,-0.664202 +-0.014872,1.204927,-0.354905 +0.062714,1.709661,-2.482143 +0.028419,2.246512,-1.567843 +0.009321,0.842075,-2.239771 +-0.085388,1.811489,-0.484094 +-0.027035,1.622800,-2.223708 +0.045899,2.433639,-1.571727 +0.081370,2.389053,-1.481601 +-0.010372,1.381855,-0.455312 +-0.009700,1.330542,-2.316895 +0.041220,0.848049,-2.174829 +-0.002049,1.442276,-2.464692 +-0.120254,0.412692,-1.476289 +0.066510,0.486917,-1.282239 +-0.054891,0.504319,-1.855335 +0.139255,0.563651,-0.941285 +-0.021328,0.666877,-0.627641 +-0.060536,0.596731,-2.019220 +0.087610,2.379998,-1.565569 +0.027744,2.170571,-0.809870 +-0.004769,2.314723,-1.724656 +-0.084308,0.758657,-0.572223 +-0.033775,0.329228,-1.550611 +0.061770,2.302352,-1.082067 +0.038828,0.340123,-1.134326 +-0.048811,2.126364,-2.037212 +-0.010081,0.366542,-1.430412 +-0.024534,0.466222,1.571899 +-0.038366,2.243380,1.763378 +0.015990,1.968283,2.078546 +-0.029464,1.599133,0.518079 +-0.093653,0.683302,0.690535 +0.074622,0.468019,0.911245 +0.033893,0.709926,2.124715 +-0.015440,2.073029,0.567018 +0.005552,2.146906,0.786910 +-0.031727,1.555508,2.487901 +-0.083721,0.974763,2.220299 +0.005636,2.230984,0.811483 +-0.054071,1.869193,0.563748 +-0.007135,0.633343,2.068839 +-0.053439,2.345510,1.019285 +0.143199,2.129425,0.713494 +0.042293,1.257669,2.352857 +-0.022174,1.492553,0.356456 +-0.022579,0.560600,1.990603 +-0.033253,0.762842,2.138915 +-0.069268,0.598807,0.706949 +-0.065388,2.237655,1.839179 +-0.024228,1.409947,0.438380 +0.000887,0.398727,1.594315 +0.018026,0.978139,2.241088 +0.002006,0.979244,2.362701 +0.041918,0.508290,1.981663 +-0.048468,0.902918,2.258772 +-0.005516,0.686605,0.698784 +0.046638,0.939949,0.555548 +0.044842,2.321697,1.721119 +-0.041910,2.304314,2.057412 +-0.006715,1.122976,2.357544 +0.067753,0.723312,2.120797 +0.055477,1.426645,0.466975 +0.050568,0.491579,1.294401 +0.049789,0.929118,0.475913 +0.093872,1.014743,0.526514 +0.006806,1.793521,0.495777 +0.078980,0.701570,1.990416 +-0.011838,0.707871,2.001148 +-0.099026,2.499680,1.343423 +-0.003851,1.747697,2.389306 +-0.029809,2.192123,2.114368 +0.013458,0.637490,0.752953 +0.057510,2.340094,1.154360 +0.033794,2.047625,2.216568 +0.022425,2.209451,2.005395 +-0.002506,1.155066,0.406929 +0.111135,0.399749,1.853268 +-0.092351,0.489220,0.950371 +-0.114677,2.082709,0.628987 +-0.115456,2.433865,1.635360 +0.081957,0.735195,0.673565 +0.073049,0.631789,0.953305 +-0.051785,0.749762,2.174284 +-0.099529,1.116798,0.573958 +0.035196,0.483011,1.472851 +-0.004027,2.058394,0.584616 +-0.053008,0.477532,1.600812 +-0.054511,2.015323,0.568137 +0.018689,0.429750,1.548798 +0.004550,2.039642,2.244098 +0.034330,2.283947,1.886851 +0.025840,1.893205,2.202556 +-0.045249,0.641003,0.853696 +-0.105258,1.705796,2.338675 +0.077622,2.336050,1.072521 +0.064843,0.399581,1.654410 +-0.010807,1.019715,0.421975 +-0.091742,1.413894,2.366343 +-0.021572,0.636564,0.612545 +-0.000416,1.819295,0.427806 +0.091156,1.641341,2.322724 +0.084555,0.567302,0.833812 +-0.008532,0.556664,1.083493 +-0.044924,2.082213,2.133927 +-0.054243,1.058199,0.459412 +0.062712,0.466408,1.381893 +-0.011767,0.495655,1.029077 +0.032375,2.393192,1.409474 +-0.052626,0.729477,2.052709 +0.090219,1.497083,2.408131 +0.131597,2.259598,0.898472 +0.070762,2.314819,1.119870 +-0.032226,0.523742,1.801711 +-0.009897,1.763478,0.403662 +-0.038505,1.806673,2.226242 +-0.023241,2.357590,1.069008 +-0.014926,1.060167,2.304815 +0.038008,2.249492,2.011883 +0.026686,1.107830,0.459808 +0.086118,0.428470,1.271051 +0.024970,1.976849,2.248554 +0.054760,2.302924,1.657033 +0.007764,2.285681,1.199431 +0.070776,1.573954,0.369334 +-0.056762,2.378805,1.567267 +0.076953,2.113801,2.177351 +0.008010,0.612611,0.764806 +0.047147,2.330952,1.571279 +0.065238,1.947424,2.234636 +0.022017,0.993927,0.448041 +-0.006234,1.240781,0.451171 +-0.004112,0.376995,1.113232 +0.003716,1.218940,0.426618 +0.057165,2.291325,1.718681 +0.070946,0.936472,2.339657 +-0.032196,0.449834,0.982111 +-0.009325,1.375936,0.338342 +-0.064329,1.810147,0.618701 +-0.025429,2.398590,1.377847 +-0.051943,2.385093,1.472413 +0.076564,1.447197,0.440055 +-0.045734,0.714515,2.265090 +0.063805,0.707422,0.712846 +-0.009173,1.015458,2.326359 +-0.021650,1.498332,2.388550 +0.059346,1.731281,0.517377 +0.018235,2.078682,2.218472 +-0.038196,1.620084,2.321713 +0.048902,0.401607,1.113138 +-0.100174,1.652830,0.457726 +0.042344,1.640606,0.449432 +-0.013438,2.098100,2.083591 +0.144911,2.180686,2.035803 +0.025602,2.220709,1.000994 +-0.036359,1.333451,0.463067 +0.021162,0.578115,1.962677 +-0.003104,1.707020,2.316159 +0.081377,1.929857,0.512453 +-0.028396,1.554629,2.432720 +0.030818,0.403549,1.618916 +-0.035396,1.511054,0.461225 +0.048085,1.564138,2.328863 +0.005979,1.126813,0.364867 +0.015308,2.319880,1.459220 +-0.020044,0.389184,1.214207 +0.000396,1.276453,2.315127 +0.042893,0.932367,0.585633 +-0.084740,2.225457,0.849394 +-0.056716,2.171018,0.756181 +0.101318,2.396854,0.854470 +0.137166,1.381073,2.453444 +0.053377,0.536220,2.014915 +-0.005914,1.912242,2.288994 +0.065799,2.380064,1.608910 +0.060284,0.480865,1.131233 +-0.036552,0.382217,1.647766 +-0.034145,0.582499,1.962721 +-0.008532,2.207669,0.790719 +0.013387,2.181877,0.924562 +-0.003356,0.466058,1.720060 +-0.048938,2.287808,1.683498 +-0.043087,2.486029,1.737414 +-0.069156,1.149067,2.444406 +0.003552,2.044380,0.508450 +-0.037263,0.778868,0.468692 +0.006434,2.137387,1.836321 +-0.029546,0.716855,2.192316 +0.016807,2.156266,0.734274 +0.062745,0.918141,0.540384 +0.028133,1.916833,0.517412 +-0.018284,2.215776,0.914148 +-0.005171,0.966378,2.281331 +-0.066572,1.328503,2.396439 +-0.047454,0.468553,1.151032 +-0.077358,1.456167,2.370460 +-0.022489,2.394380,1.337509 +0.001102,1.085359,2.398496 +-0.026674,1.566626,2.397965 +-0.122927,0.489879,1.875077 +0.086676,2.290857,1.956820 +0.050168,1.142147,2.388253 +-0.070012,1.673572,0.411750 +0.049421,2.412623,1.166535 +-0.074273,0.769953,0.568809 +0.047832,1.861948,2.375856 +-0.041537,1.467469,0.326900 +0.078189,2.353848,1.140567 +0.090346,2.469090,1.432755 +-0.016137,1.329944,2.410521 +0.088003,1.391825,0.440425 +0.064310,0.747883,0.632500 +-0.016201,1.293026,0.283444 +-0.055996,0.433655,1.312151 +0.010140,0.507795,1.361611 +-0.001509,0.540437,0.877751 +0.001558,0.394248,1.874693 +-0.037489,0.827180,2.127183 +0.056543,0.606913,0.785402 +-0.032122,2.406058,1.386079 +-0.043134,2.202140,1.954230 +0.126482,2.324841,1.116863 +-0.010759,0.801354,2.117480 +-0.024589,0.429292,1.299849 +0.012209,2.380932,1.861019 +0.089507,0.428170,1.780152 +-0.026697,2.148000,0.720540 +0.128206,0.447043,1.318833 +1.468696,-0.949865,0.264571 +1.314869,0.876412,0.428552 +1.291447,0.646103,0.794145 +1.440680,0.378477,-0.988012 +1.376837,-0.630897,-0.716215 +1.368831,-0.925709,-0.395845 +1.420825,-0.674543,0.759684 +1.482568,0.609891,-0.850938 +1.390627,0.685275,-0.688503 +1.325296,0.110182,1.002701 +1.394509,-0.450301,0.808684 +1.419642,0.904365,-0.509052 +1.407651,0.448717,-0.936923 +1.396040,-0.701229,0.630877 +1.351061,0.877753,-0.414733 +1.379457,0.776803,-0.632555 +1.448894,-0.109086,1.037059 +1.348617,0.013096,-1.002194 +1.375185,-0.906936,0.511534 +1.373902,-0.572778,0.826960 +1.464815,-0.718011,-0.548598 +1.409378,0.860353,0.481981 +1.414107,-0.038852,-0.883808 +1.353507,-0.928669,0.229570 +1.313590,-0.411602,0.960726 +1.352855,-0.309508,0.856162 +1.330766,-0.818665,0.456101 +1.339016,-0.496421,0.832009 +1.374105,-0.666444,-0.771002 +1.350205,-0.527352,-0.791010 +1.468099,0.923715,0.330547 +1.356872,0.944769,0.473469 +1.473066,-0.192541,1.098417 +1.432523,-0.762988,0.678384 +1.442965,0.057895,-1.003889 +1.402456,-0.950405,-0.118084 +1.328857,-0.498704,-0.878075 +1.466852,-0.308269,-0.874881 +1.415801,0.466964,-0.941498 +1.391572,-0.774296,0.615866 +1.418345,-0.779952,0.650728 +1.430036,1.008907,-0.063494 +1.397652,0.390834,0.889839 +1.420334,0.765732,0.647715 +1.402851,-0.804811,-0.666382 +1.338129,1.057306,-0.097822 +1.429559,0.721378,0.779746 +1.566747,0.814566,0.576119 +1.378122,-0.197665,-0.929958 +1.393735,-0.807107,0.438933 +1.414877,-0.954822,-0.402762 +1.392629,0.627859,-0.792817 +1.546947,0.973197,0.076300 +1.361598,-0.687383,-0.698902 +1.430514,-0.823528,-0.544509 +1.418724,-0.709495,0.716031 +1.349526,-0.374378,-0.892525 +1.437874,-0.944310,0.064953 +1.442724,0.540553,-0.723043 +1.409742,-0.957624,0.146235 +1.345712,0.479691,-0.866244 +1.431070,-0.957607,0.018871 +1.346040,0.522305,0.807429 +1.325087,0.851564,0.322924 +1.404744,0.389058,0.884637 +1.458220,-0.898678,-0.573438 +1.456362,0.225685,0.937031 +1.463992,0.924040,-0.277991 +1.423593,-0.969913,0.335400 +1.417625,-0.369631,-0.934986 +1.402266,-0.034794,1.038235 +1.343615,-0.605378,-0.724463 +1.327569,0.434579,-0.806901 +1.455101,0.357475,0.964989 +1.308617,-0.945755,-0.521797 +1.367441,-0.968056,-0.400599 +1.433857,0.604645,0.704280 +1.483043,-0.397879,-0.893044 +1.373340,-0.969981,0.060353 +1.440770,-0.890877,-0.402076 +1.461251,0.951129,0.077065 +1.414204,-0.723429,0.679844 +1.353590,0.051091,1.040094 +1.410221,0.980970,-0.399608 +1.322716,1.013431,-0.299361 +1.418810,-0.926617,0.544427 +1.351789,0.320179,-0.934971 +1.339930,0.443958,0.993482 +1.373025,0.972789,-0.460236 +1.397859,-0.355955,0.895863 +1.459480,0.752570,0.627663 +1.379254,-0.384416,-1.022553 +1.452860,-1.115554,-0.073558 +1.378015,0.604941,0.903015 +1.369356,1.012629,0.298010 +1.455500,0.907549,-0.128352 +1.377663,0.222423,-0.972237 +1.415254,0.955076,0.217849 +1.367935,0.695432,0.774433 +1.396649,-0.833293,-0.579451 +1.430264,1.105514,0.177001 +1.453679,0.705695,0.872706 +1.426655,-0.209969,-1.024076 +1.375585,-0.184274,-0.952070 +1.390420,-0.952691,-0.219181 +1.447473,-0.196276,-1.019137 +1.462440,0.993621,0.220673 +1.382777,-0.359021,0.972612 +1.450056,-0.914162,-0.335936 +1.403528,-0.162395,-1.006484 +1.401045,0.479846,-0.980013 +1.378138,1.003091,-0.015475 +1.386425,1.024866,-0.122133 +1.310458,0.074959,-0.953536 +1.492815,-0.544768,0.728262 +1.387220,-0.735996,-0.651544 +1.429662,-0.476217,0.908399 +1.423118,0.232793,0.937973 +1.381016,0.248438,-0.951935 +1.371157,0.581347,0.779622 +1.396923,0.184760,0.962909 +1.348942,-0.941870,-0.319192 +1.401650,0.140860,-0.971018 +1.406858,0.173347,-1.066782 +1.318754,0.674993,0.706651 +1.366546,0.784498,0.645955 +1.346924,0.861011,-0.469331 +1.417869,0.009203,-1.032352 +1.395959,-0.803644,0.560795 +1.372466,0.253529,0.912785 +1.340946,0.440863,-0.888090 +1.342410,0.126217,1.028622 +1.350287,-0.996600,0.085178 +1.372811,0.147277,-0.946743 +1.360782,0.275995,0.892554 +1.331380,-0.329093,-0.837865 +1.427139,0.993343,-0.026627 +1.288765,-0.980571,-0.176128 +1.339179,-0.090504,1.001894 +1.451943,-0.501528,-0.793180 +1.400440,0.802674,-0.529248 +1.346186,0.925308,-0.616785 +1.420946,0.919887,-0.350748 +1.443588,-0.056867,1.076697 +1.381251,-0.803123,0.517426 +1.428941,0.445928,0.881816 +1.384375,1.081792,0.327168 +1.402558,-0.947538,-0.329556 +1.460830,-0.978384,0.255818 +1.453823,-0.890348,0.506965 +1.313028,0.767699,-0.577799 +1.439667,0.907480,-0.608619 +1.412998,-0.992755,0.326211 +1.442472,0.974183,0.170995 +1.327673,0.841791,0.424178 +1.513514,-0.204056,0.856014 +1.478159,0.664409,-0.875147 +1.383324,-0.501830,-0.796807 +1.328000,0.894333,0.391479 +1.387745,-0.574836,0.771525 +1.372558,0.756021,-0.653495 +1.472052,-0.433665,-0.816831 +1.440310,0.523645,-0.855819 +1.386951,0.794062,-0.561584 +1.384489,-0.383868,0.996999 +1.397701,-0.070142,1.051477 +1.387270,-0.943209,-0.231537 +1.472717,0.034971,0.934523 +1.408884,1.082761,-0.135301 +1.424624,-0.218667,0.911569 +1.428089,-0.013870,0.963617 +1.459165,-0.910155,0.351378 +1.424555,0.786850,0.613599 +1.436125,-0.258148,0.978135 +1.382825,0.221809,-1.001682 +1.486251,0.989743,-0.321487 +1.315281,-0.619076,-0.704290 +1.389728,0.469033,0.937111 +1.425919,0.144679,-0.924353 +1.381579,1.023387,-0.262923 +1.409738,1.018867,0.022939 +1.422250,-0.077442,0.962328 +1.488302,0.026282,-1.041354 +1.431264,-0.628633,-0.874175 +1.456860,-0.062315,-0.948529 +1.386100,-1.007197,-0.071572 +1.431966,-1.044955,0.070886 +1.406235,-0.945390,-0.491097 +1.475970,-0.825542,0.436602 +1.334531,-0.657564,0.775766 +1.439914,-0.746983,-0.592928 +1.396017,0.966046,-0.135797 +1.418680,0.819250,0.618452 +1.326435,0.965252,-0.255125 +1.404315,-0.616299,0.807150 +1.511779,-1.038588,-0.176205 +1.356019,0.874742,0.423052 +1.474103,-0.869529,0.273338 +1.379287,0.927256,-0.636423 +1.368588,-1.095649,0.013995 +-2.334435,0.132979,-1.319989 +-0.428794,0.003857,-0.901674 +-0.902842,0.080745,-0.547725 +-1.153450,0.035481,-2.410685 +-2.069293,-0.025489,-2.272413 +-2.243610,0.065538,-1.892564 +-1.942932,-0.014605,-0.554864 +-0.846731,-0.048588,-2.151153 +-0.718966,0.111216,-2.126422 +-1.294500,0.067482,-0.377618 +-1.841776,0.065483,-0.559597 +-0.562671,-0.009430,-2.006818 +-0.960507,0.073501,-2.277953 +-2.244547,-0.085571,-0.671013 +-0.500140,-0.035608,-1.840849 +-0.731141,0.078270,-2.082930 +-1.512174,0.002841,-0.339088 +-1.323091,0.046928,-2.358477 +-2.210047,0.019136,-0.876980 +-1.830478,-0.049882,-0.555435 +-2.128150,0.022134,-2.108168 +-0.506382,-0.009286,-1.005254 +-1.462265,-0.060531,-2.493418 +-2.368389,0.026834,-1.152888 +-1.822796,-0.106292,-0.583849 +-1.600473,-0.057596,-0.415347 +-2.314088,0.004382,-0.953075 +-1.878157,0.007523,-0.563914 +-2.164866,0.014728,-2.173806 +-1.912315,0.144457,-2.170069 +-0.400197,-0.004708,-1.227640 +-0.628398,0.070554,-0.907610 +-1.594893,-0.009111,-0.470724 +-2.174579,-0.002776,-0.741927 +-1.440756,-0.042966,-2.371270 +-2.404882,-0.009821,-1.492501 +-1.861803,-0.015304,-2.265132 +-1.760397,-0.008089,-2.313321 +-1.017219,-0.047338,-2.262524 +-2.104497,0.025041,-0.700006 +-2.187614,0.038303,-0.735662 +-0.354320,-0.005543,-1.417824 +-1.019310,0.034781,-0.454709 +-0.657446,-0.040466,-0.676879 +-2.014022,-0.020614,-2.033519 +-0.436853,-0.026841,-1.471490 +-0.824106,-0.026074,-0.697157 +-0.614588,-0.093962,-0.803167 +-1.464160,-0.020167,-2.467588 +-2.255327,-0.039981,-0.902757 +-2.320339,-0.034750,-1.835567 +-0.697010,-0.012508,-2.177431 +-0.423247,-0.069952,-1.221729 +-2.182817,-0.024427,-2.087202 +-2.244074,0.032468,-1.912619 +-1.996976,0.050858,-0.625351 +-1.658002,0.041273,-2.375227 +-2.471941,0.023120,-1.307175 +-0.702600,-0.051498,-2.220367 +-2.366820,-0.003914,-1.378384 +-0.817286,-0.101883,-2.279070 +-2.321219,0.100368,-1.372753 +-0.856033,0.002344,-0.474952 +-0.497331,-0.026229,-0.946696 +-0.966623,0.039721,-0.590236 +-2.236498,-0.091278,-2.020132 +-1.105154,-0.002745,-0.448968 +-0.500300,-0.012136,-1.722177 +-2.296996,-0.144383,-1.136730 +-1.817029,-0.005437,-2.282641 +-1.416696,-0.016768,-0.429470 +-2.074814,0.063181,-2.190372 +-1.035330,0.010084,-2.243957 +-1.137526,0.052734,-0.371947 +-2.247834,-0.011590,-1.953925 +-2.331825,0.046983,-1.784442 +-0.702512,-0.061887,-0.724243 +-1.620848,-0.009780,-2.383493 +-2.321290,0.015499,-1.368201 +-2.348473,-0.017527,-1.748065 +-0.478024,-0.004836,-1.320928 +-2.048336,0.004730,-0.867068 +-1.279836,0.150673,-0.360235 +-0.526844,0.032511,-1.837959 +-0.514166,-0.019160,-1.673957 +-2.393975,-0.063204,-0.945441 +-1.083712,0.021715,-2.407688 +-0.934944,-0.065107,-0.404823 +-0.543310,-0.060090,-1.686062 +-1.647205,0.017327,-0.428162 +-0.628522,-0.056452,-0.789534 +-1.745646,-0.070329,-2.338197 +-2.461281,0.017575,-1.503011 +-0.874658,-0.026878,-0.461894 +-0.441315,0.067968,-1.102823 +-0.414625,-0.053960,-1.610130 +-1.135425,-0.039922,-2.427146 +-0.495456,-0.128686,-1.270718 +-0.704176,-0.087917,-0.725136 +-2.110518,-0.035007,-1.970128 +-0.372558,0.036439,-1.358394 +-0.876881,-0.089002,-0.421125 +-1.736408,-0.057631,-2.425816 +-1.638751,0.074393,-2.254454 +-2.386460,-0.072623,-1.802022 +-1.600807,-0.017400,-2.418109 +-0.436768,0.021735,-1.073213 +-1.785511,-0.060589,-0.433603 +-2.329088,0.048860,-1.724670 +-1.603530,-0.078882,-2.433669 +-0.976341,0.041539,-2.256985 +-0.339545,0.021807,-1.388524 +-0.335988,0.025835,-1.459045 +-1.224467,0.006335,-2.412301 +-2.033866,0.038666,-0.522945 +-2.152893,0.071935,-2.169663 +-1.828829,-0.002205,-0.535158 +-1.081506,-0.003641,-0.440138 +-1.001424,-0.110155,-2.359547 +-0.708498,-0.034592,-0.675075 +-1.018959,0.073714,-0.420509 +-2.393615,-0.013171,-1.692918 +-1.298278,-0.057443,-2.421681 +-1.269528,-0.086004,-2.370220 +-0.679990,0.093544,-0.729652 +-0.633603,0.017199,-0.752649 +-0.482755,0.042638,-1.863746 +-1.508168,-0.019664,-2.470788 +-2.271406,-0.034210,-0.899735 +-1.037066,0.065815,-0.509063 +-0.848584,-0.056876,-2.261099 +-1.343860,0.033104,-0.441771 +-2.326646,-0.013515,-1.248347 +-1.343599,0.013926,-2.342878 +-1.166824,0.123136,-0.345445 +-1.785039,-0.017492,-2.303943 +-0.450529,0.064146,-1.286004 +-2.373583,0.037782,-1.461679 +-1.484706,-0.006217,-0.321458 +-1.855826,-0.017654,-2.260457 +-0.580237,0.019900,-2.062398 +-0.714323,-0.048806,-2.090485 +-0.544404,0.034909,-1.863282 +-1.357788,-0.067337,-0.425884 +-2.176718,0.032722,-0.852066 +-0.909355,0.120937,-0.524661 +-0.462209,-0.009557,-1.176787 +-2.359371,-0.001725,-1.788407 +-2.413238,-0.008213,-1.130099 +-2.291882,-0.009736,-0.887603 +-0.622114,-0.005457,-2.062596 +-0.602707,0.031465,-1.941418 +-2.293261,0.039240,-1.028882 +-0.436830,0.013472,-1.092817 +-0.518109,-0.034562,-0.992873 +-1.656151,-0.045326,-0.443818 +-0.792263,-0.121840,-2.202233 +-1.970736,-0.008816,-2.149205 +-0.606127,-0.045354,-1.034629 +-2.063874,-0.021760,-0.657536 +-0.631971,0.047334,-2.102825 +-1.902137,0.056440,-2.277393 +-0.935963,-0.094394,-2.285014 +-0.497753,0.125210,-1.905653 +-1.839242,-0.065173,-0.451888 +-1.622387,0.030269,-0.362911 +-2.351921,-0.012081,-1.587072 +-1.390598,-0.042797,-0.298227 +-0.427228,0.042666,-1.658357 +-1.578484,0.080782,-0.429776 +-1.306477,0.030718,-0.437326 +-2.299685,-0.044475,-1.065357 +-0.547863,0.053606,-0.825944 +-1.658490,-0.035508,-0.383788 +-1.145982,0.019619,-2.309980 +-0.436270,0.055554,-1.665427 +-2.024669,-0.053749,-2.134210 +-1.045011,0.019237,-0.486168 +-1.239760,-0.033501,-2.299859 +-0.412992,-0.055503,-1.601350 +-0.408530,0.189973,-1.352907 +-1.483725,0.078102,-0.503230 +-1.426223,0.109694,-2.405898 +-2.083117,-0.021775,-2.129019 +-1.347905,-0.046137,-2.437195 +-2.426345,0.019866,-1.420508 +-2.341623,0.025081,-1.441830 +-2.349343,0.029329,-1.955755 +-2.330161,0.016728,-1.065420 +-2.140882,-0.005177,-0.643331 +-2.131771,0.033388,-2.008856 +-0.441534,-0.058900,-1.459509 +-0.568437,0.018514,-0.927709 +-0.513436,0.066248,-1.763768 +-2.090843,0.129570,-0.611437 +-2.361149,0.021974,-1.607599 +-0.535190,0.116692,-0.919044 +-2.323377,0.031696,-1.206493 +-0.539581,-0.046372,-1.997326 +-2.488193,-0.112247,-1.445285 +-2.432189,-0.109404,1.586168 +-0.392389,0.076426,1.839838 +-0.811728,0.048824,2.270734 +-1.170205,0.001880,0.447951 +-2.006961,-0.007319,0.622882 +-2.215116,0.066524,0.972267 +-1.867532,-0.021255,2.316344 +-0.782376,0.179906,0.525396 +-0.753367,0.023034,0.692879 +-1.136308,-0.036761,2.437459 +-1.817818,0.038756,2.223452 +-0.478245,0.067613,0.897150 +-0.934770,0.012436,0.504663 +-2.135270,0.001712,1.990755 +-0.552845,-0.041362,0.986438 +-0.651372,0.011844,0.766233 +-1.621884,0.080611,2.367563 +-1.361048,0.026531,0.300965 +-2.287807,0.053959,1.840269 +-1.874360,0.083113,2.224008 +-2.112919,0.061550,0.689779 +-0.475966,-0.036913,1.855486 +-1.506754,0.018846,0.465662 +-2.386043,-0.069919,1.558594 +-1.832288,0.101426,2.312661 +-1.730296,0.042140,2.337884 +-2.297112,-0.052715,1.959218 +-2.048698,0.043882,2.235236 +-2.129676,0.093077,0.653616 +-1.973231,-0.007172,0.578434 +-0.464008,-0.086562,1.631378 +-0.485199,0.004113,1.960637 +-1.570813,-0.036272,2.479955 +-2.117457,-0.024385,2.167395 +-1.439730,-0.032710,0.400564 +-2.392100,0.014279,1.389709 +-1.835497,-0.130793,0.526940 +-1.795064,0.002390,0.495772 +-0.975798,-0.002894,0.528890 +-2.158783,-0.052123,2.250855 +-2.229527,0.005508,1.930646 +-0.398032,-0.051327,1.281556 +-0.974397,0.025961,2.361039 +-0.768448,0.101029,2.018994 +-2.086442,0.056185,0.794329 +-0.459336,0.008337,1.217665 +-0.785496,-0.013743,2.078031 +-0.511221,-0.004461,1.935419 +-1.648961,0.019715,0.374927 +-2.428862,0.022392,1.854330 +-2.315807,-0.063135,0.979112 +-0.819237,-0.056498,0.608601 +-0.365895,-0.019944,1.531802 +-1.977039,0.019385,0.689676 +-2.281076,-0.032800,0.770706 +-2.008031,0.024657,2.140257 +-1.716564,0.040488,0.363434 +-2.430470,-0.062497,1.560224 +-0.714415,-0.121148,0.546230 +-2.399394,-0.025984,1.452492 +-0.730955,0.017190,0.599034 +-2.433623,0.039725,1.473185 +-0.853500,0.033605,2.137486 +-0.382387,0.010031,1.838576 +-1.005158,-0.050774,2.227102 +-2.213314,0.003629,0.812374 +-1.207084,-0.069663,2.365917 +-0.484727,-0.037708,1.146352 +-2.355584,0.069852,1.679688 +-1.812317,-0.003051,0.401804 +-1.352852,-0.007433,2.440560 +-2.102673,-0.009066,0.602212 +-0.963896,0.017128,0.490411 +-1.046309,0.063599,2.402388 +-2.322523,-0.038262,0.808959 +-2.277740,0.009386,0.926374 +-0.725834,-0.082176,2.126045 +-1.829783,0.029086,0.479907 +-2.295063,0.046633,1.376740 +-2.295887,-0.076872,1.008326 +-0.383650,-0.118704,1.460747 +-2.206226,0.005572,2.002036 +-1.251333,0.001063,2.469135 +-0.481875,-0.042275,0.989273 +-0.513639,0.022338,1.153451 +-2.155201,-0.034201,1.839262 +-1.092929,0.011666,0.480112 +-0.977156,0.059748,2.270893 +-0.394704,0.029617,1.090321 +-1.756059,0.133467,2.295945 +-0.613100,-0.041262,2.135633 +-1.630216,-0.037309,0.467899 +-2.385333,-0.028414,1.410288 +-0.869547,0.011863,2.258436 +-0.435411,0.012616,1.741988 +-0.452969,0.093157,1.154846 +-1.097489,-0.017613,0.536481 +-0.467404,-0.040439,1.534041 +-0.720898,-0.075518,2.123792 +-2.327397,0.013223,0.784703 +-0.489728,0.059709,1.453412 +-0.820341,-0.038557,2.332414 +-1.607465,-0.055443,0.380977 +-1.523131,-0.014431,0.402998 +-2.290321,-0.041178,1.126030 +-1.534877,0.044501,0.408934 +-0.464833,-0.095635,1.650924 +-1.750615,-0.007584,2.333897 +-2.272618,-0.065303,1.018886 +-1.514954,-0.038729,0.486617 +-0.868274,0.015957,0.622376 +-0.482439,-0.000425,1.420149 +-0.452274,0.016539,1.276347 +-1.267911,0.058181,0.419416 +-2.089689,-0.053174,2.240076 +-2.148945,-0.148170,0.807044 +-1.818263,-0.045049,2.359550 +-1.249883,-0.037865,2.401997 +-0.904895,0.089297,0.502030 +-0.737145,0.043532,2.101379 +-1.055555,-0.040374,2.368573 +-2.381094,0.027566,1.157806 +-1.412582,0.009839,0.447630 +-1.188093,-0.005642,0.508032 +-0.675768,0.024072,2.164554 +-0.629946,-0.049391,1.927203 +-0.549935,0.041852,0.898826 +-1.450044,0.008180,0.475282 +-2.243317,0.025719,1.989907 +-0.978674,-0.093865,2.315668 +-0.817505,0.085024,0.568876 +-1.321990,0.041642,2.443341 +-2.402069,0.018167,1.652310 +-1.170692,0.040843,0.410313 +-1.184831,0.030657,2.369555 +-1.757694,-0.058183,0.541562 +-0.467148,-0.023766,1.499476 +-2.278184,-0.023248,1.206935 +-1.524403,0.091239,2.240883 +-1.964192,0.150221,0.571756 +-0.651812,-0.002305,0.815925 +-0.582950,0.101173,0.783946 +-0.538682,0.043290,0.907606 +-1.425423,-0.096795,2.313424 +-2.258321,-0.064778,2.005013 +-0.984213,-0.172902,2.218892 +-0.450036,-0.033300,1.701717 +-2.384801,0.048451,1.089939 +-2.362620,-0.045946,1.675758 +-2.302822,0.009351,1.896048 +-0.722986,0.054554,0.738929 +-0.597563,0.008002,0.833306 +-2.388598,0.003877,1.704582 +-0.483388,-0.089252,1.628966 +-0.451062,-0.038206,1.935787 +-1.630278,0.071738,2.404032 +-0.685185,-0.043285,0.469004 +-1.986620,0.030702,0.581253 +-0.524107,0.072650,1.930055 +-1.993484,-0.051676,2.110267 +-0.604117,0.005550,0.658616 +-1.915930,-0.035702,0.484701 +-0.961532,-0.082523,0.528533 +-0.571869,0.060894,0.907078 +-1.782555,-0.040872,2.311098 +-1.505478,0.039391,2.386951 +-2.316565,0.000439,1.225463 +-1.426942,-0.099692,2.414760 +-0.367992,0.031644,1.297887 +-1.667862,-0.044371,2.398928 +-1.313755,-0.030849,2.459045 +-2.378334,-0.032094,1.858128 +-0.562073,-0.019691,2.028713 +-1.609630,-0.151009,2.326061 +-1.093780,-0.019614,0.462534 +-0.369295,-0.017684,1.093139 +-1.995040,-0.017964,0.601261 +-1.018900,0.123301,2.194516 +-1.203215,-0.000203,0.381120 +-0.374593,0.044729,1.179230 +-0.415380,-0.006158,1.425647 +-1.467101,-0.010340,2.411911 +-1.389984,-0.067664,0.342707 +-2.083954,0.047652,0.604751 +-1.340800,-0.078622,0.498666 +-2.429049,0.009251,1.352883 +-2.453790,-0.030048,1.441265 +-2.119146,0.016562,1.006596 +-2.251443,0.020241,1.742742 +-2.026261,-0.082396,2.217017 +-2.179155,-0.145762,0.768365 +-0.364526,-0.013036,1.407915 +-0.637734,-0.071829,1.983856 +-0.468487,-0.019161,1.099376 +-2.059668,0.017224,2.193893 +-2.467907,-0.072547,1.213274 +-0.386207,0.031860,1.730869 +-2.539660,0.040318,1.643398 +-0.547075,-0.048439,0.806355 +-2.351487,-0.024611,1.313775 +-0.986299,-1.370153,0.155646 +0.944576,-1.425406,0.380929 +0.696519,-1.433255,0.777753 +0.245071,-1.396305,-0.989851 +-0.638383,-1.402187,-0.760898 +-1.020668,-1.296552,-0.462091 +-0.530149,-1.475796,0.801176 +0.550808,-1.319165,-0.841237 +0.726242,-1.435773,-0.753863 +0.142929,-1.329389,0.883746 +-0.554115,-1.507102,0.816494 +0.799690,-1.488796,-0.576205 +0.343181,-1.455989,-0.824983 +-0.748316,-1.389689,0.582271 +0.820342,-1.462654,-0.428156 +0.797861,-1.350370,-0.626628 +-0.227947,-1.398650,0.964613 +0.051725,-1.287958,-1.094937 +-0.857235,-1.333354,0.455203 +-0.571233,-1.429097,0.832047 +-0.816746,-1.367259,-0.647901 +0.904267,-1.447871,0.486512 +-0.112260,-1.418293,-0.879586 +-0.970654,-1.465314,0.228062 +-0.528339,-1.465946,0.833745 +-0.333454,-1.348467,0.982868 +-0.847542,-1.460441,0.451981 +-0.494081,-1.434558,0.845432 +-0.682832,-1.419182,-0.694674 +-0.448227,-1.409452,-0.779464 +0.991059,-1.480698,0.218374 +0.798480,-1.447016,0.530861 +-0.122629,-1.330966,1.004638 +-0.731619,-1.514523,0.710989 +0.001417,-1.389939,-0.884157 +-0.923882,-1.356822,-0.178247 +-0.482205,-1.405216,-0.933654 +-0.369622,-1.380370,-0.977612 +0.491604,-1.394373,-0.999926 +-0.731792,-1.384534,0.738051 +-0.808716,-1.354463,0.623200 +0.923234,-1.477834,-0.032368 +0.433904,-1.382240,1.012040 +0.787082,-1.362400,0.634425 +-0.675285,-1.370503,-0.658645 +0.950933,-1.385877,-0.248343 +0.651389,-1.452446,0.810538 +0.798391,-1.414543,0.520453 +-0.227011,-1.296084,-0.899738 +-0.885331,-1.401391,0.472210 +-0.842679,-1.445640,-0.430038 +0.561104,-1.338229,-0.636535 +0.992093,-1.516876,0.189923 +-0.734272,-1.436484,-0.694507 +-0.846742,-1.426846,-0.544770 +-0.654391,-1.422521,0.689103 +-0.327308,-1.381322,-0.960852 +-1.075770,-1.345601,-0.087844 +0.612874,-1.434111,-0.762363 +-0.961223,-1.338028,0.086151 +0.594345,-1.389230,-0.921215 +-0.891032,-1.479133,0.117181 +0.583531,-1.384840,0.799879 +0.975275,-1.485820,0.364504 +0.422977,-1.437251,0.914588 +-0.767819,-1.418879,-0.519146 +0.251426,-1.449100,0.954396 +0.924409,-1.438316,-0.315171 +-0.938151,-1.487486,0.218183 +-0.402422,-1.444841,-0.888215 +0.011540,-1.469902,0.921872 +-0.569218,-1.380664,-0.773169 +0.316758,-1.428074,-0.995258 +0.327579,-1.442721,1.020438 +-0.866363,-1.457384,-0.559273 +-1.062084,-1.406642,-0.406504 +0.729908,-1.503747,0.792871 +-0.293605,-1.331138,-0.943780 +-0.944236,-1.480918,0.039218 +-0.983295,-1.490827,-0.400566 +0.998331,-1.445336,0.083475 +-0.849564,-1.516990,0.736793 +0.175042,-1.457711,0.991950 +0.973828,-1.376944,-0.388996 +1.020527,-1.440189,-0.277276 +-0.891988,-1.415002,0.432551 +0.342746,-1.398108,-0.998544 +0.469878,-1.453701,0.892824 +0.934816,-1.380304,-0.425568 +-0.289738,-1.437234,1.007979 +0.744214,-1.402686,0.742682 +-0.294245,-1.331863,-0.958146 +-0.976659,-1.396152,0.015221 +0.471337,-1.454123,0.825620 +0.946365,-1.412145,0.377803 +1.054047,-1.453671,-0.227748 +0.199998,-1.288329,-0.943537 +1.008676,-1.473711,0.187317 +0.689321,-1.413902,0.809275 +-0.681866,-1.452088,-0.644000 +0.943838,-1.311659,0.182663 +0.528373,-1.397989,0.799418 +-0.199738,-1.420895,-0.982887 +-0.122951,-1.410340,-1.000611 +-0.959712,-1.356255,-0.188434 +-0.155180,-1.355818,-0.993279 +0.912128,-1.364031,0.318435 +-0.446369,-1.418044,0.925217 +-0.957852,-1.318505,-0.341733 +-0.049809,-1.385512,-0.987638 +0.430241,-1.399344,-0.875589 +0.924809,-1.429674,-0.017781 +1.020768,-1.374626,-0.094763 +0.119896,-1.410014,-1.153391 +-0.614444,-1.340656,0.716518 +-0.743913,-1.312811,-0.703146 +-0.425661,-1.471721,0.994325 +0.182798,-1.397436,1.056774 +0.433529,-1.448160,-0.953355 +0.664645,-1.434327,0.654065 +0.306089,-1.481412,1.039952 +-0.958860,-1.449785,-0.287115 +0.052518,-1.460470,-0.931791 +0.310130,-1.360048,-0.987350 +0.683349,-1.452607,0.820394 +0.739730,-1.283640,0.737955 +0.780563,-1.436627,-0.518551 +-0.098500,-1.403317,-0.830769 +-0.886328,-1.387407,0.595991 +0.338651,-1.393940,0.883416 +0.541684,-1.371873,-0.826310 +0.125469,-1.322307,1.047095 +-0.978366,-1.464447,0.154381 +0.113254,-1.386121,-1.018423 +0.166678,-1.465351,0.885102 +-0.381047,-1.480832,-0.984805 +0.973897,-1.473475,0.114995 +-0.946976,-1.430218,-0.180471 +-0.064550,-1.439270,0.952512 +-0.443234,-1.351370,-0.827657 +0.859927,-1.508750,-0.513324 +0.792077,-1.344407,-0.616130 +0.893697,-1.415142,-0.433798 +0.014265,-1.352267,0.912251 +-0.838804,-1.287535,0.553351 +0.468626,-1.448542,0.894778 +0.935422,-1.410209,0.264831 +-0.989489,-1.356626,-0.263794 +-0.902271,-1.392270,0.457260 +-0.802743,-1.382132,0.460866 +0.723630,-1.321552,-0.590523 +0.908389,-1.356814,-0.631145 +-0.914087,-1.468277,0.256927 +0.981737,-1.371224,0.298376 +0.945097,-1.370763,0.342992 +-0.284765,-1.482891,0.850108 +0.653642,-1.441422,-0.742168 +-0.501124,-1.434062,-0.794613 +0.824378,-1.501523,0.515823 +-0.663322,-1.424205,0.879157 +0.623185,-1.378942,-0.761821 +-0.431799,-1.383586,-0.855443 +0.457072,-1.442107,-0.809743 +0.958136,-1.373583,-0.558400 +-0.378506,-1.266489,0.923388 +-0.044932,-1.440718,0.989800 +-0.941841,-1.378147,-0.260295 +-0.044523,-1.345644,1.065535 +1.075283,-1.300784,-0.117929 +-0.265806,-1.325695,1.007802 +0.008755,-1.456850,1.025083 +-0.939527,-1.401454,0.427114 +0.831902,-1.326857,0.506673 +-0.204206,-1.361792,0.891955 +0.272998,-1.446227,-0.949863 +1.058115,-1.288758,-0.293476 +-0.583946,-1.369266,-0.768836 +0.419092,-1.383294,1.010571 +0.278779,-1.458308,-0.932152 +1.024997,-1.382677,-0.155915 +1.009851,-1.388974,0.038079 +-0.173794,-1.404422,0.961273 +-0.096665,-1.321129,-0.971775 +-0.589426,-1.431064,-0.792728 +0.085940,-1.445483,-0.999772 +-0.947818,-1.506480,-0.097275 +-1.023118,-1.407361,0.003821 +-0.868737,-1.294201,-0.499569 +-0.901711,-1.290289,0.366897 +-0.584740,-1.399707,0.826973 +-0.748894,-1.383109,-0.616517 +0.965184,-1.395831,0.017944 +0.808296,-1.417414,0.573992 +0.984363,-1.332616,-0.404818 +-0.649679,-1.379135,0.874169 +-0.919258,-1.468852,-0.201905 +0.853644,-1.414713,0.514022 +-1.046826,-1.489038,0.203119 +0.805957,-1.365858,-0.588847 +-0.933364,-1.496970,0.002568 +0.395146,0.040232,-1.316354 +2.291279,0.012995,-0.882443 +1.900596,0.001691,-0.650671 +1.676492,0.042747,-2.297789 +0.733149,0.050997,-2.095664 +0.418615,0.033679,-1.801272 +0.823687,-0.066593,-0.521057 +1.921812,-0.009809,-2.211224 +2.123902,-0.034465,-2.166621 +1.561875,0.055351,-0.286502 +0.835335,0.017344,-0.583453 +2.300363,-0.051620,-1.972932 +1.821581,-0.004191,-2.273231 +0.656090,-0.000317,-0.835720 +2.344855,-0.002913,-1.761884 +2.111185,-0.088125,-2.063183 +1.283896,0.008852,-0.428695 +1.414921,0.096677,-2.454655 +0.515775,0.031352,-0.966254 +0.934276,0.034331,-0.506214 +0.701728,-0.008862,-2.143020 +2.268603,-0.053638,-0.891508 +1.381582,0.081224,-2.377580 +0.474935,-0.016343,-1.208162 +0.972061,-0.021256,-0.494188 +1.032617,-0.048490,-0.413996 +0.572461,-0.054211,-0.881363 +0.861658,0.000908,-0.461326 +0.737305,0.043773,-2.002123 +0.825460,-0.054223,-2.284045 +2.346296,-0.129500,-1.132417 +2.214377,0.043107,-0.844790 +1.210527,0.032448,-0.372532 +0.650623,-0.027116,-0.815288 +1.340014,-0.040836,-2.395921 +0.355889,-0.028240,-1.592726 +0.955421,0.023414,-2.268876 +1.003532,-0.084759,-2.351852 +1.803377,-0.022181,-2.300703 +0.749436,0.044665,-0.769766 +0.647157,0.035217,-0.831427 +2.442250,-0.008821,-1.571656 +1.793161,0.011933,-0.482746 +2.126909,-0.039550,-0.681896 +0.627097,0.009155,-2.017781 +2.324186,-0.049186,-1.677981 +2.043968,-0.066672,-0.602554 +2.247485,0.033129,-0.904138 +1.178273,0.091865,-2.281629 +0.549476,0.018562,-1.029502 +0.534697,-0.008691,-1.794950 +2.026505,-0.009511,-2.141083 +2.401234,0.027155,-1.275421 +0.641572,0.089363,-1.992060 +0.563866,-0.072820,-1.951567 +0.766690,0.073761,-0.716598 +1.084145,0.010776,-2.303505 +0.383075,-0.086010,-1.303044 +2.099288,-0.004543,-2.148225 +0.381788,-0.046518,-1.218213 +1.983396,0.026970,-2.144464 +0.346422,-0.030361,-1.297205 +1.931046,0.043073,-0.583226 +2.275187,0.003617,-1.022507 +1.905398,0.021623,-0.483630 +0.590535,-0.010352,-2.001475 +1.664576,-0.018322,-0.338477 +2.414701,0.034806,-1.717922 +0.444106,-0.069362,-1.102872 +0.979798,0.012620,-2.279003 +1.419262,-0.038068,-0.438063 +0.818485,0.042404,-2.171603 +1.762228,-0.005649,-2.328040 +1.704989,0.139425,-0.429270 +0.592115,-0.092756,-1.962496 +0.549830,0.022127,-2.038549 +2.121618,0.105499,-0.780806 +1.144828,-0.152458,-2.289291 +0.399524,-0.129248,-1.375462 +0.522415,0.020014,-1.706572 +2.375385,-0.102376,-1.299157 +0.746125,0.062127,-0.848021 +1.442014,-0.046528,-0.495499 +2.320185,0.021638,-1.875812 +2.403036,0.033061,-1.709140 +0.499505,-0.107239,-0.964284 +1.739144,0.009281,-2.320043 +1.839213,-0.014539,-0.479432 +2.406168,-0.005252,-1.691549 +1.051023,-0.035572,-0.430361 +2.139976,0.021238,-0.761022 +1.104292,-0.018048,-2.388240 +0.309974,0.021059,-1.418676 +1.955773,-0.029230,-0.435012 +2.319995,-0.048131,-1.115915 +2.286922,0.084295,-1.511973 +1.712032,-0.049285,-2.260674 +2.362943,-0.014796,-1.133569 +2.097552,0.121061,-0.636209 +0.569146,-0.033649,-2.089370 +2.376792,0.062953,-1.241731 +1.936944,-0.054721,-0.543194 +1.207015,0.023690,-2.359413 +1.199733,0.047695,-2.559943 +0.460763,0.141368,-1.761952 +1.199343,-0.000435,-2.407729 +2.408057,0.025985,-1.082606 +1.075725,0.000921,-0.295331 +0.478548,0.010741,-1.862200 +1.244777,0.063106,-2.465565 +1.763088,0.001777,-2.200916 +2.402331,-0.018487,-1.502217 +2.422901,0.036370,-1.560786 +1.556508,0.042113,-2.333285 +0.844309,0.035953,-0.562343 +0.697655,-0.100032,-2.143870 +0.933740,-0.007140,-0.473825 +1.605239,0.061441,-0.354546 +1.749167,0.013122,-2.364385 +2.027070,0.017699,-0.816966 +1.841635,0.031152,-0.481707 +0.537422,-0.019109,-1.641401 +1.529643,0.090860,-2.393462 +1.595603,0.066208,-2.350105 +2.104118,0.061072,-0.553277 +2.167569,0.006422,-0.729304 +2.348380,-0.032956,-1.897061 +1.221332,-0.065113,-2.424041 +0.569843,0.097300,-0.808437 +1.688574,-0.040039,-0.383508 +1.997790,0.001548,-2.268667 +1.555980,-0.054633,-0.382876 +0.542709,0.011295,-1.255277 +1.547904,-0.025850,-2.468791 +1.656700,0.061481,-0.441183 +1.011127,-0.052886,-2.338023 +2.364632,-0.055607,-1.201822 +0.437969,0.031482,-1.507847 +1.348299,-0.022721,-0.389448 +0.876162,0.024115,-2.241949 +2.187971,-0.073111,-1.979742 +2.159278,-0.103970,-2.009503 +2.344100,0.139060,-1.875506 +1.401782,-0.061018,-0.389018 +0.602111,-0.044621,-0.821836 +1.772927,0.050951,-0.566081 +2.374011,-0.078468,-1.213886 +0.433566,-0.000621,-1.682632 +0.518855,0.040299,-1.068090 +0.618794,0.031334,-0.892977 +2.184470,0.059016,-2.048876 +2.147076,-0.046280,-1.977200 +0.501998,-0.001174,-0.998734 +2.440921,0.065954,-1.085005 +2.260720,0.026545,-1.036266 +1.030310,-0.015811,-0.366846 +2.038248,0.110980,-2.180407 +0.972546,0.009764,-2.225844 +2.190376,0.061081,-0.918575 +0.726988,0.070468,-0.565785 +2.169370,-0.019921,-2.109910 +0.914954,0.043038,-2.190861 +1.929289,0.108619,-2.211396 +2.247828,0.045579,-1.815215 +1.112758,0.065279,-0.480833 +1.262749,0.031684,-0.315817 +0.447941,0.024999,-1.615316 +1.381966,-0.008917,-0.392552 +2.486610,-0.013184,-1.522440 +1.103714,0.039415,-0.356249 +1.552138,0.011185,-0.370384 +0.461778,0.029041,-1.014607 +2.193360,0.007576,-0.762237 +1.165678,-0.013337,-0.330178 +1.858097,-0.066240,-2.420327 +2.315940,-0.005681,-1.599422 +0.819612,0.009462,-2.161064 +1.759083,-0.013427,-0.483351 +1.531011,-0.063872,-2.437603 +2.417943,0.013495,-1.584535 +2.298326,-0.081596,-1.332112 +1.184383,0.067355,-0.502256 +1.414973,-0.048872,-2.341817 +0.988664,-0.125025,-2.170771 +1.331962,0.023472,-2.410879 +0.411576,-0.050143,-1.451179 +0.320834,0.068290,-1.391098 +0.446545,0.087722,-1.885458 +0.587165,0.067175,-1.046750 +0.710778,0.006657,-0.587085 +0.633908,0.009696,-2.023900 +2.396726,0.071753,-1.431207 +2.187292,-0.031048,-0.842672 +2.252661,-0.041271,-1.685711 +0.775730,0.038743,-0.746177 +0.448970,-0.008874,-1.613861 +2.314780,-0.027270,-1.091034 +0.482140,0.013366,-1.168577 +2.137015,-0.080842,-2.000593 +0.490713,0.011174,-1.538842 +0.424693,-0.002934,1.603957 +2.324377,-0.164220,1.883979 +1.932594,-0.078195,2.198651 +1.671293,-0.090240,0.470169 +0.804560,0.002584,0.581767 +0.455128,0.056426,0.862892 +0.896462,-0.009086,2.221810 +1.893840,-0.008069,0.624730 +2.011045,0.027425,0.675927 +1.521028,0.047007,2.266564 +0.937314,0.089069,2.355504 +2.265767,-0.016592,0.829204 +1.837330,0.029909,0.464595 +0.671145,0.117324,2.034020 +2.230885,-0.073961,1.016932 +2.146825,0.048226,0.709338 +1.258303,-0.008706,2.342000 +1.440736,-0.065838,0.511388 +0.550371,0.035448,1.906299 +0.806317,-0.012863,2.304894 +0.642391,-0.047879,0.724003 +2.303753,0.090357,1.901210 +1.372629,0.039560,0.338557 +0.371100,-0.059614,1.544875 +0.989760,0.015953,2.295379 +0.948384,0.113051,2.301872 +0.636543,-0.079708,1.837072 +0.769802,0.019917,2.200173 +0.633878,-0.075488,0.735648 +0.903304,0.099662,0.517958 +2.372329,-0.070913,1.660564 +2.215791,0.025545,1.991763 +1.298074,-0.046355,2.442604 +0.690469,-0.017853,2.068139 +1.369204,0.095827,0.416908 +0.417489,-0.014424,1.409196 +1.017785,-0.039658,0.493945 +0.991069,0.008023,0.443678 +1.849914,0.079865,0.422923 +0.608983,-0.026574,2.060523 +0.719761,0.055094,2.064845 +2.381022,-0.015747,1.226048 +1.811120,0.027008,2.400506 +2.117373,-0.007798,2.093900 +0.678541,-0.080862,0.803059 +2.386561,-0.058225,1.128912 +2.005401,0.079624,2.282263 +2.246626,0.107910,1.959722 +1.234288,-0.024818,0.395780 +0.457910,-0.113329,1.896569 +0.459883,-0.044079,0.909322 +2.050072,0.096992,0.765047 +2.296341,-0.019495,1.499545 +0.769811,0.015763,0.636020 +0.543249,-0.026258,0.979742 +0.768771,0.036840,2.003431 +1.087310,0.114577,0.521881 +0.300383,-0.017238,1.396707 +2.131535,0.013435,0.587258 +0.409764,-0.143405,1.465660 +1.964088,0.046512,0.466147 +0.383474,0.055533,1.414278 +1.974688,0.003629,2.321371 +2.317119,-0.009438,1.815147 +1.781041,-0.012149,2.265942 +0.565279,0.046662,0.868396 +1.607512,0.007518,2.450557 +2.295156,0.007984,1.050638 +0.445478,-0.089686,1.786609 +0.931631,0.056434,0.460997 +1.334186,0.066722,2.454170 +0.750165,0.041863,0.634019 +1.767664,-0.036389,0.519947 +1.640853,0.081684,2.342923 +0.556800,0.041730,0.865486 +0.465860,-0.001651,1.052012 +2.048090,-0.006943,2.129534 +1.108814,-0.005491,0.558576 +0.391390,-0.013073,1.390593 +0.386704,-0.057020,1.032075 +2.460497,-0.001822,1.436135 +0.717348,0.085315,2.130358 +1.478413,-0.027239,2.491870 +2.331017,-0.014719,1.042361 +2.415695,-0.031430,1.133078 +0.559954,-0.063816,1.854669 +1.677446,-0.054097,0.428149 +1.852021,-0.017711,2.269164 +2.353892,-0.063083,1.114567 +1.123488,-0.004356,2.329735 +2.191052,-0.111566,2.066949 +1.291613,-0.006747,0.433154 +0.441392,0.090493,1.422212 +1.790483,0.030987,2.402198 +2.375115,-0.063503,1.754239 +2.311849,0.067804,1.160045 +1.683075,-0.047178,0.409652 +2.464026,0.005690,1.556625 +1.998324,-0.102944,2.081291 +0.597141,0.053913,0.781395 +2.478495,-0.039463,1.512243 +1.876450,0.054492,2.359691 +1.054410,-0.019039,0.500980 +1.163984,0.031168,0.479493 +0.444009,0.030264,1.217859 +1.319782,-0.003408,0.388432 +2.300458,0.053733,1.633569 +1.017984,0.005648,2.302111 +0.485614,0.141048,1.025188 +1.250719,0.055843,0.421062 +1.960917,0.009058,0.510030 +2.301895,-0.089085,1.299037 +2.418890,-0.074924,1.406266 +1.495772,-0.013430,0.358026 +0.846439,-0.044247,2.154821 +0.715248,0.019504,0.725767 +1.009500,0.000491,2.325893 +1.542455,0.113872,2.350408 +1.882729,-0.010388,0.526636 +2.077806,0.063077,2.124279 +1.768177,0.101554,2.336828 +0.433326,-0.028790,1.132256 +1.650563,-0.055233,0.360495 +1.675981,0.034350,0.534333 +2.082333,0.006945,2.070770 +2.157993,-0.097575,2.098984 +2.294098,-0.003166,0.896776 +1.256680,0.040024,0.340028 +0.601074,0.114095,2.043787 +1.655956,-0.029521,2.364061 +1.931961,-0.076967,0.576864 +1.493557,0.105288,2.381634 +0.481953,-0.069690,1.530841 +1.565025,0.059605,0.355229 +1.619467,-0.075987,2.365950 +1.077906,-0.023923,0.456527 +2.333423,-0.035660,1.590804 +0.416323,-0.055127,1.226253 +1.218033,-0.055779,2.470381 +0.883122,0.103990,0.534014 +2.207038,0.035249,0.665222 +2.181785,-0.002694,0.844308 +2.344064,-0.062353,1.014327 +1.416983,-0.049745,2.410347 +0.579831,0.084616,2.006519 +1.893065,0.049536,2.336415 +2.419015,0.078070,1.651621 +0.458164,0.068154,1.085984 +0.441535,0.094687,1.768197 +0.538808,-0.024945,1.989516 +2.172992,0.017357,0.697750 +2.245324,-0.001194,0.801378 +0.466217,0.014598,1.718091 +2.418294,0.070886,1.702034 +2.302561,0.041570,1.801436 +1.053043,0.037000,2.368331 +2.155552,0.080150,0.648958 +0.851621,0.009005,0.517717 +2.165098,-0.047991,1.906417 +0.646771,-0.029938,2.156895 +2.095258,-0.036395,0.674110 +1.013060,0.036418,0.492877 +1.905282,-0.001557,0.497020 +2.218440,0.055579,0.867870 +0.942644,-0.002373,2.324245 +1.166168,-0.002241,2.439854 +0.448901,0.122639,1.250668 +1.479691,0.154005,2.441699 +2.401084,0.053556,1.243909 +1.157233,-0.035625,2.390472 +1.426936,-0.037781,2.420768 +0.462649,-0.106014,1.688069 +2.127055,-0.048563,2.035700 +1.193898,0.058590,2.417321 +1.767972,0.033462,0.460476 +2.429048,0.050568,1.171995 +0.857002,-0.129018,0.593870 +1.780329,0.063398,2.404181 +1.538383,0.077614,0.359654 +2.313150,-0.012886,1.164355 +2.313794,0.035743,1.468778 +1.395182,-0.023840,2.395850 +1.366916,0.092840,0.244610 +0.759583,0.000305,0.531277 +1.417203,-0.006934,0.364321 +0.407984,0.034548,1.292897 +0.375568,-0.009117,1.431002 +0.427976,0.025385,0.893441 +0.551630,0.032508,1.861502 +0.659848,-0.020426,2.060633 +0.571059,0.068866,0.868905 +2.336359,-0.025205,1.364398 +2.241225,-0.096790,1.899620 +2.356706,-0.107197,1.007302 +0.796008,0.022862,2.182361 +0.397596,0.046451,1.228305 +2.269241,0.002075,1.846854 +0.525920,0.043248,1.715491 +2.156572,-0.028830,0.774147 +0.394077,-0.055441,1.406836 +-0.939104,1.383188,0.191729 +0.903266,1.439591,0.380054 +0.579774,1.396808,0.843317 +0.214126,1.262504,-1.028077 +-0.640782,1.403514,-0.677907 +-0.858955,1.404484,-0.455772 +-0.501353,1.367544,0.819365 +0.527876,1.478040,-0.787430 +0.645633,1.393705,-0.700938 +0.142645,1.370604,0.951703 +-0.463111,1.380307,0.851350 +0.770845,1.404270,-0.545794 +0.436300,1.410932,-0.849866 +-0.731927,1.430400,0.624187 +0.873642,1.342585,-0.458403 +0.751192,1.356754,-0.656029 +-0.240481,1.308645,1.027355 +0.036698,1.353963,-1.058188 +-0.821061,1.475620,0.513658 +-0.547683,1.458940,0.744753 +-0.620791,1.534426,-0.833396 +0.870944,1.360458,0.467191 +-0.085802,1.444647,-1.004218 +-1.026017,1.390530,0.246456 +-0.519095,1.309457,1.000607 +-0.344350,1.392446,0.929178 +-0.846162,1.497503,0.513650 +-0.592551,1.323873,0.838799 +-0.721860,1.305293,-0.662043 +-0.595574,1.482132,-0.744193 +0.946640,1.424143,0.211234 +0.878630,1.372599,0.476029 +-0.172348,1.374384,0.969805 +-0.654874,1.356808,0.802533 +-0.072878,1.488849,-1.055908 +-0.992170,1.373039,-0.144238 +-0.409916,1.482490,-0.825528 +-0.419415,1.410134,-0.960769 +0.371244,1.336953,-0.928894 +-0.715240,1.294850,0.681998 +-0.706774,1.461705,0.580722 +0.918734,1.425291,-0.221567 +0.429183,1.388253,1.030498 +0.633986,1.450498,0.679019 +-0.788721,1.324659,-0.604658 +1.024876,1.498182,-0.100992 +0.580243,1.344788,0.714888 +0.908108,1.357200,0.643496 +-0.189264,1.418145,-0.992795 +-0.868490,1.399149,0.405473 +-0.866547,1.392082,-0.469688 +0.694302,1.396481,-0.723221 +0.962726,1.333498,0.251864 +-0.599483,1.448608,-0.750298 +-0.877260,1.476028,-0.528502 +-0.696102,1.502973,0.747489 +-0.211754,1.323088,-0.922556 +-0.884117,1.401636,0.048270 +0.573198,1.459529,-0.812870 +-0.997329,1.332102,0.210962 +0.625602,1.398263,-0.890559 +-0.911087,1.379874,0.033322 +0.465167,1.364472,0.747075 +0.895521,1.440942,0.347478 +0.473554,1.360217,0.894591 +-0.721431,1.380833,-0.540940 +0.162586,1.483606,0.942337 +0.998660,1.393225,-0.305101 +-0.914151,1.375116,0.369072 +-0.467523,1.442786,-0.926288 +-0.012185,1.374590,1.002255 +-0.720420,1.413616,-0.747681 +0.338416,1.396973,-0.922406 +0.245091,1.392918,0.904988 +-0.715313,1.458252,-0.520807 +-0.853288,1.291141,-0.537820 +0.662586,1.324179,0.715955 +-0.327427,1.450623,-1.003485 +-0.978020,1.400791,0.019113 +-0.969468,1.476072,-0.344431 +1.095607,1.356529,0.103646 +-0.753393,1.381974,0.696089 +0.108879,1.253592,0.823657 +0.987738,1.467664,-0.293344 +0.959330,1.328905,-0.302068 +-0.890378,1.344613,0.544662 +0.461911,1.426305,-0.941478 +0.354556,1.485054,0.909024 +0.935152,1.426465,-0.341231 +-0.330660,1.320664,1.000671 +0.764771,1.463734,0.626361 +-0.286482,1.333323,-0.918507 +-1.047678,1.373247,-0.031353 +0.515709,1.306165,0.848048 +0.984618,1.379191,0.326378 +0.991220,1.393072,-0.244060 +0.276992,1.454674,-1.018108 +0.961691,1.324010,0.239157 +0.656232,1.353239,0.755186 +-0.875215,1.343158,-0.668093 +0.933442,1.474654,0.085012 +0.561469,1.354003,0.886102 +-0.305124,1.402158,-0.965676 +-0.028405,1.434673,-1.020298 +-0.922616,1.517600,-0.368621 +-0.233718,1.386971,-1.005227 +0.932755,1.328267,0.386235 +-0.446368,1.388988,0.987297 +-0.931437,1.346133,-0.442302 +-0.137983,1.358363,-0.980827 +0.404674,1.444717,-0.869951 +1.010441,1.479259,-0.024079 +0.958107,1.369873,-0.073379 +0.089105,1.354312,-1.106832 +-0.618636,1.419790,0.816511 +-0.684136,1.507552,-0.619549 +-0.349741,1.442173,0.998872 +0.289178,1.452314,1.021138 +0.385860,1.397726,-0.936336 +0.671593,1.360381,0.760002 +0.179483,1.494770,0.938930 +-0.943526,1.480178,-0.232174 +0.235873,1.331704,-0.855833 +0.247172,1.411506,-0.903908 +0.642832,1.384126,0.786541 +0.647423,1.430825,0.690582 +0.984614,1.312937,-0.393224 +-0.124879,1.375414,-1.062772 +-0.886912,1.422194,0.500905 +0.379454,1.363537,0.874164 +0.506797,1.418519,-0.859582 +0.095990,1.438291,1.055095 +-0.999342,1.342568,0.191567 +0.151219,1.319660,-1.041098 +0.178588,1.388570,0.934060 +-0.329237,1.311718,-1.016661 +0.977198,1.390339,0.014103 +-1.021060,1.377943,-0.178066 +-0.085755,1.363613,1.076843 +-0.482190,1.355609,-0.855544 +0.815838,1.466810,-0.620806 +0.812717,1.402302,-0.555388 +0.962006,1.410834,-0.468416 +0.059274,1.390075,1.091923 +-0.804701,1.377690,0.562506 +0.415037,1.430611,0.831206 +1.036315,1.328889,0.225142 +-0.887794,1.281626,-0.198012 +-0.983684,1.407760,0.310421 +-0.820805,1.415064,0.563898 +0.757518,1.496848,-0.655819 +0.935136,1.449559,-0.661400 +-0.797270,1.368411,0.420993 +0.970057,1.458360,0.210824 +0.952171,1.386075,0.483993 +-0.254864,1.451477,0.841269 +0.608201,1.422580,-0.777856 +-0.509220,1.379875,-0.824397 +0.925709,1.274672,0.541456 +-0.655788,1.349823,0.789023 +0.774617,1.457153,-0.714538 +-0.433588,1.447744,-0.881112 +0.470922,1.365062,-0.814660 +0.858424,1.342460,-0.601709 +-0.351397,1.369927,0.935926 +-0.057149,1.328009,0.989632 +-0.985305,1.420886,-0.149989 +-0.073120,1.431339,1.056734 +0.981864,1.392440,-0.102319 +-0.229725,1.432029,0.999454 +0.008782,1.454465,1.062200 +-0.919542,1.317821,0.361814 +0.800847,1.337047,0.593099 +-0.295659,1.433401,0.985044 +0.218499,1.419331,-0.954165 +0.996986,1.378466,-0.292771 +-0.655304,1.370401,-0.789120 +0.405286,1.389510,0.894472 +0.198816,1.537925,-1.018307 +0.945228,1.581162,-0.194988 +0.923608,1.446348,-0.018641 +-0.012792,1.388397,0.973838 +0.057093,1.431152,-0.945992 +-0.563865,1.375556,-0.775393 +0.097918,1.407411,-0.900416 +-0.948785,1.411659,-0.080277 +-0.991959,1.331182,0.026457 +-0.864141,1.377115,-0.463181 +-0.916583,1.442553,0.433619 +-0.675354,1.324803,0.827458 +-0.797959,1.395551,-0.631746 +0.972644,1.484923,0.044822 +0.833459,1.394087,0.621837 +0.933835,1.389538,-0.349529 +-0.637171,1.413875,0.801387 +-0.949126,1.365947,-0.148324 +0.854980,1.368509,0.396688 +-1.027546,1.455861,0.195392 +0.751715,1.469047,-0.644289 +-1.008375,1.344338,-0.016978 +-2.341118,-1.202924,0.029564 +-0.504946,-0.974850,-0.044823 +-0.741270,-0.548919,-0.038132 +-1.149119,-2.385089,-0.062052 +-2.027653,-2.193365,-0.052390 +-2.372359,-1.940000,-0.020428 +-1.966764,-0.621061,0.035791 +-0.815820,-2.177288,-0.010060 +-0.758744,-2.122692,-0.069447 +-1.213896,-0.463855,0.050503 +-1.900369,-0.465254,-0.061744 +-0.592949,-1.914875,0.064377 +-0.854346,-2.288731,0.101076 +-2.186445,-0.702144,-0.051820 +-0.472062,-1.954572,-0.061688 +-0.624222,-2.133496,0.023482 +-1.537526,-0.445285,-0.053292 +-1.363290,-2.451146,-0.005567 +-2.238713,-0.881004,0.092090 +-1.975394,-0.479143,-0.057268 +-2.124966,-2.019476,0.062225 +-0.546808,-0.887717,0.023165 +-1.492487,-2.364149,0.102437 +-2.349973,-1.150707,0.036969 +-1.934344,-0.483681,-0.055922 +-1.741461,-0.330037,-0.013929 +-2.317016,-0.854854,-0.052122 +-1.933649,-0.470560,0.002352 +-2.192995,-2.077187,-0.021806 +-1.851135,-2.277668,0.057817 +-0.342043,-1.167811,-0.010627 +-0.534298,-0.911327,0.014866 +-1.568805,-0.425790,0.002692 +-2.103187,-0.683880,-0.032935 +-1.430534,-2.406522,-0.002462 +-2.416251,-1.507517,-0.099812 +-1.894166,-2.306403,-0.047086 +-1.707542,-2.316717,0.009722 +-1.000798,-2.305695,-0.066839 +-2.138309,-0.766988,-0.015257 +-2.330950,-0.849133,0.080516 +-0.358766,-1.421561,0.076325 +-0.994861,-0.495131,-0.057049 +-0.607960,-0.711902,0.137171 +-2.190594,-1.928915,-0.008624 +-0.338829,-1.463116,-0.056262 +-0.813768,-0.666659,-0.067647 +-0.536231,-0.848731,0.002880 +-1.587550,-2.478073,0.070772 +-2.324027,-0.944939,0.034139 +-2.229433,-1.831546,-0.116800 +-0.735546,-2.139072,-0.056884 +-0.404200,-1.263422,-0.073851 +-2.047615,-2.159974,-0.022351 +-2.286184,-1.841090,-0.002250 +-2.056961,-0.674124,0.025458 +-1.634805,-2.315424,0.037778 +-2.364684,-1.413123,-0.048187 +-0.773850,-2.210436,-0.058550 +-2.495084,-1.348726,-0.014109 +-0.841735,-2.270699,0.004341 +-2.419423,-1.245910,-0.008889 +-0.799618,-0.561743,-0.077114 +-0.475210,-1.099835,-0.005947 +-0.986992,-0.487986,-0.073829 +-2.226272,-1.930601,0.049918 +-1.193339,-0.430441,0.010128 +-0.374027,-1.820211,-0.050111 +-2.196811,-1.106003,-0.104005 +-1.857820,-2.457115,0.013251 +-1.386873,-0.450635,-0.025890 +-2.010511,-2.246373,-0.072686 +-1.044422,-2.371155,-0.016163 +-1.190515,-0.427919,-0.008208 +-2.214122,-1.924805,0.011368 +-2.397302,-1.770055,-0.018198 +-0.724616,-0.613377,-0.039569 +-1.664423,-2.261435,0.041403 +-2.453934,-1.520246,0.059336 +-2.334755,-1.779724,0.064546 +-0.449359,-1.360538,0.028869 +-2.211359,-0.744710,0.059903 +-1.263056,-0.339277,0.062348 +-0.481820,-1.925669,-0.060817 +-0.397723,-1.764255,-0.017968 +-2.272390,-0.865183,-0.031626 +-1.096654,-2.343765,0.019300 +-0.982704,-0.437463,-0.043953 +-0.442335,-1.684530,-0.022013 +-1.692554,-0.450927,0.043387 +-0.618811,-0.741874,-0.034782 +-1.713684,-2.292952,0.034953 +-2.455770,-1.421463,-0.130558 +-0.922525,-0.486401,-0.006883 +-0.452634,-1.227163,-0.021574 +-0.399108,-1.561790,0.052930 +-1.132573,-2.369405,-0.073266 +-0.428961,-1.282005,-0.101633 +-0.798373,-0.566911,-0.014881 +-2.196924,-2.016028,-0.098480 +-0.356399,-1.394138,-0.030514 +-0.867177,-0.542995,-0.039956 +-1.749778,-2.412643,-0.041182 +-1.598955,-2.334335,-0.066748 +-2.343740,-1.670285,0.052825 +-1.594704,-2.338775,-0.009472 +-0.425052,-1.173645,-0.145105 +-1.747359,-0.446508,0.026153 +-2.358648,-1.686190,-0.025293 +-1.502185,-2.359410,0.094531 +-0.935683,-2.312232,-0.082398 +-0.314620,-1.376822,0.024918 +-0.230555,-1.444913,-0.071628 +-1.316666,-2.449175,-0.021773 +-2.009928,-0.623269,-0.076631 +-2.062523,-2.044875,-0.012401 +-1.784109,-0.469264,0.015163 +-1.174944,-0.410346,0.036862 +-0.961431,-2.308805,-0.012122 +-0.678404,-0.655771,0.021522 +-1.068218,-0.482469,-0.044430 +-2.388045,-1.675762,-0.080197 +-1.279398,-2.373046,0.069627 +-1.182127,-2.525262,0.035272 +-0.723592,-0.667974,-0.000777 +-0.660487,-0.744311,-0.001233 +-0.449751,-1.882835,0.059704 +-1.442413,-2.358874,-0.098264 +-2.165666,-0.863101,0.039365 +-1.114751,-0.524298,0.108701 +-0.916807,-2.181292,0.006513 +-1.328998,-0.406904,-0.071560 +-2.383044,-1.272169,-0.021749 +-1.223775,-2.378134,-0.081519 +-1.135025,-0.424474,-0.029820 +-1.727057,-2.338973,-0.064111 +-0.302809,-1.306842,-0.004476 +-2.409969,-1.491536,-0.028868 +-1.579082,-0.441765,0.072973 +-1.863274,-2.274768,0.075529 +-0.549846,-2.002448,-0.009125 +-0.611374,-2.083178,0.000248 +-0.492025,-1.946774,-0.010413 +-1.385257,-0.343950,-0.101447 +-2.230000,-0.838711,0.052804 +-0.920641,-0.424908,0.036422 +-0.446646,-1.168676,-0.019474 +-2.303790,-1.782288,-0.045303 +-2.335231,-1.053592,-0.121108 +-2.185146,-0.898666,-0.103613 +-0.836126,-2.168663,-0.001084 +-0.576544,-1.927257,-0.030222 +-2.401823,-1.083982,0.001849 +-0.418724,-1.194714,0.049580 +-0.516422,-1.050687,-0.029832 +-1.619875,-0.447010,-0.038198 +-0.736157,-2.072304,0.011533 +-1.894222,-2.170096,-0.033310 +-0.537793,-0.961499,-0.011272 +-2.071864,-0.651645,-0.041244 +-0.708684,-2.077834,-0.006572 +-1.984294,-2.317343,-0.083567 +-0.877535,-2.233060,0.014110 +-0.582565,-1.895464,-0.025856 +-1.859750,-0.441439,0.044992 +-1.473144,-0.441344,0.064865 +-2.403064,-1.582201,-0.028100 +-1.412319,-0.533165,-0.016605 +-0.402875,-1.547886,0.096590 +-1.712626,-0.462414,-0.049768 +-1.368217,-0.345246,0.081292 +-2.368320,-1.071641,-0.063642 +-0.537999,-0.725438,-0.005829 +-1.694929,-0.495950,0.009385 +-1.060769,-2.464694,-0.017672 +-0.342411,-1.660653,0.081930 +-1.977210,-2.249790,-0.016097 +-1.009930,-0.534634,-0.053343 +-1.098984,-2.429672,0.059314 +-0.448090,-1.619553,0.030901 +-0.433414,-1.337355,-0.112554 +-1.438607,-0.537742,-0.012477 +-1.384427,-2.365280,-0.071413 +-2.052117,-2.246894,0.010242 +-1.480346,-2.400234,0.017129 +-2.411129,-1.465216,0.012305 +-2.429298,-1.475080,0.007338 +-2.328726,-1.913563,0.026352 +-2.239801,-1.004945,0.030474 +-2.163993,-0.657528,-0.003295 +-2.122547,-2.042632,-0.013290 +-0.342259,-1.436473,-0.060986 +-0.450643,-0.871537,-0.003559 +-0.451156,-1.753406,-0.010436 +-2.023069,-0.622766,-0.061376 +-2.264025,-1.599481,0.032831 +-0.513579,-0.993733,-0.025049 +-2.453825,-1.160144,-0.022385 +-0.545411,-2.078726,-0.031743 +-2.447441,-1.383451,-0.047817 +-2.356762,1.609793,-0.008037 +-0.584718,1.778962,0.047287 +-0.881547,2.230578,0.006289 +-1.130568,0.457354,-0.051352 +-2.091078,0.668808,-0.034614 +-2.442265,0.981691,-0.056994 +-1.936391,2.303686,0.000922 +-0.757448,0.599442,0.087309 +-0.773869,0.670580,0.037024 +-1.254038,2.451060,-0.023762 +-1.767938,2.393028,0.015514 +-0.525279,0.929715,-0.065296 +-1.018170,0.578097,0.015069 +-2.182971,2.038036,-0.131232 +-0.505654,0.932803,0.050494 +-0.595162,0.770406,0.021750 +-1.669735,2.414773,0.034617 +-1.268724,0.518475,-0.093091 +-2.265694,1.895002,0.009488 +-1.935090,2.231453,0.056518 +-2.189546,0.658191,-0.056332 +-0.543511,1.814181,-0.002671 +-1.471892,0.358715,0.048057 +-2.379189,1.676589,-0.010728 +-1.855321,2.260053,-0.000388 +-1.669844,2.328433,0.028513 +-2.321008,1.923501,-0.031895 +-1.862199,2.264096,0.083652 +-2.170581,0.611703,-0.033892 +-2.011980,0.479622,0.034185 +-0.439936,1.652609,-0.021283 +-0.588520,2.026597,-0.040453 +-1.629152,2.431471,-0.011867 +-1.994974,2.078165,0.046529 +-1.340479,0.371327,-0.040861 +-2.351340,1.306286,-0.077584 +-1.916054,0.369490,0.032746 +-1.811548,0.473327,-0.093029 +-1.034616,0.468885,-0.036978 +-2.122488,2.116638,0.124829 +-2.191256,2.074254,-0.045649 +-0.496560,1.286515,-0.087875 +-1.031068,2.286852,-0.107485 +-0.575550,2.054981,-0.090069 +-2.121114,0.722502,0.059959 +-0.452648,1.213816,0.018966 +-0.754466,2.232422,-0.004936 +-0.543846,2.003093,0.011031 +-1.625989,0.344592,0.032955 +-2.302507,1.803030,0.070277 +-2.383358,1.064643,-0.001225 +-0.721225,0.628162,-0.091689 +-0.419990,1.574845,0.037192 +-2.095439,0.550442,-0.084791 +-2.147881,0.830869,0.078488 +-2.112687,2.140076,0.034386 +-1.754128,0.536515,0.004165 +-2.372680,1.448072,0.036230 +-0.675742,0.622266,0.095134 +-2.425752,1.567359,0.026901 +-0.896689,0.584679,0.000405 +-2.442488,1.513798,0.008046 +-0.841909,2.223309,-0.004951 +-0.490447,1.775815,-0.035415 +-0.799885,2.213493,-0.032160 +-2.254896,0.950144,-0.072607 +-1.127884,2.382245,0.018348 +-0.391120,1.128133,-0.024803 +-2.340386,1.606491,0.005450 +-1.869449,0.484922,-0.092695 +-1.409143,2.306195,0.008156 +-2.128770,0.603159,0.063510 +-0.999540,0.533430,0.085785 +-1.163515,2.442737,-0.080603 +-2.203292,0.837040,-0.051167 +-2.283959,1.054824,0.050340 +-0.703636,2.136226,0.028978 +-1.722031,0.488894,0.011220 +-2.353647,1.310504,-0.007220 +-2.416992,1.076481,0.090306 +-0.428048,1.469789,0.041607 +-2.263836,2.032596,0.020048 +-1.434001,2.338390,0.060547 +-0.427081,1.023440,0.048521 +-0.427876,1.151556,-0.017361 +-2.284637,1.819210,0.069492 +-0.977576,0.535014,-0.022446 +-1.026678,2.375061,0.029915 +-0.430871,1.056133,0.023412 +-1.798428,2.375754,0.075839 +-0.539779,2.076393,-0.076011 +-1.668138,0.557389,-0.047774 +-2.402762,1.446333,0.033942 +-0.754550,2.220434,-0.054437 +-0.391792,1.672965,-0.010822 +-0.421323,1.269598,0.033785 +-1.095870,0.417573,0.066825 +-0.196292,1.625402,0.005482 +-0.810071,2.115050,-0.011754 +-2.238420,0.811330,0.097791 +-0.339291,1.516597,-0.066455 +-0.790618,2.241630,-0.094958 +-1.609506,0.487830,-0.133425 +-1.601785,0.406237,0.040398 +-2.388660,1.075241,0.039994 +-1.613139,0.447526,-0.061133 +-0.523322,1.750557,0.013889 +-1.717389,2.300484,-0.043731 +-2.254937,0.948113,0.068830 +-1.452705,0.455190,-0.037829 +-0.963155,0.512140,-0.071227 +-0.452893,1.435460,0.035714 +-0.459700,1.374396,0.024987 +-1.222848,0.435741,0.058222 +-1.961546,2.262913,-0.070791 +-2.156807,0.736544,-0.013406 +-1.801366,2.339718,0.021574 +-1.222351,2.341822,0.060345 +-0.983617,0.426222,-0.010653 +-0.858457,2.172459,-0.010911 +-1.122579,2.438210,-0.063588 +-2.329732,1.271579,0.059250 +-1.245300,0.349938,-0.074913 +-1.235254,0.379928,-0.039575 +-0.710840,2.101483,0.026687 +-0.717968,2.023788,-0.008782 +-0.534445,1.019250,0.012774 +-1.582856,0.427438,0.030012 +-2.233963,1.895347,0.096693 +-1.120106,2.377223,0.011003 +-0.831129,0.649549,0.030890 +-1.336618,2.456392,-0.034710 +-2.373292,1.516262,-0.056830 +-1.271840,0.428130,-0.093631 +-1.154506,2.330848,0.070383 +-1.787483,0.408424,0.004169 +-0.454831,1.563900,0.000029 +-2.396031,1.276115,-0.055272 +-1.565012,2.418021,-0.060482 +-1.969542,0.585280,0.028879 +-0.659944,0.778162,-0.049705 +-0.531789,0.812407,-0.023146 +-0.477303,0.871419,-0.036996 +-1.362822,2.424379,-0.005360 +-2.195376,1.992094,-0.008997 +-0.934534,2.252862,0.012757 +-0.401488,1.629053,-0.064823 +-2.405998,1.112922,0.080942 +-2.351911,1.656349,0.012339 +-2.323267,1.981033,0.010263 +-0.707852,0.706279,-0.028987 +-0.500778,0.826793,0.008545 +-2.309326,1.697996,0.010654 +-0.416323,1.563216,0.013898 +-0.484762,1.804296,0.001960 +-1.664737,2.433848,-0.064873 +-0.805911,0.646509,0.026451 +-1.936816,0.724366,0.033777 +-0.477056,1.892152,-0.054610 +-2.054711,2.209671,0.022376 +-0.670714,0.681104,-0.020559 +-1.891646,0.563539,0.046240 +-0.946302,0.581187,-0.035790 +-0.513467,0.880400,0.086118 +-1.820142,2.327578,0.033363 +-1.573401,2.388108,-0.014662 +-2.404177,1.157672,0.061161 +-1.432920,2.431152,0.017303 +-0.484719,1.303221,-0.077743 +-1.614145,2.340688,0.000460 +-1.408395,2.404758,0.050982 +-2.374160,1.734730,0.025004 +-0.583466,1.879027,0.110847 +-1.589073,2.414247,-0.007895 +-1.193027,0.486053,-0.031085 +-0.401501,1.139276,0.013092 +-2.055532,0.657386,-0.065361 +-0.879346,2.440842,0.089798 +-1.111705,0.419433,0.064160 +-0.429373,1.096413,0.082676 +-0.338408,1.429687,-0.067385 +-1.495032,2.297864,0.051979 +-1.519593,0.416269,-0.046403 +-2.066254,0.604093,-0.018359 +-1.322489,0.330775,-0.041652 +-2.526882,1.185753,0.098901 +-2.284909,1.436511,-0.045311 +-2.292721,0.966293,-0.028291 +-2.304685,1.796446,-0.031285 +-2.113488,2.145101,-0.053729 +-2.165310,0.761156,0.007005 +-0.324375,1.359339,0.050589 +-0.689545,1.961915,0.001523 +-0.364440,0.924078,-0.005292 +-1.932789,2.146979,-0.011706 +-2.364042,1.222767,0.086117 +-0.470507,1.898807,-0.019800 +-2.409312,1.636275,-0.063751 +-0.583252,0.765870,-0.036948 +-2.370601,1.274305,0.042378 +-1.013997,0.220185,-1.421601 +0.925762,0.463866,-1.359085 +0.593832,0.717530,-1.344516 +0.243867,-0.925160,-1.362036 +-0.679955,-0.820827,-1.363955 +-0.907685,-0.402487,-1.409801 +-0.505796,0.850362,-1.384161 +0.567215,-0.796233,-1.334393 +0.681565,-0.699754,-1.397450 +0.163288,1.082476,-1.333905 +-0.477386,0.888102,-1.438603 +0.834814,-0.518810,-1.353216 +0.495198,-0.952016,-1.346266 +-0.775396,0.583139,-1.326499 +0.985307,-0.411273,-1.361016 +0.792321,-0.584544,-1.359956 +-0.260404,1.092827,-1.341389 +0.034767,-1.054656,-1.372235 +-0.859632,0.553977,-1.359113 +-0.566981,0.782942,-1.378780 +-0.758305,-0.676512,-1.473883 +0.862437,0.521076,-1.366674 +-0.106150,-1.062281,-1.399133 +-0.945060,0.240428,-1.428169 +-0.437610,0.973636,-1.388717 +-0.398840,0.962233,-1.287582 +-0.947113,0.483389,-1.412448 +-0.503768,0.871426,-1.337302 +-0.702444,-0.636858,-1.406471 +-0.555084,-0.881133,-1.499940 +0.975462,0.391961,-1.374797 +0.882099,0.513110,-1.413438 +-0.102279,1.098166,-1.318163 +-0.662818,0.709040,-1.388465 +-0.041443,-1.079649,-1.461974 +-0.989376,-0.141393,-1.480819 +-0.456043,-0.908520,-1.464507 +-0.417508,-0.935407,-1.433915 +0.476746,-1.009487,-1.509219 +-0.728788,0.689834,-1.377768 +-0.819799,0.562421,-1.400402 +0.971275,-0.008799,-1.417832 +0.365199,1.065924,-1.410712 +0.759557,0.720094,-1.359773 +-0.754591,-0.626763,-1.394482 +0.956009,-0.138531,-1.288424 +0.679495,0.806871,-1.352929 +0.779276,0.547755,-1.347868 +-0.136349,-1.018314,-1.426597 +-0.784851,0.431074,-1.299715 +-0.893450,-0.412239,-1.416802 +0.713152,-0.675433,-1.456925 +0.968304,0.206764,-1.407125 +-0.711683,-0.673444,-1.339310 +-0.885472,-0.497361,-1.466466 +-0.710563,0.756940,-1.398273 +-0.362195,-0.990435,-1.458577 +-0.972998,-0.045430,-1.455637 +0.534962,-0.747467,-1.499150 +-0.990370,0.215507,-1.307961 +0.462758,-0.810668,-1.454393 +-1.061184,0.087867,-1.332444 +0.595065,0.787748,-1.361223 +0.806373,0.326713,-1.445314 +0.458298,0.879851,-1.407781 +-0.836690,-0.560851,-1.370293 +0.256903,0.952944,-1.377904 +0.986318,-0.369319,-1.403267 +-0.887152,0.248365,-1.300741 +-0.499433,-0.923822,-1.452260 +0.088925,0.971822,-1.427546 +-0.681703,-0.744853,-1.418064 +0.360816,-1.123883,-1.396856 +0.279970,1.017415,-1.328002 +-0.854652,-0.490934,-1.460586 +-0.875551,-0.428634,-1.465158 +0.674340,0.805995,-1.390045 +-0.256431,-0.982061,-1.342368 +-1.035869,0.012393,-1.388082 +-0.904499,-0.324947,-1.440655 +1.046444,0.158032,-1.432109 +-0.851049,0.688774,-1.418215 +0.118123,1.022704,-1.425102 +0.902968,-0.402654,-1.319164 +0.961948,-0.346953,-1.465773 +-0.883349,0.391872,-1.485927 +0.373692,-0.903233,-1.420248 +0.441931,0.915174,-1.366867 +0.984318,-0.452335,-1.413227 +-0.310253,0.918306,-1.398009 +0.811802,0.641875,-1.317064 +-0.217007,-0.966815,-1.410893 +-1.156274,-0.049368,-1.474430 +0.521209,0.869150,-1.361728 +1.017698,0.337293,-1.274577 +0.995072,-0.259443,-1.430914 +0.258490,-0.927727,-1.452099 +0.965899,0.178524,-1.424647 +0.705940,0.785384,-1.335839 +-0.827223,-0.521646,-1.475020 +0.915754,0.058574,-1.399493 +0.601958,0.811210,-1.426218 +-0.260571,-0.937078,-1.426269 +-0.185772,-1.061685,-1.431445 +-0.895533,-0.273990,-1.440692 +-0.119393,-1.014474,-1.321902 +1.028255,0.312098,-1.482420 +-0.242202,0.951077,-1.417814 +-0.877189,-0.329498,-1.327898 +-0.161762,-0.974599,-1.465223 +0.518402,-0.877569,-1.384544 +0.991951,-0.013804,-1.447753 +1.041500,0.019143,-1.430617 +0.124553,-0.971792,-1.399555 +-0.671748,0.737429,-1.442954 +-0.867756,-0.583870,-1.379776 +-0.427427,0.784364,-1.500313 +0.187253,1.090664,-1.438425 +0.444657,-0.944149,-1.396962 +0.704232,0.751486,-1.437956 +0.387011,0.953562,-1.339984 +-1.006272,-0.171323,-1.384950 +0.180348,-0.980449,-1.427801 +0.187289,-1.006630,-1.347225 +0.695939,0.624799,-1.492368 +0.655142,0.695300,-1.463333 +0.892811,-0.474242,-1.403559 +-0.069996,-0.986855,-1.549035 +-0.844880,0.585464,-1.309784 +0.431493,0.865907,-1.419235 +0.449690,-0.760734,-1.344293 +0.113391,1.004697,-1.324065 +-0.915664,0.251074,-1.374883 +0.106126,-0.949923,-1.355118 +0.207658,0.956598,-1.337668 +-0.276598,-0.970993,-1.414486 +1.014863,0.120871,-1.428730 +-0.884095,-0.133219,-1.370774 +0.002630,0.970864,-1.404864 +-0.577974,-0.870221,-1.481891 +0.850149,-0.564685,-1.415239 +0.764990,-0.595543,-1.462469 +0.902236,-0.415517,-1.498025 +0.069082,0.907433,-1.406468 +-0.873004,0.666504,-1.463642 +0.390993,0.883641,-1.422754 +0.893163,0.247063,-1.509532 +-1.008050,-0.340654,-1.355878 +-0.889043,0.339644,-1.408430 +-0.994244,0.530538,-1.319118 +0.796827,-0.659085,-1.465423 +0.798189,-0.455724,-1.477920 +-1.004012,0.390578,-1.423714 +0.903587,0.332728,-1.374642 +0.896756,0.334130,-1.287393 +-0.280336,1.037147,-1.350850 +0.584257,-0.818367,-1.320453 +-0.481645,-0.930311,-1.369762 +0.854075,0.452209,-1.385604 +-0.711652,0.744858,-1.443916 +0.679618,-0.711038,-1.455856 +-0.395229,-0.849176,-1.301299 +0.500237,-0.890925,-1.303287 +0.828949,-0.518847,-1.360397 +-0.465223,0.956876,-1.367916 +-0.055520,1.041067,-1.328501 +-0.981990,-0.265590,-1.283951 +-0.083968,0.921542,-1.368918 +1.081489,-0.114908,-1.345038 +-0.358459,0.941108,-1.503067 +0.105713,0.912929,-1.470280 +-0.901505,0.426525,-1.408743 +0.821515,0.642485,-1.411848 +-0.278352,1.006986,-1.366280 +0.358188,-0.933893,-1.464267 +1.006552,-0.248766,-1.426551 +-0.629112,-0.828119,-1.351114 +0.319152,0.863113,-1.418083 +0.306900,-0.917931,-1.490246 +1.050241,-0.143925,-1.464570 +0.860826,0.027439,-1.338267 +0.024729,0.950131,-1.303641 +-0.153947,-1.019749,-1.422947 +-0.524407,-0.737610,-1.347518 +-0.042869,-0.952063,-1.372003 +-1.087480,-0.207794,-1.342911 +-1.009412,-0.039274,-1.411449 +-0.856284,-0.486310,-1.485359 +-0.814049,0.452380,-1.418446 +-0.700777,0.748740,-1.462129 +-0.772408,-0.686097,-1.403879 +0.935235,-0.092905,-1.309485 +0.812274,0.599193,-1.510626 +0.896941,-0.342758,-1.389323 +-0.731379,0.801548,-1.379839 +-0.911680,-0.223419,-1.523314 +0.850005,0.365441,-1.359481 +-1.118004,0.224030,-1.321581 +0.790552,-0.563610,-1.490299 +-1.086136,0.016258,-1.394433 +0.417992,-1.305064,0.005543 +2.227980,-0.880732,0.150031 +2.014402,-0.625905,-0.139351 +1.556044,-2.283066,-0.056606 +0.742180,-2.134470,0.081526 +0.498016,-1.876247,0.003939 +0.803397,-0.604479,0.022653 +1.997976,-2.091779,0.024137 +2.147860,-2.187889,0.028884 +1.516670,-0.390562,0.037868 +0.920989,-0.391290,0.078539 +2.309076,-1.893791,0.096985 +1.774957,-2.215641,-0.054518 +0.598448,-0.731699,0.067827 +2.241380,-1.853969,0.005364 +2.139861,-2.014340,0.188976 +1.235681,-0.458149,-0.071308 +1.444902,-2.449740,0.025715 +0.580533,-0.889647,0.109173 +0.823724,-0.562241,0.035154 +0.720094,-2.014280,0.023567 +2.334107,-0.954827,0.050495 +1.386970,-2.314818,-0.091764 +0.374188,-1.136584,-0.145825 +0.973070,-0.450704,-0.031701 +1.067323,-0.508021,-0.028685 +0.496602,-0.955803,-0.040572 +0.876053,-0.554829,0.103077 +0.671213,-2.088179,-0.031729 +0.831745,-2.338068,-0.086425 +2.293909,-1.110906,0.059190 +2.146061,-0.894372,-0.075179 +1.229030,-0.353144,-0.024579 +0.690280,-0.612856,0.025185 +1.358195,-2.391260,-0.045515 +0.431012,-1.496990,-0.075194 +0.955643,-2.297473,0.029957 +1.048576,-2.291495,-0.016676 +1.877112,-2.352846,-0.072629 +0.495291,-0.719311,-0.045185 +0.631721,-0.895510,-0.035595 +2.421427,-1.550749,0.022509 +1.737488,-0.472028,0.032734 +2.181372,-0.710366,-0.044771 +0.604295,-2.002391,-0.056169 +2.377895,-1.577658,-0.005685 +1.957397,-0.711702,0.028641 +2.280108,-0.936486,0.020291 +1.241432,-2.343142,-0.022917 +0.443281,-0.969767,0.013628 +0.500442,-1.835687,-0.059546 +2.084560,-2.124214,0.011045 +2.393793,-1.151207,-0.034341 +0.785932,-2.169340,0.060992 +0.607093,-1.925159,0.091353 +0.764485,-0.698139,-0.020579 +1.153285,-2.300288,-0.058192 +0.394314,-1.326016,-0.027918 +2.167103,-2.157662,-0.003400 +0.473382,-1.294754,0.055409 +1.870358,-2.252032,0.057699 +0.490799,-1.348423,-0.048940 +1.993293,-0.607186,-0.014772 +2.377979,-1.061801,-0.108098 +1.782431,-0.508446,-0.102488 +0.556576,-2.038649,0.090197 +1.767773,-0.489618,0.014122 +2.288059,-1.755750,0.099191 +0.423276,-1.106715,-0.051839 +1.037261,-2.484307,-0.024354 +1.366066,-0.436853,0.047495 +0.804800,-2.227773,0.115142 +1.689845,-2.258902,0.008241 +1.651288,-0.462221,-0.001843 +0.567135,-1.986435,-0.012867 +0.439858,-1.863976,-0.044952 +2.021299,-0.694140,0.023786 +1.067901,-2.232292,-0.121575 +0.425814,-1.399647,0.044862 +0.498525,-1.747812,0.009496 +2.357103,-1.303457,-0.103338 +0.692614,-0.739963,-0.026788 +1.512544,-0.416641,0.071352 +2.495597,-1.730055,-0.031093 +2.394932,-1.641958,-0.050884 +0.439650,-0.949490,0.044424 +1.650088,-2.380530,0.031496 +1.828074,-0.417278,-0.077625 +2.480426,-1.793607,-0.111604 +1.058022,-0.521514,-0.002132 +2.166458,-0.773344,-0.046333 +1.144805,-2.377747,0.060702 +0.390573,-1.484466,-0.092824 +1.899575,-0.609064,-0.074248 +2.369891,-1.159034,0.077671 +2.391072,-1.589793,-0.056912 +1.721032,-2.360453,-0.037735 +2.393278,-1.305172,-0.089943 +1.999702,-0.630665,-0.000179 +0.648677,-2.038385,0.031607 +2.385852,-1.326534,0.021192 +1.932196,-0.590274,0.002310 +1.144186,-2.377036,-0.022693 +1.171793,-2.383576,-0.044149 +0.383588,-1.692230,0.040371 +1.222827,-2.411500,-0.031424 +2.386026,-1.222803,0.043855 +0.928805,-0.548071,-0.028285 +0.589580,-1.675866,0.038857 +1.294277,-2.494540,0.008622 +1.851546,-2.321223,0.008514 +2.374089,-1.352189,-0.106478 +2.402152,-1.511141,-0.022530 +1.510863,-2.457014,0.009033 +0.800536,-0.627315,-0.025881 +0.641389,-2.103543,0.000390 +0.958921,-0.528793,0.087441 +1.610220,-0.438762,0.008022 +1.740673,-2.341777,-0.017604 +1.968850,-0.608182,-0.027809 +1.689466,-0.480223,0.162750 +0.394973,-1.762467,-0.087996 +1.598196,-2.314183,-0.037499 +1.657724,-2.341500,-0.010421 +2.092782,-0.682945,0.048260 +2.171962,-0.775913,-0.009581 +2.385276,-1.867937,0.047813 +1.335585,-2.380527,0.005978 +0.622276,-0.798391,0.014514 +1.700581,-0.437913,-0.003685 +1.918873,-2.096995,-0.084648 +1.546827,-0.451885,0.007216 +0.558985,-1.265549,-0.039813 +1.524370,-2.438712,0.048623 +1.588744,-0.388113,-0.073105 +0.932500,-2.342371,-0.086268 +2.479067,-1.390031,-0.057073 +0.435061,-1.588684,-0.083511 +1.418090,-0.459528,-0.010794 +0.879453,-2.221675,0.025429 +2.163543,-2.005706,-0.012481 +2.211706,-2.101682,0.110996 +2.249251,-1.854472,-0.063799 +1.360012,-0.448587,-0.053379 +0.568199,-0.866058,0.038255 +1.838690,-0.572853,-0.021613 +2.430523,-1.170039,-0.005483 +0.370126,-1.771866,-0.070313 +0.511583,-1.091828,-0.047389 +0.508218,-0.936350,-0.048722 +2.154285,-2.100362,0.114464 +2.295850,-1.890062,0.036925 +0.435873,-1.028384,-0.019186 +2.458248,-1.129075,0.014430 +2.324744,-0.907137,-0.078856 +1.222115,-0.449945,-0.077338 +1.971536,-2.280949,0.035951 +0.780811,-2.217804,0.062382 +2.223781,-0.905704,-0.071685 +0.741216,-0.487915,0.042786 +2.092547,-2.140750,-0.002345 +0.925399,-2.299356,0.029153 +1.856602,-2.313453,0.020361 +2.196467,-1.868945,-0.000785 +0.902317,-0.476223,-0.092683 +1.312802,-0.421565,0.101810 +0.483005,-1.676481,-0.111141 +1.358469,-0.467169,0.100416 +2.391547,-1.473995,-0.015677 +1.141428,-0.433211,0.060860 +1.479930,-0.460127,0.089238 +0.454119,-1.056929,-0.155623 +2.225047,-0.781537,0.005496 +1.159701,-0.455720,-0.020327 +1.734491,-2.315905,-0.012707 +2.420775,-1.653033,-0.027732 +0.798006,-2.264921,0.012800 +1.712328,-0.538770,-0.111028 +1.608512,-2.287387,-0.006439 +2.411314,-1.488766,0.022223 +2.357420,-1.403106,0.000036 +1.302400,-0.432668,0.054189 +1.425028,-2.490086,-0.044999 +0.786695,-2.176067,0.062869 +1.580019,-2.425119,-0.022865 +0.436809,-1.531630,-0.007753 +0.377666,-1.512780,0.006778 +0.513663,-1.811836,0.000302 +0.413234,-1.017048,-0.115010 +0.648852,-0.636079,-0.013604 +0.660583,-2.121086,-0.013335 +2.373353,-1.378839,0.037002 +2.244341,-0.727437,-0.020245 +2.403206,-1.825556,-0.059448 +0.828494,-0.692606,0.031502 +0.423285,-1.528429,-0.003269 +2.307910,-0.946211,-0.036446 +0.392575,-1.125216,-0.001611 +2.167753,-2.017460,0.087701 +0.377607,-1.488752,-0.093909 +0.409982,1.592563,0.045991 +2.296958,1.906561,0.040218 +2.048998,2.263154,0.086349 +1.639357,0.358429,0.036505 +0.805506,0.715837,0.070471 +0.615994,0.980101,0.012585 +0.761743,2.244026,-0.030388 +1.999418,0.593981,0.025945 +2.079194,0.722457,-0.149773 +1.566884,2.453825,0.102853 +0.958504,2.368975,0.009291 +2.244485,0.893291,-0.000176 +1.810961,0.480655,-0.061168 +0.658547,2.038051,-0.019816 +2.273659,1.001999,0.042925 +2.087933,0.667865,0.052498 +1.136986,2.412399,0.088930 +1.551848,0.442556,0.038985 +0.679527,1.807435,-0.025538 +0.910840,2.225777,0.068188 +0.668867,0.722699,-0.015107 +2.247569,1.851663,0.014914 +1.294608,0.454400,0.035927 +0.484551,1.556052,-0.093471 +0.945779,2.450441,0.069641 +1.060488,2.374405,0.040017 +0.448432,1.957083,-0.009208 +0.885971,2.262050,0.062950 +0.651358,0.599010,0.017763 +0.751772,0.539111,0.065278 +2.392144,1.736321,0.034119 +2.376896,1.903474,0.021897 +1.219469,2.440312,-0.003387 +0.787430,2.077912,0.077392 +1.432623,0.398215,0.029834 +0.422255,1.294244,-0.011378 +0.907422,0.490565,-0.092573 +1.049159,0.414311,-0.011971 +1.861422,0.541340,-0.097606 +0.665980,2.109833,0.002861 +0.683769,1.967708,-0.112697 +2.440130,1.276352,-0.096720 +1.759406,2.397457,-0.069479 +2.257448,2.038464,0.004786 +0.562434,0.764865,-0.007356 +2.305766,1.398986,-0.027244 +1.985712,2.243452,0.099784 +2.289035,1.896018,0.011765 +1.078381,0.473677,-0.089935 +0.450997,1.825603,0.024475 +0.480822,1.057770,0.039778 +2.096772,0.582272,0.093465 +2.343520,1.651999,0.111221 +0.743649,0.727792,-0.169561 +0.528533,0.951578,0.050848 +0.671603,2.133956,-0.139500 +1.113698,0.345360,0.062176 +0.467023,1.436700,0.028670 +2.025484,0.642792,-0.063099 +0.442122,1.435068,-0.100646 +1.955377,0.561301,0.014977 +0.368715,1.597821,0.008833 +1.974892,2.237928,0.055160 +2.361457,1.792436,0.040479 +1.753637,2.192730,-0.004183 +0.562047,0.869806,0.001101 +1.680692,2.300075,-0.000591 +2.267123,1.082539,-0.103306 +0.468101,1.628222,-0.021094 +1.023442,0.507679,-0.090511 +1.331608,2.316931,-0.093212 +0.745160,0.680705,0.024233 +1.801269,0.469568,-0.015036 +1.619972,2.336089,-0.072674 +0.509188,0.869064,-0.006479 +0.650805,0.928833,-0.006880 +2.006242,2.107640,-0.019090 +1.107730,0.434388,-0.010523 +0.376333,1.322942,-0.035866 +0.438113,1.065323,0.030742 +2.385124,1.448921,-0.094645 +0.679574,2.023037,0.041092 +1.597737,2.381779,-0.056282 +2.316836,1.022031,-0.017354 +2.329272,1.152003,0.027367 +0.489948,1.763017,0.025101 +1.696535,0.470908,0.008314 +1.721887,2.309287,0.028299 +2.386100,1.097438,-0.108745 +1.131502,2.363487,-0.066183 +2.127186,2.050141,0.037388 +1.094171,0.485110,-0.098602 +0.343158,1.255049,-0.049357 +1.991986,2.373921,0.012902 +2.305767,1.726548,0.026034 +2.296323,1.181131,0.078919 +1.621477,0.398510,0.000726 +2.397860,1.553006,0.004233 +2.094749,2.257991,-0.006943 +0.588712,0.896225,-0.030204 +2.319275,1.539097,0.059190 +1.955684,2.238992,-0.079662 +1.148100,0.499240,-0.067876 +1.230104,0.391000,-0.038374 +0.453342,1.145391,0.023805 +1.158894,0.327184,0.014431 +2.323231,1.810124,0.103648 +1.141363,2.278070,0.031315 +0.518126,1.073585,-0.019492 +1.345021,0.407911,0.007046 +1.797173,0.559155,-0.014323 +2.425563,1.412931,0.009952 +2.395512,1.380472,-0.010939 +1.414072,0.435731,-0.044495 +0.739380,2.152794,0.015583 +0.644580,0.621391,-0.021101 +1.038528,2.280006,-0.009101 +1.644746,2.426039,0.056196 +1.644657,0.577589,0.035002 +2.172805,2.127485,-0.096990 +1.709414,2.335911,0.035952 +0.490538,1.146509,-0.013239 +1.585184,0.398214,-0.018699 +1.644424,0.487001,0.059618 +2.097854,1.989418,-0.008151 +2.108422,2.054177,-0.036910 +2.275166,0.861086,-0.070439 +1.373140,0.351107,0.000018 +0.625418,2.012370,0.043717 +1.755396,2.380701,0.075520 +1.959203,0.454626,-0.029069 +1.532409,2.361072,0.089106 +0.414238,1.592070,0.061861 +1.515276,0.417581,0.049452 +1.537168,2.360225,0.045603 +1.035483,0.550927,-0.086676 +2.302612,1.536441,0.047619 +0.401683,1.265587,0.040986 +1.261129,2.356685,0.010435 +0.940683,0.475130,-0.010887 +2.195584,0.835202,-0.000478 +2.140490,0.831247,-0.029659 +2.274941,0.858477,-0.039249 +1.459795,2.417140,0.032973 +0.621287,2.102610,-0.041132 +1.792685,2.218526,-0.038701 +2.322329,1.623295,0.068896 +0.533625,1.118720,0.117770 +0.420106,1.589203,0.057925 +0.438135,1.867516,0.028606 +2.123338,0.704950,-0.064943 +2.226486,0.893118,0.001098 +0.413457,1.670123,-0.044528 +2.390162,1.667588,-0.044028 +2.196163,1.820249,-0.049374 +1.158907,2.318708,-0.054335 +2.021332,0.739518,0.041197 +0.845409,0.592656,-0.096311 +2.199013,1.770940,0.095143 +0.846582,2.192118,0.007431 +2.021769,0.680832,0.098582 +0.925474,0.492638,-0.096694 +1.984958,0.535403,-0.096620 +2.209907,0.820694,-0.007246 +1.014256,2.290078,0.042738 +1.279001,2.450542,-0.019646 +0.591576,1.150810,-0.049683 +1.343553,2.388398,-0.094574 +2.408316,1.169875,0.008892 +1.076991,2.347612,0.033250 +1.589513,2.338737,-0.008267 +0.430417,1.720282,-0.039324 +2.235479,1.986064,0.123712 +1.204736,2.320366,-0.020169 +1.664915,0.492947,-0.090133 +2.294831,1.118775,0.037562 +0.854911,0.685775,0.029139 +1.792589,2.361459,-0.062948 +1.516687,0.448098,-0.055312 +2.372325,1.188436,0.013647 +2.451085,1.477175,0.010725 +1.312899,2.403954,-0.032792 +1.357786,0.544493,0.010020 +0.836978,0.552182,0.056104 +1.473226,0.442698,0.011819 +0.461318,1.375834,0.015570 +0.394190,1.480612,-0.049727 +0.484206,0.915315,-0.095775 +0.527763,1.744188,-0.025932 +0.703723,2.131129,-0.018901 +0.606140,0.783813,-0.024587 +2.356981,1.428070,-0.115742 +2.197703,1.961996,0.023034 +2.249790,1.004387,-0.005630 +0.845947,2.208425,-0.065092 +0.390902,1.261352,-0.066043 +2.300502,1.825278,-0.021218 +0.579683,1.625990,0.024737 +2.148008,0.816119,0.047893 +0.369635,1.334201,-0.049240 +-1.050631,0.213458,1.369530 +0.758258,0.551085,1.355885 +0.574235,0.899267,1.392204 +0.239706,-1.036133,1.310084 +-0.646575,-0.750559,1.416804 +-0.917476,-0.452876,1.298953 +-0.536774,0.835958,1.508551 +0.588197,-0.860864,1.397210 +0.666518,-0.705060,1.401479 +0.087137,0.897722,1.414460 +-0.405682,0.880671,1.444731 +0.900032,-0.521153,1.355203 +0.464732,-0.824618,1.429144 +-0.729360,0.611984,1.388871 +0.898297,-0.428603,1.464238 +0.621017,-0.659632,1.395628 +-0.262814,1.019234,1.360152 +0.043154,-0.896344,1.455549 +-0.812731,0.556770,1.390943 +-0.425861,0.888447,1.358775 +-0.805974,-0.653371,1.396927 +0.797715,0.505326,1.385204 +-0.033604,-0.973731,1.366545 +-0.941110,0.190758,1.376191 +-0.483265,0.953210,1.384569 +-0.233533,1.049148,1.359370 +-1.036961,0.539202,1.381192 +-0.556682,0.828363,1.377185 +-0.635761,-0.698312,1.470598 +-0.508645,-0.861336,1.378530 +0.991182,0.324115,1.454824 +0.829943,0.545463,1.432122 +-0.177553,0.925267,1.355655 +-0.720364,0.743528,1.469244 +-0.074583,-1.032854,1.380318 +-0.948405,-0.154379,1.376365 +-0.531650,-0.864419,1.391123 +-0.433120,-0.932028,1.461985 +0.370511,-0.951118,1.468874 +-0.724801,0.721384,1.422096 +-0.792098,0.593751,1.445736 +1.059490,-0.034478,1.334799 +0.439895,0.910090,1.358473 +0.719656,0.730259,1.429726 +-0.784559,-0.591352,1.407692 +0.956175,-0.195376,1.422563 +0.608369,0.714502,1.446594 +0.800665,0.649650,1.322836 +-0.228082,-1.014416,1.346352 +-0.931601,0.523161,1.407885 +-0.948371,-0.526354,1.305325 +0.631806,-0.784964,1.387677 +0.862718,0.151392,1.456525 +-0.595291,-0.833163,1.355923 +-0.907725,-0.501027,1.332913 +-0.568787,0.752505,1.393227 +-0.221418,-0.951939,1.422017 +-1.039321,-0.012587,1.366430 +0.757708,-0.735697,1.415099 +-1.045815,0.175452,1.325327 +0.475895,-0.857819,1.507497 +-0.891178,0.069290,1.362919 +0.471863,0.831372,1.408911 +0.973202,0.418213,1.389142 +0.484572,0.852471,1.429537 +-0.854978,-0.536813,1.420818 +0.252474,1.012283,1.313628 +0.882310,-0.353591,1.320621 +-0.973434,0.288412,1.472033 +-0.417940,-0.848208,1.416592 +-0.060872,1.006861,1.440118 +-0.595675,-0.757388,1.309387 +0.273645,-0.947729,1.271415 +0.377722,0.993125,1.365038 +-0.905359,-0.479280,1.338750 +-0.973757,-0.439275,1.406275 +0.718691,0.794566,1.457473 +-0.338695,-0.884752,1.363095 +-1.100148,-0.036912,1.355656 +-0.975640,-0.391504,1.374639 +1.032128,0.157130,1.305106 +-0.820936,0.617782,1.442116 +0.114061,0.952289,1.439420 +0.970356,-0.398180,1.355108 +0.975159,-0.291821,1.386744 +-0.919189,0.504865,1.413743 +0.395701,-0.867383,1.425244 +0.397923,0.962045,1.425612 +1.094242,-0.291961,1.438373 +-0.322765,0.935430,1.385766 +0.786697,0.666089,1.463491 +-0.262004,-0.985753,1.382023 +-1.072268,0.059956,1.370235 +0.562251,0.875952,1.416705 +0.934421,0.295409,1.346731 +1.077353,-0.181113,1.461890 +0.355161,-0.982890,1.423293 +0.984763,0.123735,1.389799 +0.693625,0.722664,1.382134 +-0.818552,-0.471651,1.299127 +1.019705,0.111400,1.364764 +0.520544,0.881034,1.439849 +-0.238459,-0.908482,1.469786 +-0.111534,-1.017729,1.427194 +-0.932838,-0.323851,1.313681 +-0.298634,-0.978445,1.416392 +0.886059,0.366549,1.408372 +-0.293905,0.950156,1.341352 +-0.904571,-0.331268,1.369881 +-0.204648,-0.986598,1.344954 +0.543402,-0.898701,1.494853 +0.883171,0.007414,1.478617 +0.949060,-0.071547,1.377833 +0.056501,-0.982108,1.328752 +-0.593889,0.837397,1.388170 +-0.805122,-0.604652,1.440164 +-0.483045,0.833651,1.347644 +0.217371,0.997444,1.443455 +0.379210,-0.968615,1.450537 +0.606984,0.780773,1.314754 +0.277677,1.006573,1.360605 +-0.923785,-0.376896,1.369233 +0.147010,-0.891849,1.335702 +0.224286,-0.924156,1.360318 +0.686563,0.714896,1.318518 +0.725080,0.731498,1.428746 +0.867685,-0.475535,1.431950 +-0.051626,-1.026165,1.484410 +-0.754681,0.599333,1.353637 +0.282626,0.922918,1.403342 +0.438560,-0.817120,1.470810 +0.125814,0.958379,1.356308 +-0.965795,0.178950,1.424367 +0.158428,-0.932061,1.337733 +0.230332,0.955926,1.394575 +-0.320582,-0.876255,1.476914 +1.018969,0.088057,1.386092 +-1.083100,-0.082749,1.382296 +-0.066284,1.032907,1.331508 +-0.559825,-0.775656,1.415974 +0.777085,-0.594734,1.459743 +0.821901,-0.718058,1.489886 +0.944145,-0.462377,1.334455 +0.089381,1.025710,1.319821 +-0.821781,0.759725,1.400908 +0.440945,0.820839,1.497465 +1.022544,0.295552,1.413650 +-0.882085,-0.355675,1.408943 +-0.944506,0.355026,1.417536 +-0.895145,0.512565,1.307797 +0.601315,-0.638823,1.379389 +0.812703,-0.516381,1.476836 +-0.911484,0.444782,1.427648 +0.985205,0.261911,1.329298 +0.970335,0.262647,1.367756 +-0.277730,0.916857,1.375153 +0.714073,-0.729434,1.362279 +-0.587910,-0.897316,1.438775 +0.847006,0.400886,1.405543 +-0.613280,0.823486,1.395965 +0.686610,-0.597862,1.400362 +-0.442178,-0.905981,1.437945 +0.428982,-0.886156,1.333545 +0.827468,-0.440266,1.366322 +-0.357644,1.001204,1.398483 +-0.070676,1.021324,1.406404 +-0.934649,-0.116947,1.364950 +-0.052756,0.944015,1.454694 +1.054230,-0.154870,1.282519 +-0.285802,0.998715,1.396330 +0.072710,0.969243,1.455775 +-0.910901,0.400380,1.408749 +0.818995,0.638128,1.348956 +-0.197625,1.019450,1.463533 +0.331903,-1.004145,1.355378 +0.944650,-0.238269,1.393277 +-0.674712,-0.852290,1.284581 +0.225577,0.910507,1.527613 +0.316966,-1.029719,1.408245 +0.895365,-0.290309,1.334139 +0.987104,0.021375,1.413899 +-0.026314,0.979498,1.401991 +-0.091570,-1.073454,1.317557 +-0.552077,-0.827602,1.297088 +0.027941,-1.068192,1.491321 +-1.027397,-0.056625,1.459893 +-1.052028,0.035593,1.430441 +-0.869952,-0.461893,1.326870 +-0.887283,0.370409,1.419220 +-0.633948,0.765753,1.419180 +-0.754838,-0.575044,1.482253 +0.997634,-0.022393,1.451264 +0.782046,0.514346,1.427128 +0.918445,-0.434539,1.427530 +-0.534195,0.700519,1.456228 +-1.121826,-0.209397,1.501228 +0.886769,0.430726,1.441958 +-1.062989,0.252655,1.403532 +0.892583,-0.680873,1.379015 +-1.049086,-0.119683,1.462007 diff --git a/06-clustering/solutions/demo/clustering_demo.py b/06-clustering/solutions/demo/clustering_demo.py index a770258..17dafe8 100644 --- a/06-clustering/solutions/demo/clustering_demo.py +++ b/06-clustering/solutions/demo/clustering_demo.py @@ -32,13 +32,12 @@ from sklearn.metrics import confusion_matrix from scipy.optimize import linear_sum_assignment # # Install these with from terminal with: -# mamba install hdbscan scikit-learn-extra -# pip install hdbscan scikit-learn-extra +# mamba install hdbscan +# pip install hdbscan # # Install these with from this script with: -# !mamba install -y hdbscan scikit-learn-extra -# !pip install hdbscan scikit-learn-extra +# !mamba install -y hdbscan +# !pip install hdbscan -from sklearn_extra.cluster import CommonNNClustering # from sklearn.cluster import HDBSCAN # does not have soft clustering and tree plot from hdbscan import HDBSCAN import hdbscan @@ -188,6 +187,7 @@ fig_dbscan = plt.figure('DBSCAN', figsize=(8, 8)) ax_dbscan = fig_dbscan.add_subplot(2, 1, 1) sc_dbscan = ax_dbscan.scatter(*X.T, alpha=0.8) sc_dbscan.set_edgecolor(cm((y + 1) % cm.N)) +ax_dbscan.set_title('DBSCAN') ax_dbscan.set_xticks([]) ax_dbscan.set_yticks([]) @@ -204,14 +204,11 @@ dbscan_samples_slider = Slider(ax=ax_dbscan_samples_slider, label='min_samples', ax_dbscan_show = fig_dbscan.add_axes([0.99 - 0.3, 0.95 - 0.05, 0.3, 0.05]) dbscan_show_button = CheckButtons(ax=ax_dbscan_show, labels=['Show Ground Truth']) -ax_dbscan_button = fig_dbscan.add_axes([0.99 - 0.25, 0.95 - 0.05 - 0.05, 0.25, 0.05]) -dbscan_button = CheckButtons(ax=ax_dbscan_button, labels=['DBSCAN / CNNC']) - ax_dbscan_bars = fig_dbscan.add_subplot(2, 1, 2) ax_dbscan_bars.bar([0,1], [0, 1]) ax_dbscan_bars.set_xticks([]) -# merge small clusters to the nearest large cluster (useful for CommonNNClustering) +# merge small clusters to the nearest large cluster (was useful for CommonNNClustering) def merge_small_clusters(X, labels, limit=15, inplace=False): noise_labels = labels == -1 clusters, counts = np.unique(labels[~noise_labels], return_counts=True) @@ -236,14 +233,7 @@ def merge_small_clusters(X, labels, limit=15, inplace=False): def update_dbscan(val=None): - if dbscan_button.get_status()[0]: - alg = CommonNNClustering(eps=dbscan_eps_slider.val, min_samples=int(dbscan_samples_slider.val)) - alg_name = 'Common Nearest Neighbor Clustering' - else: - alg = DBSCAN(eps=dbscan_eps_slider.val, min_samples=int(dbscan_samples_slider.val)) - alg_name = 'DBSCAN' - - ax_dbscan.set_title(alg_name) + alg = DBSCAN(eps=dbscan_eps_slider.val, min_samples=int(dbscan_samples_slider.val)) labels = alg.fit_predict(X) merge_small_clusters(X, labels, inplace=True) matched_labels = match_labels(labels) @@ -261,7 +251,6 @@ def update_dbscan(val=None): dbscan_eps_slider.on_changed(update_dbscan) dbscan_samples_slider.on_changed(update_dbscan) -dbscan_button.on_clicked(update_dbscan) dbscan_show_button.on_clicked(update_dbscan) update_dbscan() plt.show() -- GitLab